mirror of
https://github.com/luzifer-aur/vault-bin.git
synced 2024-12-20 00:51:15 +00:00
Add auto-update script
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
dac9c9a58e
commit
176cfda3f2
2 changed files with 38 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -2,6 +2,7 @@
|
|||
!.gitignore
|
||||
!PKGBUILD
|
||||
!.SRCINFO
|
||||
!update_version.sh
|
||||
!vault.hcl
|
||||
!vault.install
|
||||
!vault.service
|
||||
|
|
37
update_version.sh
Executable file
37
update_version.sh
Executable file
|
@ -0,0 +1,37 @@
|
|||
#!/bin/bash
|
||||
set -euxo pipefail
|
||||
|
||||
# Read pkg name
|
||||
PKG=$(awk -F '=' '/pkgname=/{ print $2 }' PKGBUILD)
|
||||
|
||||
# Get latest version
|
||||
VER=$(
|
||||
curl -sSf "https://lv.luzifer.io/catalog-api/vault/latest.txt?p=version"
|
||||
)
|
||||
[[ -n $VER ]] || exit 1
|
||||
|
||||
# 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
|
||||
|
||||
# Update .SRCINFO
|
||||
makepkg --printsrcinfo >.SRCINFO
|
||||
|
||||
# Commit changes
|
||||
git add PKGBUILD .SRCINFO
|
||||
git commit -m "${PKG} v${VER}"
|
Loading…
Reference in a new issue