commit: 1f4c44bf494536e9cb381486f4c474b77d367330 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Wed Dec 17 15:30:13 2025 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Thu Mar 12 11:43:25 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f4c44bf
sysroot.eclass: Support EAPI 9 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> eclass/sysroot.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/sysroot.eclass b/eclass/sysroot.eclass index 3427c421bf22..de0a4ef31648 100644 --- a/eclass/sysroot.eclass +++ b/eclass/sysroot.eclass @@ -6,7 +6,7 @@ # [email protected] # @AUTHOR: # James Le Cuirot <[email protected]> -# @SUPPORTED_EAPIS: 7 8 +# @SUPPORTED_EAPIS: 7 8 9 # @BLURB: Common functions for using a different (sys)root # @DESCRIPTION: # This eclass provides common functions to run executables within a different @@ -14,7 +14,7 @@ # functions can be used in src_* or pkg_* phase functions. case ${EAPI} in - 7|8) ;; + 7|8|9) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac
