diff options
author | David Seifert <soap@gentoo.org> | 2022-01-22 13:33:20 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-01-22 13:33:20 +0100 |
commit | b9f39ec25fe2f350803abb61045a5845c0c6f0a7 (patch) | |
tree | 2678ab90995f181f2a5067ba579a193dc9d88105 /eclass | |
parent | out-of-source.eclass: enable EAPI 8 (diff) | |
download | gentoo-b9f39ec25fe2f350803abb61045a5845c0c6f0a7.tar.gz gentoo-b9f39ec25fe2f350803abb61045a5845c0c6f0a7.tar.bz2 gentoo-b9f39ec25fe2f350803abb61045a5845c0c6f0a7.zip |
out-of-source.eclass: remove EAPI 6
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/out-of-source.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/out-of-source.eclass b/eclass/out-of-source.eclass index 61b7c492c962..e03943b30402 100644 --- a/eclass/out-of-source.eclass +++ b/eclass/out-of-source.eclass @@ -4,7 +4,7 @@ # @ECLASS: out-of-source.eclass # @MAINTAINER: # Michał Górny <mgorny@gentoo.org> -# @SUPPORTED_EAPIS: 6 7 8 +# @SUPPORTED_EAPIS: 7 8 # @BLURB: convenient wrapper to build autotools packages out-of-source # @DESCRIPTION: # This eclass provides a minimalistic wrapper interface to easily @@ -33,7 +33,7 @@ # @CODE case ${EAPI} in - 6|7|8);; + 7|8);; *) die "EAPI ${EAPI:-0} unsupported (too old)";; esac |