Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/docker-proxy/
Date: Thu, 10 Jun 2021 21:53:32
Message-Id: 1623361993.a3a72ef895c473482b87d0e5fa25f053d4185341.williamh@gentoo
1 commit: a3a72ef895c473482b87d0e5fa25f053d4185341
2 Author: William Hubbs <williamh <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 10 21:53:13 2021 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 10 21:53:13 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3a72ef8
7
8 app-emulation/docker-proxy: 0.8.0_p20210525 bump
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.2
11 Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
12
13 app-emulation/docker-proxy/Manifest | 1 +
14 .../docker-proxy-0.8.0_p20210525.ebuild | 35 ++++++++++++++++++++++
15 2 files changed, 36 insertions(+)
16
17 diff --git a/app-emulation/docker-proxy/Manifest b/app-emulation/docker-proxy/Manifest
18 index e8226b86837..cf61f2b95db 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_p20200617.tar.gz 3386043 BLAKE2B b32c3b6ef97f656414fdf026307f4054d4dd11cc91dc44a235eb5e5dc9f5f3da0cc4b001eaa28387b79f8f79f0124e6c01b8aab56d5c9e37d777e21cc186cb9c SHA512 fe8644611e975c051ee6e7ad4871624fb45862d9b4a2fd62ea4283e76ad9804d91d585e2165915b09356f11f9dfb31c40dd9ce6a66d63c5032c8c62354960538
23 DIST docker-proxy-0.8.0_p20201105.tar.gz 3386010 BLAKE2B 414c3d37cfe2f36dbb5cfafc6047ee0aa299ba2aeb9c5c51da308285b1e2cc0a32e83557628e0de4817651331fbcfd6b430a88fd5a0f97bb7483a8fb10ae0791 SHA512 3d81ba20a91517e14da7e75a24d4e2eeb04c1dcb9c1bfe1115247982dbdb55d2fd72d0130093e9597363b742a20f2647f229c870da9a1cbdefc69aef65f02250
24 DIST docker-proxy-0.8.0_p20201215.tar.gz 3152956 BLAKE2B 7652bbc027d0cc535c227268bf240132f070dad477ac5a8b82f65d3d3ecf7c2a036a45ba66d0f3f0f0a8025fb990e931429d797f4b9f7c6796507ffd2f41e358 SHA512 dd583218fbeba8aeac2e4143369ad55a3e6c15d64f198f73e3656a80d0281a4374fb3be7bc05b01425461bf830762aa2c950da68ed0e3ae5884643e9d178c69e
25 +DIST docker-proxy-0.8.0_p20210525.tar.gz 3154432 BLAKE2B 3f273cd4c2dd3c797117bebfe06eb3ae8ce3b3f70d495cb0c77a372d64e23f1d9ad31e8efef64df494cc462e9f4fda9311c99ae7e7218f0fc41b6bf44cf8c08d SHA512 6a94fe23ce1bab0a428ee4bbe20089f5a4470e72c5da156b2b1a89de01cca803374fd9cdcd4c5b25b86af1c4e956c75a1a5ad7fb6639def7bcec69859a77c047
26
27 diff --git a/app-emulation/docker-proxy/docker-proxy-0.8.0_p20210525.ebuild b/app-emulation/docker-proxy/docker-proxy-0.8.0_p20210525.ebuild
28 new file mode 100644
29 index 00000000000..b072eed16d1
30 --- /dev/null
31 +++ b/app-emulation/docker-proxy/docker-proxy-0.8.0_p20210525.ebuild
32 @@ -0,0 +1,35 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +EGO_PN="github.com/docker/libnetwork"
38 +
39 +if [[ ${PV} == *9999 ]]; then
40 + inherit golang-vcs
41 +else
42 + EGIT_COMMIT=64b7a4574d1426139437d20e81c0b6d391130ec8
43 + SRC_URI="https://github.com/docker/libnetwork/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
44 + KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
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 +
54 +S=${WORKDIR}/${P}/src/${EGO_PN}
55 +
56 +# needs dockerd
57 +RESTRICT="strip test"
58 +
59 +src_compile() {
60 + GO111MODULE=auto GOPATH="${WORKDIR}/${P}" \
61 + go build -o "bin/docker-proxy" ./cmd/proxy || die
62 +}
63 +
64 +src_install() {
65 + dodoc README.md CHANGELOG.md
66 + dobin bin/docker-proxy
67 +}