From 2d2f7a07f73fa5943a1b6800ff8fe48eaf36be30 Mon Sep 17 00:00:00 2001 From: Stan Grishin Date: Thu, 19 May 2022 09:17:21 +0000 Subject: [PATCH] curl: bump to 7.83.1 * https://curl.se/changes.html#7_83_1 Signed-off-by: Stan Grishin (cherry picked from commit b0f213a726a019fa864420fc9d50523ab8ec8901) --- net/curl/Makefile | 4 +-- ...fssl-fix-compiler-error-without-IPv6.patch | 26 ------------------- net/curl/patches/200-no_docs_tests.patch | 4 +-- 3 files changed, 4 insertions(+), 30 deletions(-) delete mode 100644 net/curl/patches/0001-wolfssl-fix-compiler-error-without-IPv6.patch diff --git a/net/curl/Makefile b/net/curl/Makefile index 08ab67c2e..827af43d2 100644 --- a/net/curl/Makefile +++ b/net/curl/Makefile @@ -8,14 +8,14 @@ include $(TOPDIR)/rules.mk PKG_NAME:=curl -PKG_VERSION:=7.82.0 +PKG_VERSION:=7.83.1 PKG_RELEASE:=$(AUTORELEASE) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=https://dl.uxnr.de/mirror/curl/ \ https://curl.askapache.com/download/ \ https://curl.se/download/ -PKG_HASH:=0aaa12d7bd04b0966254f2703ce80dd5c38dbbd76af0297d3d690cdce58a583c +PKG_HASH:=2cb9c2356e7263a1272fd1435ef7cdebf2cd21400ec287b068396deb705c22c4 PKG_LICENSE:=MIT PKG_LICENSE_FILES:=COPYING diff --git a/net/curl/patches/0001-wolfssl-fix-compiler-error-without-IPv6.patch b/net/curl/patches/0001-wolfssl-fix-compiler-error-without-IPv6.patch deleted file mode 100644 index 5d68d1edc..000000000 --- a/net/curl/patches/0001-wolfssl-fix-compiler-error-without-IPv6.patch +++ /dev/null @@ -1,26 +0,0 @@ -From 471d5f44c5189bd78f8839ce8ac1b4b14f4b7d61 Mon Sep 17 00:00:00 2001 -From: Daniel Stenberg -Date: Mon, 7 Mar 2022 08:40:47 +0100 -Subject: [PATCH] wolfssl: fix compiler error without IPv6 - -Reported-by: Joseph Chen -Fixes #8550 -Closes #8552 ---- - lib/vtls/wolfssl.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - ---- a/lib/vtls/wolfssl.c -+++ b/lib/vtls/wolfssl.c -@@ -462,9 +462,9 @@ wolfssl_connect_step1(struct Curl_easy * - const char * const hostname = SSL_HOST_NAME(); - size_t hostname_len = strlen(hostname); - if((hostname_len < USHRT_MAX) && -- (0 == Curl_inet_pton(AF_INET, hostname, &addr4)) && -+ !Curl_inet_pton(AF_INET, hostname, &addr4) - #ifdef ENABLE_IPV6 -- (0 == Curl_inet_pton(AF_INET6, hostname, &addr6)) -+ && !Curl_inet_pton(AF_INET6, hostname, &addr6) - #endif - ) { - size_t snilen; diff --git a/net/curl/patches/200-no_docs_tests.patch b/net/curl/patches/200-no_docs_tests.patch index 274afc698..463aeac0b 100644 --- a/net/curl/patches/200-no_docs_tests.patch +++ b/net/curl/patches/200-no_docs_tests.patch @@ -1,6 +1,6 @@ --- a/Makefile.am +++ b/Makefile.am -@@ -156,7 +156,7 @@ CLEANFILES = $(VC10_LIBVCXPROJ) $(VC10_S +@@ -155,7 +155,7 @@ CLEANFILES = $(VC10_LIBVCXPROJ) $(VC10_S bin_SCRIPTS = curl-config SUBDIRS = lib src @@ -9,7 +9,7 @@ pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = libcurl.pc -@@ -270,8 +270,6 @@ cygwinbin: +@@ -269,8 +269,6 @@ cygwinbin: # We extend the standard install with a custom hook: install-data-hook: (cd include && $(MAKE) install)