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:32
Message-Id: 1643739793.abf703bca8e323bf7d079153814e7310370a23f3.soap@gentoo
1 commit: abf703bca8e323bf7d079153814e7310370a23f3
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 1 18:23:13 2022 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 1 18:23:13 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abf703bc
7
8 vcs-snapshot.eclass: enable EAPI 8
9
10 Signed-off-by: David Seifert <soap <AT> gentoo.org>
11
12 eclass/vcs-snapshot.eclass | 6 +++---
13 1 file changed, 3 insertions(+), 3 deletions(-)
14
15 diff --git a/eclass/vcs-snapshot.eclass b/eclass/vcs-snapshot.eclass
16 index 05d963917e25..74e5f4bcd42f 100644
17 --- a/eclass/vcs-snapshot.eclass
18 +++ b/eclass/vcs-snapshot.eclass
19 @@ -1,10 +1,10 @@
20 -# Copyright 1999-2019 Gentoo Authors
21 +# Copyright 1999-2022 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 # @ECLASS: vcs-snapshot.eclass
25 # @MAINTAINER:
26 # mgorny@g.o
27 -# @SUPPORTED_EAPIS: 0 1 2 3 4 5 6 7
28 +# @SUPPORTED_EAPIS: 0 1 2 3 4 5 6 7 8
29 # @BLURB: support eclass for unpacking VCS snapshot tarballs
30 # @DESCRIPTION:
31 # THIS ECLASS IS NOT NECESSARY FOR MODERN GITHUB AND GITLAB SNAPSHOTS.
32 @@ -43,7 +43,7 @@
33 # in ${WORKDIR}/${P} and ${WORKDIR}/${P}-otherstuff respectively.
34
35 case ${EAPI:-0} in
36 - 0|1|2|3|4|5|6|7) ;;
37 + 0|1|2|3|4|5|6|7|8) ;;
38 *) die "vcs-snapshot.eclass API in EAPI ${EAPI} not yet established."
39 esac