diff options
author | Dirkjan Ochtman <djc@gentoo.org> | 2011-11-30 16:14:55 +0000 |
---|---|---|
committer | Dirkjan Ochtman <djc@gentoo.org> | 2011-11-30 16:14:55 +0000 |
commit | af9aba09e9b8c02146a252877f2a0e7a8781c894 (patch) | |
tree | a0f10226ec6f55911cb3a1c9033c1e68537987cc /dev-python/virtualenv | |
parent | Marked ~hppa (Dakon). (diff) | |
download | gentoo-2-af9aba09e9b8c02146a252877f2a0e7a8781c894.tar.gz gentoo-2-af9aba09e9b8c02146a252877f2a0e7a8781c894.tar.bz2 gentoo-2-af9aba09e9b8c02146a252877f2a0e7a8781c894.zip |
Version bump to 1.7 (and enable tests).
(Portage version: 2.1.10.39/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/virtualenv')
-rw-r--r-- | dev-python/virtualenv/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/virtualenv/virtualenv-1.7.ebuild | 24 |
2 files changed, 30 insertions, 1 deletions
diff --git a/dev-python/virtualenv/ChangeLog b/dev-python/virtualenv/ChangeLog index bf06c082924a..bcdcc8a96f98 100644 --- a/dev-python/virtualenv/ChangeLog +++ b/dev-python/virtualenv/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/virtualenv # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/ChangeLog,v 1.63 2011/08/12 07:36:47 djc Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/ChangeLog,v 1.64 2011/11/30 16:14:55 djc Exp $ + +*virtualenv-1.7 (30 Nov 2011) + + 30 Nov 2011; Dirkjan Ochtman <djc@gentoo.org> +virtualenv-1.7.ebuild: + Version bump to 1.7 (and enable tests). *virtualenv-1.6.4 (12 Aug 2011) diff --git a/dev-python/virtualenv/virtualenv-1.7.ebuild b/dev-python/virtualenv/virtualenv-1.7.ebuild new file mode 100644 index 000000000000..ca560a3a2773 --- /dev/null +++ b/dev-python/virtualenv/virtualenv-1.7.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/virtualenv-1.7.ebuild,v 1.1 2011/11/30 16:14:55 djc Exp $ + +EAPI="3" +SUPPORT_PYTHON_ABIS="1" +DISTUTILS_SRC_TEST="nosetests" + +inherit distutils + +DESCRIPTION="Virtual Python Environment builder" +HOMEPAGE="http://pypi.python.org/pypi/virtualenv" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris" +SLOT="0" +IUSE="" + +DEPEND="dev-python/setuptools" +RDEPEND="${DEPEND}" + +DOCS="docs/index.txt docs/news.txt" +PYTHON_MODNAME="virtualenv.py virtualenv_support" |