Gentoo Archives: gentoo-commits

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