diff options
author | Ulrich Müller <ulm@gentoo.org> | 2022-05-26 17:24:29 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2022-07-18 18:04:10 +0200 |
commit | a7519ee3de33312e39b7c7b0101a9de9799a7e3a (patch) | |
tree | 061724736b1c220baa15b2d5155ec155892b61d6 /eclass | |
parent | multilib.eclass: Drop support for EAPIs 0 and 5 (diff) | |
download | gentoo-a7519ee3de33312e39b7c7b0101a9de9799a7e3a.tar.gz gentoo-a7519ee3de33312e39b7c7b0101a9de9799a7e3a.tar.bz2 gentoo-a7519ee3de33312e39b7c7b0101a9de9799a7e3a.zip |
toolchain-funcs.eclass: Drop support for EAPIs 0 and 5
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain-funcs.eclass | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/eclass/toolchain-funcs.eclass b/eclass/toolchain-funcs.eclass index d725f2f47e59..48bf11606c4a 100644 --- a/eclass/toolchain-funcs.eclass +++ b/eclass/toolchain-funcs.eclass @@ -4,7 +4,7 @@ # @ECLASS: toolchain-funcs.eclass # @MAINTAINER: # Toolchain Ninjas <toolchain@gentoo.org> -# @SUPPORTED_EAPIS: 5 6 7 8 +# @SUPPORTED_EAPIS: 6 7 8 # @BLURB: functions to query common info about the toolchain # @DESCRIPTION: # The toolchain-funcs aims to provide a complete suite of functions @@ -13,9 +13,8 @@ # in such a way that you can rely on the function always returning # something sane. -case ${EAPI:-0} in - # EAPI=0 is still used by crossdev, bug #797367 - 0|5|6|7|8) ;; +case ${EAPI} in + 6|7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac |