diff options
author | Brian Harring <ferringb@gentoo.org> | 2011-11-30 22:53:11 +0000 |
---|---|---|
committer | Brian Harring <ferringb@gentoo.org> | 2011-11-30 22:53:11 +0000 |
commit | 6c7582a2446be9ffe15bd6c26096f959ef0719ea (patch) | |
tree | 4585e829bb9a364681b827945da278ed37ce1e36 /dev-python/snakeoil | |
parent | Fixed sflphone dependency on dbus-c++ (bug #392219). (diff) | |
download | gentoo-2-6c7582a2446be9ffe15bd6c26096f959ef0719ea.tar.gz gentoo-2-6c7582a2446be9ffe15bd6c26096f959ef0719ea.tar.bz2 gentoo-2-6c7582a2446be9ffe15bd6c26096f959ef0719ea.zip |
bugfix release, wipe older versions in the process
(Portage version: 2.1.10.37/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/snakeoil')
-rw-r--r-- | dev-python/snakeoil/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/snakeoil/snakeoil-0.4.4.ebuild | 55 | ||||
-rw-r--r-- | dev-python/snakeoil/snakeoil-0.4.5.ebuild (renamed from dev-python/snakeoil/snakeoil-0.4.3.ebuild) | 5 |
3 files changed, 8 insertions, 60 deletions
diff --git a/dev-python/snakeoil/ChangeLog b/dev-python/snakeoil/ChangeLog index 799c2808ef6a..1fda1783baf1 100644 --- a/dev-python/snakeoil/ChangeLog +++ b/dev-python/snakeoil/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/snakeoil # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/snakeoil/ChangeLog,v 1.48 2011/11/11 10:41:38 ferringb Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/snakeoil/ChangeLog,v 1.49 2011/11/30 22:53:11 ferringb Exp $ + +*snakeoil-0.4.5 (30 Nov 2011) + + 30 Nov 2011; Brian Harring <ferringb@gentoo.org> -snakeoil-0.4.3.ebuild, + -snakeoil-0.4.4.ebuild, +snakeoil-0.4.5.ebuild: + Bugfix release, wipe older versions in the process *snakeoil-0.4.4-r1 (11 Nov 2011) diff --git a/dev-python/snakeoil/snakeoil-0.4.4.ebuild b/dev-python/snakeoil/snakeoil-0.4.4.ebuild deleted file mode 100644 index b6b312d27f6a..000000000000 --- a/dev-python/snakeoil/snakeoil-0.4.4.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/snakeoil/snakeoil-0.4.4.ebuild,v 1.1 2011/10/27 07:40:26 ferringb Exp $ - -EAPI="2" -SUPPORT_PYTHON_ABIS="1" - -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 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="" - -DEPEND="!<sys-apps/pkgcore-0.4.7.8" -RDEPEND=${DEPEND} - -DOCS="AUTHORS NEWS" - -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 -} diff --git a/dev-python/snakeoil/snakeoil-0.4.3.ebuild b/dev-python/snakeoil/snakeoil-0.4.5.ebuild index 2cc53e9a6dbb..4fddab0fbcae 100644 --- a/dev-python/snakeoil/snakeoil-0.4.3.ebuild +++ b/dev-python/snakeoil/snakeoil-0.4.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/snakeoil/snakeoil-0.4.3.ebuild,v 1.1 2011/09/28 03:54:22 ferringb Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/snakeoil/snakeoil-0.4.5.ebuild,v 1.1 2011/11/30 22:53:11 ferringb Exp $ EAPI="2" SUPPORT_PYTHON_ABIS="1" @@ -16,9 +16,6 @@ SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" IUSE="" -DEPEND="!<sys-apps/pkgcore-0.4.7.8" -RDEPEND=${DEPEND} - DOCS="AUTHORS NEWS" pkg_setup() { |