diff options
author | 2024-05-11 02:52:04 +0100 | |
---|---|---|
committer | 2024-05-11 02:52:19 +0100 | |
commit | 31791351d915acb4db8135beb1a2a107538daeeb (patch) | |
tree | ef7a65d57e146fdb6a1ed47beebab4f7eef725ab /eclass | |
parent | sys-libs/glibc: fix -Wimplicit-int in multilib-bootstrap check (diff) | |
download | gentoo-31791351d915acb4db8135beb1a2a107538daeeb.tar.gz gentoo-31791351d915acb4db8135beb1a2a107538daeeb.tar.bz2 gentoo-31791351d915acb4db8135beb1a2a107538daeeb.zip |
alternatives.eclass: support EAPI 8
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/alternatives.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/alternatives.eclass b/eclass/alternatives.eclass index 2489fc67359a..7871e7f42b4a 100644 --- a/eclass/alternatives.eclass +++ b/eclass/alternatives.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: alternatives.eclass @@ -6,7 +6,7 @@ # maintainer-needed@gentoo.org # @AUTHOR: # Alastair Tse <liquidx@gentoo.org> (03 Oct 2003) -# @SUPPORTED_EAPIS: 7 +# @SUPPORTED_EAPIS: 7 8 # @BLURB: Creates symlink to the latest version of multiple slotted packages. # @DESCRIPTION: # When a package is SLOT'ed, very often we need to have a symlink to the @@ -42,7 +42,7 @@ # consider using this unless you are want to do something special. case ${EAPI} in - 7) ;; + 7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac |