Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Sat, 10 Sep 2022 01:19:27
Message-Id: 1662772655.b4e9cef639f16613feabe5275fca088409135eb0.floppym@gentoo
1 commit: b4e9cef639f16613feabe5275fca088409135eb0
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 8 15:45:22 2022 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 10 01:17:35 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4e9cef6
7
8 savedconfig.eclass: support EAPI 8, drop EAPI 5
9
10 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
11
12 eclass/savedconfig.eclass | 6 +++---
13 1 file changed, 3 insertions(+), 3 deletions(-)
14
15 diff --git a/eclass/savedconfig.eclass b/eclass/savedconfig.eclass
16 index 20669c08b338..4681fd25328b 100644
17 --- a/eclass/savedconfig.eclass
18 +++ b/eclass/savedconfig.eclass
19 @@ -1,10 +1,10 @@
20 -# Copyright 1999-2021 Gentoo Authors
21 +# Copyright 1999-2022 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 # @ECLASS: savedconfig.eclass
25 # @MAINTAINER:
26 # base-system@g.o
27 -# @SUPPORTED_EAPIS: 5 6 7
28 +# @SUPPORTED_EAPIS: 6 7 8
29 # @BLURB: common API for saving/restoring complex configuration files
30 # @DESCRIPTION:
31 # It is not uncommon to come across a package which has a very fine
32 @@ -35,7 +35,7 @@ inherit portability
33 IUSE="savedconfig"
34
35 case ${EAPI} in
36 - [5-7]) ;;
37 + 6|7|8) ;;
38 *) die "EAPI=${EAPI:-0} is not supported" ;;
39 esac