Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/hub/
Date: Thu, 28 Feb 2019 00:14:25
Message-Id: 1551312763.44c4aaf9f8e24a23007c0ea15a37ba7f216878dc.williamh@gentoo
1 commit: 44c4aaf9f8e24a23007c0ea15a37ba7f216878dc
2 Author: William Hubbs <william.hubbs <AT> sony <DOT> com>
3 AuthorDate: Thu Feb 28 00:12:11 2019 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 28 00:12:43 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44c4aaf9
7
8 dev-vcs/hub-2.7.1: Fix GOPATH and GOCACHE settings
9
10 Closes: https://bugs.gentoo.org/678974
11 Copyright: Sony Interactive Entertainment Inc.
12 Package-Manager: Portage-2.3.51, Repoman-2.3.12
13 Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
14
15 dev-vcs/hub/hub-2.7.1.ebuild | 3 ++-
16 1 file changed, 2 insertions(+), 1 deletion(-)
17
18 diff --git a/dev-vcs/hub/hub-2.7.1.ebuild b/dev-vcs/hub/hub-2.7.1.ebuild
19 index 0e7673d187a..2747df4dd86 100644
20 --- a/dev-vcs/hub/hub-2.7.1.ebuild
21 +++ b/dev-vcs/hub/hub-2.7.1.ebuild
22 @@ -29,7 +29,8 @@ src_prepare() {
23 }
24
25 src_compile() {
26 - unset GOPATH
27 + GOCACHE="${T}"/go-cache \
28 + GOPATH= \
29 ./script/build -o bin/${PN} || die
30 }