mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 06:51:51 +08:00
22cf551ffd
Major version jump from 1.1.1 covering the 1.2.x - 1.9.x series. Highlights: - portmap: implement netfilter (nft) backend; bandwidth: optimization - bridge: support "vlanTrunk" property and DAD/PVID support - macvlan: support "linkInContainer" mode - ipvlan: support "linkInContainer" mode - dhcp: support DHCP option 121 classless static routes - host-local: handle ranges with single IP - firewall: support "ingressPolicy" with iptables and nftables - tuning: allow specifying tx queue length - Go module bumps including security fixes - Minimum Go version: 1.23 Link: https://github.com/containernetworking/plugins/releases/tag/v1.9.1 Link: https://github.com/containernetworking/plugins/blob/v1.9.1/CHANGELOG.md Signed-off-by: Daniel Golle <daniel@makrotopia.org>
49 lines
1.4 KiB
Makefile
49 lines
1.4 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=cni-plugins
|
|
PKG_VERSION:=1.9.1
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_VERSION:=v$(PKG_VERSION)
|
|
PKG_SOURCE_URL:=https://github.com/containernetworking/plugins
|
|
PKG_MIRROR_HASH:=26cbc77b2cd9e929cadd058787c5fed39fa5bce48f78b40bf6970f0a06d07a57
|
|
|
|
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>, Paul Spooren <mail@aparcar.org>
|
|
PKG_LICENSE:=Apache-2.0
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
PKG_BUILD_DEPENDS:=golang/host
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_BUILD_FLAGS:=no-mips16
|
|
|
|
GO_PKG:=github.com/containernetworking/plugins/
|
|
GO_PKG_BUILD_PKG:=github.com/containernetworking/plugins/plugins/main/... \
|
|
github.com/containernetworking/plugins/plugins/meta/... \
|
|
github.com/containernetworking/plugins/plugins/ipam/...
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../../lang/golang/golang-package.mk
|
|
|
|
define Package/cni-plugins
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=cni-plugins
|
|
URL:=https://github.com/containernetworking/cni-plugins
|
|
DEPENDS:=$(GO_ARCH_DEPENDS) +ip-full +kmod-veth
|
|
endef
|
|
|
|
define Package/cni-plugins/description
|
|
Some CNI network plugins, maintained by the containernetworking team. For
|
|
more information, see the individual READMEs.
|
|
endef
|
|
|
|
define Package/cni-plugins/install
|
|
$(call GoPackage/Package/Install/Bin,$(PKG_INSTALL_DIR))
|
|
$(INSTALL_DIR) $(1)/usr/lib/cni
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/lib/cni
|
|
endef
|
|
|
|
$(eval $(call GoBinPackage,cni-plugins))
|
|
$(eval $(call BuildPackage,cni-plugins))
|