11f80c
Summary: A utility for retrieving files using the HTTP or FTP protocols
11f80c
Name: wget
11f80c
Version: 1.19.5
9b47cf
Release: 11%{?dist}
11f80c
License: GPLv3+
11f80c
Group: Applications/Internet
11f80c
Url: http://www.gnu.org/software/wget/
11f80c
Source: ftp://ftp.gnu.org/gnu/wget/wget-%{version}.tar.gz
11f80c
11f80c
Patch1: wget-1.17-path.patch
11f80c
Patch2: wget-1.19.5-Don-t-limit-the-test-suite-HTTPS-server-to-TLSv1.patch
11f80c
Patch3: wget-1.19.5-covscan-important-issues.patch
11f80c
Patch4: wget-1.19.5-Add-TLS-1.3-support-for-GnuTLS.patch
11f80c
Patch5: wget-1.19.5-Enable-post-handshake-auth-under-gnutls-on-TLS1.3.patch
11f80c
Patch6: wget-1.19.5-Dont-use-extended-attributes---xattr-by-default.patch
11f80c
Patch7: wget-1.19.5-Dont-save-userpw-with---xattr.patch
15c8d9
# http://git.savannah.gnu.org/cgit/wget.git/commit/?id=692d5c5215de0db482c252492a92fc424cc6a97c
15c8d9
# http://git.savannah.gnu.org/cgit/wget.git/commit/?id=562eacb76a2b64d5dc80a443f0f739bc9ef76c17
15c8d9
Patch8: wget-1.19.5-CVE-2019-5953.patch
4207c6
# http://git.savannah.gnu.org/cgit/wget.git/commit/?id=fd85ac9cc623847e9d94d9f9241ab34e2c146cbf
4207c6
Patch9: wget-1.19.5-no_proxy-dot-prefix.patch
4207c6
Patch10: wget-1.19.5-no_proxy-tests.patch
29c1ea
# http://git.savannah.gnu.org/cgit/wget.git/commit/?id=706e71564cadc7192ac21efbf51b661c967f35b5
29c1ea
Patch11: wget-1.19.5-ca-cert-too-verbose.patch
9b47cf
Patch12: wget-1.19.5-no-log-when-quiet.patch
Pablo Greco aed224
11f80c
Provides: webclient
11f80c
Provides: bundled(gnulib) 
11f80c
Requires(post): /sbin/install-info
11f80c
Requires(preun): /sbin/install-info
11f80c
# needed for test suite
11f80c
BuildRequires: perl-HTTP-Daemon, python3
11f80c
BuildRequires: gnutls-devel, pkgconfig, texinfo, gettext, autoconf, libidn2-devel, libuuid-devel, perl-podlators, libpsl-devel, libmetalink-devel, gpgme-devel, gcc, zlib-devel
11f80c
11f80c
%description
11f80c
GNU Wget is a file retrieval utility which can use either the HTTP or
11f80c
FTP protocols. Wget features include the ability to work in the
11f80c
background while you are logged out, recursive retrieval of
11f80c
directories, file name wildcard matching, remote file timestamp
11f80c
storage and comparison, use of Rest with FTP servers and Range with
11f80c
HTTP servers to retrieve files over slow or unstable connections,
11f80c
support for Proxy servers, and configurability.
11f80c
11f80c
%prep
11f80c
%setup -q
11f80c
11f80c
# modify the package string
11f80c
sed -i "s|\(PACKAGE_STRING='wget .*\)'|\1 (Red Hat modified)'|" configure
11f80c
grep "PACKAGE_STRING='wget .* (Red Hat modified)'" configure || exit 1
11f80c
11f80c
%patch1 -p1 -b .path
11f80c
%patch2 -p1 -b .tlsv1_testsuite
11f80c
%patch3 -p1 -b .covscan_imp_issues
11f80c
%patch4 -p1 -b .tls1_3
11f80c
%patch5 -p1 -b .post_auth_tls13
11f80c
%patch6 -p1 -b .no_xattr_by_default
11f80c
%patch7 -p1 -b .no_userpw_in_xattr
15c8d9
%patch8 -p1 -b .CVE-2019-5953
4207c6
%patch9 -p1 -b .no_proxy-dot-prefix
4207c6
%patch10 -p1 -b .no_proxy-test
29c1ea
%patch11 -p1 -b .too_verbose
9b47cf
%patch12 -p1 -b .no-log-quiet
Pablo Greco aed224
11f80c
%build
11f80c
%configure \
11f80c
    --with-ssl=gnutls \
11f80c
    --with-libpsl \
11f80c
    --enable-largefile \
