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