summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirkjan Ochtman <djc@gentoo.org>2011-07-08 07:47:30 +0000
committerDirkjan Ochtman <djc@gentoo.org>2011-07-08 07:47:30 +0000
commit3c04be7fa4150d70e469144049e427e3177b01ed (patch)
treecd7bdf18f82afc4fd1ec716a347ef1068f638fe7 /eclass/python.eclass
parentAdd python_get_implementation_and_version(). (diff)
downloadhistorical-3c04be7fa4150d70e469144049e427e3177b01ed.tar.gz
historical-3c04be7fa4150d70e469144049e427e3177b01ed.tar.bz2
historical-3c04be7fa4150d70e469144049e427e3177b01ed.zip
Delete support for installation of Python packages for Python 3.0.
(Patch by Arfrever. Backported from python overlay.)
Diffstat (limited to 'eclass/python.eclass')
-rw-r--r--eclass/python.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/python.eclass b/eclass/python.eclass
index e9c17b16e8ef..0252a5a5aa9a 100644
--- a/eclass/python.eclass
+++ b/eclass/python.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.124 2011/07/08 07:46:53 djc Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.125 2011/07/08 07:47:30 djc Exp $
# @ECLASS: python.eclass
# @MAINTAINER:
@@ -16,7 +16,7 @@ if ! has "${EAPI:-0}" 0 1 2 3; then
fi
_CPYTHON2_GLOBALLY_SUPPORTED_ABIS=(2.4 2.5 2.6 2.7)
-_CPYTHON3_GLOBALLY_SUPPORTED_ABIS=(3.0 3.1 3.2 3.3)
+_CPYTHON3_GLOBALLY_SUPPORTED_ABIS=(3.1 3.2 3.3)
_JYTHON_GLOBALLY_SUPPORTED_ABIS=(2.5-jython)
_PYTHON_GLOBALLY_SUPPORTED_ABIS=(${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]} ${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]} ${_JYTHON_GLOBALLY_SUPPORTED_ABIS[@]})