diff --git a/wget-1.16.1.tar.xz b/wget-1.16.1.tar.xz new file mode 100644 index 0000000..41e073d --- /dev/null +++ b/wget-1.16.1.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b96c707ee15fe847f5bc2f872a7a530dca803b927a750419b44f50803e14d33 +size 1760120 diff --git a/wget-1.16.1.tar.xz.sig b/wget-1.16.1.tar.xz.sig new file mode 100644 index 0000000..ef99522 Binary files /dev/null and b/wget-1.16.1.tar.xz.sig differ diff --git a/wget-1.16.tar.xz b/wget-1.16.tar.xz deleted file mode 100644 index 31e257a..0000000 --- a/wget-1.16.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9261dd090a17687b6dc0682a257e90a926def15624b650e8f799af57e5c8b0e7 -size 1697308 diff --git a/wget-1.16.tar.xz.sig b/wget-1.16.tar.xz.sig deleted file mode 100644 index 41ff042..0000000 Binary files a/wget-1.16.tar.xz.sig and /dev/null differ diff --git a/wget-libproxy.patch b/wget-libproxy.patch index c63fdc4..6f55783 100644 --- a/wget-libproxy.patch +++ b/wget-libproxy.patch @@ -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 @@ Index: wget-1.16/configure.ac 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 @@ Index: wget-1.16/src/retr.c /* 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 @@ Index: wget-1.16/src/retr.c /* 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): diff --git a/wget.changes b/wget.changes index 2763320..0213635 100644 --- a/wget.changes +++ b/wget.changes @@ -1,3 +1,21 @@ +------------------------------------------------------------------- +Wed Dec 24 13:33:29 UTC 2014 - andreas@config + +- 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 + ------------------------------------------------------------------- Wed Oct 29 20:37:47 UTC 2014 - andreas.stieger@gmx.de diff --git a/wget.spec b/wget.spec index 1712edd..8949801 100644 --- a/wget.spec +++ b/wget.spec @@ -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+