Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/configshell/
Date: Fri, 02 Sep 2016 17:18:47
Message-Id: 1472836694.efe1a350240189c1e78657ecd20de0104ac6cf61.monsieurp@gentoo
1 commit: efe1a350240189c1e78657ecd20de0104ac6cf61
2 Author: Diogo Pereira <sir.suriv <AT> gmail <DOT> com>
3 AuthorDate: Sat Aug 6 22:15:38 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 2 17:18:14 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efe1a350
7
8 dev-python/configshell: update live ebuild
9
10 * Bump to EAPI 6
11 * Update git repository URI
12 * Change license to Apache-2.0
13 * Remove DEPEND on dev-python/simpleparse
14 * Add DEPEND on dev-python/pyparsing
15 * Add RDEPEND on dev-python/urwid
16
17 Closes: https://github.com/gentoo/gentoo/pull/2034
18
19 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
20
21 dev-python/configshell/configshell-9999.ebuild | 32 +++++++++++++++-----------
22 1 file changed, 19 insertions(+), 13 deletions(-)
23
24 diff --git a/dev-python/configshell/configshell-9999.ebuild b/dev-python/configshell/configshell-9999.ebuild
25 index f12b9c3..dbc88ec 100644
26 --- a/dev-python/configshell/configshell-9999.ebuild
27 +++ b/dev-python/configshell/configshell-9999.ebuild
28 @@ -1,25 +1,31 @@
29 -# Copyright 1999-2014 Gentoo Foundation
30 +# Copyright 1999-2016 Gentoo Foundation
31 # Distributed under the terms of the GNU General Public License v2
32 # $Id$
33
34 -EAPI=5
35 +EAPI=6
36
37 -EGIT_REPO_URI="git://linux-iscsi.org/${PN}.git"
38 PYTHON_COMPAT=( python2_7 )
39
40 -inherit distutils-r1 git-r3
41 +inherit distutils-r1
42
43 DESCRIPTION="ConfigShell Community Edition for target_core_mod/ConfigFS"
44 -HOMEPAGE="http://linux-iscsi.org/"
45 -SRC_URI=""
46 +HOMEPAGE="http://linux-iscsi.org/wiki/targetcli"
47
48 -LICENSE="AGPL-3"
49 +LICENSE="Apache-2.0"
50 SLOT="0"
51 -KEYWORDS=""
52 IUSE=""
53
54 -DEPEND="
55 - dev-python/epydoc[${PYTHON_USEDEP}]
56 - dev-python/simpleparse[${PYTHON_USEDEP}]
57 - "
58 -RDEPEND="${DEPEND}"
59 +if [[ ${PV} == 9999 ]]; then
60 + inherit git-r3
61 + EGIT_REPO_URI="git://github.com/Datera/${PN}.git
62 + https://github.com/Datera/${PN}.git"
63 + KEYWORDS=""
64 +else
65 + SRC_URI="https://github.com/Datera/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
66 + KEYWORDS="~amd64"
67 +fi
68 +
69 +DEPEND="dev-python/epydoc[${PYTHON_USEDEP}]
70 + dev-python/pyparsing[${PYTHON_USEDEP}]"
71 +RDEPEND="${DEPEND}
72 + dev-python/urwid[${PYTHON_USEDEP}]"