commit:     fbbce31f0e4ec8fc1da5cfb19feef4e0ace000d6
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 17 15:30:17 2025 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Mon Jan 26 11:33:25 2026 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbbce31f

user-info.eclass: Support EAPI 9

Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 eclass/user-info.eclass | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/eclass/user-info.eclass b/eclass/user-info.eclass
index 848622fe94e9..3e2bdecfe047 100644
--- a/eclass/user-info.eclass
+++ b/eclass/user-info.eclass
@@ -5,17 +5,17 @@
 # @MAINTAINER:
 # [email protected] (Linux)
 # Michał Górny <[email protected]> (NetBSD)
-# @SUPPORTED_EAPIS: 7 8
+# @SUPPORTED_EAPIS: 7 8 9
 # @BLURB: Read-only access to user and group information
 
+if [[ -z ${_USER_INFO_ECLASS} ]]; then
+_USER_INFO_ECLASS=1
+
 case ${EAPI} in
-       7|8) ;;
+       7|8|9) ;;
        *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
 esac
 
-if [[ -z ${_USER_INFO_ECLASS} ]]; then
-_USER_INFO_ECLASS=1
-
 # @FUNCTION: egetent
 # @USAGE: <database> <key>
 # @DESCRIPTION:

Reply via email to