summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2012-10-15 15:01:18 +0000
committerMichał Górny <mgorny@gentoo.org>2012-10-15 15:01:18 +0000
commit09b58b039752c159f1aa563a63cbc1f892d99a41 (patch)
treea0e99219b230f606dfe963bea8a4bdf640724bb6 /eclass
parentVersion bump. (diff)
downloadhistorical-09b58b039752c159f1aa563a63cbc1f892d99a41.tar.gz
historical-09b58b039752c159f1aa563a63cbc1f892d99a41.tar.bz2
historical-09b58b039752c159f1aa563a63cbc1f892d99a41.zip
Enable EAPI 5 support.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ChangeLog6
-rw-r--r--eclass/distutils-r1.eclass4
-rw-r--r--eclass/python-r1.eclass4
3 files changed, 9 insertions, 5 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog
index a5f992a04284..363ac5415c0c 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.446 2012/10/15 12:51:20 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.447 2012/10/15 15:01:18 mgorny Exp $
+
+ 15 Oct 2012; Michał Górny <mgorny@gentoo.org> distutils-r1.eclass,
+ python-r1.eclass:
+ Enable EAPI 5 support.
15 Oct 2012; Michał Górny <mgorny@gentoo.org> distutils-r1.eclass:
Fix missing wrapper symlinks when first supported Python implementation is
diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass
index 863240056a8c..2ab80ae04d3c 100644
--- a/eclass/distutils-r1.eclass
+++ b/eclass/distutils-r1.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/distutils-r1.eclass,v 1.2 2012/10/15 12:51:20 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.3 2012/10/15 15:01:18 mgorny Exp $
# @ECLASS: distutils-r1
# @MAINTAINER:
@@ -40,7 +40,7 @@ case "${EAPI}" in
0|1|2|3)
die "Unsupported EAPI=${EAPI} (too old) for ${ECLASS}"
;;
- 4)
+ 4|5)
;;
*)
die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}"
diff --git a/eclass/python-r1.eclass b/eclass/python-r1.eclass
index 4b5cc695cecb..e305ce25d3b3 100644
--- a/eclass/python-r1.eclass
+++ b/eclass/python-r1.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-r1.eclass,v 1.1 2012/10/14 10:51:28 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/python-r1.eclass,v 1.2 2012/10/15 15:01:18 mgorny Exp $
# @ECLASS: python-r1
# @MAINTAINER:
@@ -24,7 +24,7 @@ case "${EAPI}" in
0|1|2|3)
die "Unsupported EAPI=${EAPI} (too old) for ${ECLASS}"
;;
- 4)
+ 4|5)
# EAPI=4 needed for REQUIRED_USE
;;
*)