From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1125140-garchives=archives.gentoo.org@lists.gentoo.org>
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 3B890138334
	for <garchives@archives.gentoo.org>; Sun, 24 Nov 2019 22:12:03 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 3B809E0844;
	Sun, 24 Nov 2019 22:12:01 +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 1F9E6E0844
	for <gentoo-commits@lists.gentoo.org>; Sun, 24 Nov 2019 22:12:01 +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 BEC6F34D2DA
	for <gentoo-commits@lists.gentoo.org>; Sun, 24 Nov 2019 22:11:59 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F207888
	for <gentoo-commits@lists.gentoo.org>; Sun, 24 Nov 2019 22:11:58 +0000 (UTC)
From: "Zac Medico" <zmedico@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, "Zac Medico" <zmedico@gentoo.org>
Message-ID: <1574633508.efa9a0546137081309791b5a832a7b8773b48e85.zmedico@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: app-metrics/pushgateway/
X-VCS-Repository: repo/gentoo
X-VCS-Files: app-metrics/pushgateway/pushgateway-0.10.0.ebuild app-metrics/pushgateway/pushgateway-0.9.1.ebuild app-metrics/pushgateway/pushgateway-1.0.0.ebuild
X-VCS-Directories: app-metrics/pushgateway/
X-VCS-Committer: zmedico
X-VCS-Committer-Name: Zac Medico
X-VCS-Revision: efa9a0546137081309791b5a832a7b8773b48e85
X-VCS-Branch: master
Date: Sun, 24 Nov 2019 22:11:58 +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: aea19a58-c578-4dcf-84e0-9aa49d52fe8d
X-Archives-Hash: 49be0205d72adc1b359c2ec6ccbbbd61

commit:     efa9a0546137081309791b5a832a7b8773b48e85
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 24 22:10:47 2019 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Sun Nov 24 22:11:48 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efa9a054

app-metrics/pushgateway: export -n GOCACHE XDG_CACHE_HOME

Closes: https://bugs.gentoo.org/672926
Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>

 app-metrics/pushgateway/pushgateway-0.10.0.ebuild | 1 +
 app-metrics/pushgateway/pushgateway-0.9.1.ebuild  | 1 +
 app-metrics/pushgateway/pushgateway-1.0.0.ebuild  | 1 +
 3 files changed, 3 insertions(+)

diff --git a/app-metrics/pushgateway/pushgateway-0.10.0.ebuild b/app-metrics/pushgateway/pushgateway-0.10.0.ebuild
index 5ab0a518e0d..8632efe3271 100644
--- a/app-metrics/pushgateway/pushgateway-0.10.0.ebuild
+++ b/app-metrics/pushgateway/pushgateway-0.10.0.ebuild
@@ -31,6 +31,7 @@ src_prepare() {
 }
 
 src_compile() {
+	export -n GOCACHE XDG_CACHE_HOME #672926
 	pushd src/${EGO_PN} || die
 	mkdir -p bin || die
 	GO111MODULE=on GOPATH="${S}" promu build -v --prefix bin || die

diff --git a/app-metrics/pushgateway/pushgateway-0.9.1.ebuild b/app-metrics/pushgateway/pushgateway-0.9.1.ebuild
index 0ec409e6c76..3bda8444b9c 100644
--- a/app-metrics/pushgateway/pushgateway-0.9.1.ebuild
+++ b/app-metrics/pushgateway/pushgateway-0.9.1.ebuild
@@ -31,6 +31,7 @@ src_prepare() {
 }
 
 src_compile() {
+	export -n GOCACHE XDG_CACHE_HOME #672926
 	pushd src/${EGO_PN} || die
 	mkdir -p bin || die
 	GO111MODULE=on GOPATH="${S}" promu build -v --prefix bin || die

diff --git a/app-metrics/pushgateway/pushgateway-1.0.0.ebuild b/app-metrics/pushgateway/pushgateway-1.0.0.ebuild
index 102cff399d1..7a19aeed4f0 100644
--- a/app-metrics/pushgateway/pushgateway-1.0.0.ebuild
+++ b/app-metrics/pushgateway/pushgateway-1.0.0.ebuild
@@ -31,6 +31,7 @@ src_prepare() {
 }
 
 src_compile() {
+	export -n GOCACHE XDG_CACHE_HOME #672926
 	pushd src/${EGO_PN} || die
 	mkdir -p bin || die
 	GO111MODULE=on GOPATH="${S}" promu build -v --prefix bin || die