diff options
author | wiz <wiz@pkgsrc.org> | 2015-03-11 15:07:55 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2015-03-11 15:07:55 +0000 |
commit | b53130da7343a786695db0f122666319f9d537c0 (patch) | |
tree | 869d5edbc11963cfdbf1b2054598754969b0844f /net/wget | |
parent | 7e28da7fee160da0a22777dbc52fd3ef766a361f (diff) | |
download | pkgsrc-b53130da7343a786695db0f122666319f9d537c0.tar.gz |
Update to 1.16.3:
* Changes in Wget 1.16.3
** Fix a regression introduced by wget 1.16.2 that --quiet is not
really quiet anymore.
Diffstat (limited to 'net/wget')
-rw-r--r-- | net/wget/Makefile | 5 | ||||
-rw-r--r-- | net/wget/distinfo | 9 | ||||
-rw-r--r-- | net/wget/patches/patch-src_main.c | 18 |
3 files changed, 6 insertions, 26 deletions
diff --git a/net/wget/Makefile b/net/wget/Makefile index b6e7aa9451c..9d3def23a8f 100644 --- a/net/wget/Makefile +++ b/net/wget/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.123 2015/03/02 20:23:07 tron Exp $ +# $NetBSD: Makefile,v 1.124 2015/03/11 15:07:55 wiz Exp $ -DISTNAME= wget-1.16.2 -PKGREVISION= 1 +DISTNAME= wget-1.16.3 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_GNU:=wget/} EXTRACT_SUFX= .tar.xz diff --git a/net/wget/distinfo b/net/wget/distinfo index 6fd0ba7c620..c9a08c3f76e 100644 --- a/net/wget/distinfo +++ b/net/wget/distinfo @@ -1,7 +1,6 @@ -$NetBSD: distinfo,v 1.46 2015/03/02 20:23:07 tron Exp $ +$NetBSD: distinfo,v 1.47 2015/03/11 15:07:55 wiz Exp $ -SHA1 (wget-1.16.2.tar.xz) = a77b455ad01620ea3b709db2e07e6841da518f38 -RMD160 (wget-1.16.2.tar.xz) = d0d298a40f3fa7c9c16e985a748a6a524ec99000 -Size (wget-1.16.2.tar.xz) = 1805080 bytes +SHA1 (wget-1.16.3.tar.xz) = a7d24a8512720893b0a8c5c436f324e9ed43874d +RMD160 (wget-1.16.3.tar.xz) = 23ffad97b5a92dff2596925e7a95731ee46b1b68 +Size (wget-1.16.3.tar.xz) = 1794148 bytes SHA1 (patch-doc_wget.texi) = 6db25b3500ff4617b5ade34d9013b1f9876104f8 -SHA1 (patch-src_main.c) = 3afca9581c5cca7e0a6ca7a6812bdd305cdd6786 diff --git a/net/wget/patches/patch-src_main.c b/net/wget/patches/patch-src_main.c deleted file mode 100644 index 6074e517abb..00000000000 --- a/net/wget/patches/patch-src_main.c +++ /dev/null @@ -1,18 +0,0 @@ -$NetBSD: patch-src_main.c,v 1.1 2015/03/02 20:23:07 tron Exp $ - -Disable progress bar if "-q" option is used. Patch taken from GIT repository: - -http://git.savannah.gnu.org/cgit/wget.git/commit/?id=9dde436dd689bd51eef71d64152dde9c8c0b5f65 - ---- src/main.c.orig 2015-02-10 21:31:49.000000000 +0000 -+++ src/main.c 2015-03-02 20:18:15.000000000 +0000 -@@ -1272,6 +1272,9 @@ - if (opt.verbose == -1) - opt.verbose = !opt.quiet; - -+ if (opt.quiet && opt.show_progress == -1) -+ opt.show_progress = false; -+ - /* Sanity checks. */ - if (opt.verbose && opt.quiet) - { |