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 F063F138334 for ; Sat, 16 Mar 2019 23:08:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C69C1E09C4; Sat, 16 Mar 2019 23:08:13 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 9CECDE09C4 for ; Sat, 16 Mar 2019 23:08:13 +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 4EB31335D0A for ; Sat, 16 Mar 2019 23:08:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E88F9566 for ; Sat, 16 Mar 2019 23:08:10 +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: <1552777680.7eb7b617b0da973e1a57c47142acf66fb1b4c51e.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/containers-storage/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/containers-storage/containers-storage-0_pre20180730.ebuild X-VCS-Directories: app-emulation/containers-storage/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 7eb7b617b0da973e1a57c47142acf66fb1b4c51e X-VCS-Branch: master Date: Sat, 16 Mar 2019 23:08:10 +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: 5db30b71-1522-48cb-b190-e4702906b496 X-Archives-Hash: 9553c2d10e09f92d797fa10804bbaa4f commit: 7eb7b617b0da973e1a57c47142acf66fb1b4c51e Author: Zac Medico gentoo org> AuthorDate: Sat Mar 16 22:47:33 2019 +0000 Commit: Zac Medico gentoo org> CommitDate: Sat Mar 16 23:08:00 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7eb7b617 app-emulation/containers-storage: filter GOCACHE vars (bug 678856) Reported-by: Toralf Förster gentoo.org> Closes: https://bugs.gentoo.org/678856 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Zac Medico gentoo.org> .../containers-storage/containers-storage-0_pre20180730.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app-emulation/containers-storage/containers-storage-0_pre20180730.ebuild b/app-emulation/containers-storage/containers-storage-0_pre20180730.ebuild index cd2ef64ffa5..d5caa6e3a62 100644 --- a/app-emulation/containers-storage/containers-storage-0_pre20180730.ebuild +++ b/app-emulation/containers-storage/containers-storage-0_pre20180730.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -86,13 +86,14 @@ src_prepare() { } src_compile() { + export -n GOCACHE XDG_CACHE_HOME #678856 mkdir -p "${S}/src/github.com/pquerna" || die ln -s "${S}/src/${EGO_PN}/vendor/github.com/pquerna/ffjson" "${WORKDIR}/${P}/src/github.com/pquerna/ffjson" || die mkdir -p "${S}/bin" || die cd "${S}/bin" || die - GOPATH="${S}" GOBIN="${S}/bin" GOCACHE=off \ + GOPATH="${S}" GOBIN="${S}/bin" \ go build -v -work -x ${EGO_BUILD_FLAGS} "${S}/src/github.com/pquerna/ffjson/ffjson.go" || die - GOPATH="${S}" GOBIN="${S}/bin" PATH="${S}/bin:${PATH}" GOCACHE=off \ + GOPATH="${S}" GOBIN="${S}/bin" PATH="${S}/bin:${PATH}" \ emake -C "${S}/src/${EGO_PN}" containers-storage docs }