diff options
author | Jason Stubbs <jstubbs@gentoo.org> | 2004-02-27 04:07:29 +0000 |
---|---|---|
committer | Jason Stubbs <jstubbs@gentoo.org> | 2004-02-27 04:07:29 +0000 |
commit | bc61f9e713e03d3b31f7975bbb752b0de8aff449 (patch) | |
tree | 74a2fcb8f995d7182ac41ca6a2d57770f84db893 /dev-lang/python/python-2.3.3.ebuild | |
parent | Bumping gcc fix into stable. Removing old ebuilds. (diff) | |
download | historical-bc61f9e713e03d3b31f7975bbb752b0de8aff449.tar.gz historical-bc61f9e713e03d3b31f7975bbb752b0de8aff449.tar.bz2 historical-bc61f9e713e03d3b31f7975bbb752b0de8aff449.zip |
Removed portage version check again as it's preventing new installations.
Bug #43036.
Diffstat (limited to 'dev-lang/python/python-2.3.3.ebuild')
-rw-r--r-- | dev-lang/python/python-2.3.3.ebuild | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/dev-lang/python/python-2.3.3.ebuild b/dev-lang/python/python-2.3.3.ebuild index 8224a98fd214..e44abcd57e59 100644 --- a/dev-lang/python/python-2.3.3.ebuild +++ b/dev-lang/python/python-2.3.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.3.3.ebuild,v 1.17 2004/02/25 13:36:37 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.3.3.ebuild,v 1.18 2004/02/27 04:07:29 jstubbs Exp $ inherit flag-o-matic python @@ -43,14 +43,16 @@ PROVIDE="virtual/python" # add portage to DEPENDS otherwise it'll create a circular dependency # NOTE from Koeri: I'm reinstating this check as people are upgrading python # without upgrading portage. -pkg_setup() { - if ! has_version ">=sys-apps/portage-2.0.49-r16"; then - eerror "Dependency Failed! Requires >=sys-apps/portage-2.0.49-r16" - eerror "Please run: emerge portage" - eerror "before proceeding. (NOTE: do not use -u if portage wants you to upgrade python)" - die "Requires >=sys-apps/portage-2.0.49-r16" - fi -} +# NOTE from jstubbs: Removing this check once again as it's preventing new +# installations. Bug #43036 +#pkg_setup() { +# if ! has_version ">=sys-apps/portage-2.0.49-r16"; then +# eerror "Dependency Failed! Requires >=sys-apps/portage-2.0.49-r16" +# eerror "Please run: emerge portage" +# eerror "before proceeding. (NOTE: do not use -u if portage wants you to upgrade python)" +# die "Requires >=sys-apps/portage-2.0.49-r16" +# fi +#} src_unpack() { unpack ${A} |