curl-32: 8.11.0 -> 8.11.1

This commit is contained in:
Tim Biermann 2024-12-11 20:24:54 +01:00
parent 544ef29eb0
commit f8a43614b0
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 5 additions and 35 deletions

View File

@ -1,6 +1,5 @@
untrusted comment: verify with /etc/ports/compat-32.pub
RWSwxGo/zH7eXbkKhFoHwLs8SwIkt2YFvTdE1unPSc/XPTbGH4VXbaBdklQMqzCGifnAitFIO+/n/FWPzmvZsHYWrnrQO0RkkgQ=
SHA256 (Pkgfile) = 360e4e44106f57e7169cfbcadae7ec8e5470d0d6ac271008cf7d99ae8bf57afc
RWSwxGo/zH7eXZ87KWTayYexVsJE94hVhHtPiMSKZl5jNTXR04csYnd3xuxuVDDfnpQc33ZdStgPiRLjjWlU74ANZ32e0eCg6A4=
SHA256 (Pkgfile) = 659f0c6e70fcf53a48cddd35b80663d52e0b7259428dcb2b8a2b3f1a493ba25c
SHA256 (.footprint) = 1f49d30883c63da2e3d72a616a65fa40806923dd3c80aa299aebe1ceb544379b
SHA256 (curl-8.11.0.tar.xz) = db59cf0d671ca6e7f5c2c5ec177084a33a79e04c97e71cf183a5cdea235054eb
SHA256 (878bc429f26c27294787dc59d7b53345d9edc5aa.patch) = 2b1f6b09167a3b90c3e13d692a880dd83c20dbf02e5f6036176f8024d2d3cfcc
SHA256 (curl-8.11.1.tar.xz) = c7ca7db48b0909743eaef34250da02c19bc61d4f1dcedd6603f109409536ab56

View File

@ -1,26 +0,0 @@
From 878bc429f26c27294787dc59d7b53345d9edc5aa Mon Sep 17 00:00:00 2001
From: Jesus Malo Poyatos <jmalopoy@opentext.com>
Date: Thu, 7 Nov 2024 14:00:53 +0100
Subject: [PATCH] setopt: fix CURLOPT_HTTP_CONTENT_DECODING
Regression from 30da1f5974d34841b30c4f (shipped in 8.11.0)
Fixes #15511
Closes #15510
---
lib/setopt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/setopt.c b/lib/setopt.c
index 4f0697212739ef..ba80644bc73279 100644
--- a/lib/setopt.c
+++ b/lib/setopt.c
@@ -1146,7 +1146,7 @@ static CURLcode setopt_long(struct Curl_easy *data, CURLoption option,
/*
* raw data passed to the application when content encoding is used
*/
- data->set.http_ce_skip = enabled;
+ data->set.http_ce_skip = !enabled; /* reversed */
break;
#if !defined(CURL_DISABLE_FTP) || defined(USE_SSH)

View File

@ -5,10 +5,9 @@
# Optional: brotli-32
name=curl-32
version=8.11.0
version=8.11.1
release=1
source=(https://curl.se/download/${name%-*}-$version.tar.xz
878bc429f26c27294787dc59d7b53345d9edc5aa.patch)
source=(https://curl.se/download/${name%-*}-$version.tar.xz)
build() {
cd ${name%-*}-$version
@ -18,8 +17,6 @@ build() {
before continuing with curl-32.\033[0m\n" &&
exit 1
patch -Np1 -i $SRC/878bc429f26c27294787dc59d7b53345d9edc5aa.patch
./configure --prefix=/usr \
--libdir=/usr/lib32 \
--enable-ipv6 \