From c56d20ef6f9029fd083c4f90e3d6d6380a8291d6 Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Fri, 28 Dec 2018 12:44:00 +0100 Subject: [PATCH] Add auto-update script Signed-off-by: Knut Ahlers --- update_version.sh | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100755 update_version.sh diff --git a/update_version.sh b/update_version.sh new file mode 100755 index 0000000..77f6b98 --- /dev/null +++ b/update_version.sh @@ -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/vault2env/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}"