From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-983525-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 1C9E21396D9 for <garchives@archives.gentoo.org>; Sun, 12 Nov 2017 05:03:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 39EF9E10B1; Sun, 12 Nov 2017 05:03:10 +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 17310E10B1 for <gentoo-commits@lists.gentoo.org>; Sun, 12 Nov 2017 05:03:09 +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 7DD6B33C6B6 for <gentoo-commits@lists.gentoo.org>; Sun, 12 Nov 2017 05:03:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F3F1F99FC for <gentoo-commits@lists.gentoo.org>; Sun, 12 Nov 2017 05:03:06 +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: <1510462977.53c7f9cf138cfa70133d616c45e2e583fabab89c.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/docker-swarm/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/docker-swarm/docker-swarm-1.2.5.ebuild X-VCS-Directories: app-emulation/docker-swarm/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 53c7f9cf138cfa70133d616c45e2e583fabab89c X-VCS-Branch: master Date: Sun, 12 Nov 2017 05:03:06 +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-Archives-Salt: 7e313864-5f04-49a5-874b-b82ca3190796 X-Archives-Hash: ca3d1ffc3b2f3ec7c381599b3f74aff9 commit: 53c7f9cf138cfa70133d616c45e2e583fabab89c Author: Zac Medico <zmedico <AT> gentoo <DOT> org> AuthorDate: Sun Nov 12 04:58:42 2017 +0000 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org> CommitDate: Sun Nov 12 05:02:57 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53c7f9cf app-emulation/docker-swarm: GOBIN interference (bug 636506) Closes: https://bugs.gentoo.org/636506 Package-Manager: Portage-2.3.13, Repoman-2.3.3 app-emulation/docker-swarm/docker-swarm-1.2.5.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-emulation/docker-swarm/docker-swarm-1.2.5.ebuild b/app-emulation/docker-swarm/docker-swarm-1.2.5.ebuild index ee87135b33a..65a67d8c2b9 100644 --- a/app-emulation/docker-swarm/docker-swarm-1.2.5.ebuild +++ b/app-emulation/docker-swarm/docker-swarm-1.2.5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -69,7 +69,7 @@ src_unpack() { } src_compile() { - GOPATH="${S}" \ + GOPATH="${S}" GOBIN="${S}/bin" \ go install -v -work -x ${EGO_BUILD_FLAGS} "${EGO_PN}" [[ -x ${S}/bin/${PN#docker-} ]] || die }