diff options
author | Michał Górny <mgorny@gentoo.org> | 2013-08-04 08:24:28 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2013-08-04 08:24:28 +0000 |
commit | e83b07723f2377daaab7ae23765360ecff1490f0 (patch) | |
tree | d8d1258d118084a0d548f672563ac1d70bf53f47 /eclass/python-r1.eclass | |
parent | Sync kmod dep in the live ebuild. (diff) | |
download | historical-e83b07723f2377daaab7ae23765360ecff1490f0.tar.gz historical-e83b07723f2377daaab7ae23765360ecff1490f0.tar.bz2 historical-e83b07723f2377daaab7ae23765360ecff1490f0.zip |
Drop the old PYTHON_COMPAT hack for python-exec.
Diffstat (limited to 'eclass/python-r1.eclass')
-rw-r--r-- | eclass/python-r1.eclass | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/eclass/python-r1.eclass b/eclass/python-r1.eclass index 1c0f6a722919..b9daad6f2667 100644 --- a/eclass/python-r1.eclass +++ b/eclass/python-r1.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/python-r1.eclass,v 1.55 2013/05/21 01:31:02 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python-r1.eclass,v 1.56 2013/08/04 08:24:28 mgorny Exp $ # @ECLASS: python-r1 # @MAINTAINER: @@ -67,11 +67,7 @@ inherit multibuild python-utils-r1 # PYTHON_COMPAT=( python{2_5,2_6,2_7} ) # @CODE if ! declare -p PYTHON_COMPAT &>/dev/null; then - if [[ ${CATEGORY}/${PN} == dev-python/python-exec ]]; then - PYTHON_COMPAT=( "${_PYTHON_ALL_IMPLS[@]}" ) - else - die 'PYTHON_COMPAT not declared.' - fi + die 'PYTHON_COMPAT not declared.' fi # @ECLASS-VARIABLE: PYTHON_COMPAT_OVERRIDE |