summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Cakebread <pythonhead@gentoo.org>2008-05-20 23:38:36 +0000
committerRob Cakebread <pythonhead@gentoo.org>2008-05-20 23:38:36 +0000
commita5f71d415467c6b12a1abc105aad8dbd7b8deade (patch)
treea2f5e71d323c3a000247c2873f7fbca42467c31b /dev-python/virtualenv
parentBump ampache to 3.4 (diff)
downloadgentoo-2-a5f71d415467c6b12a1abc105aad8dbd7b8deade.tar.gz
gentoo-2-a5f71d415467c6b12a1abc105aad8dbd7b8deade.tar.bz2
gentoo-2-a5f71d415467c6b12a1abc105aad8dbd7b8deade.zip
Version bump, removed older. Added setuptools as RDEPEND.
(Portage version: 2.1.5)
Diffstat (limited to 'dev-python/virtualenv')
-rw-r--r--dev-python/virtualenv/ChangeLog8
-rw-r--r--dev-python/virtualenv/virtualenv-1.1.ebuild (renamed from dev-python/virtualenv/virtualenv-1.0.ebuild)8
2 files changed, 12 insertions, 4 deletions
diff --git a/dev-python/virtualenv/ChangeLog b/dev-python/virtualenv/ChangeLog
index a35f068ed24c..8d81aa77e189 100644
--- a/dev-python/virtualenv/ChangeLog
+++ b/dev-python/virtualenv/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for dev-python/virtualenv
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/ChangeLog,v 1.1 2008/04/03 00:24:53 pythonhead Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/ChangeLog,v 1.2 2008/05/20 23:38:36 pythonhead Exp $
+
+*virtualenv-1.1 (20 May 2008)
+
+ 20 May 2008; Rob Cakebread <pythonhead@gentoo.org> -virtualenv-1.0.ebuild,
+ +virtualenv-1.1.ebuild:
+ Version bump, removed older. Added setuptools as RDEPEND.
*virtualenv-1.0 (03 Apr 2008)
diff --git a/dev-python/virtualenv/virtualenv-1.0.ebuild b/dev-python/virtualenv/virtualenv-1.1.ebuild
index f5e9deb9ca89..8c101448824c 100644
--- a/dev-python/virtualenv/virtualenv-1.0.ebuild
+++ b/dev-python/virtualenv/virtualenv-1.1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/virtualenv-1.0.ebuild,v 1.2 2008/04/03 03:56:13 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/virtualenv-1.1.ebuild,v 1.1 2008/05/20 23:38:36 pythonhead Exp $
NEED_PYTHON="2.3"
@@ -13,11 +13,13 @@ LICENSE="MIT"
KEYWORDS="~x86"
SLOT="0"
IUSE=""
-DEPEND=">=dev-python/setuptools-0.6_rc7-r1"
+RDEPEND=">=dev-python/setuptools-0.6_rc8"
+DEPEND="${RDEPEND}"
DOCS="docs/index.txt"
src_unpack() {
unpack ${A}
cd "${S}"
- rm ez_setup.py
+ #We have setuptools, don't need this installed.
+ rm support-files/ez_setup.py
}