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