blob: 4aea7334018e4bbedaaaa4064e578f983c6610af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#!/bin/bash
set -euxo pipefail
date --iso-8601=seconds
# Get latest version
VER=$(curl "https://dl.lazycat.cloud/client/desktop/lzc-client-desktop.tar.zst.metadata.json" --silent | awk -F '"' '/buildVersion/ {print $4}')
MD5=$(curl "https://dl.lazycat.cloud/client/desktop/stable/lzc-client-desktop_${VER}.tar.zst.md5" --silent)
# Insert latest version into PKGBUILD and update hashes
sed -i -e "s/^_pkgver=.*/_pkgver=${VER}/" PKGBUILD
sed -i -e "s/^md5sums=.*/md5sums=('${MD5}'/" PKGBUILD
# Check whether this changed anything
if (git diff --exit-code PKGBUILD); then
echo "Package has most recent version ${VER}"
exit 0
fi
sed -i \
-e 's/pkgrel=.*/pkgrel=1/' \
PKGBUILD
# Update .SRCINFO
if command -v /usr/local/bin/printsrcinfo > /dev/null; then
/usr/local/bin/printsrcinfo > .SRCINFO
else
makepkg --printsrcinfo > .SRCINFO
fi
# Commit changes
git add PKGBUILD .SRCINFO
git commit -m "update ${VER}"
git push
|