commit: af4eba8fecaef3e6a9ba900ae3d0288e55d882c7 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Wed Dec 17 15:29:34 2025 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Sat Jan 10 13:39:56 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af4eba8f
elisp-common.eclass: Support EAPI 9 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> eclass/elisp-common.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/elisp-common.eclass b/eclass/elisp-common.eclass index 654b302bb39a..4870ef5b8db1 100644 --- a/eclass/elisp-common.eclass +++ b/eclass/elisp-common.eclass @@ -11,7 +11,7 @@ # Christian Faulhammer <[email protected]> # Ulrich Müller <[email protected]> # Maciej Barć <[email protected]> -# @SUPPORTED_EAPIS: 7 8 +# @SUPPORTED_EAPIS: 7 8 9 # @BLURB: Emacs-related installation utilities # @DESCRIPTION: # @@ -178,7 +178,7 @@ # to above calls of elisp-site-regen(). case ${EAPI} in - 7|8) ;; + 7|8|9) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac
