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, 09 Feb 2018 16:53:17
Message-Id: 1518195161.23106282d40dfcb60071ebc8f9befc9696d7b337.mrueg@gentoo
1 commit: 23106282d40dfcb60071ebc8f9befc9696d7b337
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 9 16:52:41 2018 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 9 16:52:41 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23106282
7
8 app-emulation/docker-proxy: Update snapshot for docker 18.02.0
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 app-emulation/docker-proxy/Manifest | 1 +
13 .../docker-proxy-0.8.0_p20180112.ebuild | 36 ++++++++++++++++++++++
14 2 files changed, 37 insertions(+)
15
16 diff --git a/app-emulation/docker-proxy/Manifest b/app-emulation/docker-proxy/Manifest
17 index 70c1e239a33..7e853ac820a 100644
18 --- a/app-emulation/docker-proxy/Manifest
19 +++ b/app-emulation/docker-proxy/Manifest
20 @@ -1,2 +1,3 @@
21 DIST docker-proxy-0.8.0_p20161111.tar.gz 2150464 BLAKE2B a752ad0170cab2aebe2d5e826db22f5e21135a8fbfa835f62804c303be9f136fee941942e7d07e82e19033a62d51f37a41e9c36b48df48947d2885c351584f4f SHA512 86293b9cafc3c468760266b47412040f21309baad27765f584cfa1e93bc2ad88068832ed55f2ae8e4f16825e9f44619e89985fd36d98b3d47eaf1d1160f76c8e
22 DIST docker-proxy-0.8.0_p20170917.tar.gz 2177045 BLAKE2B 0fed1328e8216ab83b23e8e1fe1793da6e874eced7ad18d101b0b7757f1de4fa7d321fb78620a349a4ed492abb4d85c3ecbf49311698b6af156a6255dec5740e SHA512 673ea638fa5c560d8238d7c1d88f114430f9d8efe701804bfe30044d0c059a688cbf6b62922be50834e16ee055ef6cf015f6232f76f0d942768f9e84e95496cd
23 +DIST docker-proxy-0.8.0_p20180112.tar.gz 2679651 BLAKE2B aa134607a90029b41f12885876f175e0e4d77de7e23888912e561d2a75056a8b85f8bb31bfc27e5ddcb102d7d113720ecf4796d7c7d6f6a4c5db10c5f4c60915 SHA512 43d7a8259b5ee2f605ae07dfe64e25b90445b9d38b279a19366df64093dc7d16f3820e3cd67c8569292efc548334a278f1fcbcfb13aed3a73ba980309f8115c9
24
25 diff --git a/app-emulation/docker-proxy/docker-proxy-0.8.0_p20180112.ebuild b/app-emulation/docker-proxy/docker-proxy-0.8.0_p20180112.ebuild
26 new file mode 100644
27 index 00000000000..7341a02ad2a
28 --- /dev/null
29 +++ b/app-emulation/docker-proxy/docker-proxy-0.8.0_p20180112.ebuild
30 @@ -0,0 +1,36 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +EGO_PN="github.com/docker/libnetwork"
36 +
37 +if [[ ${PV} == *9999 ]]; then
38 + inherit golang-vcs
39 +else
40 + EGIT_COMMIT="fcf1c3b5e57833aaaa756ae3c4140ea54da00319"
41 + SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
42 + KEYWORDS="~amd64 ~arm ~ppc64"
43 + inherit golang-vcs-snapshot
44 +fi
45 +
46 +DESCRIPTION="Docker container networking"
47 +HOMEPAGE="https://github.com/docker/libnetwork"
48 +
49 +LICENSE="Apache-2.0"
50 +SLOT="0"
51 +IUSE=""
52 +
53 +S=${WORKDIR}/${P}/src/${EGO_PN}
54 +
55 +RDEPEND="!<app-emulation/docker-1.13.0_rc1"
56 +
57 +RESTRICT="test" # needs dockerd
58 +
59 +src_compile() {
60 + GOPATH="${WORKDIR}/${P}" go build -o "bin/docker-proxy" ./cmd/proxy || die
61 +}
62 +
63 +src_install() {
64 + dodoc ROADMAP.md README.md CHANGELOG.md
65 + dobin bin/docker-proxy
66 +}