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, 06 Jun 2019 15:42:59
Message-Id: 1559835762.de705a2227df237bd7d8ae8aa417a78ef87b1434.mrueg@gentoo
1 commit: de705a2227df237bd7d8ae8aa417a78ef87b1434
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 6 15:42:42 2019 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 6 15:42:42 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de705a22
7
8 app-emulation/docker-proxy: Update snapshot for 18.09.7
9
10 Package-Manager: Portage-2.3.67, Repoman-2.3.14
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_p20190513.ebuild | 34 ++++++++++++++++++++++
15 2 files changed, 35 insertions(+)
16
17 diff --git a/app-emulation/docker-proxy/Manifest b/app-emulation/docker-proxy/Manifest
18 index 90bfe1f972e..c5e4fba6bfc 100644
19 --- a/app-emulation/docker-proxy/Manifest
20 +++ b/app-emulation/docker-proxy/Manifest
21 @@ -5,3 +5,4 @@ DIST docker-proxy-0.8.0_p20181207.tar.gz 2703206 BLAKE2B 46b71a4d6ac9eb0659a45c1
22 DIST docker-proxy-0.8.0_p20190301.tar.gz 2703026 BLAKE2B 0d0da49e1daf260c5d5699cfa8dd447cd6fe83f5903834aa065af52f133910d1f16a06ef7688340d2068e5ac544de8b1a2b9644f65af486077b66d56efd9447f SHA512 8ffd6fc97df4b63b1f83a5eb6d8e63c8c413bcf3e2ff82f507dbf875d0df6903b6fe1546d8625dd3b4681d611aed4702c423d0d5c9621ed57073cbe16bf35200
23 DIST docker-proxy-0.8.0_p20190405.tar.gz 2703481 BLAKE2B 7df4333c0d5303be5819faa1e984cc516df21d197b08f07fadbe7800f6035cefbeea6a63bf0cc7bca0a23cf324558d0422638e15c7750877fa4fb589e4052ec4 SHA512 a24061cd29c3c9852a435f742e6653da48edd419205be18a37d065b50c2fbf005bfe62a1f909b91781f521b70cb3a9639a4a67e8563e2e39e6dd22f1c7bf82b2
24 DIST docker-proxy-0.8.0_p20190417.tar.gz 2705315 BLAKE2B 13d2b9caeaf0d2d16dc8cda641e9b13d12bc7c9dcdcf9caa60fb80c2bba9b4c9a15c8c959fdce019367002d58d83859145d70b78431b5fe7e9322d3b127cd0df SHA512 c8e8544a3d8d44dc0f309aa3520a2cf62cee374a06d40473542078de94d88cb484c0dca1cee7ad89fb312c969af1694c848f464d04d61df5a9888058e21a485e
25 +DIST docker-proxy-0.8.0_p20190513.tar.gz 2705298 BLAKE2B ff897b18b8265b3d718caf7afaf10f7b8eeed9be0cc9c73b02d5c42c5c9ddd1be32cf7d1259ce26d56219cda57707e25e154e50cfa2cc80e823a4b924da4e5e0 SHA512 0a833510df0029999bfc05c23445a58a8b2ff165c0fb2fd5c411498d1e89b5b1990d2778b32346dd2b6d61c166ff707c6277a5d1937db6345c77d3825eb59875
26
27 diff --git a/app-emulation/docker-proxy/docker-proxy-0.8.0_p20190513.ebuild b/app-emulation/docker-proxy/docker-proxy-0.8.0_p20190513.ebuild
28 new file mode 100644
29 index 00000000000..1fccabf5362
30 --- /dev/null
31 +++ b/app-emulation/docker-proxy/docker-proxy-0.8.0_p20190513.ebuild
32 @@ -0,0 +1,34 @@
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="e7933d41e7b206756115aa9df5e0599fc5169742"
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 +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 +}