This commit is contained in:
parent
24ea85568e
commit
5551eb9e6e
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:486e2d6be920ceed44602b2f4c08e57d815b8097b4474615f4cd4b463e2b18ca
|
|
||||||
size 929618
|
|
3
wget-1.11.4.tar.bz2
Normal file
3
wget-1.11.4.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:8b7f52e2861b89c3ee0cc10c3665af5b705d0cb7fc00bca59a9b1e2b50e027fb
|
||||||
|
size 954561
|
28
wget.changes
28
wget.changes
@ -1,3 +1,31 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Sep 1 16:28:05 CEST 2008 - max@suse.de
|
||||||
|
|
||||||
|
- New version 1.11.4:
|
||||||
|
* Fixed a problem in authenticating over HTTPS through a proxy.
|
||||||
|
(Regression in 1.11 over 1.10.2.)
|
||||||
|
* The combination of -r or -p with -O, which was disallowed in 1.11,
|
||||||
|
has been downgraded to a warning in 1.11.2.
|
||||||
|
* Further improvements to progress bar displays in non-English
|
||||||
|
locales (too many spaces could be inserted, causing the display to
|
||||||
|
scroll).
|
||||||
|
* Successive invocations of Wget on FTP URLS, with
|
||||||
|
--no-remove-listing and --continue, was causing Wget to append,
|
||||||
|
rather than replace, information in the .listing file, and thereby
|
||||||
|
download the same files multiple times. Fixed in 1.11.2.
|
||||||
|
* Wget 1.11 no longer allowed ".." to persist at the beginning of
|
||||||
|
URLs, for improved conformance with RFC 3986. However, this
|
||||||
|
behavior presents problems for some FTP setups, and so they are now
|
||||||
|
preserved again, for FTP URLs only.
|
||||||
|
* Downgraded -N with -O to a warning, rather than an error.
|
||||||
|
* Fixed a crash on some systems, due to Wget casting a
|
||||||
|
pointer-to-long to a pointer-to-time_t.
|
||||||
|
* Fixed an issue (apparently a regression) where -O would refuse to
|
||||||
|
download when -nc was given, even though the file didn't exist.
|
||||||
|
* Fixed a situation where Wget could abort with --continue if the
|
||||||
|
remote server gives a content-length of zero when the file exists
|
||||||
|
locally with content.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Apr 30 19:16:30 CEST 2008 - max@suse.de
|
Wed Apr 30 19:16:30 CEST 2008 - max@suse.de
|
||||||
|
|
||||||
|
44
wget.spec
44
wget.spec
@ -1,10 +1,17 @@
|
|||||||
#
|
#
|
||||||
# spec file for package wget (Version 1.11.1)
|
# spec file for package wget (Version 1.11.4)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
|
||||||
# package are under the same license as the package itself.
|
|
||||||
#
|
#
|
||||||
|
# All modifications and additions to the file contributed by third parties
|
||||||
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
|
# upon. The license for this file, and modifications and additions to the
|
||||||
|
# file, is the same license as for the pristine package itself (unless the
|
||||||
|
# license for the pristine package is not an Open Source License, in which
|
||||||
|
# case the license is the MIT License). An "Open Source License" is a
|
||||||
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
@ -13,12 +20,12 @@
|
|||||||
|
|
||||||
Name: wget
|
Name: wget
|
||||||
BuildRequires: libpng-devel openssl-devel
|
BuildRequires: libpng-devel openssl-devel
|
||||||
Url: http://wget.sunsite.dk/
|
Url: http://www.gnu.org/software/wget/
|
||||||
License: GPL v3 or later
|
License: GPL v3 or later
|
||||||
Group: Productivity/Networking/Web/Utilities
|
Group: Productivity/Networking/Web/Utilities
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 1.11.1
|
Version: 1.11.4
|
||||||
Release: 4
|
Release: 1
|
||||||
Summary: A Tool for Mirroring FTP and HTTP Servers
|
Summary: A Tool for Mirroring FTP and HTTP Servers
|
||||||
Source: %name-%version.tar.bz2
|
Source: %name-%version.tar.bz2
|
||||||
Patch1: wgetrc.patch
|
Patch1: wgetrc.patch
|
||||||
@ -67,6 +74,31 @@ rm -rf $RPM_BUILD_ROOT;
|
|||||||
%{_bindir}/*
|
%{_bindir}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Sep 01 2008 max@suse.de
|
||||||
|
- New version 1.11.4:
|
||||||
|
* Fixed a problem in authenticating over HTTPS through a proxy.
|
||||||
|
(Regression in 1.11 over 1.10.2.)
|
||||||
|
* The combination of -r or -p with -O, which was disallowed in 1.11,
|
||||||
|
has been downgraded to a warning in 1.11.2.
|
||||||
|
* Further improvements to progress bar displays in non-English
|
||||||
|
locales (too many spaces could be inserted, causing the display to
|
||||||
|
scroll).
|
||||||
|
* Successive invocations of Wget on FTP URLS, with
|
||||||
|
--no-remove-listing and --continue, was causing Wget to append,
|
||||||
|
rather than replace, information in the .listing file, and thereby
|
||||||
|
download the same files multiple times. Fixed in 1.11.2.
|
||||||
|
* Wget 1.11 no longer allowed ".." to persist at the beginning of
|
||||||
|
URLs, for improved conformance with RFC 3986. However, this
|
||||||
|
behavior presents problems for some FTP setups, and so they are now
|
||||||
|
preserved again, for FTP URLs only.
|
||||||
|
* Downgraded -N with -O to a warning, rather than an error.
|
||||||
|
* Fixed a crash on some systems, due to Wget casting a
|
||||||
|
pointer-to-long to a pointer-to-time_t.
|
||||||
|
* Fixed an issue (apparently a regression) where -O would refuse to
|
||||||
|
download when -nc was given, even though the file didn't exist.
|
||||||
|
* Fixed a situation where Wget could abort with --continue if the
|
||||||
|
remote server gives a content-length of zero when the file exists
|
||||||
|
locally with content.
|
||||||
* Wed Apr 30 2008 max@suse.de
|
* Wed Apr 30 2008 max@suse.de
|
||||||
- Let the resolver (/etc/gai.conf) decide whether to prefer IPv4
|
- Let the resolver (/etc/gai.conf) decide whether to prefer IPv4
|
||||||
or IPv6 if a host has addresses of both kinds (bnc#310224).
|
or IPv6 if a host has addresses of both kinds (bnc#310224).
|
||||||
|
Loading…
Reference in New Issue
Block a user