497cbe
Summary: The GNU versions of find utilities (find and xargs)
497cbe
Name: findutils
497cbe
Version: 4.5.11
497cbe
Release: 6%{?dist}
497cbe
Epoch: 1
497cbe
License: GPLv3+
497cbe
Group: Applications/File
497cbe
URL: http://www.gnu.org/software/findutils/
497cbe
Source0: ftp://alpha.gnu.org/gnu/findutils/%{name}-%{version}.tar.gz
497cbe
497cbe
# do not build locate
497cbe
Patch1: findutils-4.4.0-no-locate.patch
497cbe
497cbe
# learn find to recognize autofs file system by reading /proc/mounts
497cbe
# as autofs mount points are not listed in /etc/mtab
497cbe
Patch2: findutils-4.4.2-autofs.patch
497cbe
497cbe
# add a new option -xautofs to find to not descend into directories on autofs
497cbe
# file systems
497cbe
Patch3: findutils-4.4.2-xautofs.patch
497cbe
497cbe
# eliminate compile-time warnings
497cbe
Patch4: findutils-4.5.7-warnings.patch
497cbe
497cbe
# eliminate failure of gnulib tests on little-endian PowerPC (#1083145)
497cbe
Patch5: findutils-4.5.11-ppc-gnulib-tests.patch
497cbe
497cbe
# print a warning if find -perm +omode is used (#1116237)
497cbe
Patch6: findutils-4.5.11-bz1116237.patch
497cbe
497cbe
# fix file descriptor leak with --execdir option (#1309633)
497cbe
Patch7: findutils-4.5.11-fd-leak.patch
497cbe
497cbe
Requires(post): /sbin/install-info
497cbe
Requires(preun): /sbin/install-info
497cbe
Conflicts: filesystem < 3
497cbe
Provides: /bin/find
497cbe
Provides: bundled(gnulib)
497cbe
497cbe
Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
497cbe
BuildRequires: automake
497cbe
BuildRequires: dejagnu
497cbe
BuildRequires: gettext-devel
497cbe
BuildRequires: libselinux-devel
497cbe
BuildRequires: texinfo
497cbe
497cbe
%description
497cbe
The findutils package contains programs which will help you locate
497cbe
files on your system.  The find utility searches through a hierarchy
497cbe
of directories looking for files which match a certain set of criteria
497cbe
(such as a file name pattern).  The xargs utility builds and executes
497cbe
command lines from standard input arguments (usually lists of file
497cbe
names generated by the find command).
497cbe
497cbe
You should install findutils because it includes tools that are very
497cbe
useful for finding things on your system.
497cbe
497cbe
%prep
497cbe
%setup -q
497cbe
rm -rf locate
497cbe
%patch1 -p1
497cbe
%patch2 -p1
497cbe
%patch3 -p1
497cbe
%patch4 -p1
497cbe
%patch5 -p1
497cbe
%patch6 -p1
497cbe
497cbe
%patch7 -p1
497cbe
chmod 0755 "find/testsuite/sv-34976-execdir-fd-leak.sh"
497cbe
497cbe
# needed because of findutils-4.4.0-no-locate.patch
497cbe
autoreconf -iv
497cbe
497cbe
%build
497cbe
%configure
497cbe
497cbe
# uncomment to turn off optimizations
497cbe
#find -name Makefile | xargs sed -i 's/-O2/-O0/'
497cbe
497cbe
make %{?_smp_mflags}
497cbe
497cbe
%check
497cbe
make check
497cbe
497cbe
%install
497cbe
make install DESTDIR=$RPM_BUILD_ROOT
497cbe
497cbe
rm -f $RPM_BUILD_ROOT%{_infodir}/dir
497cbe
497cbe
%find_lang %{name}
497cbe
497cbe
%post
497cbe
if [ -f %{_infodir}/find.info.gz ]; then
497cbe
  /sbin/install-info %{_infodir}/find.info.gz %{_infodir}/dir || :
497cbe
fi
497cbe
497cbe
%preun
497cbe
if [ $1 = 0 ]; then
497cbe
  if [ -f %{_infodir}/find.info.gz ]; then
497cbe
    /sbin/install-info --delete %{_infodir}/find.info.gz %{_infodir}/dir || :
497cbe
  fi
