[bug #46670] Find terminates after searching an auto mounted nfs directory

2015-12-18 Thread James Youngman
Update of bug #46670 (project findutils): Assigned to:None => jay ___ Follow-up Comment #1: Thanks for the bug report. The symptoms you're describing certainly sound like a bug. Your

[bug #38658] If the command exec() fails, xargs terminates prematurely

2015-12-18 Thread James Youngman
Update of bug #38658 (project findutils): Category: xargs => documentation ___ Reply to this item at: ___

[bug #39897] [RFE] Add "--max-count" feature to find

2015-12-18 Thread James Youngman
Update of bug #39897 (project findutils): Status:None => Need Info Assigned to:None => jay ___ Follow-up Comment #1: One of the

[bug #42903] checklists.py fails when $(PYTHON) is Python 3

2015-12-18 Thread James Youngman
Update of bug #42903 (project findutils): Open/Closed:Open => Closed Fixed Release:None => 4.5.15 ___ Reply to this item at:

[bug #40805] locatedb.5: Some formatting changes in the manual

2015-12-18 Thread James Youngman
Update of bug #40805 (project findutils): Open/Closed:Open => Closed Fixed Release:None => 4.5.15 ___ Reply to this item at:

[bug #46670] Find terminates after searching an auto mounted nfs directory

2015-12-18 Thread Mike Frysinger
Follow-up Comment #2, bug #46670 (project findutils): we had a similar report in Gentoo: https://bugs.gentoo.org/337167 tl;dr: 4.4.x failed but 4.5.x worked ___ Reply to this item at:

Re: RFE: head,tail: -z, --zero-terminated

2015-12-18 Thread James Youngman
I made a comment on a similar request in the bug tracker - see https://savannah.gnu.org/bugs/?39897. Please feel free to comment on the bug tracker page. Thanks, James.

[bug #45065] find incorrectly prints a leading zero on the fractional part of ctime timestamps

2015-12-18 Thread James Youngman
Update of bug #45065 (project findutils): Open/Closed:Open => Closed Fixed Release:None => 4.5.15 ___ Reply to this item at:

Announcing the release of findutils-4.5.15

2015-12-18 Thread James Youngman
I am pleased to announce the release of version 4.5.15 of GNU findutils. GNU findutils is a set of software tools for finding files that match certain criteria and for performing various operations on them. Findutils includes the programs "find", "xargs" and "locate". More information about

[bug #46714] make oldfind optional

2015-12-18 Thread Mike Frysinger
URL: Summary: make oldfind optional Project: findutils Submitted by: vapier Submitted on: Fri 18 Dec 2015 05:10:59 PM GMT Category: find Severity: 3 - Normal

release key (was: Announcing the release of findutils-4.5.15)

2015-12-18 Thread Andreas Metzler
On 2015-12-18 James Youngman wrote: > I am pleased to announce the release of version 4.5.15 of GNU > findutils. > GNU findutils is a set of software tools for finding files that match > certain criteria and for performing various operations on them. > Findutils includes the

[bug #45064] Use of [[ ... ]] in /bin/sh script is incorrect

2015-12-18 Thread James Youngman
Update of bug #45064 (project findutils): Open/Closed:Open => Closed Fixed Release:None => 4.5.15 ___ Reply to this item at:

[bug #45062] Enabling CACHE_IDS causes segfaults

2015-12-18 Thread James Youngman
Update of bug #45062 (project findutils): Open/Closed:Open => Closed Fixed Release:None => 4.5.15 ___ Reply to this item at:

[bug #45090] oldfind incorrectly omits test/..test

2015-12-18 Thread James Youngman
Update of bug #45090 (project findutils): Open/Closed:Open => Closed Fixed Release:None => 4.5.15 ___ Reply to this item at:

Proposed stable release of GNU findutils: opinions?

2015-12-18 Thread James Youngman
Folks, I'm considering making a stable release (i.e. 4.6.0) of GNU findutils in the next few days, essentially identical to the recent 4.5.15 release, with a version number change. What are your thoughts on this? Clearly there are a number of open bug reports on the bug tracker. However, many

[bug #45780] inode column is badly aligned when running 'find -ls'

2015-12-18 Thread James Youngman
Update of bug #45780 (project findutils): Open/Closed:Open => Closed Fixed Release:None => 4.5.15 ___ Reply to this item at:

[bug #46715] testsuite error with perl 5.22, gnulib outdated

2015-12-18 Thread Andreas Metzler
URL: Summary: testsuite error with perl 5.22, gnulib outdated Project: findutils Submitted by: ametzler Submitted on: Fr 18 Dez 2015 19:34:12 CET Category: None

Re: "find" ends with exit code "0" although exec command returned an error

2015-12-18 Thread Stephane Chazelas
2015-12-18 22:55:56 +, James Youngman: > I've updated the documentation to make this clearer. [...] Thanks. BTW, (and it might have been what have prompted you to revisit that old thread), I've just raised two related questions on the austin group mailing list:

[PATCH] typo (missing space in example) in find documentation

2015-12-18 Thread Stephane Chazelas
There's a missing space between {} and \; in one of the examples. diff --git a/doc/find.texi b/doc/find.texi index bd1d6a1..3214cdc 100644 --- a/doc/find.texi +++ b/doc/find.texi @@ -5144,7 +5144,7 @@ problem: @example # safer find -exec sh -c 'something "$@@"' sh @{@} \; -find -execdir sh -c

[bug #46670] Find terminates after searching an auto mounted nfs directory

2015-12-18 Thread anonymous
Follow-up Comment #3, bug #46670 (project findutils): This does appear to be the same bug as reported in Gentoo, and it does appear to be fixed by 4.5.15. I'm not 100% sure because some things have changed in my system since I first reported the bug. Today, I've only been able trigger it

[PATCH] Fix save_cwd/restore_cwd error diagnostics.

2015-12-18 Thread Dmitry V. Levin
Before this change, a pointer to struct saved_cwd was used in place of char*, leading to incorrect error diagnostics, e.g.: $ chmod a-x . && find / -maxdepth 0 -exec true \; find: Failed to change directory: : Permission denied find: failed to restore initial working directory: :

Re: "find" ends with exit code "0" although exec command returned an error

2015-12-18 Thread James Youngman
I've updated the documentation to make this clearer. On Mon, Oct 5, 2015 at 4:12 PM, Stephane Chazelas wrote: > In the case of: > > find ... -exec cmd {} \; > > The exit status of cmd is used to determines whether the > predicate evaluates to true or false. > > For