pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/curl Curl and libcurl 7.55.1



details:   https://anonhg.NetBSD.org/pkgsrc/rev/ef14bdb887b8
branches:  trunk
changeset: 366518:ef14bdb887b8
user:      adam <adam%pkgsrc.org@localhost>
date:      Tue Aug 15 05:35:57 2017 +0000

description:
Curl and libcurl 7.55.1

This release includes the following bugfixes:
 o build: fix 'make install' with configure, install docs/libcurl/* too
 o make install: add 8 missing man pages to the installation
 o curl: do bounds check using a double comparison [1]
 o dist: Add dictserver.py/negtelnetserver.py to release [2]
 o digest_sspi: Don't reuse context if the user/passwd has changed [3]
 o gitignore: ignore top-level .vs folder [4]
 o build: check out *.sln files with Windows line endings [5]
 o travis: verify "make install" [6]
 o dist: fix the cmake build by shipping cmake_uninstall.cmake.in too [7]
 o metalink: fix error: ?*? in boolean context, suggest ?&&? instead
 o configure: use the threaded resolver backend by default if possible [8]
 o mkhelp.pl: allow executing this script directly [9]
 o maketgz: remove old *.dist files before making the tarball [10]
 o openssl: remove CONST_ASN1_BIT_STRING [11]
 o openssl: fix "error: this statement may fall through"
 o proxy: fix memory leak in case of invalid proxy server name [12]
 o curl/system.h: support more architectures (OpenRISC, ARC) [13]
 o docs: fix typos [14]
 o curl/system.h: add Oracle Solaris Studio [15]
 o CURLINFO_TOTAL_TIME: could wrongly return 4200 seconds [16]
 o docs: --connect-to clarified
 o cmake: allow user to override CMAKE_DEBUG_POSTFIX [17]
 o travis: test cmake build on tarball too
 o redirect: make it handle absolute redirects to IDN names [18]
 o curl/system.h: fix for gcc on PowerPC [19]
 o curl --interface: fixed for IPV6 unique local addresses [20]
 o cmake: threads detection improvements [21]

diffstat:

 www/curl/Makefile                  |   4 ++--
 www/curl/PLIST                     |  10 +++++++++-
 www/curl/distinfo                  |  11 +++++------
 www/curl/patches/patch-Makefile.am |  21 ---------------------
 4 files changed, 16 insertions(+), 30 deletions(-)

diffs (105 lines):

diff -r 825cc2bb233c -r ef14bdb887b8 www/curl/Makefile
--- a/www/curl/Makefile Tue Aug 15 01:56:47 2017 +0000
+++ b/www/curl/Makefile Tue Aug 15 05:35:57 2017 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.183 2017/08/09 08:50:17 wiz Exp $
+# $NetBSD: Makefile,v 1.184 2017/08/15 05:35:57 adam Exp $
 
-DISTNAME=      curl-7.55.0
+DISTNAME=      curl-7.55.1
 CATEGORIES=    www
 MASTER_SITES=  https://curl.haxx.se/download/
 EXTRACT_SUFX=  .tar.bz2
diff -r 825cc2bb233c -r ef14bdb887b8 www/curl/PLIST
--- a/www/curl/PLIST    Tue Aug 15 01:56:47 2017 +0000
+++ b/www/curl/PLIST    Tue Aug 15 05:35:57 2017 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.64 2017/08/09 08:50:17 wiz Exp $
+@comment $NetBSD: PLIST,v 1.65 2017/08/15 05:35:57 adam Exp $
 bin/curl
 bin/curl-config
 include/curl/curl.h
@@ -19,7 +19,9 @@
 man/man3/CURLINFO_CONDITION_UNMET.3
 man/man3/CURLINFO_CONNECT_TIME.3
 man/man3/CURLINFO_CONTENT_LENGTH_DOWNLOAD.3
+man/man3/CURLINFO_CONTENT_LENGTH_DOWNLOAD_T.3
 man/man3/CURLINFO_CONTENT_LENGTH_UPLOAD.3
+man/man3/CURLINFO_CONTENT_LENGTH_UPLOAD_T.3
 man/man3/CURLINFO_CONTENT_TYPE.3
 man/man3/CURLINFO_COOKIELIST.3
 man/man3/CURLINFO_EFFECTIVE_URL.3
@@ -53,9 +55,13 @@
 man/man3/CURLINFO_RTSP_SESSION_ID.3
 man/man3/CURLINFO_SCHEME.3
 man/man3/CURLINFO_SIZE_DOWNLOAD.3
+man/man3/CURLINFO_SIZE_DOWNLOAD_T.3
 man/man3/CURLINFO_SIZE_UPLOAD.3
+man/man3/CURLINFO_SIZE_UPLOAD_T.3
 man/man3/CURLINFO_SPEED_DOWNLOAD.3
+man/man3/CURLINFO_SPEED_DOWNLOAD_T.3
 man/man3/CURLINFO_SPEED_UPLOAD.3
+man/man3/CURLINFO_SPEED_UPLOAD_T.3
 man/man3/CURLINFO_SSL_ENGINES.3
 man/man3/CURLINFO_SSL_VERIFYRESULT.3
 man/man3/CURLINFO_STARTTRANSFER_TIME.3
@@ -260,6 +266,7 @@
 man/man3/CURLOPT_SHARE.3
 man/man3/CURLOPT_SOCKOPTDATA.3
 man/man3/CURLOPT_SOCKOPTFUNCTION.3
+man/man3/CURLOPT_SOCKS5_AUTH.3
 man/man3/CURLOPT_SOCKS5_GSSAPI_NEC.3
 man/man3/CURLOPT_SOCKS5_GSSAPI_SERVICE.3
 man/man3/CURLOPT_SSH_AUTH_TYPES.3
@@ -370,6 +377,7 @@
 man/man3/curl_slist_append.3
 man/man3/curl_slist_free_all.3
 man/man3/curl_strequal.3
+man/man3/curl_strnequal.3
 man/man3/curl_unescape.3
 man/man3/curl_version.3
 man/man3/curl_version_info.3
diff -r 825cc2bb233c -r ef14bdb887b8 www/curl/distinfo
--- a/www/curl/distinfo Tue Aug 15 01:56:47 2017 +0000
+++ b/www/curl/distinfo Tue Aug 15 05:35:57 2017 +0000
@@ -1,10 +1,9 @@
-$NetBSD: distinfo,v 1.135 2017/08/09 08:50:17 wiz Exp $
+$NetBSD: distinfo,v 1.136 2017/08/15 05:35:57 adam Exp $
 
-SHA1 (curl-7.55.0.tar.bz2) = 2285a785a822d0a4cf2435c4e535ba243826be4e
-RMD160 (curl-7.55.0.tar.bz2) = efc904c64c78b2c1060f0d631920e0d18a6de444
-SHA512 (curl-7.55.0.tar.bz2) = 4975864621219e937585aaf5a9a54bba112b58bbf5a8acd92e1e972ea747a15a5564143548c5d8930b8c0d0e9d27d28225d0c81e52a1ba71e4c6f9e3859c978b
-Size (curl-7.55.0.tar.bz2) = 2782908 bytes
-SHA1 (patch-Makefile.am) = cea5874e9c6de97041dacb9e332c91bd6ec7da6b
+SHA1 (curl-7.55.1.tar.bz2) = 76aabb69ec34e101f906132d12e983fb11547040
+RMD160 (curl-7.55.1.tar.bz2) = ad4317fcc67357f72d29424f7b621f104a98dd15
+SHA512 (curl-7.55.1.tar.bz2) = bfeb39e94b8378519b2efba0a476636b80dbee3434104b98464ee81ce3871eb134e065f52abe8bedb69681b43576cb30655c8be0be6115386859d0cb426d745b
+Size (curl-7.55.1.tar.bz2) = 2786830 bytes
 SHA1 (patch-configure) = fac0071bbb22cb379f36477e0e806a8f9f4d43eb
 SHA1 (patch-curl-config.in) = d0cc7bb6a5bf0b9257f40dcffce7093cc0098eb7
 SHA1 (patch-lib_hostcheck.c) = 8e772d3f91cdafae17281cc19004269ece0cf308
diff -r 825cc2bb233c -r ef14bdb887b8 www/curl/patches/patch-Makefile.am
--- a/www/curl/patches/patch-Makefile.am        Tue Aug 15 01:56:47 2017 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,21 +0,0 @@
-$NetBSD: patch-Makefile.am,v 1.1 2017/08/09 08:50:18 wiz Exp $
-
-Fix installation of docs.
-https://github.com/curl/curl/commit/f864bd8c880d5a916379aa4f26f1c45fe370b282
-
---- Makefile.am.orig   2017-08-07 22:42:29.000000000 +0000
-+++ Makefile.am
-@@ -276,11 +276,13 @@ cygwinbin:
- install-data-hook:
-       cd include && $(MAKE) install
-       cd docs && $(MAKE) install
-+      cd docs/libcurl && $(MAKE) install
- 
- # We extend the standard uninstall with a custom hook:
- uninstall-hook:
-       cd include && $(MAKE) uninstall
-       cd docs && $(MAKE) uninstall
-+      cd docs/libcurl && $(MAKE) uninstall
- 
- ca-bundle: lib/mk-ca-bundle.pl
-       @echo "generating a fresh ca-bundle.crt"



Home | Main Index | Thread Index | Old Index