Gentoo Archives: gentoo-dev

From: Mike Gilbert <floppym@g.o>
To: gentoo-dev@l.g.o
Cc: dist-kernel@g.o, base-system@g.o, Mike Gilbert <floppym@g.o>
Subject: [gentoo-dev] [PATCH 4/8] savedconfig.eclass: support EAPI 8
Date: Thu, 08 Sep 2022 17:19:54
Message-Id: 20220908171816.688404-5-floppym@gentoo.org
In Reply to: [gentoo-dev] [PATCH 0/8] Migrate dist-kernel packages to EAPI 8 by Mike Gilbert
1 Signed-off-by: Mike Gilbert <floppym@g.o>
2 ---
3 eclass/savedconfig.eclass | 6 +++---
4 1 file changed, 3 insertions(+), 3 deletions(-)
5
6 diff --git a/eclass/savedconfig.eclass b/eclass/savedconfig.eclass
7 index 20669c08b33..52286caee6c 100644
8 --- a/eclass/savedconfig.eclass
9 +++ b/eclass/savedconfig.eclass
10 @@ -1,10 +1,10 @@
11 -# Copyright 1999-2021 Gentoo Authors
12 +# Copyright 1999-2022 Gentoo Authors
13 # Distributed under the terms of the GNU General Public License v2
14
15 # @ECLASS: savedconfig.eclass
16 # @MAINTAINER:
17 # base-system@g.o
18 -# @SUPPORTED_EAPIS: 5 6 7
19 +# @SUPPORTED_EAPIS: 5 6 7 8
20 # @BLURB: common API for saving/restoring complex configuration files
21 # @DESCRIPTION:
22 # It is not uncommon to come across a package which has a very fine
23 @@ -35,7 +35,7 @@ inherit portability
24 IUSE="savedconfig"
25
26 case ${EAPI} in
27 - [5-7]) ;;
28 + 5|6|7|8) ;;
29 *) die "EAPI=${EAPI:-0} is not supported" ;;
30 esac
31
32 --
33 2.37.3