From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1486650-garchives=archives.gentoo.org@lists.gentoo.org> 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 BBB9E15800F for <garchives@archives.gentoo.org>; Wed, 15 Feb 2023 01:00:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 98BBCE07AE; Wed, 15 Feb 2023 01:00:09 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 7DA5DE07AE for <gentoo-commits@lists.gentoo.org>; Wed, 15 Feb 2023 01:00:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 1B327335D20 for <gentoo-commits@lists.gentoo.org>; Wed, 15 Feb 2023 01:00:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 89F1D8A7 for <gentoo-commits@lists.gentoo.org>; Wed, 15 Feb 2023 01:00:05 +0000 (UTC) From: "William Hubbs" <williamh@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" <williamh@gentoo.org> Message-ID: <1676422747.cd6e76e6b88427411c8c1e8aab9204abc4acdf8c.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/go/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/go/go-1.19.6.ebuild dev-lang/go/go-1.20.1.ebuild X-VCS-Directories: dev-lang/go/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: cd6e76e6b88427411c8c1e8aab9204abc4acdf8c X-VCS-Branch: master Date: Wed, 15 Feb 2023 01:00:05 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c4cbaf37-440e-4e6f-b46b-ee76bc4c7b8f X-Archives-Hash: 7149f77204eec606ee8d254951934ae9 commit: cd6e76e6b88427411c8c1e8aab9204abc4acdf8c Author: William Hubbs <williamh <AT> gentoo <DOT> org> AuthorDate: Wed Feb 15 00:59:07 2023 +0000 Commit: William Hubbs <williamh <AT> gentoo <DOT> org> CommitDate: Wed Feb 15 00:59:07 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd6e76e6 dev-lang/go: make sure gold is available on arm/arm64 Bug: https://bugs.gentoo.org/893956 Signed-off-by: William Hubbs <williamh <AT> gentoo.org> dev-lang/go/go-1.19.6.ebuild | 3 +++ dev-lang/go/go-1.20.1.ebuild | 3 +++ 2 files changed, 6 insertions(+) diff --git a/dev-lang/go/go-1.19.6.ebuild b/dev-lang/go/go-1.19.6.ebuild index a1e3f5b9778d..a2bcdf56316c 100644 --- a/dev-lang/go/go-1.19.6.ebuild +++ b/dev-lang/go/go-1.19.6.ebuild @@ -33,6 +33,9 @@ LICENSE="BSD" SLOT="0/${PV}" IUSE="abi_mips_o32 abi_mips_n64 cpu_flags_x86_sse2" +RDEPEND=" +arm? ( sys-devel/binutils[gold] ) +arm64? ( sys-devel/binutils[gold] )" BDEPEND="|| ( dev-lang/go dev-lang/go-bootstrap )" diff --git a/dev-lang/go/go-1.20.1.ebuild b/dev-lang/go/go-1.20.1.ebuild index 2cd60e3b05d0..8b8dd50b5ebd 100644 --- a/dev-lang/go/go-1.20.1.ebuild +++ b/dev-lang/go/go-1.20.1.ebuild @@ -33,6 +33,9 @@ LICENSE="BSD" SLOT="0/${PV}" IUSE="abi_mips_o32 abi_mips_n64 cpu_flags_x86_sse2" +RDEPEND=" +arm? ( sys-devel/binutils[gold] ) +arm64? ( sys-devel/binutils[gold] )" BDEPEND="|| ( dev-lang/go dev-lang/go-bootstrap )"