Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Thu, 07 Feb 2019 19:25:46
Message-Id: 1549567350.3eefe62f7c5aa0b1e511f2852fe31c319f1be365.williamh@gentoo
1 commit: 3eefe62f7c5aa0b1e511f2852fe31c319f1be365
2 Author: William Hubbs <williamh <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 4 18:16:40 2019 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 7 19:22:30 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3eefe62f
7
8 golang-vcs-snapshot.eclass: add eapi 7 support
9
10 Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
11
12 eclass/golang-vcs-snapshot.eclass | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/eclass/golang-vcs-snapshot.eclass b/eclass/golang-vcs-snapshot.eclass
16 index 975b23df45f..3a35d7e1aa5 100644
17 --- a/eclass/golang-vcs-snapshot.eclass
18 +++ b/eclass/golang-vcs-snapshot.eclass
19 @@ -4,7 +4,7 @@
20 # @ECLASS: golang-vcs-snapshot.eclass
21 # @MAINTAINER:
22 # William Hubbs <williamh@g.o>
23 -# @SUPPORTED_EAPIS: 5 6
24 +# @SUPPORTED_EAPIS: 5 6 7
25 # @BLURB: support eclass for unpacking VCS snapshot tarballs for
26 # software written in the Go programming language
27 # @DESCRIPTION:
28 @@ -46,7 +46,7 @@
29 inherit golang-base
30
31 case ${EAPI:-0} in
32 - 5|6) ;;
33 + 5|6|7) ;;
34 *) die "${ECLASS} API in EAPI ${EAPI} not yet established."
35 esac