Hello community,

here is the log from the commit of package wget for openSUSE:Factory checked in 
at 2014-12-29 00:32:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/wget (Old)
 and      /work/SRC/openSUSE:Factory/.wget.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "wget"

Changes:
--------
--- /work/SRC/openSUSE:Factory/wget/wget.changes        2014-11-03 
13:11:12.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.wget.new/wget.changes   2014-12-29 
00:32:06.000000000 +0100
@@ -1,0 +2,18 @@
+Wed Dec 24 13:33:29 UTC 2014 - andreas.stie...@gmx.de
+
+- GNU wget 1.16.1:
+  * Add --enable-assert configure option.
+  * Use pkg-config to check for libraries presence.
+  * Do not limit --secure-protocol=auto|pfs to TLSv1.0.
+  * Add --secure-protocol=TLSv1_1|TLSv1_2 .
+  * Full C89 source code compliance.
+  * Select and use the most secure authentication scheme with HTTP
+    connections.
+  * Fix issues with turkish locales.
+  * Handle 504 Gateway Timeout.
+  * New option --crl-file to load Certificate Revocation Lists.
+  * Add valgrind support to tests suite.
+  * Fix an off-by-one problem in the progress bar (introduced in 1.16).
+- refresh wget-libproxy.patch
+
+-------------------------------------------------------------------

Old:
----
  wget-1.16.tar.xz
  wget-1.16.tar.xz.sig

New:
----
  wget-1.16.1.tar.xz
  wget-1.16.1.tar.xz.sig

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ wget.spec ++++++
--- /var/tmp/diff_new_pack.kXtqe2/_old  2014-12-29 00:32:08.000000000 +0100
+++ /var/tmp/diff_new_pack.kXtqe2/_new  2014-12-29 00:32:08.000000000 +0100
@@ -19,7 +19,7 @@
 %bcond_with    regression_tests
 
 Name:           wget
-Version:        1.16
+Version:        1.16.1
 Release:        0
 Summary:        A Tool for Mirroring FTP and HTTP Servers
 License:        GPL-3.0+

++++++ wget-1.16.tar.xz -> wget-1.16.1.tar.xz ++++++
++++ 158837 lines of diff (skipped)

++++++ wget-libproxy.patch ++++++
--- /var/tmp/diff_new_pack.kXtqe2/_old  2014-12-29 00:32:09.000000000 +0100
+++ /var/tmp/diff_new_pack.kXtqe2/_new  2014-12-29 00:32:09.000000000 +0100
@@ -5,11 +5,11 @@
  tests/Makefile.am |    1 +
  4 files changed, 55 insertions(+), 1 deletion(-)
 
-Index: wget-1.16/configure.ac
+Index: wget-1.16.1/configure.ac
 ===================================================================
---- wget-1.16.orig/configure.ac        2014-10-29 20:41:01.000000000 +0000
-+++ wget-1.16/configure.ac     2014-10-29 20:41:05.000000000 +0000
-@@ -366,6 +366,22 @@ else
+--- wget-1.16.1.orig/configure.ac
++++ wget-1.16.1/configure.ac
+@@ -466,6 +466,22 @@ else
  fi
  
  
@@ -32,23 +32,23 @@
  dnl **********************************************************************
  dnl Checks for IPv6
  dnl **********************************************************************
-Index: wget-1.16/src/Makefile.am
+Index: wget-1.16.1/src/Makefile.am
 ===================================================================
---- wget-1.16.orig/src/Makefile.am     2014-10-29 20:41:01.000000000 +0000
-+++ wget-1.16/src/Makefile.am  2014-10-29 20:41:05.000000000 +0000
+--- wget-1.16.1.orig/src/Makefile.am
++++ wget-1.16.1/src/Makefile.am
 @@ -37,7 +37,7 @@ endif
  
  # The following line is losing on some versions of make!
- DEFS     += -DSYSTEM_WGETRC=\"$(sysconfdir)/wgetrc\" 
-DLOCALEDIR=\"$(localedir)\"
--LIBS     += $(LIBICONV) $(LIBINTL) $(LIB_CLOCK_GETTIME)
-+LIBS     += $(LIBICONV) $(LIBINTL) $(libproxy_LIBS) $(LIB_CLOCK_GETTIME)
+ DEFS     = @DEFS@ -DSYSTEM_WGETRC=\"$(sysconfdir)/wgetrc\" 
-DLOCALEDIR=\"$(localedir)\"
+-LIBS     = @LIBICONV@ @LIBINTL@ @LIBS@ $(LIB_CLOCK_GETTIME)
++LIBS     = @LIBICONV@ @LIBINTL@ @LIBS@ $(libproxy_LIBS) $(LIB_CLOCK_GETTIME)
  
  EXTRA_DIST = css.l css.c css_.c build_info.c.in
  
-Index: wget-1.16/src/retr.c
+Index: wget-1.16.1/src/retr.c
 ===================================================================
---- wget-1.16.orig/src/retr.c  2014-10-29 20:41:01.000000000 +0000
-+++ wget-1.16/src/retr.c       2014-10-29 20:41:05.000000000 +0000
+--- wget-1.16.1.orig/src/retr.c
++++ wget-1.16.1/src/retr.c
 @@ -57,6 +57,10 @@ as that of the covered work.  */
  #include "html-url.h"
  #include "iri.h"
@@ -60,7 +60,7 @@
  /* Total size of downloaded files.  Used to enforce quota.  */
  SUM_SIZE_INT total_downloaded_bytes;
  
-@@ -1266,7 +1270,40 @@ getproxy (struct url *u)
+@@ -1268,7 +1272,40 @@ getproxy (struct url *u)
        break;
      }
    if (!proxy || !*proxy)
@@ -101,14 +101,14 @@
  
    /* Handle shorthands.  `rewritten_storage' is a kludge to allow
       getproxy() to return static storage. */
-Index: wget-1.16/tests/Makefile.am
+Index: wget-1.16.1/tests/Makefile.am
 ===================================================================
---- wget-1.16.orig/tests/Makefile.am   2014-10-29 20:41:40.000000000 +0000
-+++ wget-1.16/tests/Makefile.am        2014-10-29 20:42:18.000000000 +0000
-@@ -33,6 +33,7 @@
- # Version: $(VERSION)
+--- wget-1.16.1.orig/tests/Makefile.am
++++ wget-1.16.1/tests/Makefile.am
+@@ -32,6 +32,7 @@
+ #
+ # Version: @VERSION@
  #
- 
 +LIBS     += $(libproxy_LIBS)
  
  ../src/wget$(EXEEXT):


-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to