summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2013-06-21 10:31:18 +0000
committerMichał Górny <mgorny@gentoo.org>2013-06-21 10:31:18 +0000
commit3b061f680fa74e78cdbd2da517e5907a2795ed02 (patch)
tree65e84d82238cafc1a267ad393c08764ac36c382c /eclass
parentInstall bigger icons (#472978) (diff)
downloadgentoo-2-3b061f680fa74e78cdbd2da517e5907a2795ed02.tar.gz
gentoo-2-3b061f680fa74e78cdbd2da517e5907a2795ed02.tar.bz2
gentoo-2-3b061f680fa74e78cdbd2da517e5907a2795ed02.zip
Enable EAPI 4 per bug #474000.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ChangeLog5
-rw-r--r--eclass/multibuild.eclass6
2 files changed, 7 insertions, 4 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog
index aee14c8d7697..2f77b32f2071 100644
--- a/eclass/ChangeLog
+++ b/eclass/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for eclass directory
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.860 2013/06/18 04:31:44 ottxor Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.861 2013/06/21 10:31:18 mgorny Exp $
+
+ 21 Jun 2013; Michał Górny <mgorny@gentoo.org> multibuild.eclass:
+ Enable EAPI 4 per bug #474000.
18 Jun 2013; Christoph Junghans <ottxor@gentoo.org> cvs.eclass:
fixed use of proxy variables
diff --git a/eclass/multibuild.eclass b/eclass/multibuild.eclass
index 3c9e40454e85..1e9865dc3df2 100644
--- a/eclass/multibuild.eclass
+++ b/eclass/multibuild.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/multibuild.eclass,v 1.11 2013/05/24 17:42:05 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/multibuild.eclass,v 1.12 2013/06/21 10:31:18 mgorny Exp $
# @ECLASS: multibuild
# @MAINTAINER:
@@ -14,10 +14,10 @@
# implementations).
case "${EAPI:-0}" in
- 0|1|2|3|4)
+ 0|1|2|3)
die "Unsupported EAPI=${EAPI:-0} (too old) for ${ECLASS}"
;;
- 5)
+ 4|5)
;;
*)
die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}"