diff options
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/python-distutils-ng.eclass | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 00a10f4ba728..28bd20495e10 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.191 2012/03/26 20:33:42 nelchael Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.192 2012/03/28 14:21:55 marienz Exp $ + + 28 Mar 2012; Marien Zwart <marienz@gentoo.org> python-distutils-ng.eclass: + Try to unbreak dependency generation. 26 Mar 2012; Krzysztof Pawlik <nelchael@gentoo.org> python-distutils-ng.eclass: diff --git a/eclass/python-distutils-ng.eclass b/eclass/python-distutils-ng.eclass index d24cb0ef2226..6a6c75100894 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.7 2012/03/27 15:08:00 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python-distutils-ng.eclass,v 1.8 2012/03/28 14:21:55 marienz Exp $ # @ECLASS: python-distutils-ng # @MAINTAINER: @@ -102,11 +102,11 @@ for impl in ${PYTHON_COMPAT}; do dep_str="${impl/_/.}" case "${dep_str}" in python?.?) - dep_str="dev-lang/python:${impl: -3}" ;; + dep_str="dev-lang/python:${dep_str: -3}" ;; jython?.?) - dep_str="dev-java/jython:${impl: -3}" ;; + dep_str="dev-java/jython:${dep_str: -3}" ;; pypy?.?) - dep_str="dev-python/pypy:${impl: -3}" ;; + dep_str="dev-python/pypy:${dep_str: -3}" ;; *) die "Unsupported implementation: ${impl}" ;; esac |