Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-go/act/
Date: Fri, 27 May 2022 06:53:20
Message-Id: 1653634389.9554c9575d4151f5b22a9c6803cd4acf65b2ca8e.juippis@gentoo
1 commit: 9554c9575d4151f5b22a9c6803cd4acf65b2ca8e
2 Author: Bernd Waibel <waebbl-gentoo <AT> posteo <DOT> net>
3 AuthorDate: Sat May 21 10:32:28 2022 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Fri May 27 06:53:09 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9554c957
7
8 dev-go/act: use go-module.eclass
9
10 Update to EAPI 8
11 Remove strip from RESTRICT, as this is set by the go-module.eclass already
12
13 Closes: https://bugs.gentoo.org/844643
14 Signed-off-by: Bernd Waibel <waebbl-gentoo <AT> posteo.net>
15 Closes: https://github.com/gentoo/gentoo/pull/25586
16 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
17
18 dev-go/act/act-1.6.0.ebuild | 8 ++++----
19 1 file changed, 4 insertions(+), 4 deletions(-)
20
21 diff --git a/dev-go/act/act-1.6.0.ebuild b/dev-go/act/act-1.6.0.ebuild
22 index 0d9fa048573c..3a2dd997297d 100644
23 --- a/dev-go/act/act-1.6.0.ebuild
24 +++ b/dev-go/act/act-1.6.0.ebuild
25 @@ -1,9 +1,9 @@
26 -# Copyright 1999-2021 Gentoo Authors
27 +# Copyright 1999-2022 Gentoo Authors
28 # Distributed under the terms of the GNU General Public License v2
29
30 -EAPI=7
31 +EAPI=8
32
33 -inherit golang-base toolchain-funcs
34 +inherit go-module toolchain-funcs
35
36 DESCRIPTION="Automated Component Toolkit code generator"
37 HOMEPAGE="https://github.com/Autodesk/AutomaticComponentToolkit"
38 @@ -14,7 +14,7 @@ LICENSE="BSD-2"
39 SLOT="0"
40 KEYWORDS="amd64 ~arm64 x86"
41
42 -RESTRICT="strip test"
43 +RESTRICT="test"
44
45 # Package does not follow the usual go directory structure
46 # Functions borrowed from dev-lang/go ebuild.