[PATCH 19/19] Remove unused Debian files; the Debian package doesn't use them.

2009-04-10 Thread James Youngman
* debian.rules: Delete. * debian/README.debian: Delete. * debian/TODO: Delete. * debian/changelog: Delete. * debian/conffiles: Delete. * debian/control: Delete. * debian/copyright: Delete. * debian/cron.find: Delete. * debian/doc-base: Delete. * debian/postinst: Delete. * debian/preinst: Delete. *

[PATCH 14/19] Fix Savannah bug #25764, duplicate entry for proc in PRUNEFS.

2009-04-10 Thread James Youngman
Fix Savannah bug #25764, duplicate entry for proc in PRUNEFS. * locate/updatedb.sh (PRUNEFS): Remove duplicate entry for proc. * locate/Makefile.am (updatedb): add dependency on Makefile, and add a comment explaining why updatedb is generated by make, not configure. * NEWS: Mention this bugfix. Si

[PATCH 16/19] Ignore 'compile'

2009-04-10 Thread James Youngman
Signed-off-by: James Youngman (cherry picked from commit f6a8ee6189630377bea5f68944937913b6d7baf7) --- build-aux/.gitignore |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/build-aux/.gitignore b/build-aux/.gitignore index 1595798..ad7eca3 100644 --- a/build-aux/.gitignore

[PATCH 05/19] Fix bug #23996 (integer overflow when parsing "-used 3").

2009-04-10 Thread James Youngman
--- ChangeLog |7 + NEWS |3 + find/parser.c | 358 + 3 files changed, 191 insertions(+), 177 deletions(-) diff --git a/ChangeLog b/ChangeLog index 259fd66..f3f0858 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,13 @

[PATCH 01/19] Applied doc patch from Stepan Kasal (backport)

2009-04-10 Thread James Youngman
--- ChangeLog |5 + doc/find.texi | 17 ++--- 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5f733d3..db80680 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-04-10 Stepan Kasal + + Backport a fix from 4.5.

[PATCH 15/19] Provide more detailed help on how to work with the git sources.

2009-04-10 Thread James Youngman
Provide more detailed help on how to work with the git sources. * README-CVS: Rename to README-hacking. * README-hacking: Add more specific information about using topic branches, test cases, documentation, coding standards and how to submit patches. Much of this is adapted from the files README-

[PATCH 18/19] clean tool-versions.txt for 'make distclean'

2009-04-10 Thread James Youngman
Signed-off-by: James Youngman (cherry picked from commit 530e4a541d463d7724159c8e479e33823cea0549) --- Makefile.am |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 3086058..4927b00 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,6 +4,8 @

[PATCH 17/19] Change suffix for non-release versions from -CVS to -git.

2009-04-10 Thread James Youngman
* configure.ac(AC_INIT): Change the suffix used to indicate that the version number doesn't correspond to a source release from -CVS to -git. * NEWS: Likewise. Signed-off-by: James Youngman --- ChangeLog|6 ++ NEWS |2 +- configure.ac |2 +- 3 files changed, 8 inserti

[PATCH 02/19] Fix Savannah bug 22662 (nanoseconds wrongly appended after PM for find -printf %AX)

2009-04-10 Thread James Youngman
--- NEWS|3 + find/pred.c | 392 +++ 2 files changed, 265 insertions(+), 130 deletions(-) diff --git a/NEWS b/NEWS index 2bd951d..0f7611c 100644 --- a/NEWS +++ b/NEWS @@ -271,6 +271,9 @@ This bug has been assigned CVE number CVE

[PATCH 06/19] Moved bugfixes in the NEWS file out of "Documentation Enhancements" into "Bug Fixes".

2009-04-10 Thread James Youngman
--- ChangeLog |7 +++ NEWS | 22 ++ 2 files changed, 17 insertions(+), 12 deletions(-) diff --git a/ChangeLog b/ChangeLog index f3f0858..35f522d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2009-04-10 James Youngman + + * NEWS: Moved some of

[PATCH 13/19] Really apply Jim's earlier patch.

2009-04-10 Thread James Youngman
From: Jim Meyering * find/pred.c (scan_for_digit_differences): Remove declaration of unused local, "ok". Signed-off-by: James Youngman --- find/pred.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/find/pred.c b/find/pred.c index b4e0404..d7253e4 100644 --- a/find/p

