diff options
author | Ian Delaney <idella4@gentoo.org> | 2015-01-11 00:14:40 +0000 |
---|---|---|
committer | Ian Delaney <idella4@gentoo.org> | 2015-01-11 00:14:40 +0000 |
commit | b0e51456560e446908a9ff82a4b87446111f8a45 (patch) | |
tree | 9f1fe51bffd89c998dc1bf787d540ac88ba0e6ff /dev-python | |
parent | Version bump. (diff) | |
download | gentoo-2-b0e51456560e446908a9ff82a4b87446111f8a45.tar.gz gentoo-2-b0e51456560e446908a9ff82a4b87446111f8a45.tar.bz2 gentoo-2-b0e51456560e446908a9ff82a4b87446111f8a45.zip |
revbump; conversion -> distutils-r1, rm old
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/turbokid/ChangeLog | 11 | ||||
-rw-r--r-- | dev-python/turbokid/turbokid-1.0.5-r1.ebuild (renamed from dev-python/turbokid/turbokid-1.0.5.ebuild) | 25 |
2 files changed, 21 insertions, 15 deletions
diff --git a/dev-python/turbokid/ChangeLog b/dev-python/turbokid/ChangeLog index 07af14488ef0..beee178cf9ef 100644 --- a/dev-python/turbokid/ChangeLog +++ b/dev-python/turbokid/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/turbokid -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/turbokid/ChangeLog,v 1.7 2010/07/09 13:32:00 arfrever Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/turbokid/ChangeLog,v 1.8 2015/01/11 00:14:40 idella4 Exp $ + +*turbokid-1.0.5-r1 (11 Jan 2015) + + 11 Jan 2015; Ian Delaney <idella4@gentoo.org> +turbokid-1.0.5-r1.ebuild, + -turbokid-1.0.5.ebuild: + revbump; conversion -> distutils-r1, rm old *turbokid-1.0.5 (09 Jul 2010) @@ -34,4 +40,3 @@ 05 Feb 2007; Tiziano Müller <dev-zero@gentoo.org> turbokid-0.9.9.ebuild, +metadata.xml: Corrected src_test and dependencies. Added ~amd64 keyword and NEED_PYTHON - diff --git a/dev-python/turbokid/turbokid-1.0.5.ebuild b/dev-python/turbokid/turbokid-1.0.5-r1.ebuild index f7336ed07b9b..ef48dffa1e0a 100644 --- a/dev-python/turbokid/turbokid-1.0.5.ebuild +++ b/dev-python/turbokid/turbokid-1.0.5-r1.ebuild @@ -1,14 +1,11 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/turbokid/turbokid-1.0.5.ebuild,v 1.2 2010/12/26 15:48:05 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/turbokid/turbokid-1.0.5-r1.ebuild,v 1.1 2015/01/11 00:14:40 idella4 Exp $ -EAPI="3" -PYTHON_DEPEND="2" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.*" -DISTUTILS_SRC_TEST="setup.py" +EAPI=5 +PYTHON_COMPAT=( python2_7 ) -inherit distutils +inherit distutils-r1 MY_PN="TurboKid" MY_P="${MY_PN}-${PV}" @@ -24,7 +21,11 @@ IUSE="test" S="${WORKDIR}/${MY_P}" -RDEPEND=">=dev-python/kid-0.9.6" -DEPEND="${RDEPEND} - dev-python/setuptools - test? ( dev-python/nose )" +RDEPEND=">=dev-python/kid-0.9.6[${PYTHON_USEDEP}]" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + test? ( ${RDEPEND} + dev-python/nose[${PYTHON_USEDEP}] )" + +python_test() { + esetup.py test +} |