summaryrefslogtreecommitdiff
path: root/eclass
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
commit088d3d3703a4d77543bfd5b421d29ef157494414 (patch)
treecaf76554047011ff460b87c28a776783e2b9a2c4 /eclass
parentAdd python_get_implementation_and_version(). (diff)
downloadgentoo-2-088d3d3703a4d77543bfd5b421d29ef157494414.tar.gz
gentoo-2-088d3d3703a4d77543bfd5b421d29ef157494414.tar.bz2
gentoo-2-088d3d3703a4d77543bfd5b421d29ef157494414.zip
Delete support for installation of Python packages for Python 3.0.
(Patch by Arfrever. Backported from python overlay.)
Diffstat (limited to '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[@]})