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: net-misc/cni-plugins/
Date: Wed, 10 Apr 2019 09:09:39
Message-Id: 1554887354.c915d0f39e10191be078116f2d9287937514ea24.mrueg@gentoo
1 commit: c915d0f39e10191be078116f2d9287937514ea24
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 10 09:09:14 2019 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 10 09:09:14 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c915d0f3
7
8 net-misc/cni-plugins: Remove old
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Manuel Rüger <mrueg <AT> gentoo.org>
12
13 net-misc/cni-plugins/Manifest | 1 -
14 net-misc/cni-plugins/cni-plugins-0.7.4.ebuild | 36 ---------------------------
15 2 files changed, 37 deletions(-)
16
17 diff --git a/net-misc/cni-plugins/Manifest b/net-misc/cni-plugins/Manifest
18 index 702a19d3690..03e244aa9e7 100644
19 --- a/net-misc/cni-plugins/Manifest
20 +++ b/net-misc/cni-plugins/Manifest
21 @@ -1,2 +1 @@
22 -DIST cni-plugins-0.7.4.tar.gz 862510 BLAKE2B 7ec9ec84614caecaca1583430552bd93606ae1f178f92cb4f7047ab47292084c5102437fbc9fdfe0ebf7043c94bb1b9fbb9d2ac0bc78abadb40da11cdd62b512 SHA512 2ffe18353b525d90679eca4950e96afcaadd7c387956ef5baaf4ce97c0550315fda63403161ab8f23df086955dc2a47da612fb8d0cdd30ccfe12649393e2242c
23 DIST cni-plugins-0.7.5.tar.gz 862670 BLAKE2B 17734beabde562cfd52efd479cb24805681a3d8a8abd4fd9fdcf9dbd891b2d5b3026b84a880355388c893db147fd0952786a86716438e140a46cc9a2dfffe0c2 SHA512 7ab43f88b4763907f56ff26d684385e5a3f6314ffb4bcbe356ec33a014fc15207392bd26e2d3041e117c604a386d21841a37d093b04e003303554b03721b32c6
24
25 diff --git a/net-misc/cni-plugins/cni-plugins-0.7.4.ebuild b/net-misc/cni-plugins/cni-plugins-0.7.4.ebuild
26 deleted file mode 100644
27 index 0fbcda6f954..00000000000
28 --- a/net-misc/cni-plugins/cni-plugins-0.7.4.ebuild
29 +++ /dev/null
30 @@ -1,36 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit golang-vcs-snapshot
37 -
38 -KEYWORDS="amd64"
39 -DESCRIPTION="Standard networking plugins for container networking"
40 -EGO_PN="github.com/containernetworking/plugins"
41 -HOMEPAGE="https://github.com/containernetworking/plugins"
42 -SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 -LICENSE="Apache-2.0"
44 -SLOT="0"
45 -IUSE="hardened"
46 -
47 -src_compile() {
48 - pushd src || die
49 - local i
50 - for i in plugins/{meta/{flannel,portmap,tuning},main/{bridge,host-device,ipvlan,loopback,macvlan,ptp,vlan},ipam/{dhcp,host-local},sample}; do
51 - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" GOPATH="${WORKDIR}/${P}" go install -v "${EGO_PN}/${i}"
52 - done
53 - popd || die
54 -}
55 -
56 -src_install() {
57 - exeinto /opt/cni/bin
58 - doexe bin/*
59 - pushd src/${EGO_PN} || die
60 - dodoc README.md
61 - local i
62 - for i in plugins/{meta/{flannel,portmap,tuning},main/{bridge,host-device,ipvlan,loopback,macvlan,ptp,vlan},ipam/{dhcp,host-local},sample}; do
63 - newdoc README.md ${i##*/}.README.md
64 - done
65 - popd || die
66 -}