diff options
author | David Seifert <soap@gentoo.org> | 2022-02-01 19:23:13 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-02-01 19:23:13 +0100 |
commit | abf703bca8e323bf7d079153814e7310370a23f3 (patch) | |
tree | bd7164baef095108e88930ca0c738aae94f41657 /eclass | |
parent | vcs-clean.eclass: add missing die (diff) | |
download | gentoo-abf703bca8e323bf7d079153814e7310370a23f3.tar.gz gentoo-abf703bca8e323bf7d079153814e7310370a23f3.tar.bz2 gentoo-abf703bca8e323bf7d079153814e7310370a23f3.zip |
vcs-snapshot.eclass: enable EAPI 8
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/vcs-snapshot.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/vcs-snapshot.eclass b/eclass/vcs-snapshot.eclass index 05d963917e25..74e5f4bcd42f 100644 --- a/eclass/vcs-snapshot.eclass +++ b/eclass/vcs-snapshot.eclass @@ -1,10 +1,10 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: vcs-snapshot.eclass # @MAINTAINER: # mgorny@gentoo.org -# @SUPPORTED_EAPIS: 0 1 2 3 4 5 6 7 +# @SUPPORTED_EAPIS: 0 1 2 3 4 5 6 7 8 # @BLURB: support eclass for unpacking VCS snapshot tarballs # @DESCRIPTION: # THIS ECLASS IS NOT NECESSARY FOR MODERN GITHUB AND GITLAB SNAPSHOTS. @@ -43,7 +43,7 @@ # in ${WORKDIR}/${P} and ${WORKDIR}/${P}-otherstuff respectively. case ${EAPI:-0} in - 0|1|2|3|4|5|6|7) ;; + 0|1|2|3|4|5|6|7|8) ;; *) die "vcs-snapshot.eclass API in EAPI ${EAPI} not yet established." esac |