update to v0.9.0

This commit is contained in:
Lukas Grossar
2018-07-18 11:22:08 +02:00
parent 1e2e26fc42
commit 1a95ab983b
2 changed files with 7 additions and 7 deletions

View File

@@ -1,13 +1,13 @@
pkgbase = ark-bin pkgbase = ark-bin
pkgdesc = Backup client for Kubernetes pkgdesc = Backup client for Kubernetes
pkgver = 0.8.2 pkgver = 0.9.0
pkgrel = 1 pkgrel = 1
url = https://github.com/heptio/ark url = https://github.com/heptio/ark
arch = x86_64 arch = x86_64
license = Apache license = Apache
optdepends = kubectl-bin: To connect to Kubernetes optdepends = kubectl-bin: To connect to Kubernetes
source = https://github.com/heptio/ark/releases/download/v0.8.2/ark-v0.8.2-linux-amd64.tar.gz source = https://github.com/heptio/ark/releases/download/v0.9.0/ark-v0.9.0-linux-amd64.tar.gz
sha256sums = 6ce965c1ae715e3153ae920af2fff4c4319fb8e137159a786d2993ecf63c660e sha256sums = 1a452cd2b6f2b165da274b7b293c6a1f96c9020cd82a07f911a123634b82308f
pkgname = ark-bin pkgname = ark-bin

View File

@@ -1,7 +1,7 @@
# Maintainer: Lukas Grossar <lukas.grossar@gmail.com> # Maintainer: Lukas Grossar <lukas.grossar@gmail.com>
pkgname=ark-bin pkgname=ark-bin
pkgver=0.8.2 pkgver=0.9.0
pkgrel=1 pkgrel=1
pkgdesc="Backup client for Kubernetes" pkgdesc="Backup client for Kubernetes"
arch=('x86_64') arch=('x86_64')
@@ -9,13 +9,13 @@ url="https://github.com/heptio/ark"
optdepends=('kubectl-bin: To connect to Kubernetes') optdepends=('kubectl-bin: To connect to Kubernetes')
license=('Apache') license=('Apache')
source=("https://github.com/heptio/ark/releases/download/v${pkgver}/ark-v${pkgver}-linux-amd64.tar.gz") source=("https://github.com/heptio/ark/releases/download/v${pkgver}/ark-v${pkgver}-linux-amd64.tar.gz")
sha256sums=('6ce965c1ae715e3153ae920af2fff4c4319fb8e137159a786d2993ecf63c660e') sha256sums=('1a452cd2b6f2b165da274b7b293c6a1f96c9020cd82a07f911a123634b82308f')
package() { package() {
cd "$srcdir" cd "$srcdir"
install -Dm 755 ark "$pkgdir/usr/bin/ark" install -Dm 755 ark "$pkgdir/usr/bin/ark"
install -d 755 "$pkgdir/usr/share/bash-completion/completions" install -dm 755 "$pkgdir/usr/share/bash-completion/completions"
"$pkgdir/usr/bin/ark" completion bash > "$pkgdir/usr/share/bash-completion/completions/ark" "$pkgdir/usr/bin/ark" completion bash > "$pkgdir/usr/share/bash-completion/completions/ark"
install -d 755 "$pkgdir/usr/share/zsh/site-functions" install -dm 755 "$pkgdir/usr/share/zsh/site-functions"
"$pkgdir/usr/bin/ark" completion zsh > "$pkgdir/usr/share/zsh/site-functions/_ark" "$pkgdir/usr/bin/ark" completion zsh > "$pkgdir/usr/share/zsh/site-functions/_ark"
} }