11f80c
    --enable-opie \
11f80c
    --enable-digest \
11f80c
    --enable-ntlm \
11f80c
    --enable-nls \
11f80c
    --enable-ipv6 \
11f80c
    --disable-rpath \
11f80c
    --with-metalink
11f80c
11f80c
make %{?_smp_mflags}
11f80c
11f80c
%install
11f80c
rm -rf $RPM_BUILD_ROOT
11f80c
make install DESTDIR=$RPM_BUILD_ROOT CFLAGS="$RPM_OPT_FLAGS"
11f80c
rm -f $RPM_BUILD_ROOT/%{_infodir}/dir
11f80c
11f80c
%find_lang %{name}
11f80c
11f80c
%check
11f80c
make check
11f80c
11f80c
%post
11f80c
/sbin/install-info %{_infodir}/wget.info.gz %{_infodir}/dir || :
11f80c
11f80c
%preun
11f80c
if [ "$1" = 0 ]; then
11f80c
    /sbin/install-info --delete %{_infodir}/wget.info.gz %{_infodir}/dir || :
11f80c
fi
11f80c
11f80c
%clean
11f80c
rm -rf $RPM_BUILD_ROOT
11f80c
11f80c
%files -f %{name}.lang
11f80c
%defattr(-,root,root)
11f80c
%doc AUTHORS MAILING-LIST NEWS README COPYING doc/sample.wgetrc
11f80c
%config(noreplace) %{_sysconfdir}/wgetrc
11f80c
%{_mandir}/man1/wget.*
11f80c
%{_bindir}/wget
11f80c
%{_infodir}/*
11f80c
11f80c
%changelog
9b47cf
* Tue Dec 13 2022 Michal Ruprich <mruprich@redhat.com> - 1.19.5-11
9b47cf
- Resolves: #2152731 - Running wget with -O and -q in the background yields a file wget-log
9b47cf
29c1ea
* Tue Mar 31 2020 Tomas Hozza <thozza@redhat.com> - 1.19.5-10
29c1ea
- Fix wget being too verbose when using --no-verbose and --ca-certificate (#1807267)
29c1ea
29c1ea
* Thu Nov 21 2019 Tomáš Hozza <thozza@redhat.com> - 1.19.5-9
29c1ea
- Fix issue with dot-prefixed domain names in no_proxy ENV (#1763702)
Pablo Greco aed224
4207c6
* Sun Apr 07 2019 Tomas Hozza <thozza@redhat.com> - 1.19.5-8
4207c6
- Fix CVE-2019-5953 (#1696736)
15c8d9
11f80c
* Thu Jan 10 2019 Tomas Hozza <thozza@redhat.com> - 1.19.5-7
11f80c
- Fix information exposure in set_file_metadata function in xattr.c (CVE-2018-20483)
11f80c
11f80c
* Fri Oct 12 2018 Tomas Hozza <thozza@redhat.com> - 1.19.5-6
11f80c
- Enable post handshake auth under gnutls on TLS1.3 (#1636903)
11f80c
11f80c
* Wed Oct 03 2018 Tomas Hozza <thozza@redhat.com> - 1.19.5-5
11f80c
- Allow specification of TLSv1_3 in --secure-protocol option (#1623997)
11f80c
11f80c
* Wed Aug 29 2018 Tomas Hozza <thozza@redhat.com> - 1.19.5-4
11f80c
- Add zlib-devel to BuildRequires to enable compression of WARC files (#1623004)
11f80c
11f80c
* Mon Aug 27 2018 Tomas Hozza <thozza@redhat.com> - 1.19.5-3
11f80c
- Fixed resource leaks found by Coverity (#1602729)
11f80c
11f80c
* Fri Aug 10 2018 Tomas Hozza <thozza@redhat.com> - 1.19.5-2
11f80c
- Fix FTBFS due to test suite HTTPS server forcing use of TLSv1 (#1611753)
11f80c
11f80c
* Wed May 09 2018 Tomas Hozza <thozza@redhat.com> - 1.19.5-1
11f80c
- Update to 1.19.5 fixing CVE-2018-0494
11f80c
11f80c
* Thu Apr 26 2018 Tomas Hozza <thozza@redhat.com> - 1.19.4-3
11f80c
- Added gcc as an explicit BuildRequires
11f80c
11f80c
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.19.4-2
11f80c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
11f80c
11f80c
* Mon Jan 22 2018 Tomas Hozza <thozza@redhat.com> - 1.19.4-1
11f80c
- Update to the latest upstream version
11f80c
- Fix issue with decompressing with broken web servers (#1532233)
11f80c
11f80c
* Fri Dec 08 2017 Tomas Hozza <thozza@redhat.com> - 1.19.2-2
11f80c
- Fix segfault when calling strchr in http.c (#1511562)
11f80c
11f80c
* Fri Oct 27 2017 Tomas Hozza <thozza@redhat.com> - 1.19.2-1
11f80c
- Update to latest upstream version due to CVE-2017-13089 CVE-2017-13090
11f80c
11f80c
* Mon Oct 09 2017 Troy Dawson <tdawson@redhat.com> - 1.19.1-6
11f80c
- Fix FTBFS (#1499876)
11f80c
11f80c
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.19.1-5
11f80c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
11f80c
11f80c
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.19.1-4
11f80c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
11f80c
11f80c
* Wed May 31 2017 Tomas Hozza <thozza@redhat.com> - 1.19.1-3
11f80c
- Fixed use of .netrc (#1425097)
11f80c
11f80c
* Fri May 12 2017 Tomas Hozza <thozza@redhat.com> - 1.19.1-2
11f80c
- Fix CVE-2017-6508 (#1429986)
11f80c
11f80c
* Thu Feb 16 2017 Tomas Hozza <thozza@redhat.com> - 1.19.1-1
11f80c
- New upstream version 1.19.1 (#1421398)
11f80c
11f80c
* Fri Feb 10 2017 Tomas Hozza <thozza@redhat.com> - 1.19-1
11f80c
- New upstream version 1.19 (#1419013)
11f80c
- Use libidn2 instead of libidn (new upstream default)
11f80c
11f80c
* Tue Jul 26 2016 Tomas Hozza <thozza@redhat.com> - 1.18-2
11f80c
- Switched openssl to gnutls for crypto
11f80c
11f80c
* Tue Jun 14 2016 Tomas Hozza <thozza@redhat.com> - 1.18-1
11f80c
- Update to 1.18
11f80c
11f80c
* Wed May 18 2016 Filip Čáp <cap.filip.dev@gmail.com> - 1.17.1-4
11f80c
- Added metalink support (#1321334)
11f80c
11f80c
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.17.1-3
11f80c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
11f80c
11f80c
* Mon Feb 01 2016 Adam Williamson <awilliam@redhat.com> - 1.17.1-2
11f80c
- rebuild for new libpsl
11f80c
11f80c
* Mon Dec 14 2015 Tomas Hozza <thozza@redhat.com> - 1.17.1-1
11f80c
- Update to 1.17.1
11f80c
11f80c
* Fri Nov 27 2015 Tomas Hozza <thozza@redhat.com> - 1.17-1
11f80c
- Updated to 1.17 + added some additional upstream fixes
11f80c
- Fixed hardening of wget executable (#1281829)
11f80c
11f80c
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.16.3-2
11f80c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
11f80c
11f80c
* Tue Mar 10 2015 Tomas Hozza <thozza@redhat.com> - 1.16.3-1
11f80c
- update to 1.16.3
11f80c
11f80c
* Wed Mar 04 2015 Tomas Hozza <thozza@redhat.com> - 1.16.2-1
11f80c
- update to 1.16.2
11f80c
11f80c
* Mon Jan 12 2015 Tomas Hozza <thozza@redhat.com> - 1.16.1-3
11f80c
- Fix wget to accept 5 digit port numbers in epsv responses over ipv6 (#1180777)
11f80c
11f80c
* Tue Dec 16 2014 Tomas Hozza <thozza@redhat.com> - 1.16.1-2
11f80c
- build wget with libpsl support (#1123616)
11f80c
- Fix NULL pointer dereference in FTP code (#1169022)
11f80c
11f80c
* Thu Dec 11 2014 Tomas Hozza <thozza@redhat.com> - 1.16.1-1
11f80c
- update to 1.16.1
11f80c
11f80c
* Tue Nov 18 2014 Tomas Hozza <thozza@redhat.com> - 1.16-3
11f80c
- Fix the progress bar issue (#1159643)
11f80c
11f80c
* Mon Nov 03 2014 Jakub Čajka <jcajka@redhat.com> - 1.16-2
11f80c
- fix failing tests idn-cmd-utf8 and idn-robots-utf8
11f80c
- re-enabled tests
11f80c
11f80c
* Fri Oct 31 2014 Tomas Hozza <thozza@redhat.com> - 1.16-1
11f80c
- update to 1.16
11f80c
- fixes CVE-2014-4877
11f80c
11f80c
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.15-3
11f80c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
11f80c
11f80c
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.15-2
11f80c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
11f80c
11f80c
* Wed Jan 22 2014 Tomas Hozza <thozza@redhat.com> - 1.15-1
11f80c
- Update to 1.15
11f80c
- Drop merged patches
11f80c
11f80c
* Mon Oct 21 2013 Tomas Hozza <thozza@redhat.com> - 1.14-11
11f80c
- run test suite during the build
11f80c
11f80c
* Thu Oct 10 2013 Tomas Hozza <thozza@redhat.com> - 1.14-10
11f80c
- remove excessive line for '-nv' option in the manpage (#1017106)
11f80c
11f80c
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.14-9
11f80c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
11f80c
11f80c
* Mon Jul 15 2013 Tomas Hozza <thozza@redhat.com> - 1.14-8
11f80c
- Fix deadcode and possible use of NULL in vprintf (#913153)
11f80c
- Add documentation for --regex-type and --preserve-permissions
11f80c
- Fix --preserve-permissions to work as documented (and expected)
11f80c
- Fix bug when authenticating using user:password@url syntax (#912358)
11f80c
- Document and fix --backups option
11f80c
11f80c
* Wed Jul 10 2013 Tomas Hozza <thozza@redhat.com> - 1.14-7
11f80c
- Fix double free of iri->orig_url (#981778)
11f80c
11f80c
* Mon Jun 24 2013 Tomas Hozza <thozza@redhat.com> - 1.14-6
11f80c
- add missing options accept-regex and reject-regex to man page
11f80c
- fix errors in texi2pod introduced in Perl-5.18
11f80c
11f80c
* Fri Feb 22 2013 Tomas Hozza <thozza@redhat.com> - 1.14-5
11f80c
- Added BuildRequires: perl-podlators for pod2man
11f80c
- Patched manpage to silent new Tex errors
11f80c
- Resolves: (#914571) 
11f80c
11f80c
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.14-4
11f80c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
11f80c
11f80c
* Thu Oct 11 2012 Tomas Hozza <thozza@redhat.com> 1.14-3
11f80c
- Added libuuid-devel to BuildRequires to use libuuid functions
11f80c
  in "src/warc.c" functions (#865421)
11f80c
11f80c
* Wed Oct 10 2012 Tomas Hozza <thozza@redhat.com> 1.14-2
11f80c
- Added libidn-devel to BuildRequires to support IDN domains (#680394)
11f80c
11f80c
* Thu Aug 09 2012 Karsten Hopp <karsten@redhat.com> 1.14-1
11f80c
- Update to wget-1.14
11f80c
11f80c
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.13.4-5
11f80c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
11f80c
11f80c
* Tue May 29 2012 Karsten Hopp <karsten@redhat.com> 1.13.4-4
11f80c
- fix timeout if http server doesn't answer to SSL handshake (#860727)
11f80c
11f80c
* Tue May 15 2012 Karsten Hopp <karsten@redhat.com> 1.13.4-3
11f80c
- add virtual provides per https://fedoraproject.org/wiki/Packaging:No_Bundled_Libraries
11f80c
11f80c
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.13.4-2
11f80c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
11f80c
11f80c
* Fri Dec 16 2011 Jon Ciesla <limburgher@gmail.com> - 1.13.4-1
11f80c
- New upstream, BZ 730286.
11f80c
- Modified path patch.
11f80c
- subjectAltNames patch upstreamed.
11f80c
- Specified openssl at config time.
11f80c
11f80c
* Thu Jun 23 2011 Volker Fröhlich <volker27@gmx.at> - 1.12-4
11f80c
- Applied patch to accept subjectAltNames in X509 certificates (#674186)
11f80c
- New URL (#658969)
11f80c
11f80c
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.12-3
11f80c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
11f80c
11f80c
* Wed Nov 18 2009 Karsten Hopp <karsten@redhat.com> 1.12-2
11f80c
- don't provide /usr/share/info/dir
11f80c
11f80c
* Tue Nov 17 2009 Karsten Hopp <karsten@redhat.com> 1.12-1
11f80c
- update to wget-1.12
11f80c
- fixes CVE-2009-3490 wget: incorrect verification of SSL certificate
11f80c
  with NUL in name
11f80c
11f80c
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 1.11.4-5
11f80c
- rebuilt with new openssl
11f80c
11f80c
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.11.4-4
11f80c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
11f80c
11f80c
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.11.4-3
11f80c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
11f80c
11f80c
* Sun Jan 18 2009 Tomas Mraz <tmraz@redhat.com> 1.11.4-2
11f80c
- rebuild with new openssl
11f80c
11f80c
* Wed Aug 13 2008 Karsten Hopp <karsten@redhat.com> 1.11.4-1
11f80c
- update
11f80c
11f80c
* Wed Jun 04 2008 Karsten Hopp <karsten@redhat.com> 1.11.3-1
11f80c
- wget-1.11.3, downgrades the combination of the -N and -O options
11f80c
  to a warning instead of an error
11f80c
11f80c
* Fri May 09 2008 Karsten Hopp <karsten@redhat.com> 1.11.2-1
11f80c
- wget-1.11.2, fixes #179962
11f80c
11f80c
* Mon Mar 31 2008 Karsten Hopp <karsten@redhat.com> 1.11.1-1
11f80c
- update to bugfix release 1.11.1, fixes p.e. #433606
11f80c
11f80c
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.11-2
11f80c
- Autorebuild for GCC 4.3
11f80c
11f80c
* Tue Dec 04 2007 Karsten Hopp <karsten@redhat.com> 1.10.2-17
11f80c
- rebuild to pick up new openssl SONAME
11f80c
11f80c
* Mon Aug 27 2007 Karsten Hopp <karsten@redhat.com> 1.10.2-16
11f80c
- fix license tag
11f80c
- rebuild
11f80c
11f80c
* Mon Feb 12 2007 Karsten Hopp <karsten@redhat.com> 1.10.2-15
11f80c
- fix discarding of expired cookies
11f80c
- escape non-printable characters
11f80c
- drop to11 patch for now (#223754, #227853, #227498)
11f80c
11f80c
* Mon Feb 05 2007 Karsten Hopp <karsten@redhat.com> 1.10.2-14
11f80c
- shut up rpmlint, even though xx isn't a macro
11f80c
11f80c
* Mon Feb 05 2007 Karsten Hopp <karsten@redhat.com> 1.10.2-13
11f80c
- merge review changes (#226538)
11f80c
  - use version/release/... in buildroot tag
11f80c
  - remove BR perl
11f80c
  - use SMP flags
11f80c
  - use make install instead of %%makeinstall
11f80c
  - include copy of license
11f80c
  - use Requires(post)/Requires(preun)
11f80c
  - use optflags
11f80c
  - remove trailing dot from summary
11f80c
  - change tabs to spaces
11f80c
11f80c
* Thu Jan 18 2007 Karsten Hopp <karsten@redhat.com> 1.10.2-12
11f80c
- don't abort (un)install scriptlets when _excludedocs is set (Ville Skyttä)
11f80c
11f80c
* Wed Jan 10 2007 Karsten Hopp <karsten@redhat.com> 1.10.2-11
11f80c
- add fix for CVE-2006-6719
11f80c
11f80c
* Fri Dec 08 2006 Karsten Hopp <karsten@redhat.com> 1.10.2-10
11f80c
- fix repeated downloads (Tomas Heinrich, #186195)
11f80c
11f80c
* Thu Dec 07 2006 Karsten Hopp <karsten@redhat.com> 1.10.2-9
11f80c
- add distflag, rebuild
11f80c
11f80c
* Thu Dec 07 2006 Karsten Hopp <karsten@redhat.com> 1.10.2-8
11f80c
- Resolves: #218211
11f80c
  fix double free corruption
11f80c
11f80c
* Sun Oct 01 2006 Jesse Keating <jkeating@redhat.com> - 1.10.2-7
11f80c
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
11f80c
11f80c
* Mon Sep 25 2006 Karsten Hopp <karsten@redhat.de> 1.10.2-6
11f80c
- fix resumed downloads (#205723)
11f80c
11f80c
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.10.2-5.1
11f80c
- rebuild
11f80c
11f80c
* Thu Jun 29 2006 Karsten Hopp <karsten@redhat.de> 1.10.2-5
11f80c
- updated german translations from Robert Scheck
11f80c
11f80c
* Tue Jun 27 2006 Karsten Hopp <karsten@redhat.de> 1.10.2-4
11f80c
- upstream patches
11f80c
11f80c
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.10.2-3.2.1
11f80c
- bump again for double-long bug on ppc(64)
11f80c
11f80c
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.10.2-3.2
11f80c
- rebuilt for new gcc4.1 snapshot and glibc changes
11f80c
11f80c
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
11f80c
- rebuilt
11f80c
11f80c
* Thu Nov 10 2005 Tomas Mraz <tmraz@redhat.com> 1.10.2-3
11f80c
- rebuilt against new openssl
11f80c
11f80c
* Tue Oct 25 2005 Karsten Hopp <karsten@redhat.de> 1.10.2-2
11f80c
- use %%{_sysconfdir} (#171555)
11f80c
11f80c
* Sat Oct 15 2005 Florian La Roche <laroche@redhat.com>
11f80c
- 1.10.2
11f80c
11f80c
* Thu Sep 08 2005 Karsten Hopp <karsten@redhat.de> 1.10.1-7
11f80c
- fix builtin help of --load-cookies / --save-cookies (#165408)
11f80c
11f80c
* Wed Sep 07 2005 Karsten Hopp <karsten@redhat.de> 1.10.1-6
11f80c
- convert changelog to UTF-8 (#159585)
11f80c
11f80c
* Mon Sep 05 2005 Karsten Hopp <karsten@redhat.de> 1.10.1-5
11f80c
- update
11f80c
- drop patches which are already in the upstream sources
11f80c
11f80c
* Wed Jul 13 2005 Karsten Hopp <karsten@redhat.de> 1.10-5
11f80c
- update german translation
11f80c
11f80c
* Mon Jul 11 2005 Karsten Hopp <karsten@redhat.de> 1.10-4
11f80c
- update german translation (Robert Scheck)
11f80c
11f80c
* Tue Jul 05 2005 Karsten Hopp <karsten@redhat.de> 1.10-3
11f80c
- fix minor documentation bug
11f80c
- fix --no-cookies crash
11f80c
11f80c
* Mon Jul 04 2005 Karsten Hopp <karsten@redhat.de> 1.10-2
11f80c
- update to wget-1.10
11f80c
  - drop passive-ftp patch, already in 1.10
11f80c
  - drop CVS patch
11f80c
  - drop LFS patch, similar fix in 1.10
11f80c
  - drop protdir patch, similar fix in 1.10
11f80c
  - drop actime patch, already in 1.10
11f80c
11f80c
* Wed Mar 02 2005 Karsten Hopp <karsten@redhat.de> 1.9.1-22
11f80c
- build with gcc-4
11f80c
11f80c
* Wed Feb 02 2005 Karsten Hopp <karsten@redhat.de> 1.9.1-21 
11f80c
- remove old copy of the manpage (#146875, #135597)
11f80c
- fix garbage in manpage (#117519)
11f80c
11f80c
* Tue Feb 01 2005 Karsten Hopp <karsten@redhat.de> 1.9.1-20 
11f80c
- texi2pod doesn't handle texinfo xref's. rewrite some lines so that
11f80c
  the man page doesn't have incomplete sentences anymore (#140470)
11f80c
11f80c
* Mon Jan 31 2005 Karsten Hopp <karsten@redhat.de> 1.9.1-19 
11f80c
- Don't set actime to access time of the remote file or tmpwatch might 
11f80c
  remove the file again (#146440).  Set it to the current time instead.
11f80c
  timestamping checks only modtime, so this should be ok.
11f80c
11f80c
* Thu Jan 20 2005 Karsten Hopp <karsten@redhat.de> 1.9.1-18
11f80c
- add support for --protocol-directories option as documented
11f80c
  in the man page (Ville Skyttä, #145571)
11f80c
11f80c
* Wed Sep 29 2004 Karsten Hopp <karsten@redhat.de> 1.9.1-17 
11f80c
- additional LFS patch from Leonid Petrov to fix file lengths in 
11f80c
  http downloads
11f80c
11f80c
* Thu Sep 16 2004 Karsten Hopp <karsten@redhat.de> 1.9.1-16 
11f80c
- more fixes
11f80c
11f80c
* Tue Sep 14 2004 Karsten Hopp <karsten@redhat.de> 1.9.1-15 
11f80c
- added strtol fix from Leonid Petrov, reenable LFS
11f80c
11f80c
* Tue Sep 14 2004 Karsten Hopp <karsten@redhat.de> 1.9.1-14
11f80c
- buildrequires gettext (#132519)
11f80c
11f80c
* Wed Sep 01 2004 Karsten Hopp <karsten@redhat.de> 1.9.1-13
11f80c
- disable LFS patch for now, it breaks normal downloads (123524#c15)
11f80c
11f80c
* Tue Aug 31 2004 Karsten Hopp <karsten@redhat.de> 1.9.1-12 
11f80c
- move largefile stuff inside the configure script, it didn't
11f80c
  get appended to CFLAGS
11f80c
11f80c
* Tue Aug 31 2004 Karsten Hopp <karsten@redhat.de> 1.9.1-11
11f80c
- rebuild
11f80c
11f80c
* Tue Aug 31 2004 Karsten Hopp <karsten@redhat.de> 1.9.1-10 
11f80c
- fix patch
11f80c
11f80c
* Sun Aug 29 2004 Karsten Hopp <karsten@redhat.de> 1.9.1-9
11f80c
- more cleanups of the manpage (#117519)
11f80c
11f80c
* Fri Aug 27 2004 Karsten Hopp <karsten@redhat.de> 1.9.1-8
11f80c
- rebuild
11f80c
11f80c
* Fri Aug 27 2004 Karsten Hopp <karsten@redhat.de> 1.9.1-7 
11f80c
- clean up manpage (#117519)
11f80c
- buildrequire texinfo (#123780)
11f80c
- LFS patch, based on wget-LFS-20040630.patch from Leonid Petrov
11f80c
  (#123524, #124628, #115348)
11f80c
11f80c
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
11f80c
- rebuilt
11f80c
11f80c
* Thu Mar 11 2004 Karsten Hopp <karsten@redhat.de> 1.9.1-3 
11f80c
- fix documentation (#117517)
11f80c
11f80c
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
11f80c
- rebuilt
11f80c
11f80c
* Fri Nov 28 2003 Karsten Hopp <karsten@redhat.de> 1.9.1-3
11f80c
- update to -stable CVS
11f80c
- document the passive ftp default
11f80c
11f80c
* Fri Nov 28 2003 Karsten Hopp <karsten@redhat.de> 1.9.1-2
11f80c
- add patch from -stable CVS
11f80c
11f80c
* Fri Nov 28 2003 Karsten Hopp <karsten@redhat.de> 1.9.1-1
11f80c
- update to 1.9.1
11f80c
- remove obsolete patches
11f80c
11f80c
* Mon Aug 04 2003 Karsten Hopp <karsten@redhat.de> 1.8.2-15.3
11f80c
- fix variable usage
11f80c
11f80c
* Tue Jul 22 2003 Nalin Dahyabhai <nalin@redhat.com> 1.8.2-15.2
11f80c
- rebuild
11f80c
11f80c
* Wed Jun 25 2003 Karsten Hopp <karsten@redhat.de> 1.8.2-15.1
11f80c
- rebuilt
11f80c
11f80c
* Wed Jun 25 2003 Karsten Hopp <karsten@redhat.de> 1.8.2-15
11f80c
- default to passive-ftp (#97996)
11f80c
11f80c
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
11f80c
- rebuilt
11f80c
11f80c
* Wed Jun 04 2003 Karsten Hopp <karsten@redhat.de> 1.8.2-13
11f80c
- rebuild
11f80c
11f80c
* Wed Jun 04 2003 Karsten Hopp <karsten@redhat.de> 1.8.2-12
11f80c
- merge debian patch for long URLs
11f80c
- cleanup filename patch
11f80c
11f80c
* Sun May 11 2003 Karsten Hopp <karsten@redhat.de> 1.8.2-11
11f80c
- rebuild
11f80c
11f80c
* Sun May 11 2003 Karsten Hopp <karsten@redhat.de> 1.8.2-10
11f80c
- upstream fix off-by-one error
11f80c
11f80c
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
11f80c
- rebuilt
11f80c
11f80c
* Tue Jan  7 2003 Nalin Dahyabhai <nalin@redhat.com> 1.8.2-8
11f80c
- rebuild
11f80c
11f80c
* Fri Dec 13 2002 Nalin Dahyabhai <nalin@redhat.com>
11f80c
- use openssl pkg-config data, if present
11f80c
- don't bomb out when building with newer openssl
11f80c
11f80c
* Thu Dec 12 2002 Tim Powers <timp@redhat.com> 1.8.2-7
11f80c
- rebuild on all arches
11f80c
11f80c
* Tue Nov 19 2002 Tim Powers <timp@redhat.com>
11f80c
- rebuild on all arches
11f80c
11f80c
* Fri Oct 4 2002 Karsten Hopp <karsten@redhat.de> 1.8.2-5
11f80c
- fix directory traversal bug
11f80c
11f80c
* Wed Jul 24 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.8.2-3
11f80c
- Don't segfault when downloading URLs A-B-A (A-A-B worked) #49859
11f80c
11f80c
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
11f80c
- automated rebuild
11f80c
11f80c
* Wed May 29 2002 Florian La Roche <Florian.LaRoche@redhat.de>
11f80c
- update to 1.8.2 (bug-fix release)
11f80c
11f80c
* Thu May 23 2002 Tim Powers <timp@redhat.com>
11f80c
- automated rebuild
11f80c
11f80c
* Mon Apr 29 2002 Florian La Roche <Florian.LaRoche@redhat.de>
11f80c
- remove s390 patch, not needed anymore
11f80c
11f80c
* Wed Feb 27 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.8.1-4
11f80c
- Rebuild
11f80c
11f80c
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
11f80c
- automated rebuild
11f80c
11f80c
* Fri Dec 28 2001 Florian La Roche <Florian.LaRoche@redhat.de>
11f80c
- add hack to not link against libmd5, even if available
11f80c
11f80c
* Fri Dec 28 2001 Florian La Roche <Florian.LaRoche@redhat.de>
11f80c
- update to 1.8.1
11f80c
11f80c
* Thu Dec 13 2001 Florian La Roche <Florian.LaRoche@redhat.de>
11f80c
- update to 1.8
11f80c
- also include md5global to get it compile
11f80c
11f80c
* Sun Nov 18 2001 Florian La Roche <Florian.LaRoche@redhat.de>
11f80c
- update to 1.7.1
11f80c
11f80c
* Wed Sep  5 2001 Phil Knirsch <phil@redhat.de> 1.7-3
11f80c
- Added va_args patch required for S390.
11f80c
11f80c
* Mon Sep  3 2001 Trond Eivind Glomsrød <teg@redhat.com> 1.7-2
11f80c
- Configure with ssl support (duh - #53116)
11f80c
- s/Copyright/License/
11f80c
11f80c
* Wed Jun  6 2001 Trond Eivind Glomsrød <teg@redhat.com>
11f80c
- 1.7
11f80c
- Require perl for building (to get man pages)
11f80c
- Don't include the Japanese po file, it's now included
11f80c
- Use %%{_tmppath}
11f80c
- no patches necessary
11f80c
- Make /etc/wgetrc noreplace
11f80c
- More docs
11f80c
11f80c
* Tue Jan 30 2001 Trond Eivind Glomsrød <teg@redhat.com>
11f80c
- Norwegian isn't a iso-8859-2 locale, neither is Danish.
11f80c
  This fixes #15025.
11f80c
- langify
11f80c
11f80c
* Sat Jan  6 2001 Bill Nottingham <notting@redhat.com>
11f80c
- escape %%xx characters before fnmatch (#23475, patch from alane@geeksrus.net)
11f80c
11f80c
* Fri Jan  5 2001 Bill Nottingham <notting@redhat.com>
11f80c
- update to 1.6, fix patches accordingly (#23412)
11f80c
- fix symlink patch (#23411)
11f80c
11f80c
* Mon Dec 18 2000 Yukihiro Nakai <ynakai@redhat.com>
11f80c
- Add Japanese and Korean Resources
11f80c
11f80c
* Tue Aug  1 2000 Bill Nottingham <notting@redhat.com>
11f80c
- setlocale for LC_CTYPE too, or else all the translations think their
11f80c
  characters are unprintable.
11f80c
11f80c
* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
11f80c
- automatic rebuild
11f80c
11f80c
* Sun Jun 11 2000 Bill Nottingham <notting@redhat.com>
11f80c
- build in new environment
11f80c
11f80c
* Mon Jun  5 2000 Bernhard Rosenkraenzer <bero@redhat.com>
11f80c
- FHS compliance
11f80c
11f80c
* Thu Feb  3 2000 Bill Nottingham <notting@redhat.com>
11f80c
- handle compressed man pages
11f80c
11f80c
* Thu Aug 26 1999 Jeff Johnson <jbj@redhat.com>
11f80c
- don't permit chmod 777 on symlinks (#4725).
11f80c
11f80c
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
11f80c
- auto rebuild in the new build environment (release 4)
11f80c
11f80c
* Fri Dec 18 1998 Bill Nottingham <notting@redhat.com>
11f80c
- build for 6.0 tree
11f80c
- add Provides
11f80c
11f80c
* Sat Oct 10 1998 Cristian Gafton <gafton@redhat.com>
11f80c
- strip binaries
11f80c
- version 1.5.3
11f80c
11f80c
* Sat Jun 27 1998 Jeff Johnson <jbj@redhat.com>
11f80c
- updated to 1.5.2
11f80c
11f80c
* Thu Apr 30 1998 Cristian Gafton <gafton@redhat.com>
11f80c
- modified group to Applications/Networking
11f80c
11f80c
* Wed Apr 22 1998 Cristian Gafton <gafton@redhat.com>
11f80c
- upgraded to 1.5.0
11f80c
- they removed the man page from the distribution (Duh!) and I added it back
11f80c
  from 1.4.5. Hey, removing the man page is DUMB!
11f80c
11f80c
* Fri Nov 14 1997 Cristian Gafton <gafton@redhat.com>
11f80c
- first build against glibc