diff options
author | Pacho Ramos <pacho@gentoo.org> | 2015-02-09 10:53:49 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2015-02-09 10:53:49 +0000 |
commit | ad5851d76f47446f748d443f3d904ea518b67eab (patch) | |
tree | de7bbd21c9c8a47aafdd0078f03c9ce583ec2810 /dev-python/snakeoil | |
parent | Add warning about needing chromium use flag too (diff) | |
download | gentoo-2-ad5851d76f47446f748d443f3d904ea518b67eab.tar.gz gentoo-2-ad5851d76f47446f748d443f3d904ea518b67eab.tar.bz2 gentoo-2-ad5851d76f47446f748d443f3d904ea518b67eab.zip |
Drop old version using deprecated eclasses and old EAPI
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'dev-python/snakeoil')
-rw-r--r-- | dev-python/snakeoil/ChangeLog | 5 | ||||
-rw-r--r-- | dev-python/snakeoil/snakeoil-0.5.2.ebuild | 55 |
2 files changed, 4 insertions, 56 deletions
diff --git a/dev-python/snakeoil/ChangeLog b/dev-python/snakeoil/ChangeLog index 9a9e5ccb1815..495a3887a319 100644 --- a/dev-python/snakeoil/ChangeLog +++ b/dev-python/snakeoil/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-python/snakeoil # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/snakeoil/ChangeLog,v 1.74 2015/01/08 20:07:28 dolsen Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/snakeoil/ChangeLog,v 1.75 2015/02/09 10:53:49 pacho Exp $ + + 09 Feb 2015; Pacho Ramos <pacho@gentoo.org> -snakeoil-0.5.2.ebuild: + Drop old version using deprecated eclasses and old EAPI 08 Jan 2015; Brian Dolbec <dolsen@gentoo.org> snakeoil-0.5.3.ebuild: Add python-3.4 to the PYTHON_COMPAT list with Tim's blessing. diff --git a/dev-python/snakeoil/snakeoil-0.5.2.ebuild b/dev-python/snakeoil/snakeoil-0.5.2.ebuild deleted file mode 100644 index 079f1e790cc0..000000000000 --- a/dev-python/snakeoil/snakeoil-0.5.2.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/snakeoil/snakeoil-0.5.2.ebuild,v 1.5 2014/10/18 17:29:33 vapier Exp $ - -EAPI="2" -SUPPORT_PYTHON_ABIS="1" - -PYTHON_ABI="2.5 2.6 2.7 3.1 3.2" -inherit distutils - -DESCRIPTION="Miscellaneous python utility code" -HOMEPAGE="http://snakeoil.googlecode.com/" -SRC_URI="http://snakeoil.googlecode.com/files/${P}.tar.bz2" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="" - -DOCS="AUTHORS NEWS" - -RDEPEND="!dev-lang/python-exec:2" - -pkg_setup() { - # disable snakeoil 2to3 caching - unset PY2TO3_CACHEDIR - python_pkg_setup - - # A hack to install for all versions of Python in the system. - # pkgcore needs it to support upgrading to a different Python slot. - PYTHON_ABIS="" - local python_interpreter - for python_interpreter in /usr/bin/python{2.[4-9],3.[1-9]}; do - if [[ -x "${python_interpreter}" ]]; then - PYTHON_ABIS+=" ${python_interpreter#/usr/bin/python}" - fi - done - export PYTHON_ABIS="${PYTHON_ABIS# }" -} - -src_test() { - testing() { - local tempdir - tempdir="${T}/tests/python-${PYTHON_ABI}" - mkdir -p "${tempdir}" || die "tempdir creation failed" - cp -r "${S}" "${tempdir}" || die "test copy failed" - cd "${tempdir}/${P}" - PYTHONPATH="$(ls -d build-${PYTHON_ABI}/lib*)" "$(PYTHON)" setup.py build -b "build-${PYTHON_ABI}" test - } - python_execute_function testing -} - -src_install() { - distutils_src_install -} |