pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/net/wget Updated wget to 1.18.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/673e553bb9cb
branches:  trunk
changeset: 348292:673e553bb9cb
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Sat Jun 11 18:33:22 2016 +0000

description:
Updated wget to 1.18.

* Changes in Wget 1.18

* By default, on server redirects to a FTP resource, use the original
  URL to get the local file name. Close CVE-2016-4971.  This
  introduces a backward-incompatibility for HTTP->FTP redirects and
  any script that relies on the old  behaviour must use
  --trust-server-names.

* Check the HSTS file is not world-writable before using it.

* Parse <img srcset> attributes on a recursive download.

* Fix problem with SNI server names having trailing dot(s)

* New options --bind-dns-address and --dns-servers.

* When Wget is built with libiconv, it now converts non-ASCII URIs to
  the locale's codeset when it creates files.  The encoding of the
  remote files and URIs is taken from --remote-encoding, defaulting to
  UTF-8.  The result is that non-ASCII URIs and files downloaded via
  HTTP/HTTPS and FTP will have names on the local filesystem that
  correspond to their remote names.

diffstat:

 net/wget/Makefile                |   5 ++---
 net/wget/distinfo                |  11 ++++++-----
 net/wget/patches/patch-configure |  15 +++++++++++++++
 3 files changed, 23 insertions(+), 8 deletions(-)

diffs (49 lines):

diff -r d64e0bcd9c59 -r 673e553bb9cb net/wget/Makefile
--- a/net/wget/Makefile Sat Jun 11 18:29:53 2016 +0000
+++ b/net/wget/Makefile Sat Jun 11 18:33:22 2016 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.129 2016/03/05 11:29:14 jperkin Exp $
+# $NetBSD: Makefile,v 1.130 2016/06/11 18:33:22 wiz Exp $
 
-DISTNAME=      wget-1.17.1
-PKGREVISION=   1
+DISTNAME=      wget-1.18
 CATEGORIES=    net
 MASTER_SITES=  ${MASTER_SITE_GNU:=wget/}
 EXTRACT_SUFX=  .tar.xz
diff -r d64e0bcd9c59 -r 673e553bb9cb net/wget/distinfo
--- a/net/wget/distinfo Sat Jun 11 18:29:53 2016 +0000
+++ b/net/wget/distinfo Sat Jun 11 18:33:22 2016 +0000
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.50 2015/12/13 08:30:24 wiz Exp $
+$NetBSD: distinfo,v 1.51 2016/06/11 18:33:22 wiz Exp $
 
-SHA1 (wget-1.17.1.tar.xz) = 8ae737ab2252607ce708f98d1dd7559ebf047f48
-RMD160 (wget-1.17.1.tar.xz) = 8ad5e9936c66ced9ad4ffc5012484a38f4a15cee
-SHA512 (wget-1.17.1.tar.xz) = aa13584c94d0911268aeee9d6c7b1a7de259e0ec0f9daebe767e1f45afba097a6e9de09f370e55ead7acc9faa68f189063ac9e3d2d4a8d490f0b4edb6adc19ba
-Size (wget-1.17.1.tar.xz) = 1894140 bytes
+SHA1 (wget-1.18.tar.xz) = 02d451e658f600ee519c42cbf4d3bfe4e49b6c4f
+RMD160 (wget-1.18.tar.xz) = 4fdf9c523b434050eeccfbd14b98c90c591d7ce4
+SHA512 (wget-1.18.tar.xz) = a3f6fe2f44a8d797659d55cffaf81eb82b770c96222a0ee29bc4931b13846f8d8b9a07806f2197723c873a1248922d59cca5a81869661d9c6c3107447c184338
+Size (wget-1.18.tar.xz) = 1922376 bytes
+SHA1 (patch-configure) = 4d65f3e3c4d60174442aa1b75b64b7511bbc6497
 SHA1 (patch-doc_wget.texi) = 6db25b3500ff4617b5ade34d9013b1f9876104f8
diff -r d64e0bcd9c59 -r 673e553bb9cb net/wget/patches/patch-configure
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/net/wget/patches/patch-configure  Sat Jun 11 18:33:22 2016 +0000
@@ -0,0 +1,15 @@
+$NetBSD: patch-configure,v 1.1 2016/06/11 18:33:22 wiz Exp $
+
+Fix unportable test(1) operator.
+
+--- configure.orig     2016-06-09 16:12:51.000000000 +0000
++++ configure
+@@ -40378,7 +40378,7 @@ fi
+ fi
+ 
+ 
+-if test "X$with_cares" == "Xyes"; then :
++if test "X$with_cares" = "Xyes"; then :
+ 
+ 
+ pkg_failed=no



Home | Main Index | Thread Index | Old Index