Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

runc: update to 1.0.0rc10. #18526

Merged
merged 1 commit into from
Jan 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions srcpkgs/runc/patches/nowhich.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git man/md2man-all.sh man/md2man-all.sh
index f850ddf3..aae189da 100755
--- man/md2man-all.sh
+++ man/md2man-all.sh
@@ -9,7 +9,7 @@ cd "$(dirname "$(readlink -f "$BASH_SOURCE")")"
pwd
}

-if ! ( which go-md2man &>/dev/null ); then
+if ! ( command -v go-md2man &>/dev/null ); then
echo "To install man pages, please install 'go-md2man'."
exit 0
fi
6 changes: 3 additions & 3 deletions srcpkgs/runc/template
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Template file for 'runc'
pkgname=runc
version=1.0.0
revision=11
_subver="rc9"
revision=12
_subver="rc10"
_ver="$version-$_subver"
wrksrc="$pkgname-$_ver"
build_style=go
Expand All @@ -15,7 +15,7 @@ maintainer="Paul Knopf <pauldotknopf@gmail.com>"
license="Apache-2.0"
homepage="https://github.com/opencontainers/runc"
distfiles="https://github.com/opencontainers/runc/releases/download/v${_ver}/runc.tar.xz"
checksum=2f1c7ebac67c779affe2bb4370bba44b08ed280144ba58c86219186e303832ba
checksum=c823307ce8695af05381c5c25a92daacd6219c674d8bebaa0e1bff801c2b1f24

post_build() {
make man
Expand Down