commit:     ca36978e8cd1543a44300433742e9142aaa7a1c1
Author:     Diogo Pereira <sir.suriv <AT> gmail <DOT> com>
AuthorDate: Sat Aug  6 22:20:52 2016 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Fri Sep  2 17:18:14 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca36978e

sys-block/targetcli: update live ebuild

* Update to EAPI 6
* Update git repository URI
* Change license to Apache-2.0
* Remove DEPEND on sys-block/lio-utils
* Add DEPEND on dev-python/prettytable
* Add RDEPEND on dev-python/urwid

Gentoo-Bug: https://bugs.gentoo.org/436814
Gentoo-Bug: https://bugs.gentoo.org/491668
Closes: https://github.com/gentoo/gentoo/pull/2034

Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 sys-block/targetcli/targetcli-9999.ebuild | 59 ++++++++++++++++++-------------
 1 file changed, 35 insertions(+), 24 deletions(-)

diff --git a/sys-block/targetcli/targetcli-9999.ebuild 
b/sys-block/targetcli/targetcli-9999.ebuild
index e9948c9..5701d51 100644
--- a/sys-block/targetcli/targetcli-9999.ebuild
+++ b/sys-block/targetcli/targetcli-9999.ebuild
@@ -1,35 +1,46 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=4
+EAPI=6
 
-EGIT_REPO_URI="git://linux-iscsi.org/${PN}.git"
-PYTHON_DEPEND="2"
-RESTRICT_PYTHON_ABIS="3.*"
-SUPPORT_PYTHON_ABIS="1"
+PYTHON_COMPAT=( python2_7 )
 
-inherit eutils distutils git-2 python linux-info
+inherit distutils-r1 linux-info
 
-DESCRIPTION="The targetcli administration shell"
-HOMEPAGE="http://linux-iscsi.org/";
-SRC_URI=""
+if [[ ${PV} == 9999 ]]; then
+       inherit git-r3
+       EGIT_REPO_URI="git://github.com/Datera/${PN}.git
+               https://github.com/Datera/${PN}.git";
+       KEYWORDS=""
+else
+       MY_PV=${PV/_/-}
+       SRC_URI="https://github.com/Datera/${PN}/archive/${PV/_/-}.tar.gz -> 
${P}.tar.gz"
+       S="${WORKDIR}/${PN}-${MY_PV}"
+       KEYWORDS="~amd64"
+fi
 
-LICENSE="AGPL-3"
+DESCRIPTION="CLI and shell for the Linux SCSI target"
+HOMEPAGE="http://linux-iscsi.org/wiki/targetcli";
+
+LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS=""
 IUSE=""
 
-DEPEND="
-       dev-python/configshell
-       dev-python/rtslib
-       sys-block/lio-utils
-       "
-RDEPEND="${DEPEND}"
-
-CONFIG_CHECK="~TARGET_CORE"
-
-pkg_setup() {
-       linux-info_pkg_setup
-       python_pkg_setup
+DEPEND="dev-python/configshell[${PYTHON_USEDEP}]
+       dev-python/prettytable[${PYTHON_USEDEP}]
+       dev-python/rtslib[${PYTHON_USEDEP}]"
+RDEPEND="${DEPEND}
+       dev-python/urwid[${PYTHON_USEDEP}]"
+
+pkg_pretend() {
+       if use kernel_linux; then
+               linux-info_get_any_version
+               if ! linux_config_exists; then
+                       eerror "Unable to check your kernel for SCSI target 
support"
+               else
+                       CONFIG_CHECK="~TARGET_CORE"
+                       check_extra_config
+               fi
+       fi
 }

Reply via email to