mirror of
https://github.com/luzifer-aur/beekeeper-studio-bin.git
synced 2024-12-20 14:51:16 +00:00
Add LatestVer based update script
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
1d924dec3e
commit
90118eb07a
2 changed files with 35 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -2,4 +2,4 @@
|
||||||
!.gitignore
|
!.gitignore
|
||||||
!.SRCINFO
|
!.SRCINFO
|
||||||
!PKGBUILD
|
!PKGBUILD
|
||||||
!update.sh
|
!update_version.sh
|
||||||
|
|
34
update_version.sh
Executable file
34
update_version.sh
Executable file
|
@ -0,0 +1,34 @@
|
||||||
|
#!/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/beekeeper-studio/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
|
||||||
|
|
||||||
|
# Update .SRCINFO
|
||||||
|
makepkg --printsrcinfo >.SRCINFO
|
||||||
|
|
||||||
|
# Commit changes
|
||||||
|
git add PKGBUILD .SRCINFO
|
||||||
|
git commit -m "${PKG} v${VER}"
|
Loading…
Reference in a new issue