diff options
author | Krzysztof Pawlik <nelchael@gentoo.org> | 2012-05-14 19:23:09 +0000 |
---|---|---|
committer | Krzysztof Pawlik <nelchael@gentoo.org> | 2012-05-14 19:23:09 +0000 |
commit | 6950293f2b379e65786d74c3d75ec1b382aeb36a (patch) | |
tree | 5cf60320fe694c9d6c4dff4b64df3bc7295e28e7 /eclass | |
parent | Only provide JRE. #371461 (diff) | |
download | historical-6950293f2b379e65786d74c3d75ec1b382aeb36a.tar.gz historical-6950293f2b379e65786d74c3d75ec1b382aeb36a.tar.bz2 historical-6950293f2b379e65786d74c3d75ec1b382aeb36a.zip |
Block older versions of sys-apps/portage that don't have improved COLLISION_IGNORE handling, see bug #410691.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 7 | ||||
-rw-r--r-- | eclass/python-distutils-ng.eclass | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 63b3da8cbc49..5f4dd34dc171 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for eclass directory # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.251 2012/05/11 10:46:32 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.252 2012/05/14 19:23:09 nelchael Exp $ + + 14 May 2012; Krzysztof Pawlik <nelchael@gentoo.org> + python-distutils-ng.eclass: + Block older versions of sys-apps/portage that don't have improved + COLLISION_IGNORE handling, see bug #410691. 11 May 2012; Tomáš Chvátal <scarabeus@gentoo.org> nsplugins.eclass: Actually check if the plugin file exist before creating symlink. Avoids diff --git a/eclass/python-distutils-ng.eclass b/eclass/python-distutils-ng.eclass index 7977ea6ed0fc..199f8ffb8efa 100644 --- a/eclass/python-distutils-ng.eclass +++ b/eclass/python-distutils-ng.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/python-distutils-ng.eclass,v 1.19 2012/05/06 03:20:45 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python-distutils-ng.eclass,v 1.20 2012/05/14 19:23:09 nelchael Exp $ # @ECLASS: python-distutils-ng # @MAINTAINER: @@ -66,6 +66,8 @@ case "${EAPI}" in die "Unsupported EAPI=${EAPI} (unknown) for python-distutils-ng.eclass" ;; esac +DEPEND="${DEPEND} !<sys-apps/portage-2.1.10.58" + # @FUNCTION: _python-distutils-ng_get_binary_for_implementation # @USAGE: implementation # @RETURN: Full path to Python binary for given implementation. |