diff options
author | Zac Medico <zmedico@gentoo.org> | 2012-02-13 23:50:12 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2012-02-13 23:50:12 +0000 |
commit | 91a7f58fa44b3c641877ac29fca4d8326ba3833c (patch) | |
tree | 4db8e0b246da0d21b8499f88af51662e61514792 /eclass/python.eclass | |
parent | Version bump (diff) | |
download | historical-91a7f58fa44b3c641877ac29fca4d8326ba3833c.tar.gz historical-91a7f58fa44b3c641877ac29fca4d8326ba3833c.tar.bz2 historical-91a7f58fa44b3c641877ac29fca4d8326ba3833c.zip |
Enable PyPy 1.8 support.
Merged from the progress overlay:
http://code.google.com/p/gentoo-progress/source/detail?r=1785
Diffstat (limited to 'eclass/python.eclass')
-rw-r--r-- | eclass/python.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/python.eclass b/eclass/python.eclass index 5fbdea53c496..1af1f549f657 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.149 2012/02/10 22:54:33 tommy Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.150 2012/02/13 23:50:12 zmedico 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) +_PYPY_GLOBALLY_SUPPORTED_ABIS=(2.7-pypy-1.7 2.7-pypy-1.8) _PYTHON_GLOBALLY_SUPPORTED_ABIS=(${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]} ${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]} ${_JYTHON_GLOBALLY_SUPPORTED_ABIS[@]} ${_PYPY_GLOBALLY_SUPPORTED_ABIS[@]}) # ================================================================================================ |