diff options
author | Patrick Lauer <patrick@gentoo.org> | 2010-01-09 00:16:18 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2010-01-09 00:16:18 +0000 |
commit | 86ca10eff94b9b38913db2e591059e0baadcbe3e (patch) | |
tree | 7d5281caa2e5a8bf7fc22f702579a2c1946e0e33 /dev-python | |
parent | old (diff) | |
download | gentoo-2-86ca10eff94b9b38913db2e591059e0baadcbe3e.tar.gz gentoo-2-86ca10eff94b9b38913db2e591059e0baadcbe3e.tar.bz2 gentoo-2-86ca10eff94b9b38913db2e591059e0baadcbe3e.zip |
Bump
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/snakeoil/ChangeLog | 9 | ||||
-rw-r--r-- | dev-python/snakeoil/snakeoil-0.3.6.ebuild | 49 |
2 files changed, 56 insertions, 2 deletions
diff --git a/dev-python/snakeoil/ChangeLog b/dev-python/snakeoil/ChangeLog index bf1022d03ceb..e362a2ec213b 100644 --- a/dev-python/snakeoil/ChangeLog +++ b/dev-python/snakeoil/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/snakeoil -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/snakeoil/ChangeLog,v 1.27 2009/12/27 14:31:57 patrick Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/snakeoil/ChangeLog,v 1.28 2010/01/09 00:16:18 patrick Exp $ + +*snakeoil-0.3.6 (09 Jan 2010) + + 09 Jan 2010; Patrick Lauer <patrick@gentoo.org> +snakeoil-0.3.6.ebuild: + Bump *snakeoil-0.3.5 (27 Dec 2009) diff --git a/dev-python/snakeoil/snakeoil-0.3.6.ebuild b/dev-python/snakeoil/snakeoil-0.3.6.ebuild new file mode 100644 index 000000000000..24180cda0b85 --- /dev/null +++ b/dev-python/snakeoil/snakeoil-0.3.6.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/snakeoil/snakeoil-0.3.6.ebuild,v 1.1 2010/01/09 00:16:18 patrick Exp $ + +EAPI="2" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils + +DESCRIPTION="Miscellaneous python utility code." +HOMEPAGE="http://www.pkgcore.org/" +SRC_URI="http://www.pkgcore.org/releases/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +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() { + validate_PYTHON_ABIS + + # 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 +} |