[PATCH 07/19] Fix Savannah bug #24283, find-4.5.2 -printf %TY causes NULL pointer dereference

2009-04-10 Thread James Youngman
--- NEWS|2 ++ find/pred.c | 17 ++--- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index fbaaf3b..3dd4483 100644 --- a/NEWS +++ b/NEWS @@ -15,6 +15,8 @@ declarations to follow statements. #25144: Misleading error message when argument to f

[PATCH 12/19] find: avoid warning about unused local, remove unnecessary include.

2009-04-10 Thread James Youngman
From: Jim Meyering * find/pred.c (scan_for_digit_differences): Remove declaration of unused local, "ok". (do_time_format): Remove decl of "done"; replace sole use with a constant, "true". Initialize "i" and "n". * lib/dircallback.c: Don't include unistd.h. Not needed. --- ChangeLog |

[PATCH 00/19] *** SUBJECT HERE ***

2009-04-10 Thread James Youngman
Back-port non-risky changes from 4.5.x to 4.4.x. The only changes with functional impact are bug fixes. James Youngman (14): Applied doc patch from Stepan Kasal (backport) Fix Savannah bug 22662 (nanoseconds wrongly appended after PM for find -printf %AX) Fix bugs in bugfix for #22662

[PATCH 04/19] Fixed Savannah bug #23663, crash in some locales for find -printf '%AX'

2009-04-10 Thread James Youngman
--- ChangeLog |6 ++ NEWS|5 + find/pred.c |5 +++-- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index fb8d234..259fd66 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,12 @@ 2009-04-10 James Youngman + Backport

[PATCH 03/19] Fix bugs in bugfix for #22662

2009-04-10 Thread James Youngman
--- ChangeLog | 24 +--- NEWS|1 + find/pred.c |5 +++-- 3 files changed, 21 insertions(+), 9 deletions(-) diff --git a/ChangeLog b/ChangeLog index db80680..fb8d234 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,16 @@ Backport a fix from 4.5.x.

[PATCH 08/19] Typo fix from Jim Meyering

2009-04-10 Thread James Youngman
--- ChangeLog |4 README-CVS |2 +- 2 files changed, 5 insertions(+), 1 deletions(-) diff --git a/ChangeLog b/ChangeLog index 35f522d..55c96fc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2009-04-10 Jim Meyering + + * README-CVS: tiny typo fix (s/fileutils/finduti

[PATCH 09/19] fix a typo in a comment

2009-04-10 Thread James Youngman
From: Jim Meyering * find/ftsfind.c (consider_visiting): s/fill/full/ (cherry picked from commit 34c70aa633115a807f36f91f036f6d831afe5e57) --- find/ftsfind.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/find/ftsfind.c b/find/ftsfind.c index 543b80f..1fc5459 100644 --

[PATCH 11/19] find: Fix -regexptype parse specification bug: declare as POSOPT.

2009-04-10 Thread James Youngman
From: Thien-Thi Nguyen --- ChangeLog |7 +++ find/parser.c |2 +- 2 files changed, 8 insertions(+), 1 deletions(-) diff --git a/ChangeLog b/ChangeLog index 55c96fc..91b0072 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,12 @@ +2009-04-10 Thien-Thi Nguyen + + Backport

[PATCH 10/19] find: avoid using undefined statbuf

2009-04-10 Thread James Youngman
From: Jim Meyering * find/ftsfind.c (consider_visiting): Use local variable, mode, rather than possibly undefined statbuf.st_mode. (cherry picked from commit f4d8c73d0bc493c07da291e2587192113270d319) --- find/ftsfind.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fin

[bug #26092] find.1 still marks -iwholename as prefered over -ipath

2009-04-10 Thread James Youngman
Update of bug #26092 (project findutils): Assigned to:None => jay ___ Follow-up Comment #1: POSIX doesn't include -ipath, so the argument for applying the patch is essentially consisten

[bug #25933] (v. 4.5.4) "find . ! -user myself" thinks I don't own the newly created file

2009-04-10 Thread James Youngman
Update of bug #25933 (project findutils): Status:None => Invalid Open/Closed:Open => Closed ___ Reply to this item at:

[bug #23920] find.1: please add short note about no trailing slashes for directories

2009-04-10 Thread James Youngman
Follow-up Comment #7, bug #23920 (project findutils): "shell pattern" does have a specific meaning; see http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_13 for example. I don't understand your point here: << Note that the result line of an object differs dependin