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: Thu, 10 Jan 2019 13:14:23
Message-Id: 1547125877.e8d5f66f36fa8980b826ca4442c063be10838a92.mrueg@gentoo
1 commit: e8d5f66f36fa8980b826ca4442c063be10838a92
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 10 13:11:17 2019 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 10 13:11:17 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8d5f66f
7
8 app-emulation/docker-proxy: Update snapshot for docker-18.09.1
9
10 Package-Manager: Portage-2.3.54, Repoman-2.3.12
11 Signed-off-by: Manuel Rüger <mrueg <AT> gentoo.org>
12
13 app-emulation/docker-proxy/Manifest | 1 +
14 .../docker-proxy-0.8.0_p20181207.ebuild | 36 ++++++++++++++++++++++
15 2 files changed, 37 insertions(+)
16
17 diff --git a/app-emulation/docker-proxy/Manifest b/app-emulation/docker-proxy/Manifest
18 index 2f5b8db2fdf..d1717237948 100644
19 --- a/app-emulation/docker-proxy/Manifest
20 +++ b/app-emulation/docker-proxy/Manifest
21 @@ -1,3 +1,4 @@
22 DIST docker-proxy-0.8.0_p20180411.tar.gz 2695069 BLAKE2B 5205d5700ad116bb457dc7a57f2624f9efa46f1dbf3f5fe9215077655cddba8e1e1301bc555fb43a22cba4d74423123953a67994bf8974b114350e64be601299 SHA512 300e197313017536f91768ba675f2ab773eb1914f8e5908f4ff5b6fc8c4f0fa5ba1653cd9f8ca26e7c466f1623716aa45a2746f862e47ca9fe9136010085f600
23 DIST docker-proxy-0.8.0_p20180626.tar.gz 2718698 BLAKE2B 6214ba714ba8b01214168171f465dfaee4d8ff791db7a219a3fb92fade3e4207d36d90090790c0a3059e6fb209f3cd8bb0082ca75496108ebffb7c9b0c5092a4 SHA512 21d3d1bd8aafeab51a3e0a14ada4d559b5b113a48d315e91f7d70e4fa839f5c92d4068b38c28bf6929da9c11cfc61703bafc7148f64b784208d61fa14ee4545d
24 DIST docker-proxy-0.8.0_p20180907.tar.gz 2711336 BLAKE2B ad1fc76347058610e2cd1659fb89f9990cc704c3a31006b976e44f31a30e754ac86e7b4823c48461cdcba948bb8d320ae25eac1e13b26f1fde072343251a61e0 SHA512 603ad154d0987a021dae69d542fa82a53b8d25ad9b44cf16f0ef551e0b81e0174dcc73b3a8e9ba89ca1d209f0022e767d44a8350b00b9b4e252cfab698b1d5bd
25 +DIST docker-proxy-0.8.0_p20181207.tar.gz 2703206 BLAKE2B 46b71a4d6ac9eb0659a45c1956eb967a73b2b73c446d55de3a5b4014149f911daa03c6a914e8d79da53e01892c6592adf0df769b6b5ed3b41f3c4a3c9f979da3 SHA512 9256eedc6ed530506e4e61673a9f45397274093dd61105097d5c650796f0afebc8ad7c550d2dc3cacf94426e3872a2b764906bca46fc907a21b865314c8927d4
26
27 diff --git a/app-emulation/docker-proxy/docker-proxy-0.8.0_p20181207.ebuild b/app-emulation/docker-proxy/docker-proxy-0.8.0_p20181207.ebuild
28 new file mode 100644
29 index 00000000000..6e64beaea41
30 --- /dev/null
31 +++ b/app-emulation/docker-proxy/docker-proxy-0.8.0_p20181207.ebuild
32 @@ -0,0 +1,36 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +EGO_PN="github.com/docker/libnetwork"
38 +
39 +if [[ ${PV} == *9999 ]]; then
40 + inherit golang-vcs
41 +else
42 + EGIT_COMMIT="2cfbf9b1f98162a55829a21cc603c76072a75382"
43 + SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
44 + KEYWORDS="~amd64 ~arm ~arm64 ~ppc64"
45 + inherit golang-vcs-snapshot
46 +fi
47 +
48 +DESCRIPTION="Docker container networking"
49 +HOMEPAGE="https://github.com/docker/libnetwork"
50 +
51 +LICENSE="Apache-2.0"
52 +SLOT="0"
53 +IUSE=""
54 +
55 +S=${WORKDIR}/${P}/src/${EGO_PN}
56 +
57 +RDEPEND="!<app-emulation/docker-1.13.0_rc1"
58 +
59 +RESTRICT="test" # needs dockerd
60 +
61 +src_compile() {
62 + GOPATH="${WORKDIR}/${P}" go build -o "bin/docker-proxy" ./cmd/proxy || die
63 +}
64 +
65 +src_install() {
66 + dodoc ROADMAP.md README.md CHANGELOG.md
67 + dobin bin/docker-proxy
68 +}