author | Da Risk <da_risk@geekorum.com> |
Tue, 25 Jul 2017 11:35:22 -0700 | |
changeset 219 | c0c5810e06b8 |
parent 170 | 71c4f6ddaa70 |
permissions | -rw-r--r-- |
170
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
1 |
# Copyright 1999-2015 Gentoo Foundation |
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
2 |
# Distributed under the terms of the GNU General Public License v2 |
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
3 |
# $Header: $ |
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
4 |
|
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
5 |
EAPI=5 |
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
6 |
|
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
7 |
PYTHON_COMPAT=( python3_3 python3_4 ) |
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
8 |
|
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
9 |
inherit mercurial distutils-r1 |
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
10 |
|
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
11 |
DESCRIPTION="A distant Gentoo synchronizer helper" |
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
12 |
HOMEPAGE="http://tuna.lyua.org/syndgen/" |
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
13 |
# SRC_URI="http://tuna.lyua.org/downloads/${P}.tar.bz2" |
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
14 |
SRC_URI="" |
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
15 |
|
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
16 |
LICENSE="GPL-3" |
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
17 |
SLOT="0" |
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
18 |
KEYWORDS="" |
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
19 |
IUSE="" |
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
20 |
|
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
21 |
DEPEND="dev-python/setuptools[$PYTHON_USEDEP] |
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
22 |
dev-python/nose[$PYTHON_USEDEP]" |
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
23 |
RDEPEND="net-misc/rsync net-misc/openssh app-portage/gentoolkit" |
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
24 |
|
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
25 |
EHG_REPO_URI="https://hg.geekorum.com/syndgen" |
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
26 |
|
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
27 |
[[ "${PV}" != "9999" ]] && EHG_REVISION="v${PV}" |
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
28 |
|
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
29 |
python_install_all() |
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
30 |
{ |
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
31 |
distutils-r1_python_install_all |
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
32 |
doman doc/syndgen.1 |
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
33 |
} |
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
34 |
|
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
35 |
python_test(){ |
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
36 |
esetup.py nosetests |
71c4f6ddaa70
Add live version of sys-app/syndgen-9999 which is python3 only
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
37 |
} |