mirror of
https://github.com/luzifer-aur/envrun.git
synced 2024-11-09 19:40:02 +00:00
Add auto-update script
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
0ae21aa7fb
commit
205c17a2d9
1 changed files with 34 additions and 0 deletions
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/catalog-api/envrun/latest.txt?p=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