b0d392
Summary: The GNU versions of find utilities (find and xargs)
b0d392
Name: findutils
b0d392
Version: 4.8.0
b0d392
Release: 5%{?dist}
b0d392
Epoch: 1
b0d392
License: GPLv3+
b0d392
URL: https://www.gnu.org/software/findutils/
b0d392
Source0: https://ftp.gnu.org/pub/gnu/%{name}/%{name}-%{version}.tar.xz
b0d392
b0d392
# do not build locate
b0d392
Patch1:  findutils-4.5.15-no-locate.patch
b0d392
b0d392
# add -xautofs option to not descend into directories on autofs file systems
b0d392
Patch2:  findutils-4.4.2-xautofs.patch
b0d392
b0d392
# eliminate compile-time warnings
b0d392
Patch3:  findutils-4.5.13-warnings.patch
b0d392
b0d392
# test-lock: disable the rwlock test
b0d392
Patch4:  findutils-4.6.0-test-lock.patch
b0d392
b0d392
# implement the -noleaf option of find (#1252549)
b0d392
Patch5:  findutils-4.6.0-leaf-opt.patch
b0d392
b0d392
Conflicts: filesystem < 3
b0d392
Provides: /bin/find
b0d392
Provides: bundled(gnulib)
b0d392
b0d392
BuildRequires: automake
b0d392
BuildRequires: dejagnu
b0d392
BuildRequires: gettext-devel
b0d392
BuildRequires: gcc
b0d392
BuildRequires: git
b0d392
BuildRequires: libselinux-devel
b0d392
BuildRequires: make
b0d392
BuildRequires: texinfo
b0d392
b0d392
%description
b0d392
The findutils package contains programs which will help you locate
b0d392
files on your system.  The find utility searches through a hierarchy
b0d392
of directories looking for files which match a certain set of criteria
b0d392
(such as a file name pattern).  The xargs utility builds and executes
b0d392
command lines from standard input arguments (usually lists of file
b0d392
names generated by the find command).
b0d392
b0d392
You should install findutils because it includes tools that are very
b0d392
useful for finding things on your system.
b0d392
b0d392
%prep
b0d392
%autosetup -N -S git
b0d392
b0d392
# drop the source code of locate
b0d392
git rm -q -r locate
b0d392
git commit -q -m "drop the source code of locate"
b0d392
b0d392
# remove ignored files from git and mark them as ignored
b0d392
tee -a .gitignore << EOF
b0d392
*~
b0d392
Makefile.in
b0d392
/aclocal.m4
b0d392
/autom4te.cache
b0d392
/build
b0d392
/configure
b0d392
/doc/find.info*
b0d392
/doc/stamp-vti
b0d392
/doc/version.texi
b0d392
EOF
b0d392
git rm -q -r --cached .
b0d392
git add --all .
b0d392
git commit -m "remove ignored files from git"
b0d392
b0d392
# apply all patches
b0d392
%autopatch
b0d392
b0d392
# needed because of findutils-4.5.15-no-locate.patch
b0d392
autoreconf -fiv
b0d392
git add --all .
b0d392
git commit -q -m "after invocation of autoreconf"
b0d392
b0d392
%build
b0d392
# disable -flto on ppc64le to make test-float pass (#1789115)
b0d392
%ifarch ppc64le
b0d392
export CFLAGS="$RPM_OPT_FLAGS -fno-lto"
b0d392
%endif
b0d392
b0d392
mkdir build
b0d392
cd build
b0d392
%global _configure ../configure
b0d392
%configure
b0d392
b0d392
%make_build
b0d392
b0d392
%check
b0d392
make %{?_smp_mflags} check -C build V=1
b0d392
b0d392
%install
b0d392
%make_install -C build
b0d392
b0d392
rm -f %{buildroot}%{_infodir}/dir
b0d392
b0d392
%find_lang %{name}
b0d392
b0d392
%files -f %{name}.lang
b0d392
%license COPYING
b0d392
%doc AUTHORS NEWS README THANKS TODO
b0d392
%{_bindir}/find
b0d392
%{_bindir}/xargs
b0d392
%{_mandir}/man1/find.1*
b0d392
%{_mandir}/man1/xargs.1*
b0d392
%{_infodir}/find.info*
b0d392
%{_infodir}/find-maint.info.*
b0d392
b0d392
%changelog
b0d392
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1:4.8.0-5
b0d392
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
b0d392
  Related: rhbz#1991688
