Gentoo Archives: gentoo-dev

From: Ulrich Mueller <ulm@g.o>
To: gentoo-dev@l.g.o
Subject: [gentoo-dev] [PATCH] readme.gentoo.eclass EAPI 6 support
Date: Tue, 08 Dec 2015 22:53:44
Message-Id: 22119.24422.701121.217634@a1i15.kph.uni-mainz.de
1 AFAICS there are no particular EAPI 6 features this eclass could make
2 use of, so we can simply add 6 to the case pattern.
3
4 Ulrich
5
6
7 --- a/eclass/readme.gentoo.eclass
8 +++ b/eclass/readme.gentoo.eclass
9 @@ -1,4 +1,4 @@
10 -# Copyright 1999-2014 Gentoo Foundation
11 +# Copyright 1999-2015 Gentoo Foundation
12 # Distributed under the terms of the GNU General Public License v2
13 # $Id$
14
15 @@ -24,7 +24,7 @@ case "${EAPI:-0}" in
16 0|1|2|3)
17 die "Unsupported EAPI=${EAPI:-0} (too old) for ${ECLASS}"
18 ;;
19 - 4|5)
20 + 4|5|6)
21 # EAPI>=4 is required for REPLACING_VERSIONS preventing us
22 # from needing to export another pkg_preinst phase to save has_version
23 # result. Also relies on EAPI >=4 default src_install phase.

Replies

Subject Author
Re: [gentoo-dev] [PATCH] readme.gentoo.eclass EAPI 6 support "Michał Górny" <mgorny@g.o>