diff options
author | Johannes Wienke | 2021-09-26 17:19:49 +0200 |
---|---|---|
committer | Johannes Wienke | 2021-09-26 17:19:49 +0200 |
commit | 24c0307d5fd59732052f5f0c2295ad70cb03b64f (patch) | |
tree | 8fd00903c1e36402002d12e0e70156c2f6ba8f13 /post-update.sh | |
parent | 9e33149ff0f741480aedc24363d54f5343c62bc2 (diff) | |
download | aur-24c0307d5fd59732052f5f0c2295ad70cb03b64f.tar.gz |
ci: enable renovate
Diffstat (limited to 'post-update.sh')
-rwxr-xr-x | post-update.sh | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/post-update.sh b/post-update.sh new file mode 100755 index 000000000000..c2516ee42c40 --- /dev/null +++ b/post-update.sh @@ -0,0 +1,24 @@ +#!/bin/bash + +set -exuo pipefail + +uid="$(id -u)" + +# Move pkgrel back to 1 after a version bump +sed -i 's/pkgrel=.*/pkgrel=1/' ./PKGBUILD + +# Update checksums and the .SRCINFO file to match the new version. +# The easiest and most consistent way to do this is by using the +# archlinux-provided tools for this. Because renovate doesn't run in an arch +# container, use docker to spin up a temporary container for this purpose. +# makepkg in this container cannot be run as root. Therefore, create a +# temporary user for this. This used need to use the UID of the host's user to +# avoid file access problems when using bind mounts in docker. +docker run --rm -v "$(pwd):/pkg" archlinux:latest bash -c " +set -exuo pipefail +pacman -Syu --noconfirm pacman-contrib binutils +useradd -u ${uid} builder +cd /pkg +su builder -c updpkgsums +su builder -c 'makepkg --printsrcinfo > .SRCINFO' +" |