chore(update): 0.19.0

This commit is contained in:
Lukas Grossar
2024-10-03 09:13:43 +02:00
parent fedd7d54ee
commit 0023e75836
2 changed files with 9 additions and 9 deletions

View File

@@ -1,14 +1,14 @@
pkgbase = k0sctl-bin
pkgdesc = A bootstrapping and management tool for k0s clusters.
pkgver = 0.18.1
pkgver = 0.19.0
pkgrel = 1
url = https://github.com/k0sproject/k0sctl
arch = x86_64
license = Apache
license = Apache-2.0
provides = k0sctl
conflicts = k0sctl
options = !strip
source = k0sctl-linux-x64-0.18.1::https://github.com/k0sproject/k0sctl/releases/download/v0.18.1/k0sctl-linux-x64
sha256sums = 135e012b3ff58cc193b0718419f4afc4cdca36f94703ab31f83944123ebd7787
source = k0sctl-linux-amd64-0.19.0::https://github.com/k0sproject/k0sctl/releases/download/v0.19.0/k0sctl-linux-amd64
sha256sums = a7394088c710633b6c02bbbb5a9ff8d9ab94a31e5d17f7b34808cd4aeefef40c
pkgname = k0sctl-bin

View File

@@ -2,20 +2,20 @@
# Co-Maintainer: Lukas Grossar <lukasgrossar@gmail.com>
pkgname=k0sctl-bin
pkgver=0.18.1
pkgver=0.19.0
pkgrel=1
pkgdesc="A bootstrapping and management tool for k0s clusters."
arch=('x86_64')
url="https://github.com/k0sproject/k0sctl"
license=('Apache')
source=("k0sctl-linux-x64-$pkgver::https://github.com/k0sproject/k0sctl/releases/download/v${pkgver}/k0sctl-linux-x64")
sha256sums=('135e012b3ff58cc193b0718419f4afc4cdca36f94703ab31f83944123ebd7787')
license=('Apache-2.0')
source=("k0sctl-linux-amd64-$pkgver::https://github.com/k0sproject/k0sctl/releases/download/v${pkgver}/k0sctl-linux-amd64")
sha256sums=('a7394088c710633b6c02bbbb5a9ff8d9ab94a31e5d17f7b34808cd4aeefef40c')
options=(!strip)
provides=("k0sctl")
conflicts=("k0sctl")
package() {
install -Dm 755 "$srcdir/k0sctl-linux-x64-$pkgver" "$pkgdir/usr/bin/k0sctl"
install -Dm 755 "$srcdir/k0sctl-linux-amd64-$pkgver" "$pkgdir/usr/bin/k0sctl"
"$pkgdir/usr/bin/k0sctl" completion --shell bash | install -Dm644 /dev/stdin "$pkgdir/usr/share/bash-completion/completions/k0sctl"
"$pkgdir/usr/bin/k0sctl" completion --shell zsh | install -Dm644 /dev/stdin "$pkgdir/usr/share/zsh/site-functions/_k0sctl"