1 |
Signed-off-by: David Seifert <soap@g.o> |
2 |
--- |
3 |
eclass/vcs-clean.eclass | 8 ++++---- |
4 |
1 file changed, 4 insertions(+), 4 deletions(-) |
5 |
|
6 |
diff --git a/eclass/vcs-clean.eclass b/eclass/vcs-clean.eclass |
7 |
index 89f6b732187..991f680582f 100644 |
8 |
--- a/eclass/vcs-clean.eclass |
9 |
+++ b/eclass/vcs-clean.eclass |
10 |
@@ -1,4 +1,4 @@ |
11 |
-# Copyright 1999-2021 Gentoo Authors |
12 |
+# Copyright 1999-2022 Gentoo Authors |
13 |
# Distributed under the terms of the GNU General Public License v2 |
14 |
|
15 |
# @ECLASS: vcs-clean.eclass |
16 |
@@ -6,11 +6,11 @@ |
17 |
# base-system@g.o |
18 |
# @AUTHOR: |
19 |
# Benedikt Böhm <hollow@g.o> |
20 |
-# @SUPPORTED_EAPIS: 5 6 7 |
21 |
+# @SUPPORTED_EAPIS: 5 6 7 8 |
22 |
# @BLURB: helper functions to remove VCS directories |
23 |
|
24 |
-case ${EAPI:-0} in |
25 |
- [567]) ;; |
26 |
+case ${EAPI} in |
27 |
+ 5|6|7|8) ;; |
28 |
*) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; |
29 |
esac |
30 |
|
31 |
-- |
32 |
2.35.0 |