From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D1F93158090 for ; Fri, 27 May 2022 06:53:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9131CE07D3; Fri, 27 May 2022 06:53:18 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 76A0AE07D1 for ; Fri, 27 May 2022 06:53:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2987A34132E for ; Fri, 27 May 2022 06:53:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9FF98464 for ; Fri, 27 May 2022 06:53:14 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1653634389.9554c9575d4151f5b22a9c6803cd4acf65b2ca8e.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-go/act/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-go/act/act-1.6.0.ebuild X-VCS-Directories: dev-go/act/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 9554c9575d4151f5b22a9c6803cd4acf65b2ca8e X-VCS-Branch: master Date: Fri, 27 May 2022 06:53:14 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 74492bd9-d184-4b0e-980f-3287ba6e6341 X-Archives-Hash: 4cffb36716e4aded1b09931a7e9c5625 commit: 9554c9575d4151f5b22a9c6803cd4acf65b2ca8e Author: Bernd Waibel posteo net> AuthorDate: Sat May 21 10:32:28 2022 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Fri May 27 06:53:09 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9554c957 dev-go/act: use go-module.eclass Update to EAPI 8 Remove strip from RESTRICT, as this is set by the go-module.eclass already Closes: https://bugs.gentoo.org/844643 Signed-off-by: Bernd Waibel posteo.net> Closes: https://github.com/gentoo/gentoo/pull/25586 Signed-off-by: Joonas Niilola gentoo.org> dev-go/act/act-1.6.0.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-go/act/act-1.6.0.ebuild b/dev-go/act/act-1.6.0.ebuild index 0d9fa048573c..3a2dd997297d 100644 --- a/dev-go/act/act-1.6.0.ebuild +++ b/dev-go/act/act-1.6.0.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -inherit golang-base toolchain-funcs +inherit go-module toolchain-funcs DESCRIPTION="Automated Component Toolkit code generator" HOMEPAGE="https://github.com/Autodesk/AutomaticComponentToolkit" @@ -14,7 +14,7 @@ LICENSE="BSD-2" SLOT="0" KEYWORDS="amd64 ~arm64 x86" -RESTRICT="strip test" +RESTRICT="test" # Package does not follow the usual go directory structure # Functions borrowed from dev-lang/go ebuild.