diff options
author | 2009-11-04 19:29:23 +0000 | |
---|---|---|
committer | 2009-11-04 19:29:23 +0000 | |
commit | 0ffceadd087ad69e062a80ffc900e268e6719dac (patch) | |
tree | b767aaaecf686b2282f8149189e60b7070d9fe0e /dev-python | |
parent | Initial import. Ebuild by me. (diff) | |
download | gentoo-2-0ffceadd087ad69e062a80ffc900e268e6719dac.tar.gz gentoo-2-0ffceadd087ad69e062a80ffc900e268e6719dac.tar.bz2 gentoo-2-0ffceadd087ad69e062a80ffc900e268e6719dac.zip |
Version bump.
(Portage version: 14775-svn/cvs/Linux x86_64)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/virtualenv/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/virtualenv/virtualenv-1.4_rc1.ebuild | 28 |
2 files changed, 35 insertions, 1 deletions
diff --git a/dev-python/virtualenv/ChangeLog b/dev-python/virtualenv/ChangeLog index 76833d4c6ae2..e47e50e275ac 100644 --- a/dev-python/virtualenv/ChangeLog +++ b/dev-python/virtualenv/ChangeLog @@ -1,6 +1,12 @@ # 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.16 2009/10/02 23:27:58 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/ChangeLog,v 1.17 2009/11/04 19:29:23 arfrever Exp $ + +*virtualenv-1.4_rc1 (04 Nov 2009) + + 04 Nov 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + +virtualenv-1.4_rc1.ebuild: + Version bump. *virtualenv-1.3.4 (03 Oct 2009) diff --git a/dev-python/virtualenv/virtualenv-1.4_rc1.ebuild b/dev-python/virtualenv/virtualenv-1.4_rc1.ebuild new file mode 100644 index 000000000000..c4fb1b44cfe6 --- /dev/null +++ b/dev-python/virtualenv/virtualenv-1.4_rc1.ebuild @@ -0,0 +1,28 @@ +# 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_rc1.ebuild,v 1.1 2009/11/04 19:29:23 arfrever Exp $ + +EAPI="2" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils + +MY_P="${PN}-${PV/_/}" + +DESCRIPTION="Virtual Python Environment builder" +HOMEPAGE="http://pypi.python.org/pypi/virtualenv" +SRC_URI="http://pypi.python.org/packages/source/${PN:0:1}/${PN}/${MY_P}.tar.gz" + +LICENSE="MIT" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +SLOT="0" +IUSE="" + +RDEPEND=">=dev-python/setuptools-0.6_rc8" +DEPEND="${RDEPEND}" +RESTRICT_PYTHON_ABIS="3.*" + +S="${WORKDIR}/${MY_P}" + +PYTHON_MODNAME="virtualenv.py virtualenv_support" +DOCS="docs/index.txt" |