mirror of
https://github.com/archlinux-jerry/pkgbuilds
synced 2024-11-01 12:32:24 +08:00
72 lines
1.8 KiB
Bash
Executable file
72 lines
1.8 KiB
Bash
Executable file
#!/bin/bash
|
|
# buildbot update hook for aur packages
|
|
set -e -o pipefail
|
|
|
|
assertPkgname() {
|
|
if [[ "$(basename $(pwd))" != "$PKGNAME" ]]; then
|
|
echo "Please run this script inside the $PKGNAME dir."
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
## This section does essential preparations
|
|
UPDATE_DIR='buildbot.update.d'
|
|
source ${UPDATE_DIR}/config.sh
|
|
assertPkgname
|
|
git pull --ff-only
|
|
git checkout $PKGBUILD
|
|
VER=$(source $PKGBUILD; printf "%s-%s" "$pkgver" "$pkgrel")
|
|
|
|
# This section does actual jobs
|
|
newPkgVer() {
|
|
# do not print anything to stdout other than new pkgver here
|
|
|
|
ver=$(curl -s "https://aur.archlinux.org/rpc/?v=5&type=info&arg[]=${PKGNAME}"| \
|
|
python3 -c 'import json; j=json.loads(input()); print(j.get("results", [dict()])[0].get("Version", 0))')
|
|
if [[ "$ver" == "$VER" ]]; then
|
|
echo "${PKGNAME} is up to date with aur." >&2
|
|
else
|
|
echo "${PKGNAME} has new ver form aur: ${ver}" >&2
|
|
echo "$ver"
|
|
fi
|
|
}
|
|
|
|
newpkgver=$(newPkgVer)
|
|
[ -z "$newpkgver" ] && exit 0
|
|
|
|
incfiles=''
|
|
for f in "${INCLUDE_FILES[@]}"; do
|
|
incfiles="$incfiles"$'\n'"$f"
|
|
done
|
|
|
|
excfiles='{'
|
|
for f in "${EXCLUDE_FILES[@]}"; do
|
|
excfiles="${excfiles}${f},"
|
|
done
|
|
excfiles="${excfiles}}"
|
|
[[ "$excfiles" == '{}' ]] && excfiles=''
|
|
|
|
pushd "$UPDATE_DIR" >/dev/null
|
|
rm -rf "$PKGNAME"
|
|
git clone --depth 1 "https://aur.archlinux.org/${PKGNAME}.git" "$PKGNAME"
|
|
|
|
cd "$PKGNAME" && prepare
|
|
for patch in "${PATCHES[@]}"; do
|
|
git apply "../${patch}"
|
|
done
|
|
|
|
add_files=$(eval ls -1 --almost-all --ignore=${excfiles})
|
|
add_files="${add_files}"$'\n'"${incfiles}"
|
|
|
|
while read f; do
|
|
[[ -z "$f" ]] && continue
|
|
cp -av "$f" ../../
|
|
(cd ../../ && git add "$f")
|
|
done <<< "$add_files"
|
|
|
|
cd ..
|
|
rm -rf "$PKGNAME"
|
|
popd >/dev/null
|
|
|
|
git commit -m "autoupdate: ${PKGNAME} to ${newpkgver} from aur"
|
|
git push
|