Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Mon, 28 Jun 2021 17:32:37
Message-Id: 1624901000.18a01a9ed1bf8132464a0104344b976804912e4d.floppym@gentoo
1 commit: 18a01a9ed1bf8132464a0104344b976804912e4d
2 Author: David Michael <fedora.dm0 <AT> gmail <DOT> com>
3 AuthorDate: Thu Jun 24 17:51:07 2021 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 28 17:23:20 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18a01a9e
7
8 eapi7-ver.eclass: update EAPI 8 error message
9
10 Signed-off-by: David Michael <fedora.dm0 <AT> gmail.com>
11 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
12 Closes: https://github.com/gentoo/gentoo/pull/21409
13
14 eclass/eapi7-ver.eclass | 4 ++--
15 1 file changed, 2 insertions(+), 2 deletions(-)
16
17 diff --git a/eclass/eapi7-ver.eclass b/eclass/eapi7-ver.eclass
18 index 8f13fc9af76..a23e76ad3ee 100644
19 --- a/eclass/eapi7-ver.eclass
20 +++ b/eclass/eapi7-ver.eclass
21 @@ -1,4 +1,4 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 +# Copyright 1999-2021 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 # @ECLASS: eapi7-ver.eclass
27 @@ -58,7 +58,7 @@
28
29 case ${EAPI:-0} in
30 0|1|2|3|4|5|6) ;;
31 - 7) die "${ECLASS}: EAPI=${EAPI} includes all functions from this eclass" ;;
32 + 7|8) die "${ECLASS}: EAPI=${EAPI} includes all functions from this eclass" ;;
33 *) die "${ECLASS}: EAPI=${EAPI} unknown" ;;
34 esac