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