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: Wed, 23 Jun 2021 10:21:56
Message-Id: 1624443695.7223386aab278e850a0edfc9947b18f9211ce3c4.ulm@gentoo
1 commit: 7223386aab278e850a0edfc9947b18f9211ce3c4
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 21 10:13:44 2021 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 23 10:21:35 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7223386a
7
8 flag-o-matic.eclass: Support EAPI 8
9
10 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
11
12 eclass/flag-o-matic.eclass | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/eclass/flag-o-matic.eclass b/eclass/flag-o-matic.eclass
16 index 2e04e2acb06..d262a60b6bb 100644
17 --- a/eclass/flag-o-matic.eclass
18 +++ b/eclass/flag-o-matic.eclass
19 @@ -4,7 +4,7 @@
20 # @ECLASS: flag-o-matic.eclass
21 # @MAINTAINER:
22 # toolchain@g.o
23 -# @SUPPORTED_EAPIS: 5 6 7
24 +# @SUPPORTED_EAPIS: 5 6 7 8
25 # @BLURB: common functions to manipulate and query toolchain flags
26 # @DESCRIPTION:
27 # This eclass contains a suite of functions to help developers sanely
28 @@ -12,7 +12,7 @@
29
30 case ${EAPI:-0} in
31 0|1|2|3|4) die "flag-o-matic.eclass: EAPI ${EAPI} is too old." ;;
32 - 5|6|7) ;;
33 + 5|6|7|8) ;;
34 *) die "EAPI ${EAPI} is not supported by flag-o-matic.eclass." ;;
35 esac