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