diff options
author | Jesus Rivero <neurogeek@gentoo.org> | 2009-07-15 03:12:08 +0000 |
---|---|---|
committer | Jesus Rivero <neurogeek@gentoo.org> | 2009-07-15 03:12:08 +0000 |
commit | 2973c91e1550b764371b818859fd1001b9ed7020 (patch) | |
tree | 98a305f8ccd3d0b6cbb08d9e06236ac142dfc78e /dev-python | |
parent | Fix SRC_URI for gt-static Qt4 amd64 thanks to James Rowe (bug #277790). (diff) | |
download | gentoo-2-2973c91e1550b764371b818859fd1001b9ed7020.tar.gz gentoo-2-2973c91e1550b764371b818859fd1001b9ed7020.tar.bz2 gentoo-2-2973c91e1550b764371b818859fd1001b9ed7020.zip |
Fixed tests. Move to EAPI 2. Closes bug #262608
(Portage version: 2.2_rc23/cvs/Linux i686)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/sphinx/ChangeLog | 5 | ||||
-rw-r--r-- | dev-python/sphinx/sphinx-0.6.2.ebuild | 7 |
2 files changed, 8 insertions, 4 deletions
diff --git a/dev-python/sphinx/ChangeLog b/dev-python/sphinx/ChangeLog index e67d7ce45bbb..5ff9cbb3eccc 100644 --- a/dev-python/sphinx/ChangeLog +++ b/dev-python/sphinx/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-python/sphinx # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.20 2009/07/05 21:05:58 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.21 2009/07/15 03:12:08 neurogeek Exp $ + + 15 Jul 2009; Jesus Rivero <neurogeek@gentoo.org> sphinx-0.6.2.ebuild: + Fixed tests. Move to EAPI 2. Closes bug #262608 05 Jul 2009; Alexis Ballier <aballier@gentoo.org> sphinx-0.6.2.ebuild: keyword ~x86-fbsd diff --git a/dev-python/sphinx/sphinx-0.6.2.ebuild b/dev-python/sphinx/sphinx-0.6.2.ebuild index 3861686bfa53..f1cbe1ad2548 100644 --- a/dev-python/sphinx/sphinx-0.6.2.ebuild +++ b/dev-python/sphinx/sphinx-0.6.2.ebuild @@ -1,8 +1,9 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-0.6.2.ebuild,v 1.2 2009/07/05 21:05:58 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-0.6.2.ebuild,v 1.3 2009/07/15 03:12:08 neurogeek Exp $ -inherit distutils multilib +EAPI="2" +inherit distutils MY_PN="Sphinx" MY_P="${MY_PN}-${PV}" @@ -46,7 +47,7 @@ src_install() { } src_test() { - PYTHONPATH="./build/lib" "${python}" tests/run.py || die "Tests failed" + PYTHONPATH="./build/lib" nosetests || die "Tests failed" } pkg_postinst() { |