diff options
author | kpcyrd <git@rxv.cc> | 2017-11-04 23:05:14 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-11-04 23:08:36 +0100 |
commit | a2e00a0fd95bb960a2bf72e13fe08b84a8c05663 (patch) | |
tree | a0b9167bcb8e2c466fea3515e133b5cd46ca51bb | |
parent | e281538194e36e5dc2df3ca5e57ddb90cc25e29a (diff) | |
download | jenkins.debian.net-a2e00a0fd95bb960a2bf72e13fe08b84a8c05663.tar.xz |
reproducible-archlinux: fix dependency conflict
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rwxr-xr-x | bin/reproducible_setup_archlinux_schroot.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/reproducible_setup_archlinux_schroot.sh b/bin/reproducible_setup_archlinux_schroot.sh index 9f0b5fc8..be6f0f2c 100755 --- a/bin/reproducible_setup_archlinux_schroot.sh +++ b/bin/reproducible_setup_archlinux_schroot.sh @@ -126,6 +126,8 @@ if [ "$HOSTNAME" = "profitbricks-build4-amd64" ] ; then fi wget $WGET_OPTS -O "/tmp/PKGBUILD" "https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=pacman-git" +# work around dependency weirdness: pacman-git is currently detected as 5.0.1, which is older than the released version +echo 'provides=("pacman=5.0.2")' >> /tmp/PKGBUILD $USERCMD bash <<-__END__ set -e |