From 2e1b902ad03263880d9ab773b9216916b5c0e22e Mon Sep 17 00:00:00 2001 From: George Sapkin Date: Fri, 24 Apr 2026 02:11:37 +0300 Subject: [PATCH] runc: bump to 1.3.5 Disable building for all MIPS variants. Changes: https://github.com/opencontainers/runc/releases/tag/v1.1.15 Changes: https://github.com/opencontainers/runc/releases/tag/v1.2.0 Changes: https://github.com/opencontainers/runc/releases/tag/v1.2.1 Changes: https://github.com/opencontainers/runc/releases/tag/v1.2.2 Changes: https://github.com/opencontainers/runc/releases/tag/v1.2.3 Changes: https://github.com/opencontainers/runc/releases/tag/v1.2.4 Changes: https://github.com/opencontainers/runc/releases/tag/v1.2.5 Changes: https://github.com/opencontainers/runc/releases/tag/v1.2.6 Changes: https://github.com/opencontainers/runc/releases/tag/v1.3.1 Changes: https://github.com/opencontainers/runc/releases/tag/v1.3.2 Changes: https://github.com/opencontainers/runc/releases/tag/v1.3.3 Changes: https://github.com/opencontainers/runc/releases/tag/v1.3.4 Changes: https://github.com/opencontainers/runc/releases/tag/v1.3.5 Signed-off-by: George Sapkin --- utils/runc/Makefile | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/utils/runc/Makefile b/utils/runc/Makefile index c2cadf854a..2237b29630 100644 --- a/utils/runc/Makefile +++ b/utils/runc/Makefile @@ -1,38 +1,42 @@ include $(TOPDIR)/rules.mk PKG_NAME:=runc -PKG_VERSION:=1.1.14 -PKG_RELEASE:=2 +PKG_VERSION:=1.3.5 +PKG_RELEASE:=1 PKG_LICENSE:=Apache-2.0 PKG_LICENSE_FILES:=LICENSE PKG_CPE_ID:=cpe:/a:linuxfoundation:runc PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/opencontainers/runc/tar.gz/v${PKG_VERSION}? -PKG_HASH:=563cf57c38d2e7149234dbe6f63ca0751eb55ef8f586ed12a543dedc1aceba68 +PKG_HASH:=72620f9b0e62d8da80c0c08a6265ab10d24330c544115c30713ba1429bde706d PKG_MAINTAINER:=Gerard Ryan PKG_BUILD_DEPENDS:=golang/host dockerd PKG_BUILD_PARALLEL:=1 PKG_INSTALL:=1 -PKG_BUILD_FLAGS:=no-mips16 GO_PKG:=github.com/opencontainers/runc include $(INCLUDE_DIR)/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/runc SECTION:=utils CATEGORY:=Utilities TITLE:=runc container runtime URL:=https://www.opencontainers.org/ - DEPENDS:=$(GO_ARCH_DEPENDS) +KERNEL_SECCOMP_FILTER:libseccomp + DEPENDS:=$(ARCH_DEPENDS) +KERNEL_SECCOMP_FILTER:libseccomp endef define Package/runc/description -runc is a CLI tool for spawning and running containers according to the OCI specification. + runc is a CLI tool for spawning and running containers according to the OCI + specification. endef GO_PKG_INSTALL_ALL:=1