Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Tue, 01 Feb 2022 18:23:31
Message-Id: 1643739791.e7b2cee658f8116032400e71c12fc7c5dcdac249.soap@gentoo
1 commit: e7b2cee658f8116032400e71c12fc7c5dcdac249
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 1 18:23:11 2022 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 1 18:23:11 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7b2cee6
7
8 vcs-clean.eclass: enable EAPI 8
9
10 Signed-off-by: David Seifert <soap <AT> gentoo.org>
11
12 eclass/vcs-clean.eclass | 8 ++++----
13 1 file changed, 4 insertions(+), 4 deletions(-)
14
15 diff --git a/eclass/vcs-clean.eclass b/eclass/vcs-clean.eclass
16 index 89f6b7321879..991f680582f4 100644
17 --- a/eclass/vcs-clean.eclass
18 +++ b/eclass/vcs-clean.eclass
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2021 Gentoo Authors
21 +# Copyright 1999-2022 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 # @ECLASS: vcs-clean.eclass
25 @@ -6,11 +6,11 @@
26 # base-system@g.o
27 # @AUTHOR:
28 # Benedikt Böhm <hollow@g.o>
29 -# @SUPPORTED_EAPIS: 5 6 7
30 +# @SUPPORTED_EAPIS: 5 6 7 8
31 # @BLURB: helper functions to remove VCS directories
32
33 -case ${EAPI:-0} in
34 - [567]) ;;
35 +case ${EAPI} in
36 + 5|6|7|8) ;;
37 *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
38 esac