mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-07 04:44:57 +02:00
63 lines
1.7 KiB
Text
63 lines
1.7 KiB
Text
# Contributor: Jake Buchholz Göktürk <tomalok@gmail.com>
|
|
# Maintainer: Jake Buchholz Göktürk <tomalok@gmail.com>
|
|
|
|
pkgname=runc
|
|
pkgdesc="CLI tool for spawning and running containers according to the OCI specification"
|
|
url="https://www.opencontainers.org"
|
|
_commit=4ca628d1d4c974f92d24daccb901aa078aad748e
|
|
pkgver=1.3.0
|
|
pkgrel=1
|
|
arch="all"
|
|
license="Apache-2.0"
|
|
makedepends="bash go go-md2man libseccomp-dev libtool"
|
|
subpackages="$pkgname-doc"
|
|
source="https://github.com/opencontainers/runc/archive/v$pkgver/runc-$pkgver.tar.gz
|
|
add-seccomp-for-loongarch64.patch
|
|
"
|
|
options="!check"
|
|
|
|
provides="oci-runtime"
|
|
provider_priority=90
|
|
|
|
# secfixes:
|
|
# 1.1.14-r0:
|
|
# - CVE-2024-45310
|
|
# 1.1.12-r0:
|
|
# - CVE-2024-21626
|
|
# 1.1.4-r0:
|
|
# - CVE-2023-25809
|
|
# - CVE-2023-27561
|
|
# - CVE-2023-28642
|
|
# 1.1.4-r7:
|
|
# - CVE-2023-27561
|
|
# 1.1.2-r0:
|
|
# - CVE-2022-29162
|
|
# 1.0.3-r0:
|
|
# - CVE-2021-43784
|
|
# 1.0.0_rc95-r0:
|
|
# - CVE-2021-30465
|
|
# 1.0.0_rc10-r0:
|
|
# - CVE-2019-19921
|
|
# 1.0.0_rc9-r0:
|
|
# - CVE-2019-16884
|
|
# 1.0.0_rc7-r0:
|
|
# - CVE-2019-5736
|
|
|
|
export GOCACHE="${GOCACHE:-"$srcdir/go-cache"}"
|
|
export GOTMPDIR="${GOTMPDIR:-"$srcdir"}"
|
|
export GOMODCACHE="${GOMODCACHE:-"$srcdir/go"}"
|
|
|
|
build() {
|
|
make COMMIT="$_commit"
|
|
make man
|
|
}
|
|
|
|
package() {
|
|
install -Dsm755 runc "$pkgdir"/usr/bin/runc
|
|
install -Dm644 "$builddir"/man/man8/* -t "$pkgdir"/usr/share/man/man8/
|
|
}
|
|
|
|
sha512sums="
|
|
63422501f6189d0d47f6b2f59565de572bc68b138a65c7dbcc8b5ad42dbc37245ee66e2683ab61971a84c076a15f54f484c37fde4a30815ee19edc9a0d97e9f4 runc-1.3.0.tar.gz
|
|
870577118549be2082c2d9c1f55687689d86c929886b74cb30fe09765a57f5deb1d55c679d7ace44761e6d339edbf1ed970b46c90c73f22970abe219e98c1c89 add-seccomp-for-loongarch64.patch
|
|
"
|