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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CDEF11392E8 for ; Sat, 24 Jul 2021 21:09:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B24F2E0AA5; Sat, 24 Jul 2021 21:09:32 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 96FF0E0AA5 for ; Sat, 24 Jul 2021 21:09:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5831A342CD0 for ; Sat, 24 Jul 2021 21:09:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A27057D6 for ; Sat, 24 Jul 2021 21:09:29 +0000 (UTC) From: "William Hubbs" 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" Message-ID: <1627160959.561b7a48cda8ce76609c6e5e4378e1f4464f240d.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.16.6.ebuild X-VCS-Directories: dev-lang/go/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 561b7a48cda8ce76609c6e5e4378e1f4464f240d X-VCS-Branch: master Date: Sat, 24 Jul 2021 21:09:29 +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: ebd62096-33db-4d12-9ce3-e4f3af54f365 X-Archives-Hash: c77db96b15490049e27a682482d66aba commit: 561b7a48cda8ce76609c6e5e4378e1f4464f240d Author: William Hubbs gentoo org> AuthorDate: Sat Jul 24 21:08:37 2021 +0000 Commit: William Hubbs gentoo org> CommitDate: Sat Jul 24 21:09:19 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=561b7a48 dev-lang/go: workaround unrecognized elf file(s) qa notices This package generates several "unrecognized elf file(s)" notices when it is emerged on riscv. Work around this by using the QA_PREBUILT setting. Bug: https://bugs.gentoo.org/794046 Package-Manager: Portage-3.0.20, Repoman-3.0.2 Signed-off-by: William Hubbs gentoo.org> dev-lang/go/go-1.16.6.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-lang/go/go-1.16.6.ebuild b/dev-lang/go/go-1.16.6.ebuild index 895ddad58f5..ec547eb1359 100644 --- a/dev-lang/go/go-1.16.6.ebuild +++ b/dev-lang/go/go-1.16.6.ebuild @@ -44,6 +44,10 @@ QA_FLAGS_IGNORED='.*' # The tools in /usr/lib/go should not cause the multilib-strict check to fail. QA_MULTILIB_PATHS="usr/lib/go/pkg/tool/.*/.*" +# This package triggers "unrecognized elf file(s)" notices on riscv. +# https://bugs.gentoo.org/794046 +QA_PREBUILT='.*' + # Do not strip this package. Stripping is unsupported upstream and may # fail. RESTRICT+=" strip"