diff options
author | 2011-04-18 23:15:48 +0000 | |
---|---|---|
committer | 2011-04-18 23:15:48 +0000 | |
commit | 6b421235a41056c2760317f4cee8063cacc3481d (patch) | |
tree | 84dacb340ddb446b2d53b84575dfd356a155ee46 | |
parent | Delete older ebuild. (diff) | |
download | gentoo-2-6b421235a41056c2760317f4cee8063cacc3481d.tar.gz gentoo-2-6b421235a41056c2760317f4cee8063cacc3481d.tar.bz2 gentoo-2-6b421235a41056c2760317f4cee8063cacc3481d.zip |
Fix NameError with Python 3 caused by Python issue #11276.
(Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
-rw-r--r-- | dev-python/beaker/ChangeLog | 10 | ||||
-rw-r--r-- | dev-python/beaker/beaker-1.5.4-r1.ebuild | 43 |
2 files changed, 51 insertions, 2 deletions
diff --git a/dev-python/beaker/ChangeLog b/dev-python/beaker/ChangeLog index 00d2f4b8dc99..c9b168123d53 100644 --- a/dev-python/beaker/ChangeLog +++ b/dev-python/beaker/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/beaker -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/beaker/ChangeLog,v 1.31 2010/12/09 13:17:05 xmw Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/beaker/ChangeLog,v 1.32 2011/04/18 23:15:48 arfrever Exp $ + +*beaker-1.5.4-r1 (18 Apr 2011) + + 18 Apr 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + +beaker-1.5.4-r1.ebuild: + Fix NameError with Python 3 caused by Python issue #11276. 09 Dec 2010; Michael Weber <xmw@gentoo.org> beaker-1.5.4.ebuild: add ~sparc (bug 348213) diff --git a/dev-python/beaker/beaker-1.5.4-r1.ebuild b/dev-python/beaker/beaker-1.5.4-r1.ebuild new file mode 100644 index 000000000000..8fc6742b16b0 --- /dev/null +++ b/dev-python/beaker/beaker-1.5.4-r1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/beaker/beaker-1.5.4-r1.ebuild,v 1.1 2011/04/18 23:15:48 arfrever Exp $ + +EAPI="3" +SUPPORT_PYTHON_ABIS="1" +#PYTHON_TESTS_RESTRICTED_ABIS="3.*" +#DISTUTILS_SRC_TEST="nosetests" + +inherit distutils + +MY_PN="Beaker" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="A Session and Caching library with WSGI Middleware" +HOMEPAGE="http://beaker.groovie.org/ http://pypi.python.org/pypi/Beaker" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 ~arm ppc ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" +IUSE="test" + +DEPEND="dev-python/setuptools + test? ( dev-python/nose dev-python/webtest )" +RDEPEND="" + +S="${WORKDIR}/${MY_P}" + +src_prepare() { + distutils_src_prepare + + # Workaround for http://bugs.python.org/issue11276. + sed -e "s/import anydbm/& as anydbm/" -i beaker/container.py +} + +src_test() { + testing() { + [[ "${PYTHON_ABI}" == 3.* ]] && return + PYTHONPATH="build-${PYTHON_ABI}/lib" nosetests + } + python_execute_function testing +} |