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