Gentoo Archives: gentoo-dev

From: David Seifert <soap@g.o>
To: gentoo-dev@l.g.o
Cc: David Seifert <soap@g.o>
Subject: [gentoo-dev] [PATCH 05/12] user-info.eclass: remove EAPI 5
Date: Sat, 29 Jan 2022 17:33:25
Message-Id: 20220129173130.2533280-5-soap@gentoo.org
In Reply to: [gentoo-dev] [PATCH 01/12] toolchain.eclass: remove EAPI 5 and 6 by David Seifert
1 Signed-off-by: David Seifert <soap@g.o>
2 ---
3 eclass/user-info.eclass | 8 ++++----
4 1 file changed, 4 insertions(+), 4 deletions(-)
5
6 diff --git a/eclass/user-info.eclass b/eclass/user-info.eclass
7 index 8b8538bf843..3838585ab6c 100644
8 --- a/eclass/user-info.eclass
9 +++ b/eclass/user-info.eclass
10 @@ -1,15 +1,15 @@
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: user-info.eclass
16 # @MAINTAINER:
17 # base-system@g.o (Linux)
18 # Michał Górny <mgorny@g.o> (NetBSD)
19 -# @SUPPORTED_EAPIS: 5 6 7 8
20 +# @SUPPORTED_EAPIS: 6 7 8
21 # @BLURB: Read-only access to user and group information
22
23 -case ${EAPI:-0} in
24 - [5678]) ;;
25 +case ${EAPI} in
26 + 6|7|8) ;;
27 *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
28 esac
29
30 --
31 2.35.0