Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Tue, 01 Feb 2022 18:23:30
Message-Id: 1643739788.70893149093c6dcadc3520104de552a239600197.soap@gentoo
1 commit: 70893149093c6dcadc3520104de552a239600197
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 1 18:23:08 2022 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 1 18:23:08 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70893149
7
8 user-info.eclass: remove EAPI 5
9
10 Signed-off-by: David Seifert <soap <AT> gentoo.org>
11
12 eclass/user-info.eclass | 8 ++++----
13 1 file changed, 4 insertions(+), 4 deletions(-)
14
15 diff --git a/eclass/user-info.eclass b/eclass/user-info.eclass
16 index 8b8538bf843a..3838585ab6c1 100644
17 --- a/eclass/user-info.eclass
18 +++ b/eclass/user-info.eclass
19 @@ -1,15 +1,15 @@
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: user-info.eclass
25 # @MAINTAINER:
26 # base-system@g.o (Linux)
27 # Michał Górny <mgorny@g.o> (NetBSD)
28 -# @SUPPORTED_EAPIS: 5 6 7 8
29 +# @SUPPORTED_EAPIS: 6 7 8
30 # @BLURB: Read-only access to user and group information
31
32 -case ${EAPI:-0} in
33 - [5678]) ;;
34 +case ${EAPI} in
35 + 6|7|8) ;;
36 *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
37 esac