runc: update to 1.2.5.

This commit is contained in:
Tim Sandquist 2024-12-01 20:15:59 -06:00 committed by classabbyamp
parent 52044be5ee
commit 2fd0015977

View file

@ -1,20 +1,22 @@
# Template file for 'runc'
pkgname=runc
version=1.1.13
revision=2
version=1.2.5
revision=1
build_style=go
go_import_path=github.com/opencontainers/runc
go_build_tags="seccomp apparmor"
go_ldflags="-X main.version=${version}"
make_check_args="-skip=(^TestValidateSysctlWithBindHostNetNS$|^TestNsenterValidPaths$|^TestNsenterChildLogging$)"
hostmakedepends="pkg-config go-md2man"
makedepends="libseccomp-devel"
checkdepends="curl tar xz"
short_desc="CLI tool for spawning and running OCI containers"
maintainer="Orphaned <orphan@voidlinux.org>"
license="Apache-2.0"
homepage="https://github.com/opencontainers/runc"
changelog="https://github.com/opencontainers/runc/raw/main/CHANGELOG.md"
distfiles="https://github.com/opencontainers/runc/releases/download/v${version}/runc.tar.xz"
checksum=d20e76688ce0681dc687369e18b47aeffcfdac5184c978befa7ce5da35e797fe
checksum=700be41d0bf2be1ea8680fa77a801d307f1071062c6ecfed5874f6b803c5ef73
post_build() {
make man
@ -23,3 +25,8 @@ post_build() {
post_install() {
make install-man PREFIX="${DESTDIR}/usr"
}
pre_check() {
# Skip integration tests
make_check_target=$(go list ./... | grep -v /integration)
}