summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2022-02-01 19:23:06 +0100
committerDavid Seifert <soap@gentoo.org>2022-02-01 19:23:06 +0100
commit600e17dddc55d9d07b2843b27442aea3cd2b2364 (patch)
tree3a38dde5d6f38151f8c14d2fb9fe1466635727e6 /eclass/user.eclass
parenttoolchain.eclass: canonical variable ordering (diff)
downloadgentoo-600e17dddc55d9d07b2843b27442aea3cd2b2364.tar.gz
gentoo-600e17dddc55d9d07b2843b27442aea3cd2b2364.tar.bz2
gentoo-600e17dddc55d9d07b2843b27442aea3cd2b2364.zip
user.eclass: remove EAPI 5
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'eclass/user.eclass')
-rw-r--r--eclass/user.eclass8
1 files 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-system@gentoo.org (Linux)
# Michał Górny <mgorny@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"