summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarien Zwart <marienz@gentoo.org>2012-03-29 12:47:35 +0000
committerMarien Zwart <marienz@gentoo.org>2012-03-29 12:47:35 +0000
commitb85074f425aede076ecb54c3266ecde444292c28 (patch)
treed5bab5babc3db3ca35d7a9fabe5599db94c14974 /eclass/python.eclass
parentVersion bump. (diff)
downloadgentoo-2-b85074f425aede076ecb54c3266ecde444292c28.tar.gz
gentoo-2-b85074f425aede076ecb54c3266ecde444292c28.tar.bz2
gentoo-2-b85074f425aede076ecb54c3266ecde444292c28.zip
Add more versions of pypy to the hardcoded mapping in python.eclass.
Diffstat (limited to 'eclass/python.eclass')
-rw-r--r--eclass/python.eclass7
1 files changed, 5 insertions, 2 deletions
diff --git a/eclass/python.eclass b/eclass/python.eclass
index d88cd35d8d1e..d11050a82997 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.153 2012/03/20 20:37:21 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.154 2012/03/29 12:47:35 marienz Exp $
# @ECLASS: python.eclass
# @MAINTAINER:
@@ -1307,7 +1307,10 @@ python_shebang_options_re = re.compile(r"^#![ \t]*${EPREFIX}/usr/bin/(?:jython|p
python_verification_output_re = re.compile("^GENTOO_PYTHON_TARGET_SCRIPT_PATH supported\n$")
pypy_versions_mapping = {
- "1.5": "2.7"
+ "1.5": "2.7",
+ "1.6": "2.7",
+ "1.7": "2.7",
+ "1.8": "2.7",
}
def get_PYTHON_ABI(python_interpreter):