From ef0ceb9e6122b26d46315a05a66cc10f2c41c5f6 Mon Sep 17 00:00:00 2001 From: cvsdist Date: Thu, 9 Sep 2004 14:16:18 +0000 Subject: [PATCH] auto-import changelog data from wget-1.5.3-10.src.rpm Tue Aug 01 2000 Bill Nottingham - setlocale for LC_CTYPE too, or else all the translations think their characters are unprintable. Thu Jul 13 2000 Prospector - automatic rebuild Sun Jun 11 2000 Bill Nottingham - build in new environment Mon Jun 05 2000 Bernhard Rosenkraenzer - FHS compliance Thu Feb 03 2000 Bill Nottingham - handle compressed man pages Thu Aug 26 1999 Jeff Johnson - don't permit chmod 777 on symlinks (#4725). Sun Mar 21 1999 Cristian Gafton - auto rebuild in the new build environment (release 4) Fri Dec 18 1998 Bill Nottingham - build for 6.0 tree - add Provides Sat Oct 10 1998 Cristian Gafton - strip binaries - version 1.5.3 Sat Jun 27 1998 Jeff Johnson - updated to 1.5.2 Thu Apr 30 1998 Cristian Gafton - modified group to Applications/Networking Wed Apr 22 1998 Cristian Gafton - 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 - first build against glibc --- .cvsignore | 1 + sources | 1 + wget.spec | 105 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 107 insertions(+) create mode 100644 wget.spec diff --git a/.cvsignore b/.cvsignore index e69de29..cc68553 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +wget-1.5.3.tar.gz diff --git a/sources b/sources index e69de29..61a31b7 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +47680b25bf893afdb0c43b24e3fc2fd6 wget-1.5.3.tar.gz diff --git a/wget.spec b/wget.spec new file mode 100644 index 0000000..acf57e7 --- /dev/null +++ b/wget.spec @@ -0,0 +1,105 @@ +Summary: A utility for retrieving files using the HTTP or FTP protocols. +Name: wget +Version: 1.5.3 +Release: 10 +Copyright: GPL +Group: Applications/Internet +Source: ftp://ftp.gnu.org/gnu/wget/wget-%{version}.tar.gz +Patch0: wget-1.5.0-man.patch +Patch1: wget-1.5.3-symlink.patch +Patch2: wget-locale.patch +Provides: webclient +Prereq: /sbin/install-info +BuildRoot: /var/tmp/%{name}-root + +%description +GNU Wget is a file retrieval utility which can use either the HTTP or +FTP protocols. Wget features include the ability to work in the +background while you're logged out, recursive retrieval of +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. + +Install wget if you need to retrieve large numbers of files with HTTP or +FTP, or if you need a utility for mirroring web sites or FTP directories. + +%prep +%setup -q +%patch0 -p1 -b .man +%patch1 -p1 -b .symlink +%patch2 -p1 -b .locale + +%build +%configure --sysconfdir=/etc +make + +%install +rm -rf $RPM_BUILD_ROOT +%makeinstall +gzip $RPM_BUILD_ROOT%{_infodir}/* + +%post +/sbin/install-info %{_infodir}/wget.info.gz %{_infodir}/dir + +%preun +if [ "$1" = 0 ]; then + /sbin/install-info --delete %{_infodir}/wget.info.gz %{_infodir}/dir +fi + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +%defattr(-,root,root) +%doc AUTHORS MAILING-LIST NEWS README INSTALL doc/ChangeLog +%config /etc/wgetrc +%{_mandir}/man1/wget.* +%{_bindir}/wget +%{_infodir}/* +/usr/share/locale/*/LC_MESSAGES/* + +%changelog +* Tue Aug 1 2000 Bill Nottingham +- setlocale for LC_CTYPE too, or else all the translations think their + characters are unprintable. + +* Thu Jul 13 2000 Prospector +- automatic rebuild + +* Sun Jun 11 2000 Bill Nottingham +- build in new environment + +* Mon Jun 5 2000 Bernhard Rosenkraenzer +- FHS compliance + +* Thu Feb 3 2000 Bill Nottingham +- handle compressed man pages + +* Thu Aug 26 1999 Jeff Johnson +- don't permit chmod 777 on symlinks (#4725). + +* Sun Mar 21 1999 Cristian Gafton +- auto rebuild in the new build environment (release 4) + +* Fri Dec 18 1998 Bill Nottingham +- build for 6.0 tree +- add Provides + +* Sat Oct 10 1998 Cristian Gafton +- strip binaries +- version 1.5.3 + +* Sat Jun 27 1998 Jeff Johnson +- updated to 1.5.2 + +* Thu Apr 30 1998 Cristian Gafton +- modified group to Applications/Networking + +* Wed Apr 22 1998 Cristian Gafton +- 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 +- first build against glibc