summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2019-11-19 13:36:19 +0100
committerManuel Rüger <mrueg@gentoo.org>2019-11-19 13:36:19 +0100
commite0221697bc1e28b10c61b4916c883f2875daf672 (patch)
tree70bbe2786e1c2a5dcbe4a2ca1012ce451572a0cc /net-misc/cni-plugins/cni-plugins-0.7.5.ebuild
parentnet-misc/cni-plugins: Version bump to 0.8.3 (diff)
downloadgentoo-e0221697bc1e28b10c61b4916c883f2875daf672.tar.gz
gentoo-e0221697bc1e28b10c61b4916c883f2875daf672.tar.bz2
gentoo-e0221697bc1e28b10c61b4916c883f2875daf672.zip
net-misc/cni-plugins: Remove old
Package-Manager: Portage-2.3.76, Repoman-2.3.16 Signed-off-by: Manuel Rüger <mrueg@gentoo.org>
Diffstat (limited to 'net-misc/cni-plugins/cni-plugins-0.7.5.ebuild')
-rw-r--r--net-misc/cni-plugins/cni-plugins-0.7.5.ebuild36
1 files changed, 0 insertions, 36 deletions
diff --git a/net-misc/cni-plugins/cni-plugins-0.7.5.ebuild b/net-misc/cni-plugins/cni-plugins-0.7.5.ebuild
deleted file mode 100644
index 9f9b42fe7ec0..000000000000
--- a/net-misc/cni-plugins/cni-plugins-0.7.5.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit golang-vcs-snapshot
-
-KEYWORDS="amd64"
-DESCRIPTION="Standard networking plugins for container networking"
-EGO_PN="github.com/containernetworking/plugins"
-HOMEPAGE="https://github.com/containernetworking/plugins"
-SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="hardened"
-
-src_compile() {
- pushd src || die
- local i
- for i in plugins/{meta/{flannel,portmap,tuning},main/{bridge,host-device,ipvlan,loopback,macvlan,ptp,vlan},ipam/{dhcp,host-local},sample}; do
- CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" GOPATH="${WORKDIR}/${P}" go install -v "${EGO_PN}/${i}" || die
- done
- popd || die
-}
-
-src_install() {
- exeinto /opt/cni/bin
- doexe bin/*
- pushd src/${EGO_PN} || die
- dodoc README.md
- local i
- for i in plugins/{meta/{flannel,portmap,tuning},main/{bridge,host-device,ipvlan,loopback,macvlan,ptp,vlan},ipam/{dhcp,host-local},sample}; do
- newdoc README.md ${i##*/}.README.md
- done
- popd || die
-}