Gentoo Archives: gentoo-dev

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