summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMike Gilbert <floppym@gentoo.org>2014-02-22 17:01:58 +0000
committerMike Gilbert <floppym@gentoo.org>2014-02-22 17:01:58 +0000
commit4e17a4dc750ff4b844398ad3aa34546a75adf855 (patch)
tree8c4f7be1aea43f60576bcbadb2b37aadca7c44a3 /eclass
parentRemove old (diff)
downloadgentoo-2-4e17a4dc750ff4b844398ad3aa34546a75adf855.tar.gz
gentoo-2-4e17a4dc750ff4b844398ad3aa34546a75adf855.tar.bz2
gentoo-2-4e17a4dc750ff4b844398ad3aa34546a75adf855.zip
Add support for python3.4.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ChangeLog5
-rw-r--r--eclass/python-utils-r1.eclass8
2 files changed, 9 insertions, 4 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog
index b6d7c3ddd505..4e094030be0d 100644
--- a/eclass/ChangeLog
+++ b/eclass/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for eclass directory
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1144 2014/02/22 08:05:45 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1145 2014/02/22 17:01:58 floppym Exp $
+
+ 22 Feb 2014; Mike Gilbert <floppym@gentoo.org> python-utils-r1.eclass:
+ Add support for python3.4.
22 Feb 2014; Pacho Ramos <pacho@gentoo.org> gnome2-utils.eclass:
Be more friendly with SELinux (#499636 by Luis Ressel)
diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass
index 6cddd7e24d7d..65534deecdaf 100644
--- a/eclass/python-utils-r1.eclass
+++ b/eclass/python-utils-r1.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.46 2014/01/17 14:35:11 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.47 2014/02/22 17:01:58 floppym Exp $
# @ECLASS: python-utils-r1
# @MAINTAINER:
@@ -42,7 +42,7 @@ inherit eutils multilib toolchain-funcs
_PYTHON_ALL_IMPLS=(
jython2_5 jython2_7
pypy2_0
- python3_2 python3_3
+ python3_2 python3_3 python3_4
python2_6 python2_7
)
@@ -66,7 +66,7 @@ _python_impl_supported() {
# keep in sync with _PYTHON_ALL_IMPLS!
# (not using that list because inline patterns shall be faster)
case "${impl}" in
- python2_[67]|python3_[23]|pypy2_0|jython2_[57])
+ python2_[67]|python3_[234]|pypy2_0|jython2_[57])
return 0
;;
pypy1_[89]|python2_5|python3_1)
@@ -357,6 +357,8 @@ python_export() {
PYTHON_PKG_DEP='>=dev-lang/python-3.2.5-r2:3.2';;
python3.3)
PYTHON_PKG_DEP='>=dev-lang/python-3.3.2-r2:3.3';;
+ python*)
+ PYTHON_PKG_DEP="dev-lang/python:${impl#python}";;
pypy-c2.0)
PYTHON_PKG_DEP='>=virtual/pypy-2.0.2:2.0';;
jython2.5)