pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/www/gnurl
Module Name: pkgsrc
Committed By: ng0
Date: Fri Sep 13 15:48:50 UTC 2019
Modified Files:
pkgsrc/www/gnurl: Makefile PLIST distinfo
Log Message:
www/gnurl: Update to 7.66.0
Changelog:
CHANGELOG
---------
Changes, gnurl specific:
* Almost none, mostly a merge as usual. After a chat
with bfix on IRC, the gnurl homepage has been extended
to explain how to build it.
The usual curl Changelog applies, consult https://curl.haxx.se for the
ChangeLog.
curl Changelog:
Changes:
CURLINFO_RETRY_AFTER: parse the Retry-After header value
HTTP3: initial (experimental still not working) support
curl: --sasl-authzid added to support CURLOPT_SASL_AUTHZID from the tool
curl: support parallel transfers with -Z
curl_multi_poll: a sister to curl_multi_wait() that waits more
sasl: Implement SASL authorisation identity via CURLOPT_SASL_AUTHZID
Bugfixes:
CVE-2019-5481: FTP-KRB double-free
CVE-2019-5482: TFTP small blocksize heap buffer overflow
CI: remove duplicate configure flag for LGTM.com
CMake: remove needless newlines at end of gss variables
CMake: use platform dependent name for dlopen() library
CURLINFO docs: mention that in redirects times are added
CURLOPT_ALTSVC.3: use a "" file name to not load from a file
CURLOPT_ALTSVC_CTRL.3: remove CURLALTSVC_ALTUSED
CURLOPT_HEADERFUNCTION.3: clarify
CURLOPT_HTTP_VERSION: seting this to 3 forces HTTP/3 use directly
CURLOPT_READFUNCTION.3: provide inline example
CURLOPT_SSL_VERIFYHOST: treat the value 1 as 2
Curl_addr2string: take an addrlen argument too
Curl_fillreadbuffer: avoid double-free trailer buf on error
HTTP: use chunked Transfer-Encoding for HTTP_POST if size unknown
alt-svc: add protocol version selection masking
alt-svc: fix removal of expired cache entry
alt-svc: make it use h3-22 with ngtcp2 as well
alt-svc: more liberal ALPN name parsing
alt-svc: send Alt-Used: in redirected requests
alt-svc: with quiche, use the quiche h3 alpn string
appveyor: pass on -k to make
asyn-thread: create a socketpair to wait on
build-openssl: fix build with Visual Studio 2019
cleanup: move functions out of url.c and make them static
cleanup: remove the 'numsocks' argument used in many places
configure: avoid undefined check_for_ca_bundle
curl.h: add CURL_HTTP_VERSION_3 to the version enum
curl.h: fix outdated comment
curl: cap the maximum allowed values for retry time arguments
curl: handle a libcurl build without netrc support
curl: make use of CURLINFO_RETRY_AFTER when retrying
curl: remove outdated comment
curl: use .curlrc (with a dot) on Windows
curl: use CURLINFO_PROTOCOL to check for HTTP(s)
curl_global_init_mem.3: mention it was added in 7.12.0
curl_version: bump string buffer size to 250
curl_version_info.3: mentioned ALTSVC and HTTP3
curl_version_info: offer quic (and h3) library info
curl_version_info: provide nghttp2 details
defines: avoid underscore-prefixed defines
docs/ALTSVC: remove what works and the experimental explanation
docs/EXPERIMENTAL: explain what it means and what's experimental now
docs/MANUAL.md: converted to markdown from plain text
docs/examples/curlx: fix errors
docs: s/curl_debug/curl_dbg_debug in comments and docs
easy: resize receive buffer on easy handle reset
examples: Avoid reserved names in hiperfifo examples
examples: add http3.c, altsvc.c and http3-present.c
getenv: support up to 4K environment variable contents on windows
http09: disable HTTP/0.9 by default in both tool and library
http2: when marked for closure and wanted to close == OK
http2_recv: trigger another read when the last data is returned
http: fix use of credentials from URL when using HTTP proxy
http_negotiate: improve handling of gss_init_sec_context() failures
md4: Use our own MD4 when no crypto libraries are available
multi: call detach_connection before Curl_disconnect
netrc: make the code try ".netrc" on Windows
nss: use TLSv1.3 as default if supported
openssl: build warning free with boringssl
openssl: use SSL_CTX_set__proto_version() when available
plan9: add support for running on Plan 9
progress: reset download/uploaded counter between transfers
readwrite_data: repair setting the TIMER_STARTTRANSFER stamp
scp: fix directory name length used in memcpy
smb: init *msg to NULL in smb_send_and_recv()
smtp: check for and bail out on too short EHLO response
source: remove names from source comments
spnego_sspi: add typecast to fix build warning
src/makefile: fix uncompressed hugehelp.c generation
ssh-libssh: do not specify O_APPEND when not in append mode
ssh: move code into vssh for SSH backends
sspi: fix memory leaks
tests: Replace outdated test case numbering documentation
tftp: return error when packet is too small for options
timediff: make it 64 bit (if possible) even with 32 bit time_t
travis: reduce number of torture tests in 'coverage'
url: make use of new HTTP version if alt-svc has one
urlapi: verify the IPv6 numerical address
urldata: avoid 'generic', use dedicated pointers
vauth: Use CURLE_AUTH_ERROR for auth function errors
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 pkgsrc/www/gnurl/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/www/gnurl/PLIST pkgsrc/www/gnurl/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/gnurl/Makefile
diff -u pkgsrc/www/gnurl/Makefile:1.5 pkgsrc/www/gnurl/Makefile:1.6
--- pkgsrc/www/gnurl/Makefile:1.5 Thu Aug 15 17:19:09 2019
+++ pkgsrc/www/gnurl/Makefile Fri Sep 13 15:48:50 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.5 2019/08/15 17:19:09 ng0 Exp $
+# $NetBSD: Makefile,v 1.6 2019/09/13 15:48:50 ng0 Exp $
-DISTNAME= gnurl-7.65.3
+DISTNAME= gnurl-7.66.0
CATEGORIES= www
MASTER_SITES= ${MASTER_SITE_GNU:=gnunet/}
EXTRACT_SUFX= .tar.Z
@@ -59,6 +59,11 @@ CONFIGURE_ARGS+= --with-ca-fallback
# https://bugs.gnunet.org/view.php?id=5610
CONFIGURE_ARGS+= --without-gssapi
CONFIGURE_ARGS+= --disable-valgrind
+# We do not want HTTP3 support yet, see release announcement
+CONFIGURE_ARGS+= --without-ngtcp2
+CONFIGURE_ARGS+= --without-nghttp2
+CONFIGURE_ARGS+= --without-nghttp3
+CONFIGURE_ARGS+= --without-quiche
.include "options.mk"
Index: pkgsrc/www/gnurl/PLIST
diff -u pkgsrc/www/gnurl/PLIST:1.3 pkgsrc/www/gnurl/PLIST:1.4
--- pkgsrc/www/gnurl/PLIST:1.3 Thu Aug 15 17:19:09 2019
+++ pkgsrc/www/gnurl/PLIST Fri Sep 13 15:48:50 2019
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.3 2019/08/15 17:19:09 ng0 Exp $
+@comment $NetBSD: PLIST,v 1.4 2019/09/13 15:48:50 ng0 Exp $
bin/gnurl
bin/gnurl-config
include/gnurl/curl.h
@@ -56,6 +56,7 @@ man/man3/GNURLINFO_REDIRECT_TIME_T.3
man/man3/GNURLINFO_REDIRECT_URL.3
man/man3/GNURLINFO_REQUEST_SIZE.3
man/man3/GNURLINFO_RESPONSE_CODE.3
+man/man3/GNURLINFO_RETRY_AFTER.3
man/man3/GNURLINFO_RTSP_CLIENT_CSEQ.3
man/man3/GNURLINFO_RTSP_CSEQ_RECV.3
man/man3/GNURLINFO_RTSP_SERVER_CSEQ.3
@@ -282,6 +283,7 @@ man/man3/GNURLOPT_RTSP_SERVER_CSEQ.3
man/man3/GNURLOPT_RTSP_SESSION_ID.3
man/man3/GNURLOPT_RTSP_STREAM_URI.3
man/man3/GNURLOPT_RTSP_TRANSPORT.3
+man/man3/GNURLOPT_SASL_AUTHZID.3
man/man3/GNURLOPT_SASL_IR.3
man/man3/GNURLOPT_SEEKDATA.3
man/man3/GNURLOPT_SEEKFUNCTION.3
@@ -406,6 +408,7 @@ man/man3/gnurl_multi_fdset.3
man/man3/gnurl_multi_info_read.3
man/man3/gnurl_multi_init.3
man/man3/gnurl_multi_perform.3
+man/man3/gnurl_multi_poll.3
man/man3/gnurl_multi_remove_handle.3
man/man3/gnurl_multi_setopt.3
man/man3/gnurl_multi_socket.3
Index: pkgsrc/www/gnurl/distinfo
diff -u pkgsrc/www/gnurl/distinfo:1.3 pkgsrc/www/gnurl/distinfo:1.4
--- pkgsrc/www/gnurl/distinfo:1.3 Thu Aug 15 17:19:09 2019
+++ pkgsrc/www/gnurl/distinfo Fri Sep 13 15:48:50 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.3 2019/08/15 17:19:09 ng0 Exp $
+$NetBSD: distinfo,v 1.4 2019/09/13 15:48:50 ng0 Exp $
-SHA1 (gnurl-7.65.3.tar.Z) = 9b4b7eed42c5aeaf7b38f903c6362576a6c90b0b
-RMD160 (gnurl-7.65.3.tar.Z) = 64e6a31fcd8bcf40f446ee930997cc2bbca583ea
-SHA512 (gnurl-7.65.3.tar.Z) = 6887df326177b291bcf97567e247122eb2b8190e0491c5a819d39a738d98882778ad48c0936010f95c07646dd627fa9f2c72f1ad33adf317efdc1eadb5c8b93e
-Size (gnurl-7.65.3.tar.Z) = 6124086 bytes
+SHA1 (gnurl-7.66.0.tar.Z) = 94b939e318bb74651dc4a35a90ca39948386d8df
+RMD160 (gnurl-7.66.0.tar.Z) = 850f2efb7b06bc1e338034d5b7477e4d174b5d05
+SHA512 (gnurl-7.66.0.tar.Z) = 31cf2224bcb5beeae8082f7d4ab03cf61a2ddd44088bff82e3df991a61d628800d1db25bd75d67808d2403cf5df36f717c9bb3e462e9ac9d63bdd56c33f08a40
+Size (gnurl-7.66.0.tar.Z) = 6193772 bytes
Home |
Main Index |
Thread Index |
Old Index