From f8334f3622d11efa5536b9dd9a7553a596e54a2a Mon Sep 17 00:00:00 2001 From: cvsdist Date: Thu, 9 Sep 2004 04:42:42 +0000 Subject: [PATCH] auto-import changelog data from findutils-4.1.5-4.src.rpm Wed Jul 12 2000 Prospector - automatic rebuild Wed Jun 28 2000 Preston Brown - revert to 4.1.5 ( :) ) on the advice of HJ Lu - patch to fix finding w/ -perm flag Tue Jun 27 2000 Preston Brown - revert to 4.1.4 - reapply numblks patch - generate new nolocate patch, we don't ship it. Mon Jun 12 2000 Preston Brown - 4.1.5, FHS paths - remove mktemp,getshort patches (don't ship locate) - alpha, numblks patch no longer needed Mon Apr 03 2000 Bernhard Rosenkraenzer - 4.1.4 - remove some obsolete patches, adapt others - fix build on alpha Wed Feb 02 2000 Cristian Gafton - fix summary - ma pages are compressed Wed Jan 12 2000 Preston Brown - new description. Fri Aug 27 1999 Preston Brown - fixed block count bug (# 2141) Mon Mar 29 1999 Preston Brown - patch to fix xargs out of bounds overflow (bug # 1279) Sun Mar 21 1999 Cristian Gafton - auto rebuild in the new build environment (release 30) Fri Mar 19 1999 Jeff Johnson - strip binaries. Mon Feb 08 1999 Jeff Johnson - remove further updatedb remnants (#1072). Thu Dec 03 1998 Cristian Gafton - added patch for glibc21 Mon Nov 16 1998 Erik Troan - removed locate stuff (as we now ship slocate) Wed Jun 10 1998 Erik Troan - updated updatedb cron script to not look for $TMPNAME.n (which was a relic anyway) - added -b parameters to all of the patches Fri Apr 24 1998 Prospector System - translations modified for de, fr, tr Mon Mar 09 1998 Michael K. Johnson - make updatedb.cron use mktemp correctly - make updatedb use mktemp Sun Nov 09 1997 Michael K. Johnson - nobody should own tmpfile - ignore /net Wed Nov 05 1997 Michael K. Johnson - made updatedb.cron do a better job of cleaning up after itself. Tue Oct 28 1997 Donald Barnes - fixed 64 bit-ism in getline.c, patch tacked on to end of glibc one Thu Oct 23 1997 Erik Troan - added patch for glibc 2.1 Fri Oct 17 1997 Donnie Barnes - added BuildRoot support Tue Oct 14 1997 Michael K. Johnson - made updatedb.cron work even if "nobody" can't read /root - use mktemp in updatedb.cron Sun Sep 14 1997 Erik Troan - added missing info pages - uses install-info Mon Jun 02 1997 Erik Troan - built with glibc Mon Apr 21 1997 Michael K. Johnson - fixed updatedb.cron --- .cvsignore | 1 + findutils.spec | 155 +++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 157 insertions(+) create mode 100644 findutils.spec diff --git a/.cvsignore b/.cvsignore index e69de29..49455e5 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +findutils-4.1.5.tar.gz diff --git a/findutils.spec b/findutils.spec new file mode 100644 index 0000000..53170e9 --- /dev/null +++ b/findutils.spec @@ -0,0 +1,155 @@ +Summary: The GNU versions of find utilities (find and xargs). +Name: findutils +Version: 4.1.5 +Release: 4 +Epoch: 1 +Copyright: GPL +Group: Applications/File +Source0: ftp://alpha.gnu.org/gnu/%{name}-%{version}.tar.gz +Patch0: findutils-4.1.5-fixfind.patch +Prereq: /sbin/install-info +Buildroot: %{_tmppath}/%{name}-%{version}-root + + +%description +The findutils package contains programs which will help you locate +files on your system. The find utility searches through a hierarchy +of directories looking for files which match a certain set of criteria +(such as a filename pattern). The xargs utility builds and executes +command lines from standard input arguments (usually lists of file +names generated by the find command). + +You should install findutils because it includes tools that are very +useful for finding things on your system. + +%prep +%setup -q +%patch0 -p1 -b .fixfind + +%build +%define optflags $RPM_OPT_FLAGS -D_GNU_SOURCE +%configure +%undefine optflags + +make + +%install +rm -rf %{buildroot} +%makeinstall + +{ cd %{buildroot} + gzip -9fn .%{_infodir}/find.info* +} + +%post +/sbin/install-info %{_infodir}/find.info.gz %{_infodir}/dir + +%preun +if [ $1 = 0 ]; then + /sbin/install-info --delete %{_infodir}/find.info.gz %{_infodir}/dir +fi + +%clean +rm -rf %{buildroot} + +%files +%defattr(-,root,root) +%doc NEWS README +%{_bindir}/find +%{_bindir}/xargs +%{_mandir}/man1/find.1* +%{_mandir}/man1/xargs.1* +%{_infodir}/find.info* + +%changelog +* Wed Jul 12 2000 Prospector +- automatic rebuild + +* Wed Jun 28 2000 Preston Brown +- revert to 4.1.5 ( :) ) on the advice of HJ Lu +- patch to fix finding w/ -perm flag + +* Tue Jun 27 2000 Preston Brown +- revert to 4.1.4 +- reapply numblks patch +- generate new nolocate patch, we don't ship it. + +* Mon Jun 12 2000 Preston Brown +- 4.1.5, FHS paths +- remove mktemp,getshort patches (don't ship locate) +- alpha, numblks patch no longer needed + +* Mon Apr 3 2000 Bernhard Rosenkraenzer +- 4.1.4 +- remove some obsolete patches, adapt others +- fix build on alpha + +* Wed Feb 02 2000 Cristian Gafton +- fix summary +- ma pages are compressed + +* Wed Jan 12 2000 Preston Brown +- new description. + +* Fri Aug 27 1999 Preston Brown +- fixed block count bug (# 2141) + +* Mon Mar 29 1999 Preston Brown +- patch to fix xargs out of bounds overflow (bug # 1279) + +* Sun Mar 21 1999 Cristian Gafton +- auto rebuild in the new build environment (release 30) + +* Fri Mar 19 1999 Jeff Johnson +- strip binaries. + +* Mon Feb 8 1999 Jeff Johnson +- remove further updatedb remnants (#1072). + +* Thu Dec 03 1998 Cristian Gafton +- added patch for glibc21 + +* Mon Nov 16 1998 Erik Troan +- removed locate stuff (as we now ship slocate) + +* Wed Jun 10 1998 Erik Troan +- updated updatedb cron script to not look for $TMPNAME.n (which was + a relic anyway) +- added -b parameters to all of the patches + +* Fri Apr 24 1998 Prospector System +- translations modified for de, fr, tr + +* Mon Mar 09 1998 Michael K. Johnson +- make updatedb.cron use mktemp correctly +- make updatedb use mktemp + +* Sun Nov 09 1997 Michael K. Johnson +- nobody should own tmpfile +- ignore /net + +* Wed Nov 05 1997 Michael K. Johnson +- made updatedb.cron do a better job of cleaning up after itself. + +* Tue Oct 28 1997 Donald Barnes +- fixed 64 bit-ism in getline.c, patch tacked on to end of glibc one + +* Thu Oct 23 1997 Erik Troan +- added patch for glibc 2.1 + +* Fri Oct 17 1997 Donnie Barnes +- added BuildRoot support + +* Tue Oct 14 1997 Michael K. Johnson +- made updatedb.cron work even if "nobody" can't read /root +- use mktemp in updatedb.cron + +* Sun Sep 14 1997 Erik Troan +- added missing info pages +- uses install-info + +* Mon Jun 02 1997 Erik Troan +- built with glibc + +* Mon Apr 21 1997 Michael K. Johnson +- fixed updatedb.cron diff --git a/sources b/sources index e69de29..48c8bb3 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +16c600261f673073e93c94cb1f3bf491 findutils-4.1.5.tar.gz