Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Sat, 12 Dec 2015 10:34:49
Message-Id: 1449916439.df279f799bafb7abc3ed49790e65d6baf086f200.pacho@gentoo
1 commit: df279f799bafb7abc3ed49790e65d6baf086f200
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 12 10:33:59 2015 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 12 10:33:59 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df279f79
7
8 Revert "readme.gentoo.eclass: Enable EAPI 6."
9
10 This reverts commit 164ed90923c11957a3908a0f56607208232a8133.
11
12 bug #520094 needs to be handled first
13
14 eclass/readme.gentoo.eclass | 4 ++--
15 1 file changed, 2 insertions(+), 2 deletions(-)
16
17 diff --git a/eclass/readme.gentoo.eclass b/eclass/readme.gentoo.eclass
18 index 4a19b1c..fdef2fe 100644
19 --- a/eclass/readme.gentoo.eclass
20 +++ b/eclass/readme.gentoo.eclass
21 @@ -1,4 +1,4 @@
22 -# Copyright 1999-2015 Gentoo Foundation
23 +# Copyright 1999-2014 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 # $Id$
26
27 @@ -24,7 +24,7 @@ case "${EAPI:-0}" in
28 0|1|2|3)
29 die "Unsupported EAPI=${EAPI:-0} (too old) for ${ECLASS}"
30 ;;
31 - 4|5|6)
32 + 4|5)
33 # EAPI>=4 is required for REPLACING_VERSIONS preventing us
34 # from needing to export another pkg_preinst phase to save has_version
35 # result. Also relies on EAPI >=4 default src_install phase.