diff options
author | David Seifert <soap@gentoo.org> | 2022-01-22 13:33:19 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-01-22 13:33:19 +0100 |
commit | 67a2ed55b4cf453de271cf8beaf78f64c697b988 (patch) | |
tree | d83ea77d058e052a7cd468f744490623c2585cd0 /eclass/out-of-source.eclass | |
parent | media-sound/kid3: Drop 3.8.7 (diff) | |
download | gentoo-67a2ed55b4cf453de271cf8beaf78f64c697b988.tar.gz gentoo-67a2ed55b4cf453de271cf8beaf78f64c697b988.tar.bz2 gentoo-67a2ed55b4cf453de271cf8beaf78f64c697b988.zip |
out-of-source.eclass: enable EAPI 8
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'eclass/out-of-source.eclass')
-rw-r--r-- | eclass/out-of-source.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/out-of-source.eclass b/eclass/out-of-source.eclass index bbac555a7f88..61b7c492c962 100644 --- a/eclass/out-of-source.eclass +++ b/eclass/out-of-source.eclass @@ -1,10 +1,10 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: out-of-source.eclass # @MAINTAINER: # Michał Górny <mgorny@gentoo.org> -# @SUPPORTED_EAPIS: 6 7 +# @SUPPORTED_EAPIS: 6 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);; + 6|7|8);; *) die "EAPI ${EAPI:-0} unsupported (too old)";; esac |