diff options
| author | Woodpecker CI <emmett1.2miligrams@protonmail.com> | 2025-09-11 19:08:39 +0000 |
|---|---|---|
| committer | Woodpecker CI <emmett1.2miligrams@protonmail.com> | 2025-09-11 19:08:39 +0000 |
| commit | 7bcab9f10f7c2fd8575a2cdb1af34df2e2a507d1 (patch) | |
| tree | 8cf9d6ba17a283f679676a8cae7a23f86bcb644e /runc | |
| parent | 8722d793c5f2694a61b35d515434c11d7fce5780 (diff) | |
| download | alicelinux-7bcab9f10f7c2fd8575a2cdb1af34df2e2a507d1.tar.gz alicelinux-7bcab9f10f7c2fd8575a2cdb1af34df2e2a507d1.zip | |
Woodpecker CI 5b6da4a4ac4587f28f132509e968b110a3a4a689 [SKIP CI]
Diffstat (limited to 'runc')
| -rw-r--r-- | runc/.checksum | 1 | ||||
| -rw-r--r-- | runc/.files | 23 | ||||
| -rw-r--r-- | runc/abuild | 18 | ||||
| -rw-r--r-- | runc/depends | 3 |
4 files changed, 45 insertions, 0 deletions
diff --git a/runc/.checksum b/runc/.checksum new file mode 100644 index 00000000..c77fa147 --- /dev/null +++ b/runc/.checksum @@ -0,0 +1 @@ +0e3b23a361204e7e64d1ba7a9f684ade556479f3f78cc9080ef40a8a51a8e5eb runc-v1.3.1.tar.gz diff --git a/runc/.files b/runc/.files new file mode 100644 index 00000000..f6a4ff36 --- /dev/null +++ b/runc/.files @@ -0,0 +1,23 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/runc +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man8/ +-rw-r--r-- root/root usr/share/man/man8/runc-checkpoint.8.gz +-rw-r--r-- root/root usr/share/man/man8/runc-create.8.gz +-rw-r--r-- root/root usr/share/man/man8/runc-delete.8.gz +-rw-r--r-- root/root usr/share/man/man8/runc-events.8.gz +-rw-r--r-- root/root usr/share/man/man8/runc-exec.8.gz +-rw-r--r-- root/root usr/share/man/man8/runc-kill.8.gz +-rw-r--r-- root/root usr/share/man/man8/runc-list.8.gz +-rw-r--r-- root/root usr/share/man/man8/runc-pause.8.gz +-rw-r--r-- root/root usr/share/man/man8/runc-ps.8.gz +-rw-r--r-- root/root usr/share/man/man8/runc-restore.8.gz +-rw-r--r-- root/root usr/share/man/man8/runc-resume.8.gz +-rw-r--r-- root/root usr/share/man/man8/runc-run.8.gz +-rw-r--r-- root/root usr/share/man/man8/runc-spec.8.gz +-rw-r--r-- root/root usr/share/man/man8/runc-start.8.gz +-rw-r--r-- root/root usr/share/man/man8/runc-state.8.gz +-rw-r--r-- root/root usr/share/man/man8/runc-update.8.gz +-rw-r--r-- root/root usr/share/man/man8/runc.8.gz diff --git a/runc/abuild b/runc/abuild new file mode 100644 index 00000000..612a44c6 --- /dev/null +++ b/runc/abuild @@ -0,0 +1,18 @@ +name=runc +version=1.3.1 +release=1 +source="https://github.com/opencontainers/${name}/archive/v${version}/${name}-v${version}.tar.gz" + +build() { + export GOPATH="$PWD/go" + export BUILDTAGS='seccomp apparmor' + export CGO_CPPFLAGS="${CPPFLAGS}" + export CGO_CFLAGS="${CFLAGS}" + export CGO_CXXFLAGS="${CXXFLAGS}" + export CGO_LDFLAGS="${LDFLAGS}" + export GOFLAGS="-trimpath -mod=readonly -modcacherw" + make runc man + install -Dm755 runc "$PKG/usr/bin/runc" + install -d "$PKG/usr/share/man/man8" + install -m644 man/man8/*.8 "$PKG/usr/share/man/man8" +} diff --git a/runc/depends b/runc/depends new file mode 100644 index 00000000..36c44ea1 --- /dev/null +++ b/runc/depends @@ -0,0 +1,3 @@ +libseccomp +go-md2man +libseccomp |