Gentoo Archives: gentoo-dev

From: "Michał Górny" <mgorny@g.o>
To: gentoo-dev@l.g.o
Cc: "Michał Górny" <mgorny@g.o>
Subject: [gentoo-dev] [PATCH 1/5] vcs-snapshot.eclass: Allow EAPI 7
Date: Thu, 25 Jul 2019 06:25:23
Message-Id: 20190725062504.30140-1-mgorny@gentoo.org
1 Signed-off-by: Michał Górny <mgorny@g.o>
2 ---
3 eclass/vcs-snapshot.eclass | 6 +++---
4 1 file changed, 3 insertions(+), 3 deletions(-)
5
6 diff --git a/eclass/vcs-snapshot.eclass b/eclass/vcs-snapshot.eclass
7 index 316a37773d43..321e307b894d 100644
8 --- a/eclass/vcs-snapshot.eclass
9 +++ b/eclass/vcs-snapshot.eclass
10 @@ -1,10 +1,10 @@
11 -# Copyright 1999-2016 Gentoo Foundation
12 +# Copyright 1999-2019 Gentoo Authors
13 # Distributed under the terms of the GNU General Public License v2
14
15 # @ECLASS: vcs-snapshot.eclass
16 # @MAINTAINER:
17 # mgorny@g.o
18 -# @SUPPORTED_EAPIS: 0 1 2 3 4 5 6
19 +# @SUPPORTED_EAPIS: 0 1 2 3 4 5 6 7
20 # @BLURB: support eclass for unpacking VCS snapshot tarballs
21 # @DESCRIPTION:
22 # This eclass provides a convenience src_unpack() which does unpack all
23 @@ -40,7 +40,7 @@
24 # in ${WORKDIR}/${P} and ${WORKDIR}/${P}-otherstuff respectively.
25
26 case ${EAPI:-0} in
27 - 0|1|2|3|4|5|6) ;;
28 + 0|1|2|3|4|5|6|7) ;;
29 *) die "vcs-snapshot.eclass API in EAPI ${EAPI} not yet established."
30 esac
31
32 --
33 2.22.0

Replies