summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMike Gilbert <floppym@gentoo.org>2012-06-10 14:23:43 +0000
committerMike Gilbert <floppym@gentoo.org>2012-06-10 14:23:43 +0000
commitb576c613fc315b8a8ed5440efe129dcf43e292b8 (patch)
tree405fb8e5ad96a0318547d76c19837c3c23eb0036 /eclass
parentfixed missing chost tag; fixed append-cppflags warning; added Variable to kee... (diff)
downloadgentoo-2-b576c613fc315b8a8ed5440efe129dcf43e292b8.tar.gz
gentoo-2-b576c613fc315b8a8ed5440efe129dcf43e292b8.tar.bz2
gentoo-2-b576c613fc315b8a8ed5440efe129dcf43e292b8.zip
Remove pypy1_7 from default PYTHON_COMPAT due to removal from tree. Add pypy1_9.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ChangeLog6
-rw-r--r--eclass/python-distutils-ng.eclass6
2 files changed, 8 insertions, 4 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog
index e30a1cdbd705..238b8d38c62e 100644
--- a/eclass/ChangeLog
+++ b/eclass/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for eclass directory
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.304 2012/06/10 14:21:20 hd_brummy Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.305 2012/06/10 14:23:43 floppym Exp $
+
+ 10 Jun 2012; Mike Gilbert <floppym@gentoo.org> python-distutils-ng.eclass:
+ Remove pypy1_7 from default PYTHON_COMPAT due to removal from tree. Add
+ pypy1_9.
10 Jun 2012; Joerg Bornkessel <hd_brummy@gentoo.org> vdr-plugin-2.eclass:
fixed missing chost tag; fixed append-cppflags warning; added Variable to
diff --git a/eclass/python-distutils-ng.eclass b/eclass/python-distutils-ng.eclass
index be125c2a4574..4aecc3ce12dc 100644
--- a/eclass/python-distutils-ng.eclass
+++ b/eclass/python-distutils-ng.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-distutils-ng.eclass,v 1.25 2012/05/26 09:46:23 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/python-distutils-ng.eclass,v 1.26 2012/06/10 14:23:43 floppym Exp $
# @ECLASS: python-distutils-ng
# @MAINTAINER:
@@ -38,7 +38,7 @@ if [[ -z "${PYTHON_COMPAT}" ]]; then
PYTHON_COMPAT=" python2_5 python2_6 python2_7"
PYTHON_COMPAT+=" python3_1 python3_2"
PYTHON_COMPAT+=" jython2_5"
- PYTHON_COMPAT+=" pypy1_7 pypy1_8"
+ PYTHON_COMPAT+=" pypy1_8 pypy1_9"
fi
# @ECLASS-VARIABLE: PYTHON_OPTIONAL
@@ -270,7 +270,7 @@ python-distutils-ng_newscript() {
done
if [[ -z "${default_impl}" ]]; then
- for impl in python{2_7,2_6,2_5,3_2,3_1} pypy{1_8,1_7} jython2_5; do
+ for impl in python{2_7,2_6,2_5,3_2,3_1} pypy{1_9,1_8,1_7} jython2_5; do
use "python_targets_${impl}" || continue
default_impl="${impl}"
break