diff options
author | David Seifert <soap@gentoo.org> | 2022-02-01 19:23:09 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-02-01 19:23:09 +0100 |
commit | 9d53393b3e412a6d3458f065b31e6f867c02ed68 (patch) | |
tree | b84193df8d8420786e399706778317903badd3f8 /eclass/usr-ldscript.eclass | |
parent | user-info.eclass: remove EAPI 5 (diff) | |
download | gentoo-9d53393b3e412a6d3458f065b31e6f867c02ed68.tar.gz gentoo-9d53393b3e412a6d3458f065b31e6f867c02ed68.tar.bz2 gentoo-9d53393b3e412a6d3458f065b31e6f867c02ed68.zip |
usr-ldscript.eclass: remove EAPI 5
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'eclass/usr-ldscript.eclass')
-rw-r--r-- | eclass/usr-ldscript.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/usr-ldscript.eclass b/eclass/usr-ldscript.eclass index 2bf725abdd02..7842dfc643df 100644 --- a/eclass/usr-ldscript.eclass +++ b/eclass/usr-ldscript.eclass @@ -1,17 +1,17 @@ -# Copyright 2019-2021 Gentoo Authors +# Copyright 2019-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: usr-ldscript.eclass # @MAINTAINER: # Toolchain Ninjas <toolchain@gentoo.org> -# @SUPPORTED_EAPIS: 5 6 7 8 +# @SUPPORTED_EAPIS: 6 7 8 # @BLURB: Defines the gen_usr_ldscript function. if [[ -z ${_USR_LDSCRIPT_ECLASS} ]]; then _USR_LDSCRIPT_ECLASS=1 case ${EAPI} in - 5|6|7|8) ;; + 6|7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac |