diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-07-25 07:30:29 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-07-27 11:49:43 +0200 |
commit | d4aae0929f851336626d8711a60406e1964329b6 (patch) | |
tree | 4db03bd5d88c8b4fbe740395ed753c2112e0e730 /eclass | |
parent | user.eclass: Fix egetgroups bash compliance, and make it simpler (diff) | |
download | gentoo-d4aae0929f851336626d8711a60406e1964329b6.tar.gz gentoo-d4aae0929f851336626d8711a60406e1964329b6.tar.bz2 gentoo-d4aae0929f851336626d8711a60406e1964329b6.zip |
vcs-snapshot.eclass: Allow EAPI 7
Signed-off-by: Michał Górny <mgorny@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 316a37773d43..321e307b894d 100644 --- a/eclass/vcs-snapshot.eclass +++ b/eclass/vcs-snapshot.eclass @@ -1,10 +1,10 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2019 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 +# @SUPPORTED_EAPIS: 0 1 2 3 4 5 6 7 # @BLURB: support eclass for unpacking VCS snapshot tarballs # @DESCRIPTION: # This eclass provides a convenience src_unpack() which does unpack all @@ -40,7 +40,7 @@ # in ${WORKDIR}/${P} and ${WORKDIR}/${P}-otherstuff respectively. case ${EAPI:-0} in - 0|1|2|3|4|5|6) ;; + 0|1|2|3|4|5|6|7) ;; *) die "vcs-snapshot.eclass API in EAPI ${EAPI} not yet established." esac |