diff options
author | David Seifert <soap@gentoo.org> | 2022-02-01 19:23:11 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-02-01 19:23:11 +0100 |
commit | e7b2cee658f8116032400e71c12fc7c5dcdac249 (patch) | |
tree | 173b8fc6a1627f6751eedfef1d0d25e6841af943 /eclass/vcs-clean.eclass | |
parent | usr-ldscript.eclass: canonical variable ordering (diff) | |
download | gentoo-e7b2cee658f8116032400e71c12fc7c5dcdac249.tar.gz gentoo-e7b2cee658f8116032400e71c12fc7c5dcdac249.tar.bz2 gentoo-e7b2cee658f8116032400e71c12fc7c5dcdac249.zip |
vcs-clean.eclass: enable EAPI 8
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'eclass/vcs-clean.eclass')
-rw-r--r-- | eclass/vcs-clean.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/vcs-clean.eclass b/eclass/vcs-clean.eclass index 89f6b7321879..991f680582f4 100644 --- a/eclass/vcs-clean.eclass +++ b/eclass/vcs-clean.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: vcs-clean.eclass @@ -6,11 +6,11 @@ # base-system@gentoo.org # @AUTHOR: # Benedikt Böhm <hollow@gentoo.org> -# @SUPPORTED_EAPIS: 5 6 7 +# @SUPPORTED_EAPIS: 5 6 7 8 # @BLURB: helper functions to remove VCS directories -case ${EAPI:-0} in - [567]) ;; +case ${EAPI} in + 5|6|7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac |