summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Stakenvicius <axs@gentoo.org>2012-09-27 16:35:42 +0000
committerIan Stakenvicius <axs@gentoo.org>2012-09-27 16:35:42 +0000
commit2caf4c4473f8797fc87c1e6679e2b4311b5565ce (patch)
tree50fbfa35a7de20bf0500c5db8ea034f856a5b1de /eclass/python-distutils-ng.eclass
parentRequire >=jdk-1.5 for javacc-5.0 and drop SLOT 2. #315557 (diff)
downloadgentoo-2-2caf4c4473f8797fc87c1e6679e2b4311b5565ce.tar.gz
gentoo-2-2caf4c4473f8797fc87c1e6679e2b4311b5565ce.tar.bz2
gentoo-2-2caf4c4473f8797fc87c1e6679e2b4311b5565ce.zip
naive bump of all EAPI-specific checks in eclasses to permit EAPI=5 where EAPI=4 was previously allowed
Diffstat (limited to 'eclass/python-distutils-ng.eclass')
-rw-r--r--eclass/python-distutils-ng.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/python-distutils-ng.eclass b/eclass/python-distutils-ng.eclass
index f3ab7b0177af..d957b1d77735 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.27 2012/09/26 12:07:45 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/python-distutils-ng.eclass,v 1.28 2012/09/27 16:35:41 axs Exp $
# @ECLASS: python-distutils-ng
# @MAINTAINER:
@@ -76,7 +76,7 @@ EXPORT_FUNCTIONS src_prepare src_configure src_compile src_test src_install
case "${EAPI}" in
0|1|2|3)
die "Unsupported EAPI=${EAPI} (too old) for python-distutils-ng.eclass" ;;
- 4)
+ 4|5)
# EAPI=4 needed for REQUIRED_USE
S="${S:-${WORKDIR}/${P}}"
;;