summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarien Zwart <marienz@gentoo.org>2012-06-09 10:01:19 +0000
committerMarien Zwart <marienz@gentoo.org>2012-06-09 10:01:19 +0000
commita9fdf3f23ea5cb9a2b5680a0d35c8b4d88567f17 (patch)
tree762c3d9180394b65bba5e050988950f7d963f158 /eclass/python.eclass
parent[bump] dev-perl/XML-DT-0.590.0 (diff)
downloadgentoo-2-a9fdf3f23ea5cb9a2b5680a0d35c8b4d88567f17.tar.gz
gentoo-2-a9fdf3f23ea5cb9a2b5680a0d35c8b4d88567f17.tar.bz2
gentoo-2-a9fdf3f23ea5cb9a2b5680a0d35c8b4d88567f17.zip
Add pypy-1.9 to the list of supported python ABIs.
Diffstat (limited to 'eclass/python.eclass')
-rw-r--r--eclass/python.eclass5
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/python.eclass b/eclass/python.eclass
index d11050a82997..3dbb3e15c566 100644
--- a/eclass/python.eclass
+++ b/eclass/python.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.eclass,v 1.154 2012/03/29 12:47:35 marienz Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.155 2012/06/09 10:01:19 marienz Exp $
# @ECLASS: python.eclass
# @MAINTAINER:
@@ -30,7 +30,7 @@ fi
_CPYTHON2_GLOBALLY_SUPPORTED_ABIS=(2.4 2.5 2.6 2.7)
_CPYTHON3_GLOBALLY_SUPPORTED_ABIS=(3.1 3.2)
_JYTHON_GLOBALLY_SUPPORTED_ABIS=(2.5-jython)
-_PYPY_GLOBALLY_SUPPORTED_ABIS=(2.7-pypy-1.7 2.7-pypy-1.8)
+_PYPY_GLOBALLY_SUPPORTED_ABIS=(2.7-pypy-1.7 2.7-pypy-1.8 2.7-pypy-1.9)
_PYTHON_GLOBALLY_SUPPORTED_ABIS=(${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]} ${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]} ${_JYTHON_GLOBALLY_SUPPORTED_ABIS[@]} ${_PYPY_GLOBALLY_SUPPORTED_ABIS[@]})
# ================================================================================================
@@ -1311,6 +1311,7 @@ pypy_versions_mapping = {
"1.6": "2.7",
"1.7": "2.7",
"1.8": "2.7",
+ "1.9": "2.7",
}
def get_PYTHON_ABI(python_interpreter):