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