From 7dbe60c0f0b3c0e1264b6cf8e8dfdfddfdf64510 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Thu, 6 Jun 2024 14:03:18 +0200 Subject: [PATCH] curl: fix `--write-out '%{http_code}'` with Secure Channel The `git update-git-for-windows` command is a Unix Shell script that relies heavily on `curl`; For example, it calls: curl --silent --show-error --output /tmp/gfw-httpget-ruMLqjGG.txt \ --write-out '%{http_code}' \ https://api.github.com/repos/git-for-windows/git/releases/latest This worked well until cURL v8.8.0 was integrated. With the Secure Channel backend, the invocation would fail with this error message: curl: (43) A libcurl function was given a bad argument The same issue had been reported for a different SSL backend: https://github.com/curl/curl/issues/13845. Conveniently, all we have to do is to Backport the fix from the PR that addressed that ticket to address the bug at hand. This fixes https://github.com/microsoft/git/issues/655. Signed-off-by: Johannes Schindelin --- mingw-w64-curl/PKGBUILD | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mingw-w64-curl/PKGBUILD b/mingw-w64-curl/PKGBUILD index 9ccb261e9d6c2..c526b03aa23e0 100644 --- a/mingw-w64-curl/PKGBUILD +++ b/mingw-w64-curl/PKGBUILD @@ -6,7 +6,7 @@ pkgname=("${MINGW_PACKAGE_PREFIX}-${_realname}" "${MINGW_PACKAGE_PREFIX}-${_realname}-gnutls" "${MINGW_PACKAGE_PREFIX}-${_realname}-winssl") pkgver=8.8.0 -pkgrel=1 +pkgrel=2 pkgdesc="Command line tool and library for transferring data with URLs (mingw-w64)" arch=('any') mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32' 'clangarm64') @@ -32,12 +32,14 @@ depends=("${MINGW_PACKAGE_PREFIX}-gcc-libs" "${MINGW_PACKAGE_PREFIX}-zstd") options=('staticlibs') source=("https://github.com/curl/curl/releases/download/${_realname}-${pkgver//./_}/${_realname}-${pkgver}.tar.bz2"{,.asc} + "https://github.com/curl/curl/commit/9aa1d412b814a40868558da51a6ab28ce1384a58.patch" "pathtools.c" "pathtools.h" "0001-Make-cURL-relocatable.patch" "0002-Hack-make-relocation-work-inside-libexec-git-core-an.patch") sha256sums=('40d3792d38cfa244d8f692974a567e9a5f3387c547579f1124e95ea2a1020d0d' 'SKIP' + '8ff5e00fb774d46527808d5ce28ed8e352844523957788149e4969dae6e1c10e' '08209cbf1633fa92eae7e5d28f95f8df9d6184cc20fa878c99aec4709bb257fd' '965d3921ec4fdeec94a2718bc2c85ce5e1a00ea0e499330a554074a7ae15dfc6' 'd34c9474a0b54d36497e58b4792699ef37cc8b043a4cd5daf287e1e33f660207' @@ -90,6 +92,7 @@ prepare() { cp -fHv "${srcdir}"/pathtools.[ch] lib/ apply_patch_with_msg \ + 9aa1d412b814a40868558da51a6ab28ce1384a58.patch \ 0001-Make-cURL-relocatable.patch \ 0002-Hack-make-relocation-work-inside-libexec-git-core-an.patch