From: "Manuel Rüger" <mrueg@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/cni-plugins/
Date: Tue, 19 Nov 2019 12:36:32 +0000 (UTC) [thread overview]
Message-ID: <1574166947.98463c04312cf922374e621ca9fd02c6f520f971.mrueg@gentoo> (raw)
commit: 98463c04312cf922374e621ca9fd02c6f520f971
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 19 12:35:47 2019 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Tue Nov 19 12:35:47 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98463c04
net-misc/cni-plugins: Version bump to 0.8.3
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Manuel Rüger <mrueg <AT> gentoo.org>
net-misc/cni-plugins/Manifest | 1 +
net-misc/cni-plugins/cni-plugins-0.8.3.ebuild | 38 +++++++++++++++++++++++++++
2 files changed, 39 insertions(+)
diff --git a/net-misc/cni-plugins/Manifest b/net-misc/cni-plugins/Manifest
index f90d55e46bb..ce38e25dd96 100644
--- a/net-misc/cni-plugins/Manifest
+++ b/net-misc/cni-plugins/Manifest
@@ -2,3 +2,4 @@ DIST cni-plugins-0.7.5.tar.gz 862670 BLAKE2B 17734beabde562cfd52efd479cb24805681
DIST cni-plugins-0.7.6.tar.gz 862694 BLAKE2B 4c66d80be260217f977f6f80ecd36ec8e3209b57ad34e1bfb03dc5df453ead6aeac24e2852a068430e94a83fc314f92bb9dac41432e16851508e170fa4e77c58 SHA512 28baaa9793dcec4d9417d6beaf4d85cb1eb433f401b3f7d905b2a60709825de0e9ac80a713d8944433e72c7381d502b14aff85c3dc5d665bfca3160f1bfcc13d
DIST cni-plugins-0.8.1.tar.gz 3253670 BLAKE2B 7de5b53e310b496137c0ea0d6b4d22d5604e49fb4ada456eaad377a0b20d0b8883e7420a8d5f8cf92922e98b493608d495126772fd4205e4efb42b784fe3cea7 SHA512 ed57162fc3d014c897ee2f7f82b738624ca42ad7c238ac6ac5c1eb9ac865fe27f8ded1510cfb131f7b43e44f6cd0366ab83011386bcb6add36ea11235767760f
DIST cni-plugins-0.8.2.tar.gz 1997790 BLAKE2B a3c0196c589a3a77de100a87ca8d3eb952478190c78dc50bc7b65d6229ec33593fe77be4a8c5b593d9ea8bb806f9b8d04768bc52b689b006640cfa34c176a0a1 SHA512 383540232593c7ef8c28f83e660a58ae6dd2592c6d97a43c8fc1f046a3fa448911d4066ec0a6a7d7e770a1a2dceee7c31d742100b0871e07d691fe6bdffd42f9
+DIST cni-plugins-0.8.3.tar.gz 2001599 BLAKE2B e087814146c53d372af5b1cc47098f0060cb1528618d9848287592c0b442856114c711ea747efca4e8a79e9ee0b4285678a6e48e07d0698f1382c1e822a49451 SHA512 054479a73ddbfbdb2986ac202ae2da7a69ae7bb693a250885f950a26973c60be3053d4e95ca24cf5eb67c104b9af8231f859e22c01a066ce3a206a186fc55a6d
diff --git a/net-misc/cni-plugins/cni-plugins-0.8.3.ebuild b/net-misc/cni-plugins/cni-plugins-0.8.3.ebuild
new file mode 100644
index 00000000000..4fd45539a5a
--- /dev/null
+++ b/net-misc/cni-plugins/cni-plugins-0.8.3.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit linux-info 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"
+
+CONFIG_CHECK="~BRIDGE_VLAN_FILTERING"
+
+src_compile() {
+ pushd src || die
+ local i
+ for i in plugins/{meta/{bandwidth,firewall,flannel,portmap,sbr,tuning},main/{bridge,host-device,ipvlan,loopback,macvlan,ptp,vlan},ipam/{dhcp,host-local,static},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/{bandwidth,firewall,flannel,portmap,sbr,tuning},main/{bridge,host-device,ipvlan,loopback,macvlan,ptp,vlan},ipam/{dhcp,host-local,static},sample}; do
+ newdoc README.md ${i##*/}.README.md
+ done
+ popd || die
+}
next reply other threads:[~2019-11-19 12:36 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-11-19 12:36 Manuel Rüger [this message]
-- strict thread matches above, loose matches on Subject: below --
2022-07-16 21:16 [gentoo-commits] repo/gentoo:master commit in: net-misc/cni-plugins/ William Hubbs
2022-07-16 21:08 William Hubbs
2022-02-25 9:25 Yixun Lan
2021-11-17 2:16 Sam James
2021-11-14 8:38 Sam James
2021-07-04 6:06 Georgy Yakovlev
2021-02-18 0:05 William Hubbs
2020-08-31 15:49 William Hubbs
2020-08-29 22:45 Sam James
2020-07-25 15:33 William Hubbs
2020-07-23 15:23 William Hubbs
2020-05-13 22:18 William Hubbs
2020-05-04 18:34 William Hubbs
2020-01-19 19:36 William Hubbs
2020-01-13 12:52 Mikle Kolyada
2020-01-06 22:28 William Hubbs
2019-11-19 12:36 Manuel Rüger
2019-10-07 9:53 Manuel Rüger
2019-08-15 13:05 Manuel Rüger
2019-08-13 14:23 Manuel Rüger
2019-08-13 14:23 Manuel Rüger
2019-07-08 14:23 Manuel Rüger
2019-06-06 9:33 Manuel Rüger
2019-05-14 8:20 Manuel Rüger
2019-04-10 9:09 Manuel Rüger
2019-04-03 14:05 Manuel Rüger
2019-03-29 12:54 Manuel Rüger
2019-03-28 14:15 Manuel Rüger
2019-03-28 14:15 Manuel Rüger
2019-01-29 22:42 Manuel Rüger
2018-11-08 15:37 Manuel Rüger
2018-09-20 22:39 Manuel Rüger
2018-08-03 17:02 Manuel Rüger
2018-06-15 14:31 Manuel Rüger
2018-04-26 21:38 Manuel Rüger
2018-02-19 12:47 Manuel Rüger
2017-09-13 11:45 Manuel Rüger
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1574166947.98463c04312cf922374e621ca9fd02c6f520f971.mrueg@gentoo \
--to=mrueg@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox