Hi Javier, Am Montag, 20. September 2021, 22:07:15 CEST schrieb Javier via aur-general:
Did you merge the changes on "/etc/makepkg.conf"? There were curl specific changes coming with pacman 6.0.1-2...
thanks for your suggestion. I'm using the official arch-build docker container (archlinux:base-devel) as base for my testbuilds, so I assumed the changes have been made therein. But I had a closer look. The relevant changes were: +++ /etc/makepkg.conf.pacnew 2021-09-15 15:38:35.000000000 +0200 @@ -9,10 +9,10 @@ # #-- The download utilities that makepkg should use to acquire sources # Format: 'protocol::agent' -DLAGENTS=('file::/usr/bin/curl -gqC - -o %o %u' - 'ftp::/usr/bin/curl -gqfC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %u' - 'http::/usr/bin/curl -gqb "" -fLC - --retry 3 --retry-delay 3 -o %o %u' - 'https::/usr/bin/curl -gqb "" -fLC - --retry 3 --retry-delay 3 -o %o %u' +DLAGENTS=('file::/usr/bin/curl -qgC - -o %o %u' + 'ftp::/usr/bin/curl -qgfC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %u' + 'http::/usr/bin/curl -qgb "" -fLC - --retry 3 --retry-delay 3 -o %o %u' + 'https::/usr/bin/curl -qgb "" -fLC - --retry 3 --retry-delay 3 -o %o %u' 'rsync::/usr/bin/rsync --no-motd -z %u %o' 'scp::/usr/bin/scp -C %u %o') so it's basically just reordering -g and -q options. I made the config merge on my local system and it does not change the behaviour (as excpected). Also a short investigation in the build container showed the changes have been made by the container image builders. -- MfG Jan