commit: acbdd26def24dd7633408a0666f700271d4fbc8b Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Mon Jan 26 12:09:53 2026 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Tue Jan 27 07:06:48 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acbdd26d
multilib-build.eclass: Enable EAPI 9 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> Part-of: https://codeberg.org/gentoo/gentoo/pulls/26 Merges: https://codeberg.org/gentoo/gentoo/pulls/26 eclass/multilib-build.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/multilib-build.eclass b/eclass/multilib-build.eclass index a0232ad2762a..14774fc0139e 100644 --- a/eclass/multilib-build.eclass +++ b/eclass/multilib-build.eclass @@ -6,7 +6,7 @@ # Michał Górny <[email protected]> # @AUTHOR: # Author: Michał Górny <[email protected]> -# @SUPPORTED_EAPIS: 7 8 +# @SUPPORTED_EAPIS: 7 8 9 # @BLURB: flags and utility functions for building multilib packages # @DESCRIPTION: # The multilib-build.eclass exports USE flags and utility functions @@ -21,7 +21,7 @@ if [[ -z ${_MULTILIB_BUILD_ECLASS} ]]; then _MULTILIB_BUILD_ECLASS=1 case ${EAPI} in - 7|8) ;; + 7|8|9) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac
