Accepting request 604725 from network:utilities
OBS-URL: https://build.opensuse.org/request/show/604725 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/wget?expand=0&rev=53
This commit is contained in:
commit
1f33ac4e58
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:93fb96b0f48a20ff5be0d9d9d3c4a986b469cb853131f9d5fe4cc9cecbc8b5b5
|
||||
size 4310657
|
@ -1,16 +0,0 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQIzBAABCgAdFiEEa5j2N9h5xSNuJ3xcZP+QqujHCvkFAlpkZdQACgkQZP+QqujH
|
||||
Cvm7+g//X/2NB4QIp8rQ0mt/mGDVG9IEPZcaU5JEA6ejYTciGKuctqUEJvhdlTSk
|
||||
GjgWzPEzDUfH5pa2pdMSOANa1v22b5aNiy4GB5LqWPxp4yvcs32Ecu3LKErEK0SU
|
||||
s69Ry4RbHj48AuprWiXY9p3eg1CFrVDQa73e50aNEpsJb4mN07vc1JUH9BIaYoEN
|
||||
MTSaHM14h8OmzingYnyZrLMK90RNyL03XGogi4ipZcP0KUo/6aj3Z+tfwR0x1Y1N
|
||||
uKxe94d7S4ypGKA8M5+Je/3W9JeRcQQtnv0NdUpBfUfCE8zhzZdQZ+lRnbFHxA4F
|
||||
nlAzOhM3qvtiBTcTAk5TqbC+XP+WBOCa2HoqQ4qrV8NmztM4NoSJSfFoTmZS+J1q
|
||||
G6U1bETNkxvr3N12Wwle8PSoykN+J/KMqBYc5s1xgrjAnpMnVoxXBREbB3uHsi/a
|
||||
NohBMVa0t7hR1pdwCqbvRB1XRXyqqJc+3kAPJlD2p2blpawIsWd6IjbzU1LM0Bm/
|
||||
7VDrtkdVjTR9352nUqMeWklGMi0HfYL3ot0a4/1wCbomAAdhRSQ6GS+e/ZumLoXx
|
||||
GEShjJKu+QvKacMX6hwhOWNHtEwXTUAbnF3p4U5DA5J+MkwB0MIOpa04oQNkKfro
|
||||
XEj85u3WMniFMENjDg+q3iQ98WyjFY0GaoXq/QbBPGPCx83ujwU=
|
||||
=DbBD
|
||||
-----END PGP SIGNATURE-----
|
3
wget-1.19.5.tar.gz
Normal file
3
wget-1.19.5.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b39212abe1a73f2b28f4c6cb223c738559caac91d6e416a6d91d4b9d55c9faee
|
||||
size 4455797
|
BIN
wget-1.19.5.tar.gz.sig
Normal file
BIN
wget-1.19.5.tar.gz.sig
Normal file
Binary file not shown.
16
wget-ignore-void-retvalue.patch
Normal file
16
wget-ignore-void-retvalue.patch
Normal file
@ -0,0 +1,16 @@
|
||||
Index: wget-1.19.5/src/host.c
|
||||
===================================================================
|
||||
--- wget-1.19.5.orig/src/host.c
|
||||
+++ wget-1.19.5/src/host.c
|
||||
@@ -732,7 +732,10 @@ wait_ares (ares_channel channel)
|
||||
ares_process (channel, &read_fds, &write_fds);
|
||||
}
|
||||
if (timer)
|
||||
- timer = ptimer_destroy (timer);
|
||||
+ {
|
||||
+ ptimer_destroy (timer);
|
||||
+ timer = NULL;
|
||||
+ }
|
||||
}
|
||||
|
||||
static void
|
14
wget.changes
14
wget.changes
@ -1,3 +1,17 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon May 7 07:04:05 UTC 2018 - josef.moellers@suse.com
|
||||
|
||||
- GNU wget 1.19.5:
|
||||
* Fix cookie injection (CVE-2018-0494, bsc#1092061)
|
||||
* Enable TLS1.3 with recent OpenSSL environment
|
||||
* New option --ciphers to set GnuTLS / OpenSSL ciphers directly
|
||||
* Updated CSS grammar to CSS 2.2
|
||||
* Fixed several memleaks found by OSS-Fuzz
|
||||
* Fixed several buffer overflows found by OSS-Fuzz
|
||||
* Fixed several integer overflows found by OSS-Fuzz
|
||||
* Several minor bug fixes
|
||||
[bsc#1092061, CVE-2018-0494, wget-ignore-void-retvalue.patch]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 16 09:15:00 UTC 2018 - josef.moellers@suse.com
|
||||
|
||||
|
2193
wget.keyring
2193
wget.keyring
File diff suppressed because it is too large
Load Diff
@ -18,7 +18,7 @@
|
||||
|
||||
%bcond_with regression_tests
|
||||
Name: wget
|
||||
Version: 1.19.4
|
||||
Version: 1.19.5
|
||||
Release: 0
|
||||
Summary: A Tool for Mirroring FTP and HTTP Servers
|
||||
License: GPL-3.0+
|
||||
@ -33,6 +33,7 @@ Patch6: wget-1.14-no-ssl-comp.patch
|
||||
# PATCH-FIX-OPENSUSE fix pod syntax for perl 5.18 coolo@suse.de
|
||||
Patch7: wget-fix-pod-syntax.diff
|
||||
Patch8: wget-errno-clobber.patch
|
||||
Patch9: wget-ignore-void-retvalue.patch
|
||||
BuildRequires: automake
|
||||
BuildRequires: gpgme-devel >= 0.4.2
|
||||
BuildRequires: libcares-devel
|
||||
@ -77,6 +78,7 @@ This can be done in script files or via the command line.
|
||||
%patch6
|
||||
%patch7 -p1
|
||||
%patch8 -p1
|
||||
%patch9 -p1
|
||||
|
||||
%build
|
||||
%if 0%{?suse_version} > 1110
|
||||
|
Loading…
Reference in New Issue
Block a user