pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/www/curl
Module Name: pkgsrc
Committed By: leot
Date: Wed Sep 11 08:32:03 UTC 2019
Modified Files:
pkgsrc/www/curl: Makefile PLIST distinfo
Log Message:
curl: Update to 7.66.0
Changes:
7.66.0
------
This release includes the following changes:
o CURLINFO_RETRY_AFTER: parse the Retry-After header value
o HTTP3: initial (experimental still not working) support
o curl: --sasl-authzid added to support CURLOPT_SASL_AUTHZID from the tool
o curl: support parallel transfers with -Z
o curl_multi_poll: a sister to curl_multi_wait() that waits more
o sasl: Implement SASL authorisation identity via CURLOPT_SASL_AUTHZID
This release includes the following bugfixes:
o CVE-2019-5481: FTP-KRB double-free
o CVE-2019-5482: TFTP small blocksize heap buffer overflow
o CI: remove duplicate configure flag for LGTM.com
o CMake: remove needless newlines at end of gss variables
o CMake: use platform dependent name for dlopen() library
o CURLINFO docs: mention that in redirects times are added
o CURLOPT_ALTSVC.3: use a "" file name to not load from a file
o CURLOPT_ALTSVC_CTRL.3: remove CURLALTSVC_ALTUSED
o CURLOPT_HEADERFUNCTION.3: clarify
o CURLOPT_HTTP_VERSION: seting this to 3 forces HTTP/3 use directly
o CURLOPT_READFUNCTION.3: provide inline example
o CURLOPT_SSL_VERIFYHOST: treat the value 1 as 2
o Curl_addr2string: take an addrlen argument too
o Curl_fillreadbuffer: avoid double-free trailer buf on error
o HTTP: use chunked Transfer-Encoding for HTTP_POST if size unknown
o alt-svc: add protocol version selection masking
o alt-svc: fix removal of expired cache entry
o alt-svc: make it use h3-22 with ngtcp2 as well
o alt-svc: more liberal ALPN name parsing
o alt-svc: send Alt-Used: in redirected requests
o alt-svc: with quiche, use the quiche h3 alpn string
o appveyor: pass on -k to make
o asyn-thread: create a socketpair to wait on
o build-openssl: fix build with Visual Studio 2019
o cleanup: move functions out of url.c and make them static
o cleanup: remove the 'numsocks' argument used in many places
o configure: avoid undefined check_for_ca_bundle
o curl.h: add CURL_HTTP_VERSION_3 to the version enum
o curl.h: fix outdated comment
o curl: cap the maximum allowed values for retry time arguments
o curl: handle a libcurl build without netrc support
o curl: make use of CURLINFO_RETRY_AFTER when retrying
o curl: remove outdated comment
o curl: use .curlrc (with a dot) on Windows
o curl: use CURLINFO_PROTOCOL to check for HTTP(s)
o curl_global_init_mem.3: mention it was added in 7.12.0
o curl_version: bump string buffer size to 250
o curl_version_info.3: mentioned ALTSVC and HTTP3
o curl_version_info: offer quic (and h3) library info
o curl_version_info: provide nghttp2 details
o defines: avoid underscore-prefixed defines
o docs/ALTSVC: remove what works and the experimental explanation
o docs/EXPERIMENTAL: explain what it means and what's experimental now
o docs/MANUAL.md: converted to markdown from plain text
o docs/examples/curlx: fix errors
o docs: s/curl_debug/curl_dbg_debug in comments and docs
o easy: resize receive buffer on easy handle reset
o examples: Avoid reserved names in hiperfifo examples
o examples: add http3.c, altsvc.c and http3-present.c
o getenv: support up to 4K environment variable contents on windows
o http09: disable HTTP/0.9 by default in both tool and library
o http2: when marked for closure and wanted to close == OK
o http2_recv: trigger another read when the last data is returned
o http: fix use of credentials from URL when using HTTP proxy
o http_negotiate: improve handling of gss_init_sec_context() failures
o md4: Use our own MD4 when no crypto libraries are available
o multi: call detach_connection before Curl_disconnect
o netrc: make the code try ".netrc" on Windows
o nss: use TLSv1.3 as default if supported
o openssl: build warning free with boringssl
o openssl: use SSL_CTX_set_<min|max>_proto_version() when available
o plan9: add support for running on Plan 9
o progress: reset download/uploaded counter between transfers
o readwrite_data: repair setting the TIMER_STARTTRANSFER stamp
o scp: fix directory name length used in memcpy
o smb: init *msg to NULL in smb_send_and_recv()
o smtp: check for and bail out on too short EHLO response
o source: remove names from source comments
o spnego_sspi: add typecast to fix build warning
o src/makefile: fix uncompressed hugehelp.c generation
o ssh-libssh: do not specify O_APPEND when not in append mode
o ssh: move code into vssh for SSH backends
o sspi: fix memory leaks
o tests: Replace outdated test case numbering documentation
o tftp: return error when packet is too small for options
o timediff: make it 64 bit (if possible) even with 32 bit time_t
o travis: reduce number of torture tests in 'coverage'
o url: make use of new HTTP version if alt-svc has one
o urlapi: verify the IPv6 numerical address
o urldata: avoid 'generic', use dedicated pointers
o vauth: Use CURLE_AUTH_ERROR for auth function errors
To generate a diff of this commit:
cvs rdiff -u -r1.216 -r1.217 pkgsrc/www/curl/Makefile
cvs rdiff -u -r1.75 -r1.76 pkgsrc/www/curl/PLIST
cvs rdiff -u -r1.156 -r1.157 pkgsrc/www/curl/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/www/curl/Makefile
diff -u pkgsrc/www/curl/Makefile:1.216 pkgsrc/www/curl/Makefile:1.217
--- pkgsrc/www/curl/Makefile:1.216 Thu Aug 22 12:23:52 2019
+++ pkgsrc/www/curl/Makefile Wed Sep 11 08:32:03 2019
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.216 2019/08/22 12:23:52 ryoon Exp $
+# $NetBSD: Makefile,v 1.217 2019/09/11 08:32:03 leot Exp $
-DISTNAME= curl-7.65.3
-PKGREVISION= 3
+DISTNAME= curl-7.66.0
CATEGORIES= www
MASTER_SITES= https://curl.haxx.se/download/
EXTRACT_SUFX= .tar.xz
Index: pkgsrc/www/curl/PLIST
diff -u pkgsrc/www/curl/PLIST:1.75 pkgsrc/www/curl/PLIST:1.76
--- pkgsrc/www/curl/PLIST:1.75 Wed May 22 08:57:58 2019
+++ pkgsrc/www/curl/PLIST Wed Sep 11 08:32:03 2019
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.75 2019/05/22 08:57:58 leot Exp $
+@comment $NetBSD: PLIST,v 1.76 2019/09/11 08:32:03 leot Exp $
bin/curl
bin/curl-config
include/curl/curl.h
@@ -56,6 +56,7 @@ man/man3/CURLINFO_REDIRECT_TIME_T.3
man/man3/CURLINFO_REDIRECT_URL.3
man/man3/CURLINFO_REQUEST_SIZE.3
man/man3/CURLINFO_RESPONSE_CODE.3
+man/man3/CURLINFO_RETRY_AFTER.3
man/man3/CURLINFO_RTSP_CLIENT_CSEQ.3
man/man3/CURLINFO_RTSP_CSEQ_RECV.3
man/man3/CURLINFO_RTSP_SERVER_CSEQ.3
@@ -282,6 +283,7 @@ man/man3/CURLOPT_RTSP_SERVER_CSEQ.3
man/man3/CURLOPT_RTSP_SESSION_ID.3
man/man3/CURLOPT_RTSP_STREAM_URI.3
man/man3/CURLOPT_RTSP_TRANSPORT.3
+man/man3/CURLOPT_SASL_AUTHZID.3
man/man3/CURLOPT_SASL_IR.3
man/man3/CURLOPT_SEEKDATA.3
man/man3/CURLOPT_SEEKFUNCTION.3
@@ -406,6 +408,7 @@ man/man3/curl_multi_fdset.3
man/man3/curl_multi_info_read.3
man/man3/curl_multi_init.3
man/man3/curl_multi_perform.3
+man/man3/curl_multi_poll.3
man/man3/curl_multi_remove_handle.3
man/man3/curl_multi_setopt.3
man/man3/curl_multi_socket.3
Index: pkgsrc/www/curl/distinfo
diff -u pkgsrc/www/curl/distinfo:1.156 pkgsrc/www/curl/distinfo:1.157
--- pkgsrc/www/curl/distinfo:1.156 Fri Jul 19 17:22:48 2019
+++ pkgsrc/www/curl/distinfo Wed Sep 11 08:32:03 2019
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.156 2019/07/19 17:22:48 leot Exp $
+$NetBSD: distinfo,v 1.157 2019/09/11 08:32:03 leot Exp $
-SHA1 (curl-7.65.3.tar.xz) = 49e8ffc2601cc204f4544087a8e2da9e01313d29
-RMD160 (curl-7.65.3.tar.xz) = 20861c6d94be47e2228b67433ede00d02b106a0a
-SHA512 (curl-7.65.3.tar.xz) = fc4f041d3d6682378ce9eef2c6081e6ad83bb2502ea4c992c760266584c09e9ebca7c6d35958bd32a888702d9308cbce7aef69c431f97994107d7ff6b953941b
-Size (curl-7.65.3.tar.xz) = 2392472 bytes
+SHA1 (curl-7.66.0.tar.xz) = c4b5137302c74839bfa2211da72d960d0d5fedba
+RMD160 (curl-7.66.0.tar.xz) = 24b4a7432d117efcca0c1de95fb4797dcf186216
+SHA512 (curl-7.66.0.tar.xz) = 81170e7e4fa9d99ee2038d96d7f2ab10dcf52435331c818c7565c1a733891720f845a08029915e52ba532c6a344c346e1678474624aac1cc333aea6d1eacde35
+Size (curl-7.66.0.tar.xz) = 2414840 bytes
SHA1 (patch-configure) = 9131ad23999f3987b7b67a59191aa6998bd370d0
SHA1 (patch-curl-config.in) = 363359665985cc14f36ddf47fc3480f1200e3533
Home |
Main Index |
Thread Index |
Old Index