diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-11-15 18:06:09 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-11-15 18:06:09 +0000 |
commit | 2971f9310bc486ced31e6d19d960c1fd551081c3 (patch) | |
tree | 15de6be277fe095350a88bbf28b2f0abc4c5b37e /dev-python/virtualenv | |
parent | Version bump. (diff) | |
download | gentoo-2-2971f9310bc486ced31e6d19d960c1fd551081c3.tar.gz gentoo-2-2971f9310bc486ced31e6d19d960c1fd551081c3.tar.bz2 gentoo-2-2971f9310bc486ced31e6d19d960c1fd551081c3.zip |
Restrict Python 2.7 (bug #292409).
(Portage version: 14821-svn/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/virtualenv')
-rw-r--r-- | dev-python/virtualenv/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/virtualenv/virtualenv-1.4.2.ebuild | 5 |
2 files changed, 8 insertions, 3 deletions
diff --git a/dev-python/virtualenv/ChangeLog b/dev-python/virtualenv/ChangeLog index a830aeae580b..3095fe3b2929 100644 --- a/dev-python/virtualenv/ChangeLog +++ b/dev-python/virtualenv/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/virtualenv # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/ChangeLog,v 1.19 2009/11/15 18:01:47 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/ChangeLog,v 1.20 2009/11/15 18:06:09 arfrever Exp $ + + 15 Nov 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + virtualenv-1.4.2.ebuild: + Restrict Python 2.7 (bug #292409). *virtualenv-1.4.2 (15 Nov 2009) diff --git a/dev-python/virtualenv/virtualenv-1.4.2.ebuild b/dev-python/virtualenv/virtualenv-1.4.2.ebuild index 127c00828ad4..b61751d3ad22 100644 --- a/dev-python/virtualenv/virtualenv-1.4.2.ebuild +++ b/dev-python/virtualenv/virtualenv-1.4.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/virtualenv-1.4.2.ebuild,v 1.1 2009/11/15 18:01:47 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/virtualenv-1.4.2.ebuild,v 1.2 2009/11/15 18:06:09 arfrever Exp $ EAPI="2" SUPPORT_PYTHON_ABIS="1" @@ -18,7 +18,8 @@ IUSE="" RDEPEND=">=dev-python/setuptools-0.6_rc8" DEPEND="${RDEPEND}" -RESTRICT_PYTHON_ABIS="3.*" +# 2.7: Bug #292409 +RESTRICT_PYTHON_ABIS="2.7 3.*" PYTHON_MODNAME="virtualenv.py virtualenv_support" DOCS="docs/index.txt docs/news.txt" |