Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-benchmarks/hey/
Date: Sun, 10 May 2020 00:24:08
Message-Id: 1589070210.f3694abce8fd61d1cb122921c98da533b86b9c78.zmedico@gentoo
1 commit: f3694abce8fd61d1cb122921c98da533b86b9c78
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 10 00:23:09 2020 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Sun May 10 00:23:30 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3694abc
7
8 app-benchmarks/hey: Fix to compile with latest go
9
10 Closes: https://bugs.gentoo.org/721900
11 Package-Manager: Portage-2.3.99, Repoman-2.3.22
12 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
13
14 app-benchmarks/hey/hey-0.1.2.ebuild | 4 ++--
15 1 file changed, 2 insertions(+), 2 deletions(-)
16
17 diff --git a/app-benchmarks/hey/hey-0.1.2.ebuild b/app-benchmarks/hey/hey-0.1.2.ebuild
18 index 639ee500ec4..97ae05a22bb 100644
19 --- a/app-benchmarks/hey/hey-0.1.2.ebuild
20 +++ b/app-benchmarks/hey/hey-0.1.2.ebuild
21 @@ -1,4 +1,4 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 +# Copyright 1999-2020 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=7
27 @@ -18,7 +18,7 @@ RDEPEND=""
28
29 src_compile() {
30 export -n GOCACHE XDG_CACHE_HOME
31 - go build -o ./bin/${PN} || die
32 + go build -v -x -mod=vendor -o ./bin/${PN} || die
33 }
34
35 src_install() {