Accepting request 266298 from home:AndreasStieger:branches:network:utilities
GNU wget 1.16.1 OBS-URL: https://build.opensuse.org/request/show/266298 OBS-URL: https://build.opensuse.org/package/show/network:utilities/wget?expand=0&rev=49
This commit is contained in:
parent
07bcc2c05b
commit
4056d50a9a
3
wget-1.16.1.tar.xz
Normal file
3
wget-1.16.1.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:2b96c707ee15fe847f5bc2f872a7a530dca803b927a750419b44f50803e14d33
|
||||||
|
size 1760120
|
BIN
wget-1.16.1.tar.xz.sig
Normal file
BIN
wget-1.16.1.tar.xz.sig
Normal file
Binary file not shown.
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:9261dd090a17687b6dc0682a257e90a926def15624b650e8f799af57e5c8b0e7
|
|
||||||
size 1697308
|
|
Binary file not shown.
@ -5,11 +5,11 @@
|
|||||||
tests/Makefile.am | 1 +
|
tests/Makefile.am | 1 +
|
||||||
4 files changed, 55 insertions(+), 1 deletion(-)
|
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.1.orig/configure.ac
|
||||||
+++ wget-1.16/configure.ac 2014-10-29 20:41:05.000000000 +0000
|
+++ wget-1.16.1/configure.ac
|
||||||
@@ -366,6 +366,22 @@ else
|
@@ -466,6 +466,22 @@ else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
@ -32,23 +32,23 @@ Index: wget-1.16/configure.ac
|
|||||||
dnl **********************************************************************
|
dnl **********************************************************************
|
||||||
dnl Checks for IPv6
|
dnl Checks for IPv6
|
||||||
dnl **********************************************************************
|
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.1.orig/src/Makefile.am
|
||||||
+++ wget-1.16/src/Makefile.am 2014-10-29 20:41:05.000000000 +0000
|
+++ wget-1.16.1/src/Makefile.am
|
||||||
@@ -37,7 +37,7 @@ endif
|
@@ -37,7 +37,7 @@ endif
|
||||||
|
|
||||||
# The following line is losing on some versions of make!
|
# The following line is losing on some versions of make!
|
||||||
DEFS += -DSYSTEM_WGETRC=\"$(sysconfdir)/wgetrc\" -DLOCALEDIR=\"$(localedir)\"
|
DEFS = @DEFS@ -DSYSTEM_WGETRC=\"$(sysconfdir)/wgetrc\" -DLOCALEDIR=\"$(localedir)\"
|
||||||
-LIBS += $(LIBICONV) $(LIBINTL) $(LIB_CLOCK_GETTIME)
|
-LIBS = @LIBICONV@ @LIBINTL@ @LIBS@ $(LIB_CLOCK_GETTIME)
|
||||||
+LIBS += $(LIBICONV) $(LIBINTL) $(libproxy_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
|
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.1.orig/src/retr.c
|
||||||
+++ wget-1.16/src/retr.c 2014-10-29 20:41:05.000000000 +0000
|
+++ wget-1.16.1/src/retr.c
|
||||||
@@ -57,6 +57,10 @@ as that of the covered work. */
|
@@ -57,6 +57,10 @@ as that of the covered work. */
|
||||||
#include "html-url.h"
|
#include "html-url.h"
|
||||||
#include "iri.h"
|
#include "iri.h"
|
||||||
@ -60,7 +60,7 @@ Index: wget-1.16/src/retr.c
|
|||||||
/* Total size of downloaded files. Used to enforce quota. */
|
/* Total size of downloaded files. Used to enforce quota. */
|
||||||
SUM_SIZE_INT total_downloaded_bytes;
|
SUM_SIZE_INT total_downloaded_bytes;
|
||||||
|
|
||||||
@@ -1266,7 +1270,40 @@ getproxy (struct url *u)
|
@@ -1268,7 +1272,40 @@ getproxy (struct url *u)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (!proxy || !*proxy)
|
if (!proxy || !*proxy)
|
||||||
@ -101,14 +101,14 @@ Index: wget-1.16/src/retr.c
|
|||||||
|
|
||||||
/* Handle shorthands. `rewritten_storage' is a kludge to allow
|
/* Handle shorthands. `rewritten_storage' is a kludge to allow
|
||||||
getproxy() to return static storage. */
|
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.1.orig/tests/Makefile.am
|
||||||
+++ wget-1.16/tests/Makefile.am 2014-10-29 20:42:18.000000000 +0000
|
+++ wget-1.16.1/tests/Makefile.am
|
||||||
@@ -33,6 +33,7 @@
|
@@ -32,6 +32,7 @@
|
||||||
# Version: $(VERSION)
|
#
|
||||||
|
# Version: @VERSION@
|
||||||
#
|
#
|
||||||
|
|
||||||
+LIBS += $(libproxy_LIBS)
|
+LIBS += $(libproxy_LIBS)
|
||||||
|
|
||||||
../src/wget$(EXEEXT):
|
../src/wget$(EXEEXT):
|
||||||
|
18
wget.changes
18
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
|
Wed Oct 29 20:37:47 UTC 2014 - andreas.stieger@gmx.de
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
%bcond_with regression_tests
|
%bcond_with regression_tests
|
||||||
|
|
||||||
Name: wget
|
Name: wget
|
||||||
Version: 1.16
|
Version: 1.16.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A Tool for Mirroring FTP and HTTP Servers
|
Summary: A Tool for Mirroring FTP and HTTP Servers
|
||||||
License: GPL-3.0+
|
License: GPL-3.0+
|
||||||
|
Loading…
Reference in New Issue
Block a user