commit: 600e17dddc55d9d07b2843b27442aea3cd2b2364 Author: David Seifert <soap <AT> gentoo <DOT> org> AuthorDate: Tue Feb 1 18:23:06 2022 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Tue Feb 1 18:23:06 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=600e17dd
user.eclass: remove EAPI 5 Signed-off-by: David Seifert <soap <AT> gentoo.org> eclass/user.eclass | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/eclass/user.eclass b/eclass/user.eclass index d03d31819fcc..9373b361d59f 100644 --- a/eclass/user.eclass +++ b/eclass/user.eclass @@ -1,11 +1,11 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: user.eclass # @MAINTAINER: # base-sys...@gentoo.org (Linux) # Michał Górny <mgo...@gentoo.org> (NetBSD) -# @SUPPORTED_EAPIS: 5 6 7 8 +# @SUPPORTED_EAPIS: 6 7 8 # @BLURB: user management in ebuilds # @DEPRECATED: acct-user/acct-group packages # @DESCRIPTION: @@ -15,8 +15,8 @@ if [[ -z ${_USER_ECLASS} ]]; then _USER_ECLASS=1 -case ${EAPI:-0} in - 5|6|7) ;; +case ${EAPI} in + 6|7) ;; 8) if [[ ${CATEGORY} != acct-* ]]; then eerror "In EAPI ${EAPI}, packages must not inherit user.eclass"