2007-01-16 00:41:13 +01:00
|
|
|
#
|
2008-04-25 16:47:58 +02:00
|
|
|
# spec file for package wget (Version 1.11.1)
|
2007-01-16 00:41:13 +01:00
|
|
|
#
|
2008-02-25 17:47:53 +01:00
|
|
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2007-01-16 00:41:13 +01:00
|
|
|
# This file and all modifications and additions to the pristine
|
|
|
|
# package are under the same license as the package itself.
|
|
|
|
#
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
# norootforbuild
|
|
|
|
|
2008-02-25 17:47:53 +01:00
|
|
|
|
2007-01-16 00:41:13 +01:00
|
|
|
Name: wget
|
|
|
|
BuildRequires: libpng-devel openssl-devel
|
2008-02-25 17:47:53 +01:00
|
|
|
Url: http://wget.sunsite.dk/
|
2008-04-25 16:47:58 +02:00
|
|
|
License: GPL v3 or later
|
2007-01-16 00:41:13 +01:00
|
|
|
Group: Productivity/Networking/Web/Utilities
|
2008-02-25 17:47:53 +01:00
|
|
|
AutoReqProv: on
|
2008-04-25 16:47:58 +02:00
|
|
|
Version: 1.11.1
|
2008-05-01 15:08:20 +02:00
|
|
|
Release: 4
|
2007-01-16 00:41:13 +01:00
|
|
|
Summary: A Tool for Mirroring FTP and HTTP Servers
|
|
|
|
Source: %name-%version.tar.bz2
|
2008-05-01 15:08:20 +02:00
|
|
|
Patch1: wgetrc.patch
|
2007-01-16 00:41:13 +01:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
PreReq: %install_info_prereq
|
|
|
|
|
|
|
|
%description
|
|
|
|
Wget enables you to retrieve WWW documents or FTP files from a server.
|
|
|
|
This can be done in script files or via the command line.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
--------
|
|
|
|
Hrvoje Niksic <hniksic@srce.hr>
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
%patch1
|
|
|
|
|
|
|
|
%build
|
|
|
|
./autogen.sh
|
2008-04-25 16:47:58 +02:00
|
|
|
%configure
|
|
|
|
make
|
2007-01-16 00:41:13 +01:00
|
|
|
|
|
|
|
%install
|
|
|
|
make DESTDIR=$RPM_BUILD_ROOT install
|
2008-02-25 17:47:53 +01:00
|
|
|
%find_lang %{name}
|
2007-01-16 00:41:13 +01:00
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT;
|
|
|
|
|
|
|
|
%post
|
|
|
|
%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
|
|
|
|
|
|
|
%postun
|
|
|
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
|
|
|
|
2008-02-25 17:47:53 +01:00
|
|
|
%files -f %{name}.lang
|
2007-01-16 00:41:13 +01:00
|
|
|
%defattr(-,root,root)
|
2008-04-25 16:47:58 +02:00
|
|
|
%doc AUTHORS COPYING NEWS README MAILING-LIST
|
2007-01-16 00:41:13 +01:00
|
|
|
%doc doc/sample.wgetrc util/rmold.pl
|
2008-02-25 17:47:53 +01:00
|
|
|
%{_mandir}/*/wget*
|
|
|
|
%{_infodir}/wget*
|
2007-01-16 00:41:13 +01:00
|
|
|
%config(noreplace) %{_sysconfdir}/wgetrc
|
|
|
|
%{_bindir}/*
|
|
|
|
|
2007-03-29 01:01:25 +02:00
|
|
|
%changelog
|
2008-05-01 15:08:20 +02:00
|
|
|
* Wed Apr 30 2008 max@suse.de
|
|
|
|
- Let the resolver (/etc/gai.conf) decide whether to prefer IPv4
|
|
|
|
or IPv6 if a host has addresses of both kinds (bnc#310224).
|
|
|
|
- Passive FTP is the default now, so we don't need to set it
|
|
|
|
explicitly anymore.
|
2008-04-25 16:47:58 +02:00
|
|
|
* Wed Apr 23 2008 max@suse.de
|
|
|
|
- New version 1.11.1:
|
|
|
|
* Migration to the GPLv3+ license.
|
|
|
|
* Improvements to the HTTP password authentication code, bringing
|
|
|
|
it a little closer to RFC compliance (more is needed).
|
|
|
|
* Basic support for respecting filenames specified via
|
|
|
|
`Content-Disposition' headers (turned on with --content-disposition,
|
|
|
|
but please read the documentation).
|
|
|
|
* An --ignore-case option to make wildcard- and suffix-matching
|
|
|
|
case-sensitive.
|
|
|
|
* Progress bar now displays correctly in non-English locales (and a
|
|
|
|
related assertion failure was fixed).
|
|
|
|
* Added option --auth-no-challenge, to support broken pre-1.11
|
|
|
|
authentication-before-server-challenge, which turns out to still
|
|
|
|
be useful for some limited cases.
|
|
|
|
* Documentation of accept/reject lists in the manual's "Types of
|
|
|
|
Files" section now explains various aspects of their behavior that
|
|
|
|
may be surprising, and notes that they may change in the future.
|
|
|
|
* Documentation of --no-parents now explains how a trailing slash,
|
|
|
|
or lack thereof, in the specified URL, will affect behavior.
|
|
|
|
- Purged lots of obsolete patches and cleaned up the spec file.
|
2008-02-25 17:47:53 +01:00
|
|
|
* Sun Feb 24 2008 crrodriguez@suse.de
|
|
|
|
- make use of find_lang macro
|
|
|
|
* Wed Mar 28 2007 max@suse.de
|
2007-03-29 01:01:25 +02:00
|
|
|
- Fixes a null pointer dereference (#231063, CVE-2006-6719)
|
2008-02-25 17:47:53 +01:00
|
|
|
* Thu Jun 22 2006 max@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Removed the unneeded fix for CAN-2004-1487
|
|
|
|
(bugs #179369 and #185214).
|
|
|
|
- Filter escape responses from the HTTP server (CAN-2004-1488,
|
|
|
|
bug #185265).
|
2008-02-25 17:47:53 +01:00
|
|
|
* Wed Feb 01 2006 max@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Fixed (hacked) restart of interrupted FTP transactions (#144410).
|
2008-02-25 17:47:53 +01:00
|
|
|
* Wed Jan 25 2006 mls@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- converted neededforbuild to BuildRequires
|
2008-02-25 17:47:53 +01:00
|
|
|
* Mon Jan 16 2006 mmj@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Compile with -fstack-protector
|
2008-02-25 17:47:53 +01:00
|
|
|
* Fri Oct 14 2005 mmj@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Update to wget 1.10.2
|
2008-02-25 17:47:53 +01:00
|
|
|
* Mon Sep 19 2005 mmj@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Fix strict aliasing issues
|
2008-02-25 17:47:53 +01:00
|
|
|
* Tue Aug 30 2005 mmj@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Update to wget-1.10.1 which is a bugfix release [#113682]
|
2008-02-25 17:47:53 +01:00
|
|
|
* Mon Jun 13 2005 mmj@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Update to wget-1.10 which has LFS and non-experimental IPv6,
|
|
|
|
among many other improvements and bugfixes
|
2008-02-25 17:47:53 +01:00
|
|
|
* Tue Apr 26 2005 mmj@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Fix the way fnmatch matches [#75791]
|
2008-02-25 17:47:53 +01:00
|
|
|
* Fri Apr 08 2005 mmj@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Add sanitizing URLs patch
|
|
|
|
- Add other patches
|
2008-02-25 17:47:53 +01:00
|
|
|
* Thu Mar 31 2005 mmj@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Don't double UTF-8 encode german messages [#74544]
|
2008-02-25 17:47:53 +01:00
|
|
|
* Fri Feb 11 2005 mmj@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Roll back to wget-1.9.1 since the wget tree with LFS support is
|
|
|
|
too buggy. We rather want a functioning wget. [#47965]
|
2008-02-25 17:47:53 +01:00
|
|
|
* Mon Jan 31 2005 ro@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- texi2html changed behaviour, adapt filelist
|
2008-02-25 17:47:53 +01:00
|
|
|
* Thu Dec 02 2004 mmj@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Update to 20041113 wget-LFS snapshot
|
|
|
|
- Fix NULL pointer assertion [#48748]
|
2008-02-25 17:47:53 +01:00
|
|
|
* Mon Nov 15 2004 mmj@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Use another version of the fix below
|
2008-02-25 17:47:53 +01:00
|
|
|
* Sun Nov 14 2004 mmj@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Add fix for using proxies [#47965]
|
2008-04-25 16:47:58 +02:00
|
|
|
* Tue Oct 19 2004 mmj@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- locale no should correctly be nb so rename po/no* to po/nb*
|
2008-02-25 17:47:53 +01:00
|
|
|
* Mon Sep 27 2004 mmj@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Use LFS patch from Leonid Petrov [#37967] [#45084]
|
2008-02-25 17:47:53 +01:00
|
|
|
* Mon Jun 28 2004 mmj@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Fix what appears to be a copy/paste error in the dual-family
|
|
|
|
IPv4+IPv6 patch [#42503].
|
2008-02-25 17:47:53 +01:00
|
|
|
* Thu Apr 01 2004 mmj@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Enable download of files > 2 GB [#37967]
|
|
|
|
- Remove old crufty comments
|
2008-02-25 17:47:53 +01:00
|
|
|
* Fri Feb 20 2004 pth@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Correctly set the charset for de.po to utf-8. Fixes #34708.
|
2008-02-25 17:47:53 +01:00
|
|
|
* Sun Feb 01 2004 mmj@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Update to 1.9.1 which is a bugfix release
|
2008-02-25 17:47:53 +01:00
|
|
|
* Sat Jan 10 2004 adrian@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- build as user
|
2008-02-25 17:47:53 +01:00
|
|
|
* Tue Oct 28 2003 mmj@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Add patch for dual-family IPv4+IPv6 support from Ari Edelkind
|
2008-02-25 17:47:53 +01:00
|
|
|
* Mon Oct 27 2003 mmj@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Update to version 1.9 and remove patches, which was included
|
|
|
|
upstream. 1.9 news:
|
|
|
|
o specify what POST method be used for HTTP
|
|
|
|
o IPv6 support is available, although it's still experimental
|
|
|
|
o The `--timeout' option now also affects DNS lookup and
|
|
|
|
establishing the TCP connection
|
|
|
|
o Download speed shown by the progress bar is based on the data
|
|
|
|
recently read, rather than the average speed of the entire
|
|
|
|
download
|
|
|
|
o It is now possible to connect to FTP servers through FWTK
|
|
|
|
firewalls
|
|
|
|
o The new option `--retry-connrefused' makes Wget retry
|
|
|
|
downloads even in the face of refused connections
|
|
|
|
o The new option `--dns-cache=off' may be used to prevent Wget
|
|
|
|
from caching DNS lookups
|
|
|
|
o Wget no longer escapes characters in local file names based
|
|
|
|
on whether they're appropriate in URLs
|
|
|
|
o Handling of HTML comments has been dumbed down to conform to
|
|
|
|
what users expect and other browsers do: instead of being
|
|
|
|
treated as SGML declaration, a comment is terminated at the
|
|
|
|
first occurrence of "-->"
|
|
|
|
o Wget now correctly handles relative URIs that begin with "//"
|
|
|
|
o Boolean options in `.wgetrc' and on the command line now
|
|
|
|
accept values "yes" and "no" along with the traditional "on"
|
|
|
|
and "off"
|
|
|
|
o It is now possible to specify decimal values for timeouts,
|
|
|
|
waiting periods, and download rate.
|
2008-02-25 17:47:53 +01:00
|
|
|
* Tue Jul 15 2003 pthomas@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Add security fix to unconditionally terminate the filename
|
|
|
|
in url.c(compose_file_name).
|
2008-02-25 17:47:53 +01:00
|
|
|
* Thu Apr 24 2003 ro@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- fix install_info --delete call and move from preun to postun
|
2008-02-25 17:47:53 +01:00
|
|
|
* Tue Apr 01 2003 schwab@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Define _GNU_SOURCE to fix missing declarations.
|
2008-02-25 17:47:53 +01:00
|
|
|
* Fri Mar 07 2003 ro@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- fix build with current autoconf
|
2008-02-25 17:47:53 +01:00
|
|
|
* Thu Mar 06 2003 pthomas@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Add missing change log entry.
|
2008-02-25 17:47:53 +01:00
|
|
|
* Wed Mar 05 2003 pthomas@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Add security fix that makes wget check for '..' and '/' in
|
|
|
|
file names.
|
2008-02-25 17:47:53 +01:00
|
|
|
* Wed Feb 12 2003 kukuk@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Remove ps and pdf documenation, info, man and html are enough.
|
|
|
|
[Bug #23592]
|
2008-02-25 17:47:53 +01:00
|
|
|
* Tue Feb 11 2003 mmj@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Use %%install_info macro [#23468]
|
|
|
|
- Don't remove $RPM_BUILD_ROOT without checking it's not "/"
|
2008-02-25 17:47:53 +01:00
|
|
|
* Thu Oct 24 2002 pthomas@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Change wgetrc to make wget use passive_ftp per default.
|
2008-02-25 17:47:53 +01:00
|
|
|
* Wed Aug 07 2002 mmj@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Update to 1.8.2 which is a bugfix release.
|
2008-02-25 17:47:53 +01:00
|
|
|
* Wed Jul 10 2002 okir@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- added patch for IPv6 support
|
2008-02-25 17:47:53 +01:00
|
|
|
* Tue May 14 2002 meissner@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- replaced assert msecs>=0 by if (msecs<0) msecs=0. (stupid assert)
|
2008-02-25 17:47:53 +01:00
|
|
|
* Fri Feb 01 2002 ro@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- changed neededforbuild <libpng> to <libpng-devel-packages>
|
2008-04-25 16:47:58 +02:00
|
|
|
* Tue Jan 15 2002 bk@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- marked wgetrc as noreplace, format is compatible to older versions
|
2008-02-25 17:47:53 +01:00
|
|
|
* Mon Jan 07 2002 pthomas@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Upgrade to 1.8.1
|
2008-02-25 17:47:53 +01:00
|
|
|
* Thu Dec 13 2001 pthomas@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Upgrade to 1.8
|
|
|
|
- Regenerate pdf_doc.diff
|
|
|
|
- Drop ppc specific patch as it's not needed anymore.
|
|
|
|
- Install all HTML pages and not only the table of contents.
|
|
|
|
- Pass DESTDIR on from the toplevel Makefile.
|
2008-02-25 17:47:53 +01:00
|
|
|
* Mon Aug 20 2001 olh@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- add wget-1.7.ppc.diff to fix segfault on ppc
|
2008-02-25 17:47:53 +01:00
|
|
|
* Fri Jun 08 2001 pthomas@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Upgrade to 1.7.
|
|
|
|
- Add a target to doc/Makefile to build a PDF version of the
|
|
|
|
documentation.
|
|
|
|
- Compile with SSL support (for HTTPS).
|
2008-02-25 17:47:53 +01:00
|
|
|
* Fri May 25 2001 bjacke@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- apply and enable IPv6 patch
|
|
|
|
- add Debian's manpage
|
2008-02-25 17:47:53 +01:00
|
|
|
* Thu May 10 2001 mfabian@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- bzip2 sources
|
2008-02-25 17:47:53 +01:00
|
|
|
* Fri Mar 30 2001 pthomas@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Apply my patch accepted for wget 1.7 that replaces ctype.h
|
|
|
|
with safe-ctype.h, a locale independent version of ctype.h
|
|
|
|
taken from libiberty. This makes setting LC_CTYPE safe.
|
2008-02-25 17:47:53 +01:00
|
|
|
* Thu Mar 08 2001 ke@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Build and install a printable manual (PDF).
|
2008-04-25 16:47:58 +02:00
|
|
|
* Fri Mar 02 2001 pthomas@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Set LC_CTYPE along with LC_MESSAGES to correctly display
|
|
|
|
messages in locales other then C/POSIX.
|
2008-02-25 17:47:53 +01:00
|
|
|
* Wed Feb 14 2001 schwab@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Fix large file support (#2647).
|
2008-02-25 17:47:53 +01:00
|
|
|
* Mon Jan 22 2001 ke@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Update to version 1.6.
|
|
|
|
- wget.spec: Use proper rpm macros.
|
|
|
|
- Add README.SuSE
|
|
|
|
- Drop security patch (cf. 1999-02-09 and README.SuSE); not needed any
|
|
|
|
longer.
|
|
|
|
- Lost large file support (cf. README.SuSE); reopen #2647.
|
2008-02-25 17:47:53 +01:00
|
|
|
* Fri Jun 09 2000 schwab@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Change all values that count bytes from long to unsigned long (#2647).
|
2008-02-25 17:47:53 +01:00
|
|
|
* Sun Feb 20 2000 ke@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- General spec file cleanup:
|
|
|
|
- add group tag.
|
|
|
|
- use various macros (%%{version}, %%{_infodir}).
|
|
|
|
- ./configure -> %%build.
|
2008-02-25 17:47:53 +01:00
|
|
|
* Sat Oct 02 1999 ke@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Add more PO files from
|
|
|
|
http://www.iro.umontreal.ca/~pinard/po/HTML/domain-wget.html.
|
2008-02-25 17:47:53 +01:00
|
|
|
* Mon Sep 13 1999 bs@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- ran old prepare_spec on spec file to switch to new prepare_spec.
|
2008-02-25 17:47:53 +01:00
|
|
|
* Tue Feb 09 1999 ke@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Security fix (proposed by marc).
|
2008-02-25 17:47:53 +01:00
|
|
|
* Sun Jan 17 1999 ke@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- apply patch (new de.po).
|
|
|
|
- fix BuildRoot.
|
2008-02-25 17:47:53 +01:00
|
|
|
* Thu Sep 24 1998 ke@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Update: wget-1.5.3 (bug fix release).
|
2008-04-25 16:47:58 +02:00
|
|
|
* Sat Jun 27 1998 ke@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- Update: wget-1.5.2 (bug fix release).
|
|
|
|
- Make BuildRoot work.
|
2008-02-25 17:47:53 +01:00
|
|
|
* Tue May 12 1998 ke@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- update: wget-1.5.1 (bug fix release).
|
2008-02-25 17:47:53 +01:00
|
|
|
* Fri Apr 24 1998 ke@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- enable NLS.
|
2008-02-25 17:47:53 +01:00
|
|
|
* Thu Apr 23 1998 ke@suse.de
|
2007-01-16 00:41:13 +01:00
|
|
|
- update: wget-1.5.0.
|
2008-02-25 17:47:53 +01:00
|
|
|
* Sat Jun 21 1997 Karl Eichwalder <ke@suse.de>
|
2007-01-16 00:41:13 +01:00
|
|
|
* patch from Hrvoje Niksic to prevent crashes if you are using
|
|
|
|
proxy authorization.
|
2008-02-25 17:47:53 +01:00
|
|
|
* Mon May 19 1997 Karl Eichwalder <ke@suse.de>
|
2007-01-16 00:41:13 +01:00
|
|
|
* new package: wget-1.4.5
|