mirror of
https://github.com/luzifer-aur/librespeed-cli.git
synced 2024-12-20 08:01:19 +00:00
Add version-update script
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
4d2b8be894
commit
03274cf2ea
1 changed files with 30 additions and 0 deletions
30
update_version.sh
Executable file
30
update_version.sh
Executable file
|
@ -0,0 +1,30 @@
|
|||
#!/bin/bash
|
||||
set -euxo pipefail
|
||||
|
||||
PKG=$(awk -F '=' '/^pkgname=/{ print $2 }' PKGBUILD)
|
||||
|
||||
# Get latest version
|
||||
VER=$(git ls-remote --tags --sort -v:refname https://github.com/librespeed/speedtest-cli.git |
|
||||
head -n1 |
|
||||
grep -Eo '[0-9.]+$')
|
||||
|
||||
# Insert latest version into PKGBUILD and update hashes
|
||||
sed -i \
|
||||
-e "s/^pkgver=.*/pkgver=${VER}/" \
|
||||
-e 's/pkgrel=.*/pkgrel=1/' \
|
||||
PKGBUILD
|
||||
|
||||
# Check whether this changed anything
|
||||
if (git diff --exit-code PKGBUILD); then
|
||||
echo "Package ${PKG} has most recent version ${VER}"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
updpkgsums
|
||||
|
||||
# Update .SRCINFO
|
||||
makepkg --printsrcinfo >.SRCINFO
|
||||
|
||||
# Commit changes
|
||||
git add PKGBUILD .SRCINFO
|
||||
git commit -m "${PKG} v${VER}"
|
Loading…
Reference in a new issue