summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Cakebread <pythonhead@gentoo.org>2009-05-03 16:18:01 +0000
committerRob Cakebread <pythonhead@gentoo.org>2009-05-03 16:18:01 +0000
commitad548ba293284e156cd9ea6690dcc13f12181d57 (patch)
tree507b85822a4311e358a871b9a46fb86dc1ce6f0b /dev-python/virtualenv
parentRespect USE="gnutls". (diff)
downloadgentoo-2-ad548ba293284e156cd9ea6690dcc13f12181d57.tar.gz
gentoo-2-ad548ba293284e156cd9ea6690dcc13f12181d57.tar.bz2
gentoo-2-ad548ba293284e156cd9ea6690dcc13f12181d57.zip
Version bump.
(Portage version: 2.2_rc32/cvs/Linux i686)
Diffstat (limited to 'dev-python/virtualenv')
-rw-r--r--dev-python/virtualenv/ChangeLog8
-rw-r--r--dev-python/virtualenv/virtualenv-1.3.3.ebuild24
2 files changed, 31 insertions, 1 deletions
diff --git a/dev-python/virtualenv/ChangeLog b/dev-python/virtualenv/ChangeLog
index 849f219e0de7..843b88d106fb 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.9 2009/04/12 18:06:30 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/ChangeLog,v 1.10 2009/05/03 16:18:01 pythonhead Exp $
+
+*virtualenv-1.3.3 (03 May 2009)
+
+ 03 May 2009; Rob Cakebread <pythonhead@gentoo.org>
+ +virtualenv-1.3.3.ebuild:
+ Version bump.
12 Apr 2009; Brent Baude <ranger@gentoo.org> virtualenv-1.3.2.ebuild:
stable ppc64, bug 263853
diff --git a/dev-python/virtualenv/virtualenv-1.3.3.ebuild b/dev-python/virtualenv/virtualenv-1.3.3.ebuild
new file mode 100644
index 000000000000..b832454a81b9
--- /dev/null
+++ b/dev-python/virtualenv/virtualenv-1.3.3.ebuild
@@ -0,0 +1,24 @@
+# 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.3.3.ebuild,v 1.1 2009/05/03 16:18:01 pythonhead Exp $
+
+NEED_PYTHON="2.3"
+
+inherit distutils
+
+DESCRIPTION="Virtual Python Environment builder"
+HOMEPAGE="http://pypi.python.org/pypi/virtualenv"
+SRC_URI="http://pypi.python.org/packages/source/v/${PN}/${P}.tar.gz"
+LICENSE="MIT"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+SLOT="0"
+IUSE=""
+RDEPEND=">=dev-python/setuptools-0.6_rc8"
+DEPEND="${RDEPEND}"
+DOCS="docs/index.txt"
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ rm support-files/ez_setup.py
+}