b0d392
b0d392
* Thu Jun 10 2021 Florian Weimer <fweimer@redhat.com> - 1:4.8.0-4
b0d392
- Rebuild with updated binutils (#1960667)
b0d392
b0d392
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 1:4.8.0-3
b0d392
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
b0d392
b0d392
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.8.0-2
b0d392
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
b0d392
b0d392
* Sat Jan 09 2021 Kamil Dudka <kdudka@redhat.com> - 1:4.8.0-1
b0d392
- new upstream release
b0d392
b0d392
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.7.0-7
b0d392
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
b0d392
b0d392
* Fri Jul 24 2020 Kamil Dudka <kdudka@redhat.com> - 1:4.7.0-6
b0d392
- disable -flto on ppc64le to make test-float pass (#1789115)
b0d392
- do not compile with -D__SUPPORT_SNAN__ (#1294016)
b0d392
b0d392
* Mon Jul 13 2020 Tom Stellard <tstellar@redhat.com> - 1:4.7.0-5
b0d392
- Use make macros
b0d392
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
b0d392
b0d392
* Fri Apr 17 2020 Kamil Dudka <kdudka@redhat.com> - 1:4.7.0-4
b0d392
- simplify leaf optimization for XFS (#1823247)
b0d392
b0d392
* Tue Feb 11 2020 Kamil Dudka <kdudka@redhat.com> - 1:4.7.0-3
b0d392
- make upstream test-suite work with root privileges (#1799064)
b0d392
b0d392
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.7.0-2
b0d392
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
b0d392
b0d392
* Fri Aug 30 2019 Kamil Dudka <kdudka@redhat.com> - 1:4.7.0-1
b0d392
- new upstream release
b0d392
b0d392
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.6.0-24
b0d392
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
b0d392
b0d392
* Wed Apr 24 2019 Björn Esser <besser82@fedoraproject.org> - 1:4.6.0-23
b0d392
- Remove hardcoded gzip suffix from GNU info pages
b0d392
b0d392
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.6.0-22
b0d392
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
b0d392
b0d392
* Mon Nov 05 2018 Kamil Dudka <kdudka@redhat.com> - 1:4.6.0-21
b0d392
- fix programming mistakes detected by static analysis
b0d392
b0d392
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.6.0-20
b0d392
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
b0d392
b0d392
* Fri Apr 20 2018 Kamil Dudka <kdudka@redhat.com> - 1:4.6.0-19
b0d392
- fix crash caused by mistakenly enabled leaf optimization (#1558249)
b0d392
b0d392
* Tue Mar 06 2018 Kamil Dudka <kdudka@redhat.com> - 1:4.6.0-18
b0d392
- fix build failure with glibc-2.28
b0d392
b0d392
* Mon Feb 19 2018 Kamil Dudka <kdudka@redhat.com> - 1:4.6.0-17
b0d392
- add explicit BR for the gcc compiler
b0d392
b0d392
* Mon Feb 12 2018 Kamil Dudka <kdudka@redhat.com> - 1:4.6.0-16
b0d392
- import gnulib's FTS module from upstream commit 281b825e (#1544429)
b0d392
b0d392
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.6.0-15
b0d392
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
b0d392
b0d392
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.6.0-14
b0d392
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
b0d392
b0d392
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.6.0-13
b0d392
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
b0d392
b0d392
* Thu Mar 02 2017 Kamil Dudka <kdudka@redhat.com> - 1:4.6.0-12
b0d392
- drop ppc64le workaround no longer needed (#1417753)
b0d392
b0d392
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.6.0-11
b0d392
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
b0d392
b0d392
* Mon Jan 30 2017 Kamil Dudka <kdudka@redhat.com> - 1:4.6.0-10
b0d392
- avoid using broken memcmp() code that gcc generates on ppc64le (#1417753)
b0d392
b0d392
* Fri Jan 27 2017 Kamil Dudka <kdudka@redhat.com> - 1:4.6.0-9
b0d392
- add explicit BR for git as we use it in %%prep
b0d392
b0d392
* Fri Sep 16 2016 Kamil Dudka <kdudka@redhat.com> - 1:4.6.0-8
b0d392
- disable leaf optimization for NFS (#1299169)
b0d392
b0d392
* Fri Jun 24 2016 Kamil Dudka <kdudka@redhat.com> - 1:4.6.0-7
b0d392
- bump release to preserve upgrade path f24 -> f25
b0d392
b0d392
* Fri Jun 17 2016 Kamil Dudka <kdudka@redhat.com> - 1:4.6.0-6
b0d392
- use %%autosetup to create a git repo in %%prep
b0d392
- use out of source build
b0d392
- avoid SIGSEGV in case the internal -noop option is used (#1346471)
b0d392
b0d392
* Tue May 31 2016 Kamil Dudka <kdudka@redhat.com> - 1:4.6.0-5
b0d392
- make sure that find -exec + passes all arguments (upstream bug #48030)
b0d392
b0d392
* Mon Apr 18 2016 Kamil Dudka <kdudka@redhat.com> - 1:4.6.0-4
b0d392
- clarify exit status handling of -exec cmd {} + in find(1) man page (#1325049)
b0d392
b0d392
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.6.0-3
b0d392
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
b0d392
b0d392
* Wed Jan 06 2016 Kamil Dudka <kdudka@redhat.com> - 1:4.6.0-2
b0d392
- prevent test-isinf from failing with gcc-5.3.1 on ppc64le (#1294016)
b0d392
- prevent mbrtowc tests from failing (#1294016)
b0d392
b0d392
* Tue Dec 29 2015 Kamil Dudka <kdudka@redhat.com> - 1:4.6.0-1
b0d392
- new upstream release
b0d392
- drop oldfind(1) no longer supported by upstream
b0d392
b0d392
* Fri Dec 25 2015 Kamil Dudka <kdudka@redhat.com> - 1:4.5.16-1
b0d392
- new upstream release
b0d392
b0d392
* Mon Dec 21 2015 Kamil Dudka <kdudka@redhat.com> - 1:4.5.15-2
b0d392
- enable leaf optimization for XFS and NFS (#1252549)
b0d392
b0d392
* Sat Dec 19 2015 Kamil Dudka <kdudka@redhat.com> - 1:4.5.15-1
b0d392
- new upstream release
b0d392
b0d392
* Tue Jul 07 2015 Kamil Dudka <kdudka@redhat.com> - 1:4.5.14-7
b0d392
- make the test-suite ready for Perl 5.22 (#1239501)
b0d392
b0d392
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:4.5.14-6
b0d392
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
b0d392
b0d392
* Wed Mar 18 2015 Kamil Dudka <kdudka@redhat.com> - 1:4.5.14-5
b0d392
- make the test-suite ready for Python 3
b0d392
b0d392
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 1:4.5.14-4
b0d392
- Rebuilt for Fedora 23 Change
b0d392
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
b0d392
b0d392
* Mon Feb 16 2015 Kamil Dudka <kdudka@redhat.com> - 1:4.5.14-3
b0d392
- fix a crash triggered by recursive bind mount (#1188498)
b0d392
b0d392
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:4.5.14-2
b0d392
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
b0d392
b0d392
* Mon Jul 21 2014 Kamil Dudka <kdudka@redhat.com> - 1:4.5.14-1
b0d392
- new upstream release
b0d392
b0d392
* Wed Jul 16 2014 Kamil Dudka <kdudka@redhat.com> - 1:4.5.13-1
b0d392
- new upstream release
b0d392
b0d392
* Sat Jul 12 2014 Tom Callaway <spot@fedoraproject.org> - 1:4.5.12-6
b0d392
- fix license handling
b0d392
b0d392
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:4.5.12-5
b0d392
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
b0d392
b0d392
* Mon Jun 02 2014 Kamil Dudka <kdudka@redhat.com> 1:4.5.12-4
b0d392
- eliminate failure of gnulib tests on little-endian PowerPC (#1083145)
b0d392
b0d392
* Sat May 31 2014 Peter Robinson <pbrobinson@fedoraproject.org> 1:4.5.12-3
b0d392
- drop ChangeLog, the NEWS file contains details back to 1993 to satisfy even
b0d392
  the most bored sysadmin
b0d392
b0d392
* Mon Sep 23 2013 Kamil Dudka <kdudka@redhat.com> - 1:4.5.12-2
b0d392
- silence GCC warnings
b0d392
b0d392
* Mon Sep 23 2013 Kamil Dudka <kdudka@redhat.com> - 1:4.5.12-1
b0d392
- new upstream release
b0d392
b0d392
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:4.5.11-4
b0d392
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
b0d392
b0d392
* Wed Jul 10 2013 Kamil Dudka <kdudka@redhat.com> - 1:4.5.11-3
b0d392
- remove findutils-4.4.2-autofs.patch no longer needed
b0d392
b0d392
* Tue Jul 09 2013 Kamil Dudka <kdudka@redhat.com> - 1:4.5.11-2
b0d392
- remove support for obsolete -perm +MODE syntax (#982503)
b0d392
b0d392
* Sun Feb 03 2013 Kamil Dudka <kdudka@redhat.com> - 1:4.5.11-1
b0d392
- new upstream release
b0d392
b0d392
* Tue Aug 28 2012 Kamil Dudka <kdudka@redhat.com> - 1:4.5.10-7
b0d392
- fix specfile issues reported by the fedora-review script
b0d392
- do not use the AM_C_PROTOTYPES macro (removed in Automake 1.12)
b0d392
- do not require gets() to be declared
b0d392
b0d392
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:4.5.10-6
b0d392
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
b0d392
b0d392
* Wed May 16 2012 Kamil Dudka <kdudka@redhat.com> - 1:4.5.10-5
b0d392
- add virtual provides for bundled(gnulib) copylib (#821753)
b0d392
b0d392
* Wed Jan 25 2012 Harald Hoyer <harald@redhat.com> 1:4.5.10-4
b0d392
- add filesystem guard
b0d392
b0d392
* Wed Jan 25 2012 Harald Hoyer <harald@redhat.com> 1:4.5.10-3
b0d392
- install everything in /usr
b0d392
  https://fedoraproject.org/wiki/Features/UsrMove
b0d392
b0d392
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:4.5.10-2
b0d392
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
b0d392
b0d392
* Wed May 11 2011 Kamil Dudka <kdudka@redhat.com> - 1:4.5.10-1
b0d392
- new upstream release
b0d392
b0d392
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:4.5.9-3
b0d392
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
b0d392
b0d392
* Mon May 24 2010 Kamil Dudka <kdudka@redhat.com> - 1:4.5.9-2
b0d392
- fix some bugs in handling of -execdir (Savannah bug #29949)
b0d392
b0d392
* Wed May 05 2010 Kamil Dudka <kdudka@redhat.com> - 1:4.5.9-1
b0d392
- new upstream release, dropped applied patches
b0d392
b0d392
* Tue Apr 06 2010 Kamil Dudka <kdudka@redhat.com> - 1:4.5.7-4
b0d392
- avoid assertion failure due to access permissions (#579476)
b0d392
b0d392
* Sun Apr 04 2010 Kamil Dudka <kdudka@redhat.com> - 1:4.5.7-3
b0d392
- upstream bugfix http://savannah.gnu.org/bugs/?29435
b0d392
b0d392
* Sat Apr 03 2010 Kamil Dudka <kdudka@redhat.com> - 1:4.5.7-2
b0d392
- avoid assertion failure on non-recognized O_CLOEXEC
b0d392
b0d392
* Sat Apr 03 2010 Kamil Dudka <kdudka@redhat.com> - 1:4.5.7-1
b0d392
- new upstream release, dropped applied patches
b0d392
- eliminated compile-time warnings
b0d392
b0d392
* Thu Nov 26 2009 Kamil Dudka <kdudka@redhat.com> - 1:4.4.2-6
b0d392
- update SELinux patch to the latest upstream (gnulib based) version
b0d392
b0d392
* Wed Nov 18 2009 Kamil Dudka <kdudka@redhat.com> - 1:4.4.2-5
b0d392
- do not fail silently on a remount during traverse (#538536)
b0d392
b0d392
* Tue Oct 20 2009 Kamil Dudka <kdudka@redhat.com> - 1:4.4.2-4
b0d392
- make it possible to recognize an autofs filesystem by find
b0d392
- add a new find's option -xautofs to not descend directories on autofs
b0d392
  filesystems
b0d392
b0d392
* Mon Sep 14 2009 Kamil Dudka <kdudka@redhat.com> - 1:4.4.2-3
b0d392
- do process install-info only without --excludedocs(#515914)
b0d392
b0d392
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:4.4.2-2
b0d392
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
b0d392
b0d392
* Wed Jul  1 2009 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.4.2-1
b0d392
- Update to findutils-4.4.2
b0d392
b0d392
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:4.4.0-2
b0d392
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
b0d392
b0d392
* Wed Apr 30 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.4.0-1
b0d392
- Update to findutils-4.4.0
b0d392
  Resolves: #437733
b0d392
b0d392
* Mon Apr 14 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.2.33-3
b0d392
- Move find to /bin
b0d392
  Resolves: #438183
b0d392
b0d392
* Fri Mar 28 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.2.33-2
b0d392
- Fix xargs ARG_MAX assert
b0d392
  Resolves: #439168
b0d392
b0d392
* Fri Feb 15 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.2.33-1
b0d392
- Update to findutils-4.2.33
b0d392
- Fix License
b0d392
b0d392
* Wed Feb 13 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.2.32-1
b0d392
- Update to findutils-4.2.32
b0d392
b0d392
* Mon Feb 11 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.2.31-4
b0d392
- Rebuild
b0d392
b0d392
* Fri Jan 18 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.2.31-3
b0d392
- Rebuild
b0d392
b0d392
* Thu Aug 23 2007 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.2.31-2
b0d392
- fix license
b0d392
- rebuild
b0d392
b0d392
* Tue Jun 12 2007 Vitezslav Crhonek <vcrhonek@redhat.com> - 1:4.2.31-1
b0d392
- Update to findutils-4.2.31
b0d392
  Resolves: #243732
b0d392
b0d392
* Fri Jan  5 2007 Miloslav Trmac <mitr@redhat.com> - 1:4.2.29-2
b0d392
- Ignore install-info errors in scriptlets
b0d392
b0d392
* Sun Nov 26 2006 Miloslav Trmac <mitr@redhat.com> - 1:4.2.29-1
b0d392
- Update to findutils-4.2.29
b0d392
- Fix some rpmlint warnings
b0d392
b0d392
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1:4.2.27-4.1
b0d392
- rebuild
b0d392
b0d392
* Sun Feb 19 2006 Miloslav Trmac <mitr@redhat.com> - 1:4.2.27-4
b0d392
- Report the correct directory when hard link count is inconsistent (#182001)
b0d392
b0d392
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1:4.2.27-3.2
b0d392
- bump again for double-long bug on ppc(64)
b0d392
b0d392
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1:4.2.27-3.1
b0d392
- rebuilt for new gcc4.1 snapshot and glibc changes
b0d392
b0d392
* Mon Jan 30 2006 Miloslav Trmac <mitr@redhat.com> - 1:4.2.27-3
b0d392
- Updated SELinux patch, --context is no longer valid (use -context)
b0d392
b0d392
* Thu Jan 12 2006 Miloslav Trmac <mitr@redhat.com> - 1:4.2.27-2
b0d392
- Don't use uninitialized memory in -printf %%Z (#174485)
b0d392
- Ship more documentation files
b0d392
- Clean up the spec file a bit
b0d392
b0d392
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
b0d392
- rebuilt
b0d392
b0d392
* Wed Dec  7 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.27-1
b0d392
- 4.2.27.
b0d392
- No longer need arg_max patch.
b0d392
b0d392
* Mon Nov 21 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.26-1
b0d392
- One further arg_max fix for PPC.
b0d392
- Applied arg_max patch from upstream to fix test suite failures.
b0d392
- 4.2.26 (fixes bug #173817).
b0d392
b0d392
* Tue Oct 11 2005 Dan Walsh <dwalsh@redhat.com> 1:4.2.25-3
b0d392
- Fix selinux patch
b0d392
b0d392
* Mon Sep  5 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.25-2
b0d392
- 4.2.25.
b0d392
b0d392
* Mon Jun 20 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.23-1
b0d392
- 4.2.23.
b0d392
b0d392
* Thu Mar 17 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.20-1
b0d392
- 4.2.20.
b0d392
b0d392
* Mon Mar 14 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.18-3
b0d392
- Applied patch from Robert Scheck to fix compilation with GCC 4 (bug #151031).
b0d392
b0d392
* Wed Mar  2 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.18-2
b0d392
- Rebuild for new GCC.
b0d392
b0d392
* Mon Feb 21 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.18-1
b0d392
- 4.2.18.
b0d392
b0d392
* Mon Feb 14 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.15-2
b0d392
- Added nofollow patch from upstream.
b0d392
b0d392
* Mon Jan 31 2005 Tim Waugh <twaugh@redhat.com> 1:4.2.15-1
b0d392
- 4.2.15.  Lots of patches removed due to upstream merge.
b0d392
b0d392
* Tue Jan 4 2005 Dan Walsh <dwalsh@redhat.com> 1:4.1.20-8
b0d392
- Change --context to use fnmatch instead of strcmp
b0d392
b0d392
* Tue Dec  7 2004 Tim Waugh <twaugh@redhat.com>
b0d392
- Removed "G" and "M" size qualifiers from man page, since support for
b0d392
  those is not in the stable branch (bug #141987).
b0d392
b0d392
* Tue Oct 19 2004 Tim Waugh <twaugh@redhat.com> 1:4.1.20-7
b0d392
- Better xargs ARG_SIZE handling (bug #135129).
b0d392
b0d392
* Fri Oct 15 2004 Tim Waugh <twaugh@redhat.com>
b0d392
- Fixed d_type patch for underquoted m4 macro.
b0d392
b0d392
* Fri Oct  8 2004 Tim Waugh <twaugh@redhat.com>
b0d392
- Use upstream patch for find -size man page fix.
b0d392
b0d392
* Wed Oct  6 2004 Tim Waugh <twaugh@redhat.com> 1:4.1.20-6
b0d392
- Fixed bug #126352.
b0d392
b0d392
* Tue Oct  5 2004 Tim Waugh <twaugh@redhat.com> 1:4.1.20-5
b0d392
- Build requires gettext-devel, texinfo (bug #134692).
b0d392
b0d392
* Thu Sep 30 2004 Tim Waugh <twaugh@redhat.com> 1:4.1.20-4
b0d392
- Set re->translate before re_compile_pattern (bug #134190).
b0d392
b0d392
* Sun Aug  1 2004 Alan Cox <alan@redhat.com> 1:4.1.20-3
b0d392
- Fix build with current auto* tools (Steve Grubb)
b0d392
b0d392
* Tue Jul  6 2004 Tim Waugh <twaugh@redhat.com> 1:4.1.20-2
b0d392
- Fix -iregex (bug #127297).
b0d392
b0d392
* Fri Jun 25 2004 Tim Waugh <twaugh@redhat.com> 1:4.1.20-1
b0d392
- Clarify find man page (bug #126098).
b0d392
- Apply changes by Robert Scheck <redhat@linuxnetz.de> (bug #126352):
b0d392
  - Upgrade to 4.1.20 and some specfile cleanup
b0d392
b0d392
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
b0d392
- rebuilt
b0d392
b0d392
* Thu May 20 2004 Tim Waugh <twaugh@redhat.com> 4.1.7-26
b0d392
- Fixed build requirements (bug #123746).
b0d392
b0d392
* Sun Mar 14 2004 Tim Waugh <twaugh@redhat.com> 4.1.7-25
b0d392
- Apply Jakub Jelinek's patch for xargs -E/-I/-L options.
b0d392
b0d392
* Thu Mar 11 2004 Tim Waugh <twaugh@redhat.com> 4.1.7-24
b0d392
- Apply selinux patch last so that it can be turned off (bug #118025).
b0d392
b0d392
* Tue Mar  9 2004 Tim Waugh <twaugh@redhat.com>
b0d392
- Jakub Jelinek's d_type patch improvement.
b0d392
b0d392
* Sun Mar  7 2004 Tim Waugh <twaugh@redhat.com> 4.1.7-23
b0d392
- Run 'make check'.
b0d392
- Apply Ulrich Drepper's improvement on the d_type patch.
b0d392
b0d392
* Fri Mar  5 2004 Tim Waugh <twaugh@redhat.com> 4.1.7-22
b0d392
- Apply Jakub Jelinek's d_type patch for improved efficiency with
b0d392
  many common expressions.
b0d392
b0d392
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
b0d392
- rebuilt
b0d392
b0d392
* Tue Jan 27 2004 Dan Walsh <dwalsh@redhat.com> 4.1.7-20
b0d392
- fix call to is_selinux_enabled
b0d392
b0d392
* Thu Oct 30 2003 Dan Walsh <dwalsh@redhat.com> 4.1.7-19
b0d392
- Turn off SELinux
b0d392
b0d392
* Thu Oct 30 2003 Dan Walsh <dwalsh@redhat.com> 4.1.7-18.sel
b0d392
- Turn on selinux
b0d392
b0d392
* Sat Oct 25 2003 Tim Waugh <twaugh@redhat.com> 4.1.7-17
b0d392
- Rebuilt.
b0d392
b0d392
* Fri Oct 10 2003 Dan Walsh <dwalsh@redhat.com> 4.1.7-16
b0d392
- Turn off selinux
b0d392
b0d392
* Fri Oct 10 2003 Dan Walsh <dwalsh@redhat.com> 4.1.7-15.sel
b0d392
- Turn on selinux
b0d392
b0d392
* Fri Sep 5 2003 Dan Walsh <dwalsh@redhat.com> 4.1.7-15
b0d392
- Turn off selinux
b0d392
b0d392
* Thu Aug 28 2003 Dan Walsh <dwalsh@redhat.com> 4.1.7-14.sel
b0d392
- Turn on selinux
b0d392
b0d392
* Fri Jul 18 2003 Dan Walsh <dwalsh@redhat.com> 4.1.7-13
b0d392
- Add SELinux patch
b0d392
b0d392
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
b0d392
- rebuilt
b0d392
b0d392
* Wed Apr 23 2003 Elliot Lee <sopwith@redhat.com> 4.1.7-11
b0d392
- Remove config.{sub,guess} to make ppc64 work
b0d392
b0d392
* Mon Mar 17 2003 Tim Waugh <twaugh@redhat.com> 4.1.7-10
b0d392
- Make 'xargs -i -n1' behave as expected (bug #86191).
b0d392
b0d392
* Wed Jan 22 2003 Tim Powers <timp@redhat.com> 4.1.7-9
b0d392
- rebuilt
b0d392
b0d392
* Tue Oct 22 2002 Tim Waugh <twaugh@redhat.com> 4.1.7-8
b0d392
- Ship translations.
b0d392
- Don't install files not packaged.
b0d392
b0d392
* Wed Jul  3 2002 Tim Waugh <twaugh@redhat.com> 4.1.7-7
b0d392
- Fix usage message (bug #67828).
b0d392
b0d392
* Fri Jun 21 2002 Tim Powers <timp@redhat.com> 4.1.7-6
b0d392
- automated rebuild
b0d392
b0d392
* Thu May 23 2002 Tim Powers <timp@redhat.com> 4.1.7-5
b0d392
- automated rebuild
b0d392
b0d392
* Tue Feb 26 2002 Tim Waugh <twaugh@redhat.co,> 4.1.7-4
b0d392
- Rebuild in new environment.
b0d392
b0d392
* Tue Feb 12 2002 Tim Waugh <twaugh@redhat.com> 4.1.7-3
b0d392
- s/Copyright/License/.
b0d392
- Fix documentation (bug #53857).
b0d392
b0d392
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
b0d392
- automated rebuild
b0d392
b0d392
* Sun Jun 03 2001 Florian La Roche <Florian.LaRoche@redhat.de>
b0d392
- update to 4.1.7, no additional patch needed anymore
b0d392
b0d392
* Thu Feb  8 2001 Preston Brown <pbrown@redhat.com>
b0d392
- remove extraneous linking to librt/libpthreads.
b0d392
b0d392
* Tue Oct 17 2000 Florian La Roche <Florian.LaRoche@redhat.de>
b0d392
- update to 4.1.6
b0d392
b0d392
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
b0d392
- automatic rebuild
b0d392
b0d392
* Wed Jun 28 2000 Preston Brown <pbrown@redhat.com>
b0d392
- revert to 4.1.5 ( :) ) on the advice of HJ Lu
b0d392
- patch to fix finding w/ -perm flag
b0d392
b0d392
* Tue Jun 27 2000 Preston Brown <pbrown@redhat.com>
b0d392
- revert to 4.1.4
b0d392
- reapply numblks patch
b0d392
- generate new nolocate patch, we don't ship it.
b0d392
b0d392
* Mon Jun 12 2000 Preston Brown <pbrown@redhat.com>
b0d392
- 4.1.5, FHS paths
b0d392
- remove mktemp,getshort patches (don't ship locate)
b0d392
- alpha, numblks patch no longer needed
b0d392
b0d392
* Mon Apr  3 2000 Bernhard Rosenkraenzer <bero@redhat.com>
b0d392
- 4.1.4
b0d392
- remove some obsolete patches, adapt others
b0d392
- fix build on alpha
b0d392
b0d392
* Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com>
b0d392
- fix summary
b0d392
- ma  pages are compressed
b0d392
b0d392
* Wed Jan 12 2000 Preston Brown <pbrown@redhat.com>
b0d392
- new description.
b0d392
b0d392
* Fri Aug 27 1999 Preston Brown <pbrown@redhat.com>
b0d392
- fixed block count bug (# 2141)
b0d392
b0d392
* Mon Mar 29 1999 Preston Brown <pbrown@redhat.com>
b0d392
- patch to fix xargs out of bounds overflow (bug # 1279)
b0d392
b0d392
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
b0d392
- auto rebuild in the new build environment (release 30)
b0d392
b0d392
* Fri Mar 19 1999 Jeff Johnson <jbj@redhat.com>
b0d392
- strip binaries.
b0d392
b0d392
* Mon Feb  8 1999 Jeff Johnson <jbj@redhat.com>
b0d392
- remove further updatedb remnants (#1072).
b0d392
b0d392
* Thu Dec 03 1998 Cristian Gafton <gafton@redhat.com>
b0d392
- added patch for glibc21
b0d392
b0d392
* Mon Nov 16 1998 Erik Troan <ewt@redhat.com>
b0d392
- removed locate stuff (as we now ship slocate)
b0d392
b0d392
* Wed Jun 10 1998 Erik Troan <ewt@redhat.com>
b0d392
- updated updatedb cron script to not look for $TMPNAME.n (which was
b0d392
  a relic anyway)
b0d392
- added -b parameters to all of the patches
b0d392
b0d392
* Fri Apr 24 1998 Prospector System <bugs@redhat.com>
b0d392
- translations modified for de, fr, tr
b0d392
b0d392
* Mon Mar 09 1998 Michael K. Johnson <johnsonm@redhat.com>
b0d392
- make updatedb.cron use mktemp correctly
b0d392
- make updatedb use mktemp
b0d392
b0d392
* Sun Nov 09 1997 Michael K. Johnson <johnsonm@redhat.com>
b0d392
- nobody should own tmpfile
b0d392
- ignore /net
b0d392
b0d392
* Wed Nov 05 1997 Michael K. Johnson <johnsonm@redhat.com>
b0d392
- made updatedb.cron do a better job of cleaning up after itself.
b0d392
b0d392
* Tue Oct 28 1997 Donald Barnes <djb@redhat.com>
b0d392
- fixed 64 bit-ism in getline.c, patch tacked on to end of glibc one
b0d392
b0d392
* Thu Oct 23 1997 Erik Troan <ewt@redhat.com>
b0d392
- added patch for glibc 2.1
b0d392
b0d392
* Fri Oct 17 1997 Donnie Barnes <djb@redhat.com>
b0d392
- added BuildRoot support
b0d392
b0d392
* Tue Oct 14 1997 Michael K. Johnson <johnsonm@redhat.com>
b0d392
- made updatedb.cron work even if "nobody" can't read /root
b0d392
- use mktemp in updatedb.cron
b0d392
b0d392
* Sun Sep 14 1997 Erik Troan <ewt@redhat.com>
b0d392
- added missing info pages
b0d392
- uses install-info
b0d392
b0d392
* Mon Jun 02 1997 Erik Troan <ewt@redhat.com>
b0d392
- built with glibc
b0d392
b0d392
* Mon Apr 21 1997 Michael K. Johnson <johnsonm@redhat.com>
b0d392
- fixed updatedb.cron