mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 06:51:51 +08:00
containerd: bump to to 2.2.3
Disable building for all MIPS variants. Changes: https://github.com/containerd/containerd/releases/tag/v1.7.23 Changes: https://github.com/containerd/containerd/releases/tag/v2.0.0 Changes: https://github.com/containerd/containerd/releases/tag/v2.0.1 Changes: https://github.com/containerd/containerd/releases/tag/v2.0.2 Changes: https://github.com/containerd/containerd/releases/tag/v2.0.3 Changes: https://github.com/containerd/containerd/releases/tag/v2.0.4 Changes: https://github.com/containerd/containerd/releases/tag/v2.0.5 Changes: https://github.com/containerd/containerd/releases/tag/v2.1.0 Changes: https://github.com/containerd/containerd/releases/tag/v2.1.1 Changes: https://github.com/containerd/containerd/releases/tag/v2.1.2 Changes: https://github.com/containerd/containerd/releases/tag/v2.1.3 Changes: https://github.com/containerd/containerd/releases/tag/v2.1.4 Changes: https://github.com/containerd/containerd/releases/tag/v2.1.5 Changes: https://github.com/containerd/containerd/releases/tag/v2.2.0 Changes: https://github.com/containerd/containerd/releases/tag/v2.2.1 Changes: https://github.com/containerd/containerd/releases/tag/v2.2.2 Changes: https://github.com/containerd/containerd/releases/tag/v2.2.3 Co-authored-by: Gerard Ryan <G.M0N3Y.2503@gmail.com> Signed-off-by: George Sapkin <george@sapk.in>
This commit is contained in:
committed by
Alexandru Ardelean
parent
2e1b902ad0
commit
95cdd2d3e8
@@ -1,39 +1,43 @@
|
|||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=containerd
|
PKG_NAME:=containerd
|
||||||
PKG_VERSION:=1.7.22
|
PKG_VERSION:=2.2.3
|
||||||
PKG_RELEASE:=2
|
PKG_RELEASE:=1
|
||||||
PKG_LICENSE:=Apache-2.0
|
PKG_LICENSE:=Apache-2.0
|
||||||
PKG_LICENSE_FILES:=LICENSE
|
PKG_LICENSE_FILES:=LICENSE
|
||||||
PKG_CPE_ID:=cpe:/a:linuxfoundation:containerd
|
PKG_CPE_ID:=cpe:/a:linuxfoundation:containerd
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=https://codeload.github.com/containerd/containerd/tar.gz/v${PKG_VERSION}?
|
PKG_SOURCE_URL:=https://codeload.github.com/containerd/containerd/tar.gz/v${PKG_VERSION}?
|
||||||
PKG_HASH:=8c5edde741b7596af63c021429a1212bd616350ed65a7b741eeffc47e27ee9a9
|
PKG_HASH:=b97780bde4b01ed3596b0b0c6f55bfb130794a3db4e6fe2e0fc9719244933945
|
||||||
|
|
||||||
PKG_MAINTAINER:=Gerard Ryan <G.M0N3Y.2503@gmail.com>
|
PKG_MAINTAINER:=Gerard Ryan <G.M0N3Y.2503@gmail.com>
|
||||||
|
|
||||||
PKG_BUILD_DEPENDS:=golang/host dockerd
|
PKG_BUILD_DEPENDS:=golang/host dockerd
|
||||||
PKG_BUILD_PARALLEL:=1
|
PKG_BUILD_PARALLEL:=1
|
||||||
PKG_INSTALL:=1
|
PKG_INSTALL:=1
|
||||||
PKG_BUILD_FLAGS:=no-mips16
|
|
||||||
|
|
||||||
GO_PKG:=github.com/containerd/containerd
|
GO_PKG:=github.com/containerd/containerd
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
include ../../lang/golang/golang-package.mk
|
include ../../lang/golang/golang-package.mk
|
||||||
|
|
||||||
|
EMPTY:=
|
||||||
|
SPACE:= $(EMPTY) $(EMPTY)
|
||||||
|
ARCH_DEPENDS:=@($(subst $(SPACE),||,$(strip $(filter-out mips mips64 mipsel mips64el,$(subst ||,$(SPACE),$(patsubst @(%),%,$(GO_ARCH_DEPENDS)))))))
|
||||||
|
|
||||||
define Package/containerd
|
define Package/containerd
|
||||||
SECTION:=utils
|
SECTION:=utils
|
||||||
CATEGORY:=Utilities
|
CATEGORY:=Utilities
|
||||||
TITLE:=containerd container runtime
|
TITLE:=containerd container runtime
|
||||||
URL:=https://containerd.io/
|
URL:=https://containerd.io/
|
||||||
DEPENDS:=$(GO_ARCH_DEPENDS) +btrfs-progs +runc
|
DEPENDS:=$(ARCH_DEPENDS) +btrfs-progs +runc
|
||||||
MENU:=1
|
MENU:=1
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/containerd/description
|
define Package/containerd/description
|
||||||
An industry-standard container runtime with an emphasis on simplicity, robustness and portability
|
An industry-standard container runtime with an emphasis on simplicity,
|
||||||
|
robustness and portability.
|
||||||
endef
|
endef
|
||||||
|
|
||||||
GO_PKG_INSTALL_EXTRA:=\
|
GO_PKG_INSTALL_EXTRA:=\
|
||||||
@@ -59,7 +63,7 @@ Build/Compile=$(call Build/Compile/Default)
|
|||||||
|
|
||||||
define Package/containerd/install
|
define Package/containerd/install
|
||||||
$(INSTALL_DIR) $(1)/usr/bin/
|
$(INSTALL_DIR) $(1)/usr/bin/
|
||||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/bin/{ctr,containerd,containerd-stress,containerd-shim,containerd-shim-runc-v1,containerd-shim-runc-v2} $(1)/usr/bin/
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/bin/{ctr,containerd,containerd-stress,containerd-shim-runc-v2} $(1)/usr/bin/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call BuildPackage,containerd))
|
$(eval $(call BuildPackage,containerd))
|
||||||
|
|||||||
Reference in New Issue
Block a user