From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 590731386F2 for ; Mon, 10 Aug 2015 21:06:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F1D53957A9; Mon, 10 Aug 2015 21:06:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A92A4957A9 for ; Mon, 10 Aug 2015 21:06:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AD47D34098D for ; Mon, 10 Aug 2015 21:06:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 94DAB11B for ; Mon, 10 Aug 2015 21:06:40 +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: <1439240770.00ae00a6983d050c43493b201870bfbfa22c0749.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/lxd/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/lxd/lxd-0.13.ebuild app-emulation/lxd/lxd-0.14.ebuild X-VCS-Directories: app-emulation/lxd/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 00ae00a6983d050c43493b201870bfbfa22c0749 X-VCS-Branch: master Date: Mon, 10 Aug 2015 21:06:40 +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-Archives-Salt: 0ccf2c0f-b5a8-4f8a-bbc2-7e47c1837554 X-Archives-Hash: d6a5ec7cfec8e9d1d89dee0c8d3d9578 commit: 00ae00a6983d050c43493b201870bfbfa22c0749 Author: Zac Medico gentoo org> AuthorDate: Mon Aug 10 21:06:10 2015 +0000 Commit: Zac Medico gentoo org> CommitDate: Mon Aug 10 21:06:10 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00ae00a6 app-emulation/lxd: use get_golibdir_gopath for GOPATH This is needed for compatibility with the latest go-crypto ebuild. app-emulation/lxd/lxd-0.13.ebuild | 2 +- app-emulation/lxd/lxd-0.14.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app-emulation/lxd/lxd-0.13.ebuild b/app-emulation/lxd/lxd-0.13.ebuild index d321646..0485a2f 100644 --- a/app-emulation/lxd/lxd-0.13.ebuild +++ b/app-emulation/lxd/lxd-0.13.ebuild @@ -67,7 +67,7 @@ src_compile() { cd "${S}/src/${EGO_PN}" # Build binaries - GOPATH="${S}" emake + GOPATH="${S}:$(get_golibdir_gopath)" emake use nls && emake build-mo } diff --git a/app-emulation/lxd/lxd-0.14.ebuild b/app-emulation/lxd/lxd-0.14.ebuild index 2324df5..d5f20f0 100644 --- a/app-emulation/lxd/lxd-0.14.ebuild +++ b/app-emulation/lxd/lxd-0.14.ebuild @@ -68,7 +68,7 @@ src_compile() { cd "${S}/src/${EGO_PN}" # Build binaries - GOPATH="${S}" emake + GOPATH="${S}:$(get_golibdir_gopath)" emake use nls && emake build-mo }