diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-01-12 13:27:00 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-01-16 10:52:58 +0100 |
commit | b018602f6b585371d089985e31b25f6ea0585921 (patch) | |
tree | 2a7012eb9f13d677d0e97de0375ebdb712a6c9a1 /eclass/mount-boot.eclass | |
parent | xfce-base/xfce4-meta: Add pulseaudio-specific deps (diff) | |
download | gentoo-b018602f6b585371d089985e31b25f6ea0585921.tar.gz gentoo-b018602f6b585371d089985e31b25f6ea0585921.tar.bz2 gentoo-b018602f6b585371d089985e31b25f6ea0585921.zip |
mount-boot.eclass: Remove support for EAPI 4 and 5
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 <mgorny@gentoo.org>
Diffstat (limited to 'eclass/mount-boot.eclass')
-rw-r--r-- | eclass/mount-boot.eclass | 3 |
1 files changed, 2 insertions, 1 deletions
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: # base-system@gentoo.org # @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 |