commit: 1035286762c9bc54826992c6381106237baf5173 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Mon Aug 29 07:13:46 2022 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Sat Sep 3 19:45:19 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10352867
xemacs-packages.eclass: Support EAPI 8 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> eclass/xemacs-packages.eclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eclass/xemacs-packages.eclass b/eclass/xemacs-packages.eclass index 8f5d3f1b51b2..67c9491d575e 100644 --- a/eclass/xemacs-packages.eclass +++ b/eclass/xemacs-packages.eclass @@ -4,7 +4,7 @@ # @ECLASS: xemacs-packages.eclass # @MAINTAINER: # [email protected] -# @SUPPORTED_EAPIS: 6 7 +# @SUPPORTED_EAPIS: 6 7 8 # @BLURB: Eclass to support elisp packages distributed by XEmacs. # @DESCRIPTION: # This eclass supports ebuilds for packages distributed by XEmacs. @@ -24,8 +24,8 @@ # in the experimental repository are auto-generated from XEmacs VCS, so # they may not be well-tested. -case ${EAPI:-0} in - [67]) ;; +case ${EAPI} in + 6|7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac
