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 B9299138359 for ; Sun, 10 May 2020 00:24:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ADCD4E0815; Sun, 10 May 2020 00:24:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 902EBE0815 for ; Sun, 10 May 2020 00:24:07 +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 221E634F13D for ; Sun, 10 May 2020 00:24:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0C7E4214 for ; Sun, 10 May 2020 00:24:04 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1589070210.f3694abce8fd61d1cb122921c98da533b86b9c78.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-benchmarks/hey/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-benchmarks/hey/hey-0.1.2.ebuild X-VCS-Directories: app-benchmarks/hey/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: f3694abce8fd61d1cb122921c98da533b86b9c78 X-VCS-Branch: master Date: Sun, 10 May 2020 00:24:04 +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: 6dac5800-e652-4389-8eaa-026ed699b10a X-Archives-Hash: 8e31deb9f9dbc95d75471ae44d1c046e commit: f3694abce8fd61d1cb122921c98da533b86b9c78 Author: Zac Medico gentoo org> AuthorDate: Sun May 10 00:23:09 2020 +0000 Commit: Zac Medico gentoo org> CommitDate: Sun May 10 00:23:30 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3694abc app-benchmarks/hey: Fix to compile with latest go Closes: https://bugs.gentoo.org/721900 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Zac Medico gentoo.org> app-benchmarks/hey/hey-0.1.2.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-benchmarks/hey/hey-0.1.2.ebuild b/app-benchmarks/hey/hey-0.1.2.ebuild index 639ee500ec4..97ae05a22bb 100644 --- a/app-benchmarks/hey/hey-0.1.2.ebuild +++ b/app-benchmarks/hey/hey-0.1.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -18,7 +18,7 @@ RDEPEND="" src_compile() { export -n GOCACHE XDG_CACHE_HOME - go build -o ./bin/${PN} || die + go build -v -x -mod=vendor -o ./bin/${PN} || die } src_install() {