Jake Buchholz cff6711ee4 community/containerd: update to 1.2.6
See https://github.com/containerd/containerd/releases/tag/v1.2.6 for full details.

Updates CNI to v0.75 to fix CVE-2019-9946
2019-04-08 05:14:23 +03:00

50 lines
1.4 KiB
Plaintext

# Contributor: Jake Buchholz <tomalok@gmail.com>
# Maintainer: Jake Buchholz <tomalok@gmail.com>
pkgname=containerd
# NOTE: containerd's Makefile tries to get REVISION from git, but we're building from a tarball.
_commit=894b81a4b802e4eb2a91d1ce216b8817763c29fb
pkgver=1.2.6
pkgrel=0
pkgdesc="An open and reliable container runtime"
url="https://containerd.io"
arch="all"
license="Apache-2.0"
depends="runc"
makedepends="btrfs-progs-dev go go-md2man libseccomp-dev"
subpackages="$pkgname-doc"
source="containerd-$pkgver.tar.gz::https://github.com/containerd/containerd/archive/v$pkgver.tar.gz"
builddir="$srcdir/src/github.com/containerd/containerd"
# secfixes:
# 1.2.6:
# - CVE-2019-9946
build() {
cd "$srcdir"
export GOPATH="$PWD"
mkdir -p $(dirname "$builddir")
ln -s "$PWD/$pkgname-$pkgver" "$builddir"
cd "$builddir"
make VERSION="v$pkgver" REVISION="$_commit"
make man
}
check() {
cd "$builddir"
./bin/containerd --version
}
package() {
cd "$builddir"
install -d "$pkgdir"/usr/bin/
install -Dsm755 "$builddir"/bin/* "$pkgdir"/usr/bin/
install -d "$pkgdir"/usr/share/man/man1/
install -Dm644 "$builddir"/man/*.1 "$pkgdir"/usr/share/man/man1/
install -d "$pkgdir"/usr/share/man/man5/
install -Dm644 "$builddir"/man/*.5 "$pkgdir"/usr/share/man/man5/
}
sha512sums="287b064cb3e57369e34f6debb434526d6bd4857e337e489c56e4ca484c66e161bbda911b4fc29cb49808a756f6ec7af5629e46d693644500e3bf2d9e45e87e73 containerd-1.2.6.tar.gz"