Rebuild with go-md2man

This commit is contained in:
2025-10-05 12:32:18 +03:00
parent 283ac7ccf9
commit 51e8ce3979
2 changed files with 8 additions and 12 deletions
+4 -3
View File
@@ -1,7 +1,7 @@
name: runc name: runc
description: CLI tool for spawning and running containers according to the OCI specification description: CLI tool for spawning and running containers according to the OCI specification
version: 1.3.2 version: 1.3.2
revision: 1 revision: 2
url: https://github.com/opencontainers/runc url: https://github.com/opencontainers/runc
license: Apache-2.0 license: Apache-2.0
architecture: any architecture: any
@@ -10,8 +10,9 @@ depends:
- libseccomp - libseccomp
make_depends: make_depends:
- golang - golang
- go-md2man
downloads: downloads:
- url: https://github.com/opencontainers/runc/archive/refs/tags/v${BPM_PKG_VERSION}.tar.gz - url: https://github.com/opencontainers/runc/archive/refs/tags/v${BPM_PKG_VERSION}.tar.gz
no_extract: true extract_to: ${BPM_SOURCE}/src/github.com/opencontainers/runc
filepath: runc.tar.gz extract_strip_components: 1
checksum: 831d1ab47fe5eb1a29216593e1ced036c4306d012e5ef35fbf475dbbc8eab317 checksum: 831d1ab47fe5eb1a29216593e1ced036c4306d012e5ef35fbf475dbbc8eab317
+4 -9
View File
@@ -2,20 +2,12 @@
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE # BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT # BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
# The prepare function is executed in the root of the temp directory
# This function is used for putting downloaded files to the correct location or applying patches
prepare() {
mkdir -p "$BPM_SOURCE"/src/github.com/opencontainers/runc
tar -xvf runc.tar.gz --strip-components=1 -C "$BPM_SOURCE"/src/github.com/opencontainers/runc
}
# The build function is executed in the source directory # The build function is executed in the source directory
# This function is used to compile the source code # This function is used to compile the source code
build() { build() {
cd "$BPM_SOURCE"/src/github.com/opencontainers/runc cd "$BPM_SOURCE"/src/github.com/opencontainers/runc
export GOPATH="$BPM_SOURCE" make GOPATH="$BPM_SOURCE" GOFLAGS="-trimpath -mod=readonly -modcacherw" BUILDTAGS="seccomp" runc man
make GOFLAGS="-trimpath -mod=readonly -modcacherw" BUILDTAGS="seccomp"
} }
# The package function is executed in the source directory # The package function is executed in the source directory
@@ -25,6 +17,9 @@ package() {
install -Dm755 runc "$BPM_OUTPUT"/usr/bin/runc install -Dm755 runc "$BPM_OUTPUT"/usr/bin/runc
# Install man pages
install -Dm644 man/man8/*.8 -t "$BPM_OUTPUT"/usr/share/man/man8/
# Install bash completions # Install bash completions
install -Dm644 contrib/completions/bash/runc "$BPM_OUTPUT"/usr/share/bash-completion/completions/runc install -Dm644 contrib/completions/bash/runc "$BPM_OUTPUT"/usr/share/bash-completion/completions/runc