forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metagen-9999.ebuild
38 lines (30 loc) · 889 Bytes
/
metagen-9999.ebuild
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1 git-r3
DESCRIPTION="metadata.xml generator for ebuilds"
HOMEPAGE="https://cgit.gentoo.org/proj/metagen.git"
SRC_URI=""
EGIT_REPO_URI="git://anongit.gentoo.org/proj/metagen.git"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND=">=dev-python/jaxml-3.01[${PYTHON_USEDEP}]
|| (
( >=sys-apps/portage-2.3.0_rc1[${PYTHON_USEDEP}] app-portage/repoman[${PYTHON_USEDEP}] )
<sys-apps/portage-2.3.0_rc1[${PYTHON_USEDEP}]
)"
RDEPEND="${DEPEND}"
python_install() {
distutils-r1_python_install
python_newscript metagen/main.py metagen
}
python_install_all() {
distutils-r1_python_install_all
doman docs/metagen.1
}
python_test() {
"${PYTHON}" -c "from metagen import metagenerator; metagenerator.do_tests()" || die
}