sys-block/targetcli: update live ebuild
authorDiogo Pereira <sir.suriv@gmail.com>
Sat, 6 Aug 2016 22:20:52 +0000 (23:20 +0100)
committerPatrice Clement <monsieurp@gentoo.org>
Fri, 2 Sep 2016 17:18:14 +0000 (19:18 +0200)
* 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@gentoo.org>
sys-block/targetcli/targetcli-9999.ebuild

index e9948c906695204c414161a125d6aa3552c2f293..5701d51f4ee814e0a44e9e98b0f9827a31f97e12 100644 (file)
@@ -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
 }