svn commit: r380618 - in head/ftp/wget: . files

Vasil Dimov vd at FreeBSD.org
Fri Mar 6 20:00:39 UTC 2015


Author: vd
Date: Fri Mar  6 20:00:38 2015
New Revision: 380618
URL: https://svnweb.freebsd.org/changeset/ports/380618
QAT: https://qat.redports.org/buildarchive/r380618/

Log:
  ftp/wget: Fix upstream bug #44403: wget --quiet isn't quiet anymore
  
  http://savannah.gnu.org/bugs/index.php?44403

Added:
  head/ftp/wget/files/
  head/ftp/wget/files/patch-src__main.c   (contents, props changed)
Modified:
  head/ftp/wget/Makefile

Modified: head/ftp/wget/Makefile
==============================================================================
--- head/ftp/wget/Makefile	Fri Mar  6 19:51:30 2015	(r380617)
+++ head/ftp/wget/Makefile	Fri Mar  6 20:00:38 2015	(r380618)
@@ -3,6 +3,7 @@
 
 PORTNAME=	wget
 DISTVERSION=	1.16.2
+PORTREVISION=	1
 CATEGORIES=	ftp www ipv6
 MASTER_SITES=	GNU
 

Added: head/ftp/wget/files/patch-src__main.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/ftp/wget/files/patch-src__main.c	Fri Mar  6 20:00:38 2015	(r380618)
@@ -0,0 +1,12 @@
+--- src/main.c.orig	2015-02-10 23:31:49.000000000 +0200
++++ src/main.c	2015-03-06 21:55:03.975252490 +0200
+@@ -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)
+     {


More information about the svn-ports-head mailing list