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