diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-06-04 01:59:49 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-06-04 01:59:49 +0000 |
commit | d0f2dc7c01c9522a698835ceca716b6228af62a4 (patch) | |
tree | a15dcf2b49b55dcd31b091e93c7a9b59ae1c2971 /dev-python/virtualenv | |
parent | Add python3.3 support. (diff) | |
download | gentoo-2-d0f2dc7c01c9522a698835ceca716b6228af62a4.tar.gz gentoo-2-d0f2dc7c01c9522a698835ceca716b6228af62a4.tar.bz2 gentoo-2-d0f2dc7c01c9522a698835ceca716b6228af62a4.zip |
Use multiline PATCHES array and drop unnecessary directory argument for tests.
(Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'dev-python/virtualenv')
-rw-r--r-- | dev-python/virtualenv/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/virtualenv/virtualenv-1.9.1-r1.ebuild | 10 |
2 files changed, 11 insertions, 5 deletions
diff --git a/dev-python/virtualenv/ChangeLog b/dev-python/virtualenv/ChangeLog index 04061e36d917..64e40c788260 100644 --- a/dev-python/virtualenv/ChangeLog +++ b/dev-python/virtualenv/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/virtualenv # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/ChangeLog,v 1.85 2013/06/04 01:56:30 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/ChangeLog,v 1.86 2013/06/04 01:59:49 radhermit Exp $ + + 04 Jun 2013; Tim Harder <radhermit@gentoo.org> virtualenv-1.9.1-r1.ebuild: + Use multiline PATCHES array and drop unnecessary directory argument for + tests. 04 Jun 2013; Tim Harder <radhermit@gentoo.org> virtualenv-1.9.1-r1.ebuild: Add python3.3 support. diff --git a/dev-python/virtualenv/virtualenv-1.9.1-r1.ebuild b/dev-python/virtualenv/virtualenv-1.9.1-r1.ebuild index 6f72c40afad2..daebe31960b4 100644 --- a/dev-python/virtualenv/virtualenv-1.9.1-r1.ebuild +++ b/dev-python/virtualenv/virtualenv-1.9.1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/virtualenv-1.9.1-r1.ebuild,v 1.4 2013/06/04 01:56:30 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/virtualenv-1.9.1-r1.ebuild,v 1.5 2013/06/04 01:59:49 radhermit Exp $ EAPI="5" PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} ) @@ -28,8 +28,10 @@ DOCS="docs/index.txt docs/news.txt" PYTHON_MODNAME="virtualenv.py virtualenv_support" # let the python eclass handle script versioning -PATCHES=( "${FILESDIR}"/${PN}-1.8.2-no-versioned-script.patch - "${FILESDIR}"/${P}-pypy.patch ) +PATCHES=( + "${FILESDIR}"/${PN}-1.8.2-no-versioned-script.patch + "${FILESDIR}"/${P}-pypy.patch +) python_compile_all() { use doc && emake -C docs html @@ -40,5 +42,5 @@ python_install_all() { } python_test() { - nosetests "${S}"/tests || die + nosetests || die } |