The eclass is no longer used by any EAPI 4 or 5 ebuilds in ::gentoo. This removes the need for EAPI-conditional nonfatal support.
Signed-off-by: Michał Górny <[email protected]> --- eclass/mount-boot.eclass | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eclass/mount-boot.eclass b/eclass/mount-boot.eclass index 00b367793252..2874f9aae11b 100644 --- a/eclass/mount-boot.eclass +++ b/eclass/mount-boot.eclass @@ -5,6 +5,7 @@ # @MAINTAINER: # [email protected] # @BLURB: functions for packages that install files into /boot +# @SUPPORTED_EAPIS: 6 7 # @DESCRIPTION: # This eclass is really only useful for bootloaders. # @@ -13,7 +14,7 @@ # error if it can't. It does nothing if /boot isn't a separate partition. case ${EAPI:-0} in - 4|5|6|7) ;; + 6|7) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac -- 2.30.0
