Gentoo Archives: gentoo-dev

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-dev <gentoo-dev@l.g.o>
Subject: [gentoo-dev] [PATCH] optfeature.eclass: Support EAPI-8
Date: Sun, 18 Jul 2021 20:45:44
Message-Id: 2552085.vuYhMxLoTh@tuxbook
1 Signed-off-by: Andreas Sturmlechner <asturm@g.o>
2 ---
3 eclass/optfeature.eclass | 4 ++--
4 1 file changed, 2 insertions(+), 2 deletions(-)
5
6 diff --git a/eclass/optfeature.eclass b/eclass/optfeature.eclass
7 index 8fc346c3ac6..b853f61be32 100644
8 --- a/eclass/optfeature.eclass
9 +++ b/eclass/optfeature.eclass
10 @@ -4,11 +4,11 @@
11 # @ECLASS: optfeature.eclass
12 # @MAINTAINER:
13 # base-system@g.o
14 -# @SUPPORTED_EAPIS: 0 1 2 3 4 5 6 7
15 +# @SUPPORTED_EAPIS: 0 1 2 3 4 5 6 7 8
16 # @BLURB: Advertise optional functionality that might be useful to users
17
18 case ${EAPI:-0} in
19 - [0-7]) ;;
20 + [0-8]) ;;
21 *) die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}" ;;
22 esac
23
24 --
25 2.32.0

Attachments

File name MIME type
signature.asc application/pgp-signature

Replies

Subject Author
[gentoo-dev] [PATCH] optfeature.eclass: Drop support for EAPIs 0,1,2,3,4,5 Andreas Sturmlechner <asturm@g.o>