diff options
author | Jake Buchholz <tomalok@gmail.com> | 2019-01-10 02:13:12 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-01-10 09:33:59 +0000 |
commit | 96457d52340f548ff495b40aed2f066494891533 (patch) | |
tree | 732827e0d3fbd1890aabab224f6ff41566f53200 /testing/containerd | |
parent | e3a6a34509c08e45625c940842bdde6bf55af6bc (diff) | |
download | aports-96457d52340f548ff495b40aed2f066494891533.tar.bz2 aports-96457d52340f548ff495b40aed2f066494891533.tar.xz |
community/containerd: update to 1.2.1, move from testing
Splitting containerd out of community/docker, upgrading to 1.2.1, and remove from testing. Also fixed containerd --version to report the proper commit hash.
Diffstat (limited to 'testing/containerd')
-rw-r--r-- | testing/containerd/APKBUILD | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/testing/containerd/APKBUILD b/testing/containerd/APKBUILD deleted file mode 100644 index 7aadd92583..0000000000 --- a/testing/containerd/APKBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# Maintainer: Natanael Copa <ncopa@alpinelinux.org> -pkgname=containerd -pkgver=1.0.0 -pkgrel=2 -pkgdesc="An open and reliable container runtime" -url="https://containerd.io/" -arch="all" -license="Apache-2.0" -makedepends="go linux-headers btrfs-progs-dev protobuf-dev" -source="containerd-$pkgver.tar.gz::https://github.com/containerd/containerd/archive/v$pkgver.tar.gz - " - -builddir="$srcdir"/containerd-$pkgver - -build() { - cd "$builddir" - mkdir src - mv vendor/* src - ln -s "$builddir" src/github.com/containerd/containerd - GOPATH="$PWD" LDFLAGS="" make VERSION="$pkgver" REVISION="$pkgrel" -} - -check() { - cd "$builddir" - ./bin/containerd --version -} - -package() { - cd "$builddir" - - install -d "$pkgdir"/usr/bin/ - install -m755 "$builddir"/bin/* "$pkgdir"/usr/bin/ -} - -sha512sums="8c1a03de7f30976675e4482b4f18f4b87da56108de4d92f2e33b4cb4f8c188af5b3fad87971a294eac8442a0fb6ddae48cda81334c363203a8c8bdfc09176a7a containerd-1.0.0.tar.gz" |