commit: 33bb454c9678ab13d58662a07a143f1bee47cafe Author: John Helmert III <ajak <AT> gentoo <DOT> org> AuthorDate: Sun Dec 12 19:40:26 2021 +0000 Commit: John Helmert III <ajak <AT> gentoo <DOT> org> CommitDate: Tue Dec 14 05:41:01 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33bb454c
mount-boot.eclass: support EAPI 8 Signed-off-by: John Helmert III <ajak <AT> gentoo.org> eclass/mount-boot.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/mount-boot.eclass b/eclass/mount-boot.eclass index 2b07160231a6..3111d9dcb9b5 100644 --- a/eclass/mount-boot.eclass +++ b/eclass/mount-boot.eclass @@ -4,7 +4,7 @@ # @ECLASS: mount-boot.eclass # @MAINTAINER: # [email protected] -# @SUPPORTED_EAPIS: 6 7 +# @SUPPORTED_EAPIS: 6 7 8 # @BLURB: functions for packages that install files into /boot # @DESCRIPTION: # This eclass is really only useful for bootloaders. @@ -14,7 +14,7 @@ # error if it can't. It does nothing if /boot isn't a separate partition. case ${EAPI:-0} in - 6|7) ;; + 6|7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac
