Accepting request 1066794 from home:Guillaume_G:branches:devel:libraries:c_c++
- Update to 7.88.1: * Bugfix release - Drop upstreamed patch: * curl-fix-uninitialized-value-in-tests.patch OBS-URL: https://build.opensuse.org/request/show/1066794 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/curl?expand=0&rev=328
This commit is contained in:
parent
bee35a323f
commit
4e4d9e6376
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fd17432cf28714a4cf39d89e26b8ace0d8901199fe5d01d75eb0ae3bbfcc731f
|
||||
size 2571564
|
@ -1,11 +0,0 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQEzBAABCgAdFiEEJ+3q8i86vOtQ25oSXMkI/bceEsIFAmPsh9UACgkQXMkI/bce
|
||||
EsKToQf/SgYuDYqTtBfcBRAkhngL+9BC+ggUtyY9ok7xdJsZWcYMNVv734otqCQ5
|
||||
WBp8X46NSgzsMvlsqwHZjuxiSkHpWr/a+io7V9Tauv8JSa4q4JXGq34OwlP/2QEP
|
||||
hyH2IlySeLv2mEmAq26tT0v8xLzwlTZz5EO8+upN7RgDefLOGOe1uefRO67RsFIq
|
||||
NtogAfiBFfPbQvyGR9Lux6rXV5jE5fJHPlxeVC9uogb9mnnYDeT2GmwMtZC00+8M
|
||||
hJ9PEkB/YmLU1UEykgylvTOJlCOmffd681qReJoEk7v+sdB2U4di2/VBImSX4GYo
|
||||
o2B7cDZZSK44Y2hUWHCMOhxpGzGwzA==
|
||||
=V4pB
|
||||
-----END PGP SIGNATURE-----
|
3
curl-7.88.1.tar.xz
Normal file
3
curl-7.88.1.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1dae31b2a7c1fe269de99c0c31bb488346aab3459b5ffca909d6938249ae415f
|
||||
size 2581032
|
11
curl-7.88.1.tar.xz.asc
Normal file
11
curl-7.88.1.tar.xz.asc
Normal file
@ -0,0 +1,11 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQEzBAABCgAdFiEEJ+3q8i86vOtQ25oSXMkI/bceEsIFAmPzIdAACgkQXMkI/bce
|
||||
EsLgMgf9HwAPLRXj1ARTSFffsrf5eWiRpTO8dY2wVSPPAn7DXZyT5TP/+6tPJ2vf
|
||||
THbU/LzV1MH2Tyf4uWMHfPSpVsDH9MchVtqn3abXumuqczf14FTNKqsDXL/OMbkn
|
||||
9XV7qh3UOx3NuMR5TYc91fZMwo36TEYSrzU/X6cqv/e4fXNm6fX/shXQ75MJ6hic
|
||||
7rk/ilRX+L6Y43x3h0U6oBaICcLNnplJBazBY81y3EHbFmvdyDd41nik1TWgqNYL
|
||||
jIZ9LK6iUAav54/B9DxcDIKBAS0ZHMmnl1xth/KkTry1MWFi2jHJxAYccC7wTjgO
|
||||
bDNgD0z3z9mJ2rw/IALYBFBZQ3ed1A==
|
||||
=Z5N5
|
||||
-----END PGP SIGNATURE-----
|
@ -1,36 +0,0 @@
|
||||
From f1d09231adfc695d15995b9ef2c8c6e568c28091 Mon Sep 17 00:00:00 2001
|
||||
From: Daniel Stenberg <daniel@haxx.se>
|
||||
Date: Wed, 15 Feb 2023 13:03:21 +0100
|
||||
Subject: [PATCH] runtests: fix "uninitialized value $port"
|
||||
|
||||
by using a more appropriate variable
|
||||
|
||||
Reported-by: fundawang on github
|
||||
Fixes #10518
|
||||
Closes #10520
|
||||
---
|
||||
tests/runtests.pl | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/tests/runtests.pl b/tests/runtests.pl
|
||||
index 71644ad18e855..5cd87897a393c 100755
|
||||
--- a/tests/runtests.pl
|
||||
+++ b/tests/runtests.pl
|
||||
@@ -1740,7 +1740,7 @@ sub runhttpserver {
|
||||
}
|
||||
|
||||
# where is it?
|
||||
- my $port;
|
||||
+ my $port = 0;
|
||||
if(!$port_or_path) {
|
||||
$port = $port_or_path = pidfromfile($portfile);
|
||||
}
|
||||
@@ -1758,7 +1758,7 @@ sub runhttpserver {
|
||||
$pid2 = $pid3;
|
||||
|
||||
if($verbose) {
|
||||
- logmsg "RUN: $srvrname server is on PID $httppid port $port\n";
|
||||
+ logmsg "RUN: $srvrname server is on PID $httppid port $port_or_path\n";
|
||||
}
|
||||
|
||||
return ($httppid, $pid2, $port);
|
@ -1,3 +1,11 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 20 10:35:11 UTC 2023 - Guillaume GARDET <guillaume.gardet@opensuse.org>
|
||||
|
||||
- Update to 7.88.1:
|
||||
* Bugfix release
|
||||
- Drop upstreamed patch:
|
||||
* curl-fix-uninitialized-value-in-tests.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 15 08:39:24 UTC 2023 - Pedro Monreal <pmonreal@suse.com>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
# need ssl always for python-pycurl
|
||||
%bcond_without openssl
|
||||
Name: curl
|
||||
Version: 7.88.0
|
||||
Version: 7.88.1
|
||||
Release: 0
|
||||
Summary: A Tool for Transferring Data from URLs
|
||||
License: curl
|
||||
@ -35,8 +35,6 @@ Patch1: dont-mess-with-rpmoptflags.patch
|
||||
Patch2: curl-secure-getenv.patch
|
||||
#PATCH-FIX-OPENSUSE bsc#1076446 protocol redirection not supported or disabled
|
||||
Patch3: curl-disabled-redirect-protocol-message.patch
|
||||
#PATCH-FIX-UPSTREAM runtests: fix "uninitialized value port"
|
||||
Patch4: curl-fix-uninitialized-value-in-tests.patch
|
||||
BuildRequires: libtool
|
||||
BuildRequires: pkgconfig
|
||||
Requires: libcurl4 = %{version}
|
||||
|
Loading…
x
Reference in New Issue
Block a user