497cbe
fi
497cbe
497cbe
%files -f %{name}.lang
497cbe
%doc AUTHORS COPYING NEWS README THANKS TODO ChangeLog
497cbe
%{_bindir}/find
497cbe
%{_bindir}/oldfind
497cbe
%{_bindir}/xargs
497cbe
%{_mandir}/man1/find.1*
497cbe
%{_mandir}/man1/oldfind.1*
497cbe
%{_mandir}/man1/xargs.1*
497cbe
%{_infodir}/find.info*
497cbe
%{_infodir}/find-maint.info.gz
497cbe
497cbe
%changelog
497cbe
* Thu Feb 18 2016 Kamil Dudka <kdudka@redhat.com> - 1:4.5.11-6
497cbe
- fix file descriptor leak with --execdir option (#1309633)
497cbe
497cbe
* Mon Jun 01 2015 Kamil Dudka <kdudka@redhat.com> - 1:4.5.11-5
497cbe
- print a warning if find -perm +omode is used (#1116237)
497cbe
497cbe
* Fri Aug 01 2014 Kamil Dudka <kdudka@redhat.com> - 1:4.5.11-4
497cbe
- eliminate failure of gnulib tests on little-endian PowerPC (#1125504)
497cbe
497cbe
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1:4.5.11-3
497cbe
- Mass rebuild 2014-01-24
497cbe
497cbe
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1:4.5.11-2
497cbe
- Mass rebuild 2013-12-27
497cbe
497cbe
* Sun Feb 03 2013 Kamil Dudka <kdudka@redhat.com> - 1:4.5.11-1
497cbe
- new upstream release
497cbe
497cbe
* Tue Aug 28 2012 Kamil Dudka <kdudka@redhat.com> - 1:4.5.10-7
497cbe
- fix specfile issues reported by the fedora-review script
497cbe
- do not use the AM_C_PROTOTYPES macro (removed in Automake 1.12)
497cbe
- do not require gets() to be declared
497cbe
497cbe
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:4.5.10-6
497cbe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
497cbe
497cbe
* Wed May 16 2012 Kamil Dudka <kdudka@redhat.com> - 1:4.5.10-5
497cbe
- add virtual provides for bundled(gnulib) copylib (#821753)
497cbe
497cbe
* Wed Jan 25 2012 Harald Hoyer <harald@redhat.com> 1:4.5.10-4
497cbe
- add filesystem guard
497cbe
497cbe
* Wed Jan 25 2012 Harald Hoyer <harald@redhat.com> 1:4.5.10-3
497cbe
- install everything in /usr
497cbe
  https://fedoraproject.org/wiki/Features/UsrMove
497cbe
497cbe
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:4.5.10-2
497cbe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
497cbe
497cbe
* Wed May 11 2011 Kamil Dudka <kdudka@redhat.com> - 1:4.5.10-1
497cbe
- new upstream release
497cbe
497cbe
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:4.5.9-3
497cbe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
497cbe
497cbe
* Mon May 24 2010 Kamil Dudka <kdudka@redhat.com> - 1:4.5.9-2
497cbe
- fix some bugs in handling of -execdir (Savannah bug #29949)
497cbe
497cbe
* Wed May 05 2010 Kamil Dudka <kdudka@redhat.com> - 1:4.5.9-1
497cbe
- new upstream release, dropped applied patches
497cbe
497cbe
* Tue Apr 06 2010 Kamil Dudka <kdudka@redhat.com> - 1:4.5.7-4
497cbe
- avoid assertion failure due to access permissions (#579476)
497cbe
497cbe
* Sun Apr 04 2010 Kamil Dudka <kdudka@redhat.com> - 1:4.5.7-3
497cbe
- upstream bugfix http://savannah.gnu.org/bugs/?29435
497cbe
497cbe
* Sat Apr 03 2010 Kamil Dudka <kdudka@redhat.com> - 1:4.5.7-2
497cbe
- avoid assertion failure on non-recognized O_CLOEXEC
497cbe
497cbe
* Sat Apr 03 2010 Kamil Dudka <kdudka@redhat.com> - 1:4.5.7-1
497cbe
- new upstream release, dropped applied patches
497cbe
- eliminated compile-time warnings
497cbe
497cbe
* Thu Nov 26 2009 Kamil Dudka <kdudka@redhat.com> - 1:4.4.2-6
497cbe
- update SELinux patch to the latest upstream (gnulib based) version
497cbe
497cbe
* Wed Nov 18 2009 Kamil Dudka <kdudka@redhat.com> - 1:4.4.2-5
497cbe
- do not fail silently on a remount during traverse (#538536)
497cbe
497cbe
* Tue Oct 20 2009 Kamil Dudka <kdudka@redhat.com> - 1:4.4.2-4
497cbe
- make it possible to recognize an autofs filesystem by find
497cbe
- add a new find's option -xautofs to not descend directories on autofs
497cbe
  filesystems
497cbe
497cbe
* Mon Sep 14 2009 Kamil Dudka <kdudka@redhat.com> - 1:4.4.2-3
497cbe
- do process install-info only without --excludedocs(#515914)
497cbe
497cbe
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:4.4.2-2
497cbe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
497cbe
497cbe
* Wed Jul  1 2009 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.4.2-1
497cbe
- Update to findutils-4.4.2
497cbe
497cbe
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:4.4.0-2
497cbe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
497cbe
497cbe
* Wed Apr 30 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.4.0-1
497cbe
- Update to findutils-4.4.0
497cbe
  Resolves: #437733
497cbe
497cbe
* Mon Apr 14 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.2.33-3
497cbe
- Move find to /bin
497cbe
  Resolves: #438183
497cbe
497cbe
* Fri Mar 28 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.2.33-2
497cbe
- Fix xargs ARG_MAX assert
497cbe
  Resolves: #439168
497cbe
497cbe
* Fri Feb 15 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.2.33-1
497cbe
- Update to findutils-4.2.33
497cbe
- Fix License
497cbe
497cbe
* Wed Feb 13 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.2.32-1
497cbe
- Update to findutils-4.2.32
497cbe
497cbe
* Mon Feb 11 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.2.31-4
497cbe
- Rebuild
497cbe
497cbe
* Fri Jan 18 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.2.31-3
497cbe
- Rebuild
497cbe
497cbe
* Thu Aug 23 2007 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.2.31-2
497cbe
- fix license
497cbe
- rebuild
497cbe
497cbe
* Tue Jun 12 2007 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.2.31-1
497cbe
- Update to findutils-4.2.31
497cbe
  Resolves: #243732
497cbe
497cbe
* Fri Jan  5 2007 Miloslav Trmac <mitr@redhat.com> - 1:4.2.29-2
497cbe
- Ignore install-info errors in scriptlets
497cbe
497cbe
* Sun Nov 26 2006 Miloslav Trmac <mitr@redhat.com> - 1:4.2.29-1
497cbe
- Update to findutils-4.2.29
497cbe
- Fix some rpmlint warnings
497cbe
497cbe
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1:4.2.27-4.1
497cbe
- rebuild
497cbe
497cbe
* Sun Feb 19 2006 Miloslav Trmac <mitr@redhat.com> - 1:4.2.27-4
497cbe
- Report the correct directory when hard link count is inconsistent (#182001)
497cbe
497cbe
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1:4.2.27-3.2
497cbe
- bump again for double-long bug on ppc(64)
497cbe
497cbe
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1:4.2.27-3.1
497cbe
- rebuilt for new gcc4.1 snapshot and glibc changes
497cbe
497cbe
* Mon Jan 30 2006 Miloslav Trmac <mitr@redhat.com> - 1:4.2.27-3
497cbe
- Updated SELinux patch, --context is no longer valid (use -context)
497cbe
497cbe
* Thu Jan 12 2006 Miloslav Trmac <mitr@redhat.com> - 1:4.2.27-2
497cbe
- Don't use uninitialized memory in -printf %%Z (#174485)
497cbe
- Ship more documentation files
497cbe
- Clean up the spec file a bit
497cbe
497cbe
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
497cbe
- rebuilt
497cbe
497cbe
* Wed Dec  7 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.27-1
497cbe
- 4.2.27.
497cbe
- No longer need arg_max patch.
497cbe
497cbe
* Mon Nov 21 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.26-1
497cbe
- One further arg_max fix for PPC.
497cbe
- Applied arg_max patch from upstream to fix test suite failures.
497cbe
- 4.2.26 (fixes bug #173817).
497cbe
497cbe
* Tue Oct 11 2005 Dan Walsh <dwalsh@redhat.com> 1:4.2.25-3
497cbe
- Fix selinux patch
497cbe
497cbe
* Mon Sep  5 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.25-2
497cbe
- 4.2.25.
497cbe
497cbe
* Mon Jun 20 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.23-1
497cbe
- 4.2.23.
497cbe
497cbe
* Thu Mar 17 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.20-1
497cbe
- 4.2.20.
497cbe
497cbe
* Mon Mar 14 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.18-3
497cbe
- Applied patch from Robert Scheck to fix compilation with GCC 4 (bug #151031).
497cbe
497cbe
* Wed Mar  2 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.18-2
497cbe
- Rebuild for new GCC.
497cbe
497cbe
* Mon Feb 21 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.18-1
497cbe
- 4.2.18.
497cbe
497cbe
* Mon Feb 14 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.15-2
497cbe
- Added nofollow patch from upstream.
497cbe
497cbe
* Mon Jan 31 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.15-1
497cbe
- 4.2.15.  Lots of patches removed due to upstream merge.
497cbe
497cbe
* Tue Jan 4 2005 Dan Walsh <dwalsh@redhat.com> 1:4.1.20-8
497cbe
- Change --context to use fnmatch instead of strcmp
497cbe
497cbe
* Tue Dec  7 2004 Tim Waugh <twaugh@redhat.com>
497cbe
- Removed "G" and "M" size qualifiers from man page, since support for
497cbe
  those is not in the stable branch (bug #141987).
497cbe
497cbe
* Tue Oct 19 2004 Tim Waugh <twaugh@redhat.com> 1:4.1.20-7
497cbe
- Better xargs ARG_SIZE handling (bug #135129).
497cbe
497cbe
* Fri Oct 15 2004 Tim Waugh <twaugh@redhat.com>
497cbe
- Fixed d_type patch for underquoted m4 macro.
497cbe
497cbe
* Fri Oct  8 2004 Tim Waugh <twaugh@redhat.com>
497cbe
- Use upstream patch for find -size man page fix.
497cbe
497cbe
* Wed Oct  6 2004 Tim Waugh <twaugh@redhat.com> 1:4.1.20-6
497cbe
- Fixed bug #126352.
497cbe
497cbe
* Tue Oct  5 2004 Tim Waugh <twaugh@redhat.com> 1:4.1.20-5
497cbe
- Build requires gettext-devel, texinfo (bug #134692).
497cbe
497cbe
* Thu Sep 30 2004 Tim Waugh <twaugh@redhat.com> 1:4.1.20-4
497cbe
- Set re->translate before re_compile_pattern (bug #134190).
497cbe
497cbe
* Sun Aug  1 2004 Alan Cox <alan@redhat.com> 1:4.1.20-3
497cbe
- Fix build with current auto* tools (Steve Grubb)
497cbe
497cbe
* Tue Jul  6 2004 Tim Waugh <twaugh@redhat.com> 1:4.1.20-2
497cbe
- Fix -iregex (bug #127297).
497cbe
497cbe
* Fri Jun 25 2004 Tim Waugh <twaugh@redhat.com> 1:4.1.20-1
497cbe
- Clarify find man page (bug #126098).
497cbe
- Apply changes by Robert Scheck <redhat@linuxnetz.de> (bug #126352):
497cbe
  - Upgrade to 4.1.20 and some specfile cleanup
497cbe
497cbe
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
497cbe
- rebuilt
497cbe
497cbe
* Thu May 20 2004 Tim Waugh <twaugh@redhat.com> 4.1.7-26
497cbe
- Fixed build requirements (bug #123746).
497cbe
497cbe
* Sun Mar 14 2004 Tim Waugh <twaugh@redhat.com> 4.1.7-25
497cbe
- Apply Jakub Jelinek's patch for xargs -E/-I/-L options.
497cbe
497cbe
* Thu Mar 11 2004 Tim Waugh <twaugh@redhat.com> 4.1.7-24
497cbe
- Apply selinux patch last so that it can be turned off (bug #118025).
497cbe
497cbe
* Tue Mar  9 2004 Tim Waugh <twaugh@redhat.com>
497cbe
- Jakub Jelinek's d_type patch improvement.
497cbe
497cbe
* Sun Mar  7 2004 Tim Waugh <twaugh@redhat.com> 4.1.7-23
497cbe
- Run 'make check'.
497cbe
- Apply Ulrich Drepper's improvement on the d_type patch.
497cbe
497cbe
* Fri Mar  5 2004 Tim Waugh <twaugh@redhat.com> 4.1.7-22
497cbe
- Apply Jakub Jelinek's d_type patch for improved efficiency with
497cbe
  many common expressions.
497cbe
497cbe
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
497cbe
- rebuilt
497cbe
497cbe
* Tue Jan 27 2004 Dan Walsh <dwalsh@redhat.com> 4.1.7-20
497cbe
- fix call to is_selinux_enabled
497cbe
497cbe
* Thu Oct 30 2003 Dan Walsh <dwalsh@redhat.com> 4.1.7-19
497cbe
- Turn off SELinux
497cbe
497cbe
* Thu Oct 30 2003 Dan Walsh <dwalsh@redhat.com> 4.1.7-18.sel
497cbe
- Turn on selinux
497cbe
497cbe
* Sat Oct 25 2003 Tim Waugh <twaugh@redhat.com> 4.1.7-17
497cbe
- Rebuilt.
497cbe
497cbe
* Fri Oct 10 2003 Dan Walsh <dwalsh@redhat.com> 4.1.7-16
497cbe
- Turn off selinux
497cbe
497cbe
* Fri Oct 10 2003 Dan Walsh <dwalsh@redhat.com> 4.1.7-15.sel
497cbe
- Turn on selinux
497cbe
497cbe
* Fri Sep 5 2003 Dan Walsh <dwalsh@redhat.com> 4.1.7-15
497cbe
- Turn off selinux
497cbe
497cbe
* Thu Aug 28 2003 Dan Walsh <dwalsh@redhat.com> 4.1.7-14.sel
497cbe
- Turn on selinux
497cbe
497cbe
* Fri Jul 18 2003 Dan Walsh <dwalsh@redhat.com> 4.1.7-13
497cbe
- Add SELinux patch
497cbe
497cbe
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
497cbe
- rebuilt
497cbe
497cbe
* Wed Apr 23 2003 Elliot Lee <sopwith@redhat.com> 4.1.7-11
497cbe
- Remove config.{sub,guess} to make ppc64 work
497cbe
497cbe
* Mon Mar 17 2003 Tim Waugh <twaugh@redhat.com> 4.1.7-10
497cbe
- Make 'xargs -i -n1' behave as expected (bug #86191).
497cbe
497cbe
* Wed Jan 22 2003 Tim Powers <timp@redhat.com> 4.1.7-9
497cbe
- rebuilt
497cbe
497cbe
* Tue Oct 22 2002 Tim Waugh <twaugh@redhat.com> 4.1.7-8
497cbe
- Ship translations.
497cbe
- Don't install files not packaged.
497cbe
497cbe
* Wed Jul  3 2002 Tim Waugh <twaugh@redhat.com> 4.1.7-7
497cbe
- Fix usage message (bug #67828).
497cbe
497cbe
* Fri Jun 21 2002 Tim Powers <timp@redhat.com> 4.1.7-6
497cbe
- automated rebuild
497cbe
497cbe
* Thu May 23 2002 Tim Powers <timp@redhat.com> 4.1.7-5
497cbe
- automated rebuild
497cbe
497cbe
* Tue Feb 26 2002 Tim Waugh <twaugh@redhat.co,> 4.1.7-4
497cbe
- Rebuild in new environment.
497cbe
497cbe
* Tue Feb 12 2002 Tim Waugh <twaugh@redhat.com> 4.1.7-3
497cbe
- s/Copyright/License/.
497cbe
- Fix documentation (bug #53857).
497cbe
497cbe
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
497cbe
- automated rebuild
497cbe
497cbe
* Sun Jun 03 2001 Florian La Roche <Florian.LaRoche@redhat.de>
497cbe
- update to 4.1.7, no additional patch needed anymore
497cbe
497cbe
* Thu Feb  8 2001 Preston Brown <pbrown@redhat.com>
497cbe
- remove extraneous linking to librt/libpthreads.
497cbe
497cbe
* Tue Oct 17 2000 Florian La Roche <Florian.LaRoche@redhat.de>
497cbe
- update to 4.1.6
497cbe
497cbe
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
497cbe
- automatic rebuild
497cbe
497cbe
* Wed Jun 28 2000 Preston Brown <pbrown@redhat.com>
497cbe
- revert to 4.1.5 ( :) ) on the advice of HJ Lu
497cbe
- patch to fix finding w/ -perm flag
497cbe
497cbe
* Tue Jun 27 2000 Preston Brown <pbrown@redhat.com>
497cbe
- revert to 4.1.4
497cbe
- reapply numblks patch
497cbe
- generate new nolocate patch, we don't ship it.
497cbe
497cbe
* Mon Jun 12 2000 Preston Brown <pbrown@redhat.com>
497cbe
- 4.1.5, FHS paths
497cbe
- remove mktemp,getshort patches (don't ship locate)
497cbe
- alpha, numblks patch no longer needed
497cbe
497cbe
* Mon Apr  3 2000 Bernhard Rosenkraenzer <bero@redhat.com>
497cbe
- 4.1.4
497cbe
- remove some obsolete patches, adapt others
497cbe
- fix build on alpha
497cbe
497cbe
* Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com>
497cbe
- fix summary
497cbe
- ma  pages are compressed
497cbe
497cbe
* Wed Jan 12 2000 Preston Brown <pbrown@redhat.com>
497cbe
- new description.
497cbe
497cbe
* Fri Aug 27 1999 Preston Brown <pbrown@redhat.com>
497cbe
- fixed block count bug (# 2141)
497cbe
497cbe
* Mon Mar 29 1999 Preston Brown <pbrown@redhat.com>
497cbe
- patch to fix xargs out of bounds overflow (bug # 1279)
497cbe
497cbe
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
497cbe
- auto rebuild in the new build environment (release 30)
497cbe
497cbe
* Fri Mar 19 1999 Jeff Johnson <jbj@redhat.com>
497cbe
- strip binaries.
497cbe
497cbe
* Mon Feb  8 1999 Jeff Johnson <jbj@redhat.com>
497cbe
- remove further updatedb remnants (#1072).
497cbe
497cbe
* Thu Dec 03 1998 Cristian Gafton <gafton@redhat.com>
497cbe
- added patch for glibc21
497cbe
497cbe
* Mon Nov 16 1998 Erik Troan <ewt@redhat.com>
497cbe
- removed locate stuff (as we now ship slocate)
497cbe
497cbe
* Wed Jun 10 1998 Erik Troan <ewt@redhat.com>
497cbe
- updated updatedb cron script to not look for $TMPNAME.n (which was
497cbe
  a relic anyway)
497cbe
- added -b parameters to all of the patches
497cbe
497cbe
* Fri Apr 24 1998 Prospector System <bugs@redhat.com>
497cbe
- translations modified for de, fr, tr
497cbe
497cbe
* Mon Mar 09 1998 Michael K. Johnson <johnsonm@redhat.com>
497cbe
- make updatedb.cron use mktemp correctly
497cbe
- make updatedb use mktemp
497cbe
497cbe
* Sun Nov 09 1997 Michael K. Johnson <johnsonm@redhat.com>
497cbe
- nobody should own tmpfile
497cbe
- ignore /net
497cbe
497cbe
* Wed Nov 05 1997 Michael K. Johnson <johnsonm@redhat.com>
497cbe
- made updatedb.cron do a better job of cleaning up after itself.
497cbe
497cbe
* Tue Oct 28 1997 Donald Barnes <djb@redhat.com>
497cbe
- fixed 64 bit-ism in getline.c, patch tacked on to end of glibc one
497cbe
497cbe
* Thu Oct 23 1997 Erik Troan <ewt@redhat.com>
497cbe
- added patch for glibc 2.1
497cbe
497cbe
* Fri Oct 17 1997 Donnie Barnes <djb@redhat.com>
497cbe
- added BuildRoot support
497cbe
497cbe
* Tue Oct 14 1997 Michael K. Johnson <johnsonm@redhat.com>
497cbe
- made updatedb.cron work even if "nobody" can't read /root
497cbe
- use mktemp in updatedb.cron
497cbe
497cbe
* Sun Sep 14 1997 Erik Troan <ewt@redhat.com>
497cbe
- added missing info pages
497cbe
- uses install-info
497cbe
497cbe
* Mon Jun 02 1997 Erik Troan <ewt@redhat.com>
497cbe
- built with glibc
497cbe
497cbe
* Mon Apr 21 1997 Michael K. Johnson <johnsonm@redhat.com>
497cbe
- fixed updatedb.cron