Add auto-updater

This commit is contained in:
Knut Ahlers 2024-09-04 12:32:11 +02:00
parent 0c6aaac00b
commit 1506836de9
Signed by: luzifer
SSH Key Fingerprint: SHA256:/xtE5lCgiRDQr8SLxHMS92ZBlACmATUmF1crK16Ks4E
2 changed files with 32 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
*
!.gitignore
!PKGBUILD
!update_version.sh

31
update_version.sh Executable file
View File

@ -0,0 +1,31 @@
#!/bin/bash
set -euxo pipefail
# Read pkg name
PKG=$(awk -F '=' '/pkgname=/{ print $2 }' PKGBUILD)
# Get latest version
VER=$(curl -sSfL "https://lv.luzifer.io/v1/catalog/cluster-api/latest/version")
# Insert latest version into PKGBUILD
sed -i \
-e "s/^pkgver=.*/pkgver=${VER}/" \
PKGBUILD
# Check whether this changed anything
if (git diff --exit-code PKGBUILD); then
echo "Package ${PKG} has most recent version ${VER}"
exit 0
fi
# Reset pkgrel
sed -i \
-e 's/pkgrel=.*/pkgrel=1/' \
PKGBUILD
# Update source hashes
updpkgsums
# Commit changes
git add PKGBUILD
git commit -m "${PKG} v${VER}"