summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDominic Giebert2023-09-26 14:39:58 +0200
committerDominic Giebert2023-09-26 14:39:58 +0200
commit065e1b382b358bb4d0e398c74c32a33910cc0a97 (patch)
tree9fa72fec9d602ac65079f2ca7f049a032c51f5e3
parentd9ed8ed7e2b44029ce22179ba9f62a17817b5d5d (diff)
downloadaur-065e1b382b358bb4d0e398c74c32a33910cc0a97.tar.gz
Bump to 1.7.0
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD12
2 files changed, 11 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 503a587b1235..115e873c5778 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,13 +1,13 @@
pkgbase = kwctl-bin
pkgdesc = kwctl is the go-to CLI tool for Kubewarden users
- pkgver = 1.6.0
+ pkgver = 1.7.0
pkgrel = 2
url = https://www.kubewarden.io/
arch = x86_64
license = Apache
makedepends = cosign
provides = kwctl
- source = kwctl-bin-1.6.0.tar.gz::https://github.com/kubewarden/kwctl/releases/download/v1.6.0/kwctl-linux-x86_64.zip
- sha256sums = 923d84c0bae85135b7714bb39a3674f58c7d801dfa33e8645232cfc42c983320
+ source = kwctl-bin-1.7.0.tar.gz::https://github.com/kubewarden/kwctl/releases/download/v1.7.0/kwctl-linux-x86_64.zip
+ sha256sums = fd245767a6e7b46cb51467290640fe542e42a0802b8e2e2d6b94675ff47dd431
pkgname = kwctl-bin
diff --git a/PKGBUILD b/PKGBUILD
index a0c4280c5c6f..fd7f72b07aab 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=kwctl-bin
pkgdesc='kwctl is the go-to CLI tool for Kubewarden users'
-pkgver=1.6.0
+pkgver=1.7.0
pkgrel=2
arch=('x86_64')
license=('Apache')
@@ -10,12 +10,16 @@ url='https://www.kubewarden.io/'
makedepends=('cosign')
provides=('kwctl')
source=("$pkgname-$pkgver.tar.gz::https://github.com/kubewarden/kwctl/releases/download/v${pkgver}/kwctl-linux-x86_64.zip")
-sha256sums=('923d84c0bae85135b7714bb39a3674f58c7d801dfa33e8645232cfc42c983320')
+sha256sums=('fd245767a6e7b46cb51467290640fe542e42a0802b8e2e2d6b94675ff47dd431')
package() {
- # Checking the signature
- COSIGN_EXPERIMENTAL=1 cosign verify-blob --signature kwctl-linux-x86_64.sig --cert kwctl-linux-x86_64.pem kwctl-linux-x86_64
+ # Checking the signature
+ cosign verify-blob \
+ --signature kwctl-linux-x86_64.sig \
+ --cert kwctl-linux-x86_64.pem kwctl-linux-x86_64 \
+ --certificate-identity-regexp 'https://github.com/kubewarden/*' \
+ --certificate-oidc-issuer https://token.actions.githubusercontent.com
# Copy the binary
install -Dm755 "kwctl-linux-x86_64" "${pkgdir}/usr/bin/kwctl"