equal
deleted
inserted
replaced
1 # Copyright 1999-2015 Gentoo Foundation |
|
2 # Distributed under the terms of the GNU General Public License v2 |
|
3 # $Header: $ |
|
4 |
|
5 EAPI=5 |
|
6 |
|
7 PYTHON_COMPAT=( python3_3 python3_4 ) |
|
8 |
|
9 inherit mercurial distutils-r1 |
|
10 |
|
11 DESCRIPTION="A distant Gentoo synchronizer helper" |
|
12 HOMEPAGE="http://tuna.lyua.org/syndgen/" |
|
13 # SRC_URI="http://tuna.lyua.org/downloads/${P}.tar.bz2" |
|
14 SRC_URI="" |
|
15 |
|
16 LICENSE="GPL-3" |
|
17 SLOT="0" |
|
18 KEYWORDS="" |
|
19 IUSE="" |
|
20 |
|
21 DEPEND="dev-python/setuptools[$PYTHON_USEDEP] |
|
22 dev-python/nose[$PYTHON_USEDEP]" |
|
23 RDEPEND="net-misc/rsync net-misc/openssh app-portage/gentoolkit" |
|
24 |
|
25 EHG_REPO_URI="https://hg.geekorum.com/syndgen" |
|
26 |
|
27 [[ "${PV}" != "9999" ]] && EHG_REVISION="v${PV}" |
|
28 |
|
29 python_install_all() |
|
30 { |
|
31 distutils-r1_python_install_all |
|
32 doman doc/syndgen.1 |
|
33 } |
|
34 |
|
35 python_test(){ |
|
36 esetup.py nosetests |
|
37 } |
|