noproxy: support proxies specified using cidr notation

Resolves: RHEL-81412
This commit is contained in:
Jacek Migacz 2025-05-15 12:23:09 +02:00
parent 3ba57e8417
commit 89d20882cb
2 changed files with 1702 additions and 1 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
Summary: A utility for getting files from remote servers (FTP, HTTP, and others)
Name: curl
Version: 7.76.1
Release: 32%{?dist}
Release: 33%{?dist}
License: MIT
Source: https://curl.se/download/%{name}-%{version}.tar.xz
@ -119,6 +119,9 @@ Patch38: 0038-curl-7.76.1-CVE-2024-2398.patch
# make sure pause is done on HTTP
Patch39: 0039-curl-7.76.1-pause-on-http.patch
# noproxy: support proxies specified using cidr notation
Patch40: 0040-curl-7.76.1-noproxy-support-using-cidr.patch
# patch making libcurl multilib ready
Patch101: 0101-curl-7.32.0-multilib.patch
@ -332,6 +335,7 @@ be installed.
%patch -P 37 -p1
%patch -P 38 -p1
%patch -P 39 -p1
%patch -P 40 -p1
# Fedora patches
%patch -P 101 -p1
@ -590,6 +594,9 @@ rm -f ${RPM_BUILD_ROOT}%{_libdir}/libcurl.la
%{_libdir}/libcurl.so.4.[0-9].[0-9].minimal
%changelog
* Thu May 15 2025 Jacek Migacz <jmigacz@redhat.com> - 7.76.1-33
- noproxy: support proxies specified using cidr notation (RHEL-81412)
* Tue Dec 17 2024 Jacek Migacz <jmigacz@redhat.com> - 7.76.1-32
- make up incomplete patch for host name wildcard checking (RHEL-5675)
- eliminate use of obsolete patch syntax (RHEL-65791)