diff options
author | 2010-01-24 14:22:49 +0000 | |
---|---|---|
committer | 2010-01-24 14:22:49 +0000 | |
commit | bdfb614c2e21d9d8c229c02d4a4742b4f7ff6281 (patch) | |
tree | 3c1238f59f587dce19fab5402f750bcde41b3f54 /dev-python/python-daemon | |
parent | Remove old version. (diff) | |
download | gentoo-2-bdfb614c2e21d9d8c229c02d4a4742b4f7ff6281.tar.gz gentoo-2-bdfb614c2e21d9d8c229c02d4a4742b4f7ff6281.tar.bz2 gentoo-2-bdfb614c2e21d9d8c229c02d4a4742b4f7ff6281.zip |
Fix src_test().
(Portage version: 15208-svn/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/python-daemon')
-rw-r--r-- | dev-python/python-daemon/python-daemon-1.5.2.ebuild | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/dev-python/python-daemon/python-daemon-1.5.2.ebuild b/dev-python/python-daemon/python-daemon-1.5.2.ebuild index d9b4168ce3b7..df53ac7c74ad 100644 --- a/dev-python/python-daemon/python-daemon-1.5.2.ebuild +++ b/dev-python/python-daemon/python-daemon-1.5.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-daemon/python-daemon-1.5.2.ebuild,v 1.1 2010/01/22 13:10:46 djc Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-daemon/python-daemon-1.5.2.ebuild,v 1.2 2010/01/24 14:22:49 arfrever Exp $ EAPI="2" SUPPORT_PYTHON_ABIS="1" @@ -19,11 +19,13 @@ IUSE="" DEPEND="dev-python/setuptools test? ( dev-python/minimock )" RDEPEND="dev-python/lockfile" - RESTRICT_PYTHON_ABIS="3.*" DOCS="ChangeLog" src_test() { - PYTHONPATH=. ${python} setup.py test + testing() { + PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" setup.py build -b "build-${PYTHON_ABI}" test + } + python_execute_function testing } |