bc22e6
Summary: A utility for retrieving files using the HTTP or FTP protocols
bc22e6
Name: wget
bc22e6
Version: 1.14
bc22e6
Release: 18%{?dist}
bc22e6
License: GPLv3+
bc22e6
Group: Applications/Internet
bc22e6
Url: http://www.gnu.org/software/wget/
bc22e6
Source: ftp://ftp.gnu.org/gnu/wget/wget-%{version}.tar.xz
bc22e6
bc22e6
Patch1: wget-rh-modified.patch
bc22e6
Patch2: wget-1.12-path.patch
bc22e6
Patch3: wget-1.14-sslreadtimeout.patch
bc22e6
Patch4: wget-1.14-manpage-tex5.patch
bc22e6
Patch5: wget-1.14-add_missing_options_doc.patch
bc22e6
Patch6: wget-1.14-texi2pod_error_perl518.patch
bc22e6
Patch7: wget-1.14-fix-double-free-of-iri-orig_url.patch
bc22e6
Patch8: wget-1.14-Fix-deadcode-and-possible-NULL-use.patch
bc22e6
Patch9: wget-1.14-doc-missing-opts-and-fix-preserve-permissions.patch
bc22e6
Patch10: wget-1.14-set_sock_to_-1_if_no_persistent_conn.patch
bc22e6
Patch11: wget-1.14-document-backups.patch
bc22e6
Patch12: wget-1.14-fix-backups-to-work-as-documented.patch
bc22e6
Patch13: wget-1.14-CVE-2014-4877.patch
bc22e6
Patch14: wget-1.14-rh1203384.patch
bc22e6
Patch15: wget-1.14-rh1147572.patch
bc22e6
Patch16: wget-1.14-CVE-2016-4971.patch
bc22e6
# needed because fix for CVE-2016-4971 changes default behavior
bc22e6
# and the file is not saved in correct encoding. This caused the
bc22e6
# Test-ftp-iri-fallback test to fail. This additional change makes
bc22e6
# Test-ftp-iri-fallback test pass again.
bc22e6
Patch17: wget-1.14-support-non-ASCII-characters.patch
bc22e6
Patch18: wget-1.14-add-openssl-tlsv11-tlsv12-support.patch
bc22e6
# Fix for randomly failing unit test
bc22e6
# combination of upstream commits without the support for Valgrind
bc22e6
# commit 3eff3ad69a46364475e1f4abdf9412cfa87e3d6c
bc22e6
# commit 2303793a626158627bdb2ac255e0f58697682b24
bc22e6
Patch19: wget-1.14-fix-synchronization-in-Test-proxied-https-auth.patch
bc22e6
Patch20: wget-1.14-CVE-2017-13089.patch
bc22e6
Patch21: wget-1.14-CVE-2017-13090.patch
bc22e6
# Partial backport without setting the default algorithm
bc22e6
# http://git.savannah.gnu.org/cgit/wget.git/commit/?id=e9cc8b2f7c4678b832ad56f7119bba86a8db08ef
bc22e6
Patch22: wget-1.14-digest-auth-qop-segfault-fix.patch
bc22e6
# https://git.savannah.gnu.org/cgit/wget.git/commit/?id=1fc9c95ec144499e69dc8ec76dbe07799d7d82cd
bc22e6
Patch23: wget-1.14-CVE-2018-0494.patch
bc22e6
bc22e6
Provides: webclient
bc22e6
Provides: bundled(gnulib) 
bc22e6
Requires(post): /sbin/install-info
bc22e6
Requires(preun): /sbin/install-info
bc22e6
BuildRequires: openssl-devel, pkgconfig, texinfo, gettext, autoconf, libidn-devel, libuuid-devel, perl-podlators
bc22e6
# dependencies for the test suite
bc22e6
BuildRequires: perl-libwww-perl
bc22e6
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
bc22e6
bc22e6
%description
bc22e6
GNU Wget is a file retrieval utility which can use either the HTTP or
bc22e6
FTP protocols. Wget features include the ability to work in the
bc22e6
background while you are logged out, recursive retrieval of
bc22e6
directories, file name wildcard matching, remote file timestamp
bc22e6
storage and comparison, use of Rest with FTP servers and Range with
bc22e6
HTTP servers to retrieve files over slow or unstable connections,
bc22e6
support for Proxy servers, and configurability.
bc22e6
bc22e6
%prep
bc22e6
%setup -q
bc22e6
%patch1 -p0
bc22e6
%patch2 -p1
bc22e6
%patch3 -p1 -b .sslreadtimeout
bc22e6
%patch4 -p1
bc22e6
%patch5 -p1
bc22e6
%patch6 -p1
bc22e6
%patch7 -p1
bc22e6
%patch8 -p1
bc22e6
%patch9 -p1
bc22e6
%patch10 -p1
bc22e6
%patch11 -p1
bc22e6
%patch12 -p1
bc22e6
%patch13 -p1
bc22e6
%patch14 -p1
bc22e6
%patch15 -p1
bc22e6
%patch16 -p1
bc22e6
%patch17 -p1
bc22e6
%patch18 -p1 -b .tls11_tls12
bc22e6
%patch19 -p1 -b .test_synch_fix
bc22e6
%patch20 -p1 -b .CVE-2017-13089
bc22e6
%patch21 -p1 -b .CVE-2017-13090
bc22e6
%patch22 -p1 -b .digest-auth-segfault
bc22e6
%patch23 -p1 -b .CVE-2018-0494
bc22e6
bc22e6
%build
bc22e6
if pkg-config openssl ; then
bc22e6
    CPPFLAGS=`pkg-config --cflags openssl`; export CPPFLAGS
bc22e6
    LDFLAGS=`pkg-config --libs openssl`; export LDFLAGS
bc22e6
fi
bc22e6
%configure --with-ssl=openssl --enable-largefile --enable-opie --enable-digest --enable-ntlm --enable-nls --enable-ipv6 --disable-rpath
bc22e6
make %{?_smp_mflags}
bc22e6
bc22e6
%install
bc22e6
rm -rf $RPM_BUILD_ROOT
bc22e6
make install DESTDIR=$RPM_BUILD_ROOT CFLAGS="$RPM_OPT_FLAGS"
bc22e6
rm -f $RPM_BUILD_ROOT/%{_infodir}/dir
bc22e6
bc22e6
%find_lang %{name}
bc22e6
bc22e6
%post
bc22e6
/sbin/install-info %{_infodir}/wget.info.gz %{_infodir}/dir || :
bc22e6
bc22e6
%preun
bc22e6
if [ "$1" = 0 ]; then
bc22e6
    /sbin/install-info --delete %{_infodir}/wget.info.gz %{_infodir}/dir || :
bc22e6
fi
bc22e6
bc22e6
%clean
bc22e6
rm -rf $RPM_BUILD_ROOT
bc22e6
bc22e6
%check
bc22e6
make check
bc22e6
bc22e6
%files -f %{name}.lang
bc22e6
%defattr(-,root,root)
bc22e6
%doc AUTHORS MAILING-LIST NEWS README COPYING doc/sample.wgetrc
bc22e6
%config(noreplace) %{_sysconfdir}/wgetrc
bc22e6
%{_mandir}/man1/wget.*
bc22e6
%{_bindir}/wget
bc22e6
%{_infodir}/*
bc22e6
bc22e6
%changelog
bc22e6
* Wed May 09 2018 Tomas Hozza <thozza@redhat.com> - 1.14-18
bc22e6
- Fix CVE-2018-0494 (#1576106)
bc22e6
bc22e6
* Mon Apr 23 2018 Tomas Hozza <thozza@redhat.com> - 1.14-17
bc22e6
- Fix segfault when Digest Authentication header is missing 'qop' part (#1545310)
bc22e6
bc22e6
* Tue Oct 24 2017 Tomas Hozza <thozza@redhat.com> - 1.14-16
bc22e6
- Fixed various security flaws (CVE-2017-13089, CVE-2017-13090)
bc22e6
bc22e6
* Fri May 05 2017 Tomas Hozza <thozza@redhat.com> - 1.14-15
bc22e6
- Added TLSv1_1 and TLSv1_2 as secure-protocol values to help (#1439811)
bc22e6
- Fixed synchronization in randomly failing unit test Test-proxied-https-auth (#1448440)
bc22e6
bc22e6
* Wed Apr 12 2017 Tomas Hozza <thozza@redhat.com> - 1.14-14
bc22e6
- TLS v1.1 and v1.2 can now be specified with --secure-protocol option (#1439811)
bc22e6
bc22e6
* Mon Jun 20 2016 Tomas Hozza <thozza@redhat.com> - 1.14-13
bc22e6
- Fix CVE-2016-4971 (#1345778)
bc22e6
- Added support for non-ASCII URLs (Related: CVE-2016-4971)
bc22e6
bc22e6
* Mon Mar 21 2016 Tomas Hozza <thozza@redhat.com> - 1.14-12
bc22e6
- Fix wget to include Host header on CONNECT as required by HTTP 1.1 (#1203384)
bc22e6
- Run internal test suite during build (#1295846)
bc22e6
- Fix -nv being documented as synonym for two options (#1147572)
bc22e6
bc22e6
* Fri Oct 24 2014 Tomas Hozza <thozza@redhat.com> - 1.14-11
bc22e6
- Fix CVE-2014-4877 wget: FTP symlink arbitrary filesystem access (#1156136)
bc22e6
bc22e6
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1.14-10
bc22e6
- Mass rebuild 2014-01-24
bc22e6
bc22e6
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1.14-9
bc22e6
- Mass rebuild 2013-12-27
bc22e6
bc22e6
* Mon Jul 15 2013 Tomas Hozza <thozza@redhat.com> - 1.14-8
bc22e6
- Fix deadcode and possible use of NULL in vprintf (#913153)
bc22e6
- Add documentation for --regex-type and --preserve-permissions
bc22e6
- Fix --preserve-permissions to work as documented (and expected)
bc22e6
- Fix bug when authenticating using user:password@url syntax (#912358)
bc22e6
- Document and fix --backups option
bc22e6
bc22e6
* Wed Jul 10 2013 Tomas Hozza <thozza@redhat.com> - 1.14-7
bc22e6
- Fix double free of iri->orig_url (#981778)
bc22e6
bc22e6
* Mon Jun 24 2013 Tomas Hozza <thozza@redhat.com> - 1.14-6
bc22e6
- add missing options accept-regex and reject-regex to man page
bc22e6
- fix errors in texi2pod introduced in Perl-5.18
bc22e6
bc22e6
* Fri Feb 22 2013 Tomas Hozza <thozza@redhat.com> - 1.14-5
bc22e6
- Added BuildRequires: perl-podlators for pod2man
bc22e6
- Patched manpage to silent new Tex errors
bc22e6
- Resolves: (#914571) 
bc22e6
bc22e6
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.14-4
bc22e6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
bc22e6
bc22e6
* Thu Oct 11 2012 Tomas Hozza <thozza@redhat.com> 1.14-3
bc22e6
- Added libuuid-devel to BuildRequires to use libuuid functions
bc22e6
  in "src/warc.c" functions (#865421)
bc22e6
bc22e6
* Wed Oct 10 2012 Tomas Hozza <thozza@redhat.com> 1.14-2
bc22e6
- Added libidn-devel to BuildRequires to support IDN domains (#680394)
bc22e6
bc22e6
* Thu Aug 09 2012 Karsten Hopp <karsten@redhat.com> 1.14-1
bc22e6
- Update to wget-1.14
bc22e6
bc22e6
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.13.4-5
bc22e6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
bc22e6
bc22e6
* Tue May 29 2012 Karsten Hopp <karsten@redhat.com> 1.13.4-4
bc22e6
- fix timeout if http server doesn't answer to SSL handshake (#860727)
bc22e6
bc22e6
* Tue May 15 2012 Karsten Hopp <karsten@redhat.com> 1.13.4-3
bc22e6
- add virtual provides per https://fedoraproject.org/wiki/Packaging:No_Bundled_Libraries
bc22e6
bc22e6
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.13.4-2
bc22e6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
bc22e6
bc22e6
* Fri Dec 16 2011 Jon Ciesla <limburgher@gmail.com> - 1.13.4-1
bc22e6
- New upstream, BZ 730286.
bc22e6
- Modified path patch.
bc22e6
- subjectAltNames patch upstreamed.
bc22e6
- Specified openssl at config time.
bc22e6
bc22e6
* Thu Jun 23 2011 Volker Fröhlich <volker27@gmx.at> - 1.12-4
bc22e6
- Applied patch to accept subjectAltNames in X509 certificates (#674186)
bc22e6
- New URL (#658969)
bc22e6
bc22e6
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.12-3
bc22e6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
bc22e6
bc22e6
* Wed Nov 18 2009 Karsten Hopp <karsten@redhat.com> 1.12-2
bc22e6
- don't provide /usr/share/info/dir
bc22e6
bc22e6
* Tue Nov 17 2009 Karsten Hopp <karsten@redhat.com> 1.12-1
bc22e6
- update to wget-1.12
bc22e6
- fixes CVE-2009-3490 wget: incorrect verification of SSL certificate
bc22e6
  with NUL in name
bc22e6
bc22e6
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 1.11.4-5
bc22e6
- rebuilt with new openssl
bc22e6
bc22e6
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.11.4-4
bc22e6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
bc22e6
bc22e6
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.11.4-3
bc22e6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
bc22e6
bc22e6
* Sun Jan 18 2009 Tomas Mraz <tmraz@redhat.com> 1.11.4-2
bc22e6
- rebuild with new openssl
bc22e6
bc22e6
* Wed Aug 13 2008 Karsten Hopp <karsten@redhat.com> 1.11.4-1
bc22e6
- update
bc22e6
bc22e6
* Wed Jun 04 2008 Karsten Hopp <karsten@redhat.com> 1.11.3-1
bc22e6
- wget-1.11.3, downgrades the combination of the -N and -O options
bc22e6
  to a warning instead of an error
bc22e6
bc22e6
* Fri May 09 2008 Karsten Hopp <karsten@redhat.com> 1.11.2-1
bc22e6
- wget-1.11.2, fixes #179962
bc22e6
bc22e6
* Mon Mar 31 2008 Karsten Hopp <karsten@redhat.com> 1.11.1-1
bc22e6
- update to bugfix release 1.11.1, fixes p.e. #433606
bc22e6
bc22e6
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.11-2
bc22e6
- Autorebuild for GCC 4.3
bc22e6
bc22e6
* Tue Dec 04 2007 Karsten Hopp <karsten@redhat.com> 1.10.2-17
bc22e6
- rebuild to pick up new openssl SONAME
bc22e6
bc22e6
* Mon Aug 27 2007 Karsten Hopp <karsten@redhat.com> 1.10.2-16
bc22e6
- fix license tag
bc22e6
- rebuild
bc22e6
bc22e6
* Mon Feb 12 2007 Karsten Hopp <karsten@redhat.com> 1.10.2-15
bc22e6
- fix discarding of expired cookies
bc22e6
- escape non-printable characters
bc22e6
- drop to11 patch for now (#223754, #227853, #227498)
bc22e6
bc22e6
* Mon Feb 05 2007 Karsten Hopp <karsten@redhat.com> 1.10.2-14
bc22e6
- shut up rpmlint, even though xx isn't a macro
bc22e6
bc22e6
* Mon Feb 05 2007 Karsten Hopp <karsten@redhat.com> 1.10.2-13
bc22e6
- merge review changes (#226538)
bc22e6
  - use version/release/... in buildroot tag
bc22e6
  - remove BR perl
bc22e6
  - use SMP flags
bc22e6
  - use make install instead of %%makeinstall
bc22e6
  - include copy of license
bc22e6
  - use Requires(post)/Requires(preun)
bc22e6
  - use optflags
bc22e6
  - remove trailing dot from summary
bc22e6
  - change tabs to spaces
bc22e6
bc22e6
* Thu Jan 18 2007 Karsten Hopp <karsten@redhat.com> 1.10.2-12
bc22e6
- don't abort (un)install scriptlets when _excludedocs is set (Ville Skyttä)
bc22e6
bc22e6
* Wed Jan 10 2007 Karsten Hopp <karsten@redhat.com> 1.10.2-11
bc22e6
- add fix for CVE-2006-6719
bc22e6
bc22e6
* Fri Dec 08 2006 Karsten Hopp <karsten@redhat.com> 1.10.2-10
bc22e6
- fix repeated downloads (Tomas Heinrich, #186195)
bc22e6
bc22e6
* Thu Dec 07 2006 Karsten Hopp <karsten@redhat.com> 1.10.2-9
bc22e6
- add distflag, rebuild
bc22e6
bc22e6
* Thu Dec 07 2006 Karsten Hopp <karsten@redhat.com> 1.10.2-8
bc22e6
- Resolves: #218211
bc22e6
  fix double free corruption
bc22e6
bc22e6
* Sun Oct 01 2006 Jesse Keating <jkeating@redhat.com> - 1.10.2-7
bc22e6
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
bc22e6
bc22e6
* Mon Sep 25 2006 Karsten Hopp <karsten@redhat.de> 1.10.2-6
bc22e6
- fix resumed downloads (#205723)
bc22e6
bc22e6
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.10.2-5.1
bc22e6
- rebuild
bc22e6
bc22e6
* Thu Jun 29 2006 Karsten Hopp <karsten@redhat.de> 1.10.2-5
bc22e6
- updated german translations from Robert Scheck
bc22e6
bc22e6
* Tue Jun 27 2006 Karsten Hopp <karsten@redhat.de> 1.10.2-4
bc22e6
- upstream patches
bc22e6
bc22e6
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.10.2-3.2.1
bc22e6
- bump again for double-long bug on ppc(64)
bc22e6
bc22e6
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.10.2-3.2
bc22e6
- rebuilt for new gcc4.1 snapshot and glibc changes
bc22e6
bc22e6
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
bc22e6
- rebuilt
bc22e6
bc22e6
* Thu Nov 10 2005 Tomas Mraz <tmraz@redhat.com> 1.10.2-3
bc22e6
- rebuilt against new openssl
bc22e6
bc22e6
* Tue Oct 25 2005 Karsten Hopp <karsten@redhat.de> 1.10.2-2
bc22e6
- use %%{_sysconfdir} (#171555)
bc22e6
bc22e6
* Sat Oct 15 2005 Florian La Roche <laroche@redhat.com>
bc22e6
- 1.10.2
bc22e6
bc22e6
* Thu Sep 08 2005 Karsten Hopp <karsten@redhat.de> 1.10.1-7
bc22e6
- fix builtin help of --load-cookies / --save-cookies (#165408)
bc22e6
bc22e6
* Wed Sep 07 2005 Karsten Hopp <karsten@redhat.de> 1.10.1-6
bc22e6
- convert changelog to UTF-8 (#159585)
bc22e6
bc22e6
* Mon Sep 05 2005 Karsten Hopp <karsten@redhat.de> 1.10.1-5
bc22e6
- update
bc22e6
- drop patches which are already in the upstream sources
bc22e6
bc22e6
* Wed Jul 13 2005 Karsten Hopp <karsten@redhat.de> 1.10-5
bc22e6
- update german translation
bc22e6
bc22e6
* Mon Jul 11 2005 Karsten Hopp <karsten@redhat.de> 1.10-4
bc22e6
- update german translation (Robert Scheck)
bc22e6
bc22e6
* Tue Jul 05 2005 Karsten Hopp <karsten@redhat.de> 1.10-3
bc22e6
- fix minor documentation bug
bc22e6
- fix --no-cookies crash
bc22e6
bc22e6
* Mon Jul 04 2005 Karsten Hopp <karsten@redhat.de> 1.10-2
bc22e6
- update to wget-1.10
bc22e6
  - drop passive-ftp patch, already in 1.10
bc22e6
  - drop CVS patch
bc22e6
  - drop LFS patch, similar fix in 1.10
bc22e6
  - drop protdir patch, similar fix in 1.10
bc22e6
  - drop actime patch, already in 1.10
bc22e6
bc22e6
* Wed Mar 02 2005 Karsten Hopp <karsten@redhat.de> 1.9.1-22
bc22e6
- build with gcc-4
bc22e6
bc22e6
* Wed Feb 02 2005 Karsten Hopp <karsten@redhat.de> 1.9.1-21 
bc22e6
- remove old copy of the manpage (#146875, #135597)
bc22e6
- fix garbage in manpage (#117519)
bc22e6
bc22e6
* Tue Feb 01 2005 Karsten Hopp <karsten@redhat.de> 1.9.1-20 
bc22e6
- texi2pod doesn't handle texinfo xref's. rewrite some lines so that
bc22e6
  the man page doesn't have incomplete sentences anymore (#140470)
bc22e6
bc22e6
* Mon Jan 31 2005 Karsten Hopp <karsten@redhat.de> 1.9.1-19 
bc22e6
- Don't set actime to access time of the remote file or tmpwatch might 
bc22e6
  remove the file again (#146440).  Set it to the current time instead.
bc22e6
  timestamping checks only modtime, so this should be ok.
bc22e6
bc22e6
* Thu Jan 20 2005 Karsten Hopp <karsten@redhat.de> 1.9.1-18
bc22e6
- add support for --protocol-directories option as documented
bc22e6
  in the man page (Ville Skyttä, #145571)
bc22e6
bc22e6
* Wed Sep 29 2004 Karsten Hopp <karsten@redhat.de> 1.9.1-17 
bc22e6
- additional LFS patch from Leonid Petrov to fix file lengths in 
bc22e6
  http downloads
bc22e6
bc22e6
* Thu Sep 16 2004 Karsten Hopp <karsten@redhat.de> 1.9.1-16 
bc22e6
- more fixes
bc22e6
bc22e6
* Tue Sep 14 2004 Karsten Hopp <karsten@redhat.de> 1.9.1-15 
bc22e6
- added strtol fix from Leonid Petrov, reenable LFS
bc22e6
bc22e6
* Tue Sep 14 2004 Karsten Hopp <karsten@redhat.de> 1.9.1-14
bc22e6
- buildrequires gettext (#132519)
bc22e6
bc22e6
* Wed Sep 01 2004 Karsten Hopp <karsten@redhat.de> 1.9.1-13
bc22e6
- disable LFS patch for now, it breaks normal downloads (123524#c15)
bc22e6
bc22e6
* Tue Aug 31 2004 Karsten Hopp <karsten@redhat.de> 1.9.1-12 
bc22e6
- move largefile stuff inside the configure script, it didn't
bc22e6
  get appended to CFLAGS
bc22e6
bc22e6
* Tue Aug 31 2004 Karsten Hopp <karsten@redhat.de> 1.9.1-11
bc22e6
- rebuild
bc22e6
bc22e6
* Tue Aug 31 2004 Karsten Hopp <karsten@redhat.de> 1.9.1-10 
bc22e6
- fix patch
bc22e6
bc22e6
* Sun Aug 29 2004 Karsten Hopp <karsten@redhat.de> 1.9.1-9
bc22e6
- more cleanups of the manpage (#117519)
bc22e6
bc22e6
* Fri Aug 27 2004 Karsten Hopp <karsten@redhat.de> 1.9.1-8
bc22e6
- rebuild
bc22e6
bc22e6
* Fri Aug 27 2004 Karsten Hopp <karsten@redhat.de> 1.9.1-7 
bc22e6
- clean up manpage (#117519)
bc22e6
- buildrequire texinfo (#123780)
bc22e6
- LFS patch, based on wget-LFS-20040630.patch from Leonid Petrov
bc22e6
  (#123524, #124628, #115348)
bc22e6
bc22e6
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
bc22e6
- rebuilt
bc22e6
bc22e6
* Thu Mar 11 2004 Karsten Hopp <karsten@redhat.de> 1.9.1-3 
bc22e6
- fix documentation (#117517)
bc22e6
bc22e6
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
bc22e6
- rebuilt
bc22e6
bc22e6
* Fri Nov 28 2003 Karsten Hopp <karsten@redhat.de> 1.9.1-3
bc22e6
- update to -stable CVS
bc22e6
- document the passive ftp default
bc22e6
bc22e6
* Fri Nov 28 2003 Karsten Hopp <karsten@redhat.de> 1.9.1-2
bc22e6
- add patch from -stable CVS
bc22e6
bc22e6
* Fri Nov 28 2003 Karsten Hopp <karsten@redhat.de> 1.9.1-1
bc22e6
- update to 1.9.1
bc22e6
- remove obsolete patches
bc22e6
bc22e6
* Mon Aug 04 2003 Karsten Hopp <karsten@redhat.de> 1.8.2-15.3
bc22e6
- fix variable usage
bc22e6
bc22e6
* Tue Jul 22 2003 Nalin Dahyabhai <nalin@redhat.com> 1.8.2-15.2
bc22e6
- rebuild
bc22e6
bc22e6
* Wed Jun 25 2003 Karsten Hopp <karsten@redhat.de> 1.8.2-15.1
bc22e6
- rebuilt
bc22e6
bc22e6
* Wed Jun 25 2003 Karsten Hopp <karsten@redhat.de> 1.8.2-15
bc22e6
- default to passive-ftp (#97996)
bc22e6
bc22e6
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
bc22e6
- rebuilt
bc22e6
bc22e6
* Wed Jun 04 2003 Karsten Hopp <karsten@redhat.de> 1.8.2-13
bc22e6
- rebuild
bc22e6
bc22e6
* Wed Jun 04 2003 Karsten Hopp <karsten@redhat.de> 1.8.2-12
bc22e6
- merge debian patch for long URLs
bc22e6
- cleanup filename patch
bc22e6
bc22e6
* Sun May 11 2003 Karsten Hopp <karsten@redhat.de> 1.8.2-11
bc22e6
- rebuild
bc22e6
bc22e6
* Sun May 11 2003 Karsten Hopp <karsten@redhat.de> 1.8.2-10
bc22e6
- upstream fix off-by-one error
bc22e6
bc22e6
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
bc22e6
- rebuilt
bc22e6
bc22e6
* Tue Jan  7 2003 Nalin Dahyabhai <nalin@redhat.com> 1.8.2-8
bc22e6
- rebuild
bc22e6
bc22e6
* Fri Dec 13 2002 Nalin Dahyabhai <nalin@redhat.com>
bc22e6
- use openssl pkg-config data, if present
bc22e6
- don't bomb out when building with newer openssl
bc22e6
bc22e6
* Thu Dec 12 2002 Tim Powers <timp@redhat.com> 1.8.2-7
bc22e6
- rebuild on all arches
bc22e6
bc22e6
* Tue Nov 19 2002 Tim Powers <timp@redhat.com>
bc22e6
- rebuild on all arches
bc22e6
bc22e6
* Fri Oct 4 2002 Karsten Hopp <karsten@redhat.de> 1.8.2-5
bc22e6
- fix directory traversal bug
bc22e6
bc22e6
* Wed Jul 24 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.8.2-3
bc22e6
- Don't segfault when downloading URLs A-B-A (A-A-B worked) #49859
bc22e6
bc22e6
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
bc22e6
- automated rebuild
bc22e6
bc22e6
* Wed May 29 2002 Florian La Roche <Florian.LaRoche@redhat.de>
bc22e6
- update to 1.8.2 (bug-fix release)
bc22e6
bc22e6
* Thu May 23 2002 Tim Powers <timp@redhat.com>
bc22e6
- automated rebuild
bc22e6
bc22e6
* Mon Apr 29 2002 Florian La Roche <Florian.LaRoche@redhat.de>
bc22e6
- remove s390 patch, not needed anymore
bc22e6
bc22e6
* Wed Feb 27 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.8.1-4
bc22e6
- Rebuild
bc22e6
bc22e6
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
bc22e6
- automated rebuild
bc22e6
bc22e6
* Fri Dec 28 2001 Florian La Roche <Florian.LaRoche@redhat.de>
bc22e6
- add hack to not link against libmd5, even if available
bc22e6
bc22e6
* Fri Dec 28 2001 Florian La Roche <Florian.LaRoche@redhat.de>
bc22e6
- update to 1.8.1
bc22e6
bc22e6
* Thu Dec 13 2001 Florian La Roche <Florian.LaRoche@redhat.de>
bc22e6
- update to 1.8
bc22e6
- also include md5global to get it compile
bc22e6
bc22e6
* Sun Nov 18 2001 Florian La Roche <Florian.LaRoche@redhat.de>
bc22e6
- update to 1.7.1
bc22e6
bc22e6
* Wed Sep  5 2001 Phil Knirsch <phil@redhat.de> 1.7-3
bc22e6
- Added va_args patch required for S390.
bc22e6
bc22e6
* Mon Sep  3 2001 Trond Eivind Glomsrød <teg@redhat.com> 1.7-2
bc22e6
- Configure with ssl support (duh - #53116)
bc22e6
- s/Copyright/License/
bc22e6
bc22e6
* Wed Jun  6 2001 Trond Eivind Glomsrød <teg@redhat.com>
bc22e6
- 1.7
bc22e6
- Require perl for building (to get man pages)
bc22e6
- Don't include the Japanese po file, it's now included
bc22e6
- Use %%{_tmppath}
bc22e6
- no patches necessary
bc22e6
- Make /etc/wgetrc noreplace
bc22e6
- More docs
bc22e6
bc22e6
* Tue Jan 30 2001 Trond Eivind Glomsrød <teg@redhat.com>
bc22e6
- Norwegian isn't a iso-8859-2 locale, neither is Danish.
bc22e6
  This fixes #15025.
bc22e6
- langify
bc22e6
bc22e6
* Sat Jan  6 2001 Bill Nottingham <notting@redhat.com>
bc22e6
- escape %%xx characters before fnmatch (#23475, patch from alane@geeksrus.net)
bc22e6
bc22e6
* Fri Jan  5 2001 Bill Nottingham <notting@redhat.com>
bc22e6
- update to 1.6, fix patches accordingly (#23412)
bc22e6
- fix symlink patch (#23411)
bc22e6
bc22e6
* Mon Dec 18 2000 Yukihiro Nakai <ynakai@redhat.com>
bc22e6
- Add Japanese and Korean Resources
bc22e6
bc22e6
* Tue Aug  1 2000 Bill Nottingham <notting@redhat.com>
bc22e6
- setlocale for LC_CTYPE too, or else all the translations think their
bc22e6
  characters are unprintable.
bc22e6
bc22e6
* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
bc22e6
- automatic rebuild
bc22e6
bc22e6
* Sun Jun 11 2000 Bill Nottingham <notting@redhat.com>
bc22e6
- build in new environment
bc22e6
bc22e6
* Mon Jun  5 2000 Bernhard Rosenkraenzer <bero@redhat.com>
bc22e6
- FHS compliance
bc22e6
bc22e6
* Thu Feb  3 2000 Bill Nottingham <notting@redhat.com>
bc22e6
- handle compressed man pages
bc22e6
bc22e6
* Thu Aug 26 1999 Jeff Johnson <jbj@redhat.com>
bc22e6
- don't permit chmod 777 on symlinks (#4725).
bc22e6
bc22e6
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
bc22e6
- auto rebuild in the new build environment (release 4)
bc22e6
bc22e6
* Fri Dec 18 1998 Bill Nottingham <notting@redhat.com>
bc22e6
- build for 6.0 tree
bc22e6
- add Provides
bc22e6
bc22e6
* Sat Oct 10 1998 Cristian Gafton <gafton@redhat.com>
bc22e6
- strip binaries
bc22e6
- version 1.5.3
bc22e6
bc22e6
* Sat Jun 27 1998 Jeff Johnson <jbj@redhat.com>
bc22e6
- updated to 1.5.2
bc22e6
bc22e6
* Thu Apr 30 1998 Cristian Gafton <gafton@redhat.com>
bc22e6
- modified group to Applications/Networking
bc22e6
bc22e6
* Wed Apr 22 1998 Cristian Gafton <gafton@redhat.com>
bc22e6
- upgraded to 1.5.0
bc22e6
- they removed the man page from the distribution (Duh!) and I added it back
bc22e6
  from 1.4.5. Hey, removing the man page is DUMB!
bc22e6
bc22e6
* Fri Nov 14 1997 Cristian Gafton <gafton@redhat.com>
bc22e6
- first build against glibc