[PATCH] lib: FINDLIB_REPLACE_FUNCS has become obsolete, so delete findlib.

2016-01-03 Thread James Youngman
* configure.ac: gnulib supplies waitpid and C89 supplies strspn. Hence there is no need for any call to FINDLIB_REPLACE_FUNCS. That being the case we don't need to test it with forcefindlib. * m4/findlib.m4: remove since FINDLIB_REPLACE_FUNCS is unused. * m4/Makefile.am (EXTRA_DIST): findlib.m4 has

[PATCH] Make use of suggested GCC function attributes.

2016-01-03 Thread James Youngman
* gnulib-local/lib/gcc-function-attributes.h: New header file, providing macros to allow portable use of GCC function attributes. * gnulib-local/modules/gcc-attributes: New (local) module. * bootstrap.conf (local_gl_dir): Set local_gl_dir so that we can use our new module. Use the gcc-attributes m

[bug #46791] wishlist: no option to find devices for major/minor

2016-01-03 Thread James Youngman
Update of bug #46791 (project findutils): Severity: 3 - Normal => 1 - Wish Status:None => Need Info Assigned to:None => jay Release:

[PATCH 1/8] build: avoid bootstrap error on clean tree

2016-01-03 Thread Bernhard Voelker
Avoid the following error when running ./bootstrap on a clean tree: autoreconf: running: aclocal -I gl/m4 --force -I gl/m4 -I m4 configure.ac:129: error: AC_PROG_CC cannot be called after AM_PROG_CC_C_O ../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... ../../lib/autoconf/general.m4:

[PATCH 7/8] doc: fix typo in find.1

2016-01-03 Thread Bernhard Voelker
* find/find.1 (GLOBAL OPTIONS): s/occurr/occur/ --- find/find.1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/find/find.1 b/find/find.1 index 2f2c974..7166ddd 100644 --- a/find/find.1 +++ b/find/find.1 @@ -442,7 +442,7 @@ and .SS GLOBAL OPTIONS Global options always retur

[PATCH 0/8] maintenance patches

2016-01-03 Thread Bernhard Voelker
The following is a list of minor maintenance patches: [PATCH 1/8] build: avoid bootstrap error on clean tree [PATCH 2/8] maint: remove po/Makevars as it is created during bootstrap [PATCH 3/8] maint: update .gitignore files, remove obsolete .cvsignore files [PATCH 4/8] maint: update all co

[PATCH 5/8] maint: adjust some copyright headers manually

2016-01-03 Thread Bernhard Voelker
This is the prerequesite that 'make update-copyright' will correctly work on these files in future. * configure.ac: Add copyright header, using data from the oldest log entry of this file. * lib/regexprops.c (copying): Adjust copyright year to let 'check-regexprops' pass. * po/fi.po (header commen

[PATCH 2/8] maint: remove po/Makevars as it is created during bootstrap

2016-01-03 Thread Bernhard Voelker
* po/Makevars: Remove. This also avoids an sc_trailing_blank failure due to a blank character after the empty EXTRA_LOCALE_CATEGORIES. --- po/Makevars | 88 - 1 file changed, 88 deletions(-) delete mode 100644 po/Makevars diff --git a/

[PATCH 3/8] maint: update .gitignore files, remove obsolete .cvsignore files

2016-01-03 Thread Bernhard Voelker
* .gitignore (tool-versions.txt): Add entry. (ABOUT-NLS): Change to ... (/ABOUT-NLS): ... this to avoid ./bootstrap adding it again. * build-aux/.gitignore (/ar-lib, /snippet/, /test-driver): Add entries. While at it, use the git-specific '/' prefix on other entries, and sort the file. * doc/.gitig

[PATCH 8/8] maint: don't use obsolete gnulib modules

2016-01-03 Thread Bernhard Voelker
Avoid bootstrap warnings: Notice from module malloc: This module is deprecated. Use the module 'malloc-gnu' instead. Notice from module realloc: This module is deprecated. Use the module 'realloc-gnu' instead. * bootstrap.conf (gnulib_modules): Use malloc-gnu and realloc-gnu modules,

[PATCH 6/8] maint: fix file name in message of findutils-check-pofiles

2016-01-03 Thread Bernhard Voelker
* Makefile.am (findutils-check-pofiles): s/configure\.in/configure.ac/, as that file has been renamed long ago (FINDUTILS_4_3_8-1-50-gc4ef190). While at it, re-indent the lines to shorten the lines for readability. (coverage-clean): Re-indent likewise. (gen-ChangeLog): While at it, replace leading

[PATCH 4/8] maint: update all copyright year number ranges

2016-01-03 Thread Bernhard Voelker
* ChangeLog-2013: Change copyright year by 'make update-copyright'. * NEWS: Likewise. * README-hacking: Likewise. * bootstrap: Likewise. * bootstrap.conf: Likewise. * build-aux/Makefile.am: Likewise. * build-aux/check-testfiles.sh: Likewise. * build-aux/gen-changelog.sh: Likewise. * build-aux/man-l

Re: [PATCH 0/8] maintenance patches

2016-01-03 Thread James Youngman
Thanks for doing this. Sorry about the mid-air collision on the copyright updates.All the other patches look good to me, please apply! On Mon, Jan 4, 2016 at 12:28 AM, Bernhard Voelker wrote: > The following is a list of minor maintenance patches: > > [PATCH 1/8] build: avoid bootstrap err