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: Fri, 08 Jan 2021 17:54:24
Message-Id: 1610128197.f566517d91b66d31319968b38d53f9288ac0d576.williamh@gentoo
1 commit: f566517d91b66d31319968b38d53f9288ac0d576
2 Author: William Hubbs <williamh <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 8 17:49:57 2021 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 8 17:49:57 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f566517d
7
8 app-emulation/docker-proxy: 0.8.0_p20201215 bump
9
10 Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
11
12 app-emulation/docker-proxy/Manifest | 1 +
13 .../docker-proxy-0.8.0_p20201215.ebuild | 35 ++++++++++++++++++++++
14 2 files changed, 36 insertions(+)
15
16 diff --git a/app-emulation/docker-proxy/Manifest b/app-emulation/docker-proxy/Manifest
17 index d5ab0fd036e..de168ae6873 100644
18 --- a/app-emulation/docker-proxy/Manifest
19 +++ b/app-emulation/docker-proxy/Manifest
20 @@ -1,3 +1,4 @@
21 DIST docker-proxy-0.8.0_p20200617.tar.gz 3386043 BLAKE2B b32c3b6ef97f656414fdf026307f4054d4dd11cc91dc44a235eb5e5dc9f5f3da0cc4b001eaa28387b79f8f79f0124e6c01b8aab56d5c9e37d777e21cc186cb9c SHA512 fe8644611e975c051ee6e7ad4871624fb45862d9b4a2fd62ea4283e76ad9804d91d585e2165915b09356f11f9dfb31c40dd9ce6a66d63c5032c8c62354960538
22 DIST docker-proxy-0.8.0_p20201105.tar.gz 3386010 BLAKE2B 414c3d37cfe2f36dbb5cfafc6047ee0aa299ba2aeb9c5c51da308285b1e2cc0a32e83557628e0de4817651331fbcfd6b430a88fd5a0f97bb7483a8fb10ae0791 SHA512 3d81ba20a91517e14da7e75a24d4e2eeb04c1dcb9c1bfe1115247982dbdb55d2fd72d0130093e9597363b742a20f2647f229c870da9a1cbdefc69aef65f02250
23 DIST docker-proxy-0.8.0_p20201211.tar.gz 3152873 BLAKE2B 01e33637a5e7619631b61a4063d85ab3c40818f090540f5737b5d50989b9dccaac91c522ccaaa6b0650427648ab8656946809740610e18de8a86108582518ede SHA512 f4f5b957fa23024b380444a0f77b5aefdd275503b89eb487785b34248d44a48e9de8dc53ba80c7f13b5666fa8c732a357ce7e4f0309aad7a35f94240381b24fb
24 +DIST docker-proxy-0.8.0_p20201215.tar.gz 3152956 BLAKE2B 7652bbc027d0cc535c227268bf240132f070dad477ac5a8b82f65d3d3ecf7c2a036a45ba66d0f3f0f0a8025fb990e931429d797f4b9f7c6796507ffd2f41e358 SHA512 dd583218fbeba8aeac2e4143369ad55a3e6c15d64f198f73e3656a80d0281a4374fb3be7bc05b01425461bf830762aa2c950da68ed0e3ae5884643e9d178c69e
25
26 diff --git a/app-emulation/docker-proxy/docker-proxy-0.8.0_p20201215.ebuild b/app-emulation/docker-proxy/docker-proxy-0.8.0_p20201215.ebuild
27 new file mode 100644
28 index 00000000000..61b8e08632b
29 --- /dev/null
30 +++ b/app-emulation/docker-proxy/docker-proxy-0.8.0_p20201215.ebuild
31 @@ -0,0 +1,35 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +EGO_PN="github.com/docker/libnetwork"
37 +
38 +if [[ ${PV} == *9999 ]]; then
39 + inherit golang-vcs
40 +else
41 + EGIT_COMMIT=fa125a3512ee0f6187721c88582bf8c4378bd4d7
42 + SRC_URI="https://github.com/docker/libnetwork/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
43 + KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
44 + inherit golang-vcs-snapshot
45 +fi
46 +
47 +DESCRIPTION="Docker container networking"
48 +HOMEPAGE="https://github.com/docker/libnetwork"
49 +
50 +LICENSE="Apache-2.0"
51 +SLOT="0"
52 +IUSE=""
53 +
54 +S=${WORKDIR}/${P}/src/${EGO_PN}
55 +
56 +# needs dockerd
57 +RESTRICT="strip test"
58 +
59 +src_compile() {
60 + GOPATH="${WORKDIR}/${P}" go build -o "bin/docker-proxy" ./cmd/proxy || die
61 +}
62 +
63 +src_install() {
64 + dodoc README.md CHANGELOG.md
65 + dobin bin/docker-proxy
66 +}