aur/.util.sh
nyyu 4cfdfade4a
Some checks failed
continuous-integration/drone/push Build is failing
ci: improve
2022-06-28 13:47:22 +02:00

23 lines
661 B
Bash

#!/bin/bash
update_github_tag() {
ver=$(curl -Ls https://api.github.com/repos/"$1"/tags | jq -r '[.[] | select(.name | index("rc") | not) | select (.name | index("dev") | not)] | first | .name' | cut -c2-)
echo "${ver}" | grep -Eq "^(\w|\+|\.)+$" && sed -i "s/pkgver=.*/pkgver=${ver}/" PKGBUILD
}
update_pkg() {
if [ $(git diff . | wc -l) -ne 0 ]; then
sed -i 's/pkgrel=.*/pkgrel=1/' PKGBUILD
if updpkgsums; then
makepkg --printsrcinfo >.SRCINFO
git add .SRCINFO PKGBUILD
if git commit -m "$(basename $(pwd)): update to ${ver} [CI SKIP]"; then
git push --set-upstream origin "${DRONE_BRANCH}"
fi
fi
fi
}