Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/docker-proxy/
Date: Fri, 23 Mar 2018 14:59:08
Message-Id: 1521817097.493626d05e359ea4e988937c9502a01e159e2e5a.mrueg@gentoo
1 commit: 493626d05e359ea4e988937c9502a01e159e2e5a
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 23 14:58:17 2018 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 23 14:58:17 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=493626d0
7
8 app-emulation/docker-proxy: Sync live ebuild
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 app-emulation/docker-proxy/docker-proxy-9999.ebuild | 8 +++++---
13 1 file changed, 5 insertions(+), 3 deletions(-)
14
15 diff --git a/app-emulation/docker-proxy/docker-proxy-9999.ebuild b/app-emulation/docker-proxy/docker-proxy-9999.ebuild
16 index e7cea4d03b2..99ad94f4c96 100644
17 --- a/app-emulation/docker-proxy/docker-proxy-9999.ebuild
18 +++ b/app-emulation/docker-proxy/docker-proxy-9999.ebuild
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2017 Gentoo Foundation
21 +# Copyright 1999-2018 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23
24 EAPI=6
25 @@ -9,7 +9,7 @@ if [[ ${PV} == *9999 ]]; then
26 else
27 EGIT_COMMIT=""
28 SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
29 - KEYWORDS="~amd64 ~ppc64"
30 + KEYWORDS="~amd64 ~arm ~ppc64"
31 inherit golang-vcs-snapshot
32 fi
33
34 @@ -24,8 +24,10 @@ S=${WORKDIR}/${P}/src/${EGO_PN}
35
36 RDEPEND="!<app-emulation/docker-1.13.0_rc1"
37
38 +RESTRICT="test" # needs dockerd
39 +
40 src_compile() {
41 - GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" go build -o "bin/docker-proxy" ./cmd/proxy || die
42 + GOPATH="${WORKDIR}/${P}" go build -o "bin/docker-proxy" ./cmd/proxy || die
43 }
44
45 src_install() {