Gentoo Archives: gentoo-dev

From: Stephan Hartmann <sultan@g.o>
To: gentoo-dev@l.g.o
Cc: base-system@g.o, Stephan Hartmann <sultan@g.o>
Subject: [gentoo-dev] [PATCH] unpacker.eclass: enable EAPI 8
Date: Thu, 26 Aug 2021 10:10:48
Message-Id: 20210826101032.11050-1-sultan@gentoo.org
1 Signed-off-by: Stephan Hartmann <sultan@g.o>
2 ---
3 eclass/unpacker.eclass | 4 ++--
4 1 file changed, 2 insertions(+), 2 deletions(-)
5
6 diff --git a/eclass/unpacker.eclass b/eclass/unpacker.eclass
7 index c9dab4345c9..424975ba8ba 100644
8 --- a/eclass/unpacker.eclass
9 +++ b/eclass/unpacker.eclass
10 @@ -4,7 +4,7 @@
11 # @ECLASS: unpacker.eclass
12 # @MAINTAINER:
13 # base-system@g.o
14 -# @SUPPORTED_EAPIS: 5 6 7
15 +# @SUPPORTED_EAPIS: 5 6 7 8
16 # @BLURB: helpers for extraneous file formats and consistent behavior across EAPIs
17 # @DESCRIPTION:
18 # Some extraneous file formats are not part of PMS, or are only in certain
19 @@ -16,7 +16,7 @@
20 # - support partial unpacks?
21
22 case ${EAPI:-0} in
23 - [567]) ;;
24 + [5678]) ;;
25 *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
26 esac
27
28 --
29 2.31.1

Replies

Subject Author
Re: [gentoo-dev] [PATCH] unpacker.eclass: enable EAPI 8 Ulrich Mueller <ulm@g.o>