Gentoo Archives: gentoo-dev

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-dev@l.g.o
Cc: "Ulrich Müller" <ulm@g.o>
Subject: [gentoo-dev] [PATCH 6/8] flag-o-matic.eclass: Support EAPI 8
Date: Mon, 21 Jun 2021 16:51:48
Message-Id: 20210621164934.18023-6-ulm@gentoo.org
In Reply to: [gentoo-dev] [PATCH 1/8] gnuconfig.eclass: Support EAPI 8 by "Ulrich Müller"
1 Signed-off-by: Ulrich Müller <ulm@g.o>
2 ---
3 eclass/flag-o-matic.eclass | 4 ++--
4 1 file changed, 2 insertions(+), 2 deletions(-)
5
6 diff --git a/eclass/flag-o-matic.eclass b/eclass/flag-o-matic.eclass
7 index 2e04e2acb06b..d262a60b6bb2 100644
8 --- a/eclass/flag-o-matic.eclass
9 +++ b/eclass/flag-o-matic.eclass
10 @@ -4,7 +4,7 @@
11 # @ECLASS: flag-o-matic.eclass
12 # @MAINTAINER:
13 # toolchain@g.o
14 -# @SUPPORTED_EAPIS: 5 6 7
15 +# @SUPPORTED_EAPIS: 5 6 7 8
16 # @BLURB: common functions to manipulate and query toolchain flags
17 # @DESCRIPTION:
18 # This eclass contains a suite of functions to help developers sanely
19 @@ -12,7 +12,7 @@
20
21 case ${EAPI:-0} in
22 0|1|2|3|4) die "flag-o-matic.eclass: EAPI ${EAPI} is too old." ;;
23 - 5|6|7) ;;
24 + 5|6|7|8) ;;
25 *) die "EAPI ${EAPI} is not supported by flag-o-matic.eclass." ;;
26 esac
27
28 --
29 2.32.0

Replies

Subject Author
Re: [gentoo-dev] [PATCH 6/8] flag-o-matic.eclass: Support EAPI 8 Sergei Trofimovich <slyfox@g.o>