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 7C4721382C5 for ; Wed, 17 Feb 2021 16:45:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BD5D0E07A5; Wed, 17 Feb 2021 16:45:05 +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 7BC99E07A5 for ; Wed, 17 Feb 2021 16:45:05 +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 33D333410AF for ; Wed, 17 Feb 2021 16:45:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 52AE64AF for ; Wed, 17 Feb 2021 16:45:02 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1613580293.9195b70d4a9dcd4853f9ab9d9819850bedba4dcf.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/docker-proxy/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/docker-proxy/docker-proxy-0.8.0_p20201105.ebuild app-emulation/docker-proxy/docker-proxy-0.8.0_p20201215.ebuild X-VCS-Directories: app-emulation/docker-proxy/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 9195b70d4a9dcd4853f9ab9d9819850bedba4dcf X-VCS-Branch: master Date: Wed, 17 Feb 2021 16:45:02 +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: dc3e0a86-1897-4ecc-af1b-40928bdf05ff X-Archives-Hash: e42a2617a6fd4b480ca328fe45797984 commit: 9195b70d4a9dcd4853f9ab9d9819850bedba4dcf Author: William Hubbs gentoo org> AuthorDate: Wed Feb 17 16:33:06 2021 +0000 Commit: William Hubbs gentoo org> CommitDate: Wed Feb 17 16:44:53 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9195b70d app-emulation/docker-proxy: fix build for go 1.16 Closes: https://bugs.gentoo.org/771081 Signed-off-by: William Hubbs gentoo.org> app-emulation/docker-proxy/docker-proxy-0.8.0_p20201105.ebuild | 3 ++- app-emulation/docker-proxy/docker-proxy-0.8.0_p20201215.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/app-emulation/docker-proxy/docker-proxy-0.8.0_p20201105.ebuild b/app-emulation/docker-proxy/docker-proxy-0.8.0_p20201105.ebuild index feb57a0f2c3..40d357a97cd 100644 --- a/app-emulation/docker-proxy/docker-proxy-0.8.0_p20201105.ebuild +++ b/app-emulation/docker-proxy/docker-proxy-0.8.0_p20201105.ebuild @@ -26,7 +26,8 @@ S=${WORKDIR}/${P}/src/${EGO_PN} RESTRICT="test" src_compile() { - GOPATH="${WORKDIR}/${P}" go build -o "bin/docker-proxy" ./cmd/proxy || die + GO111MODULE=auto GOPATH="${WORKDIR}/${P}" \ + go build -o "bin/docker-proxy" ./cmd/proxy || die } src_install() { diff --git a/app-emulation/docker-proxy/docker-proxy-0.8.0_p20201215.ebuild b/app-emulation/docker-proxy/docker-proxy-0.8.0_p20201215.ebuild index 61b8e08632b..374292183ee 100644 --- a/app-emulation/docker-proxy/docker-proxy-0.8.0_p20201215.ebuild +++ b/app-emulation/docker-proxy/docker-proxy-0.8.0_p20201215.ebuild @@ -26,7 +26,8 @@ S=${WORKDIR}/${P}/src/${EGO_PN} RESTRICT="strip test" src_compile() { - GOPATH="${WORKDIR}/${P}" go build -o "bin/docker-proxy" ./cmd/proxy || die + GO111MODULE=auto GOPATH="${WORKDIR}/${P}" \ + go build -o "bin/docker-proxy" ./cmd/proxy || die } src_install() {