changeset 4197:3ccc6d0d52bb

Add a Maintainer.
author Bruno Haible <bruno@clisp.org>
date Mon, 20 Jan 2003 10:02:37 +0000
parents 13207adc1bc9
children b17170552bfc
files ChangeLog gnulib-tool modules/TEMPLATE modules/acl modules/alloca modules/argmatch modules/assert modules/atexit modules/backupfile modules/bcopy modules/bumpalloc modules/c-bs-a modules/c-stack modules/canon-host modules/chown modules/closeout modules/diacrit modules/dirfd modules/dirname modules/dup2 modules/error modules/euidaccess modules/exclude modules/exitfail modules/fatal modules/file-type modules/fileblocks modules/filemode modules/fnmatch modules/fnmatch-gnu modules/fnmatch-posix modules/fpending modules/fsusage modules/ftruncate modules/full-read modules/full-write modules/gcd modules/getdate modules/getgroups modules/gethostname modules/getline modules/getloadavg modules/getopt modules/getpagesize modules/getpass modules/gettext modules/gettime modules/gettimeofday modules/getugroups modules/getusershell modules/group-member modules/hard-locale modules/hash modules/hash-pjw modules/human modules/iconv modules/idcache modules/isdir modules/lchown modules/linebuffer modules/localcharset modules/long-options modules/lstat modules/makepath modules/malloc modules/mbswidth modules/md5 modules/memcasecmp modules/memchr modules/memcmp modules/memcoll modules/memcpy modules/memmove modules/memrchr modules/memset modules/mkdir modules/mkstemp modules/mktime modules/modechange modules/mountlist modules/nanosleep modules/obstack modules/path-concat modules/pathmax modules/physmem modules/posixtm modules/posixver modules/putenv modules/quote modules/quotearg modules/readtokens modules/readutmp modules/realloc modules/regex modules/rename modules/rmdir modules/rpmatch modules/safe-read modules/safe-write modules/same modules/save-cwd modules/savedir modules/setenv modules/settime modules/sha modules/sig2str modules/stat modules/stdbool modules/stdio-safer modules/stpcpy modules/strcase modules/strcspn modules/strdup modules/strerror modules/strftime modules/strndup modules/strnlen modules/strpbrk modules/strstr modules/strtod modules/strtoimax modules/strtol modules/strtoll modules/strtoul modules/strtoull modules/strtoumax modules/strverscmp modules/timespec modules/unicodeio modules/unistd-safer modules/unlocked-io modules/userspec modules/utime modules/version-etc modules/xalloc modules/xgetcwd modules/xgethostname modules/xmemcoll modules/xreadlink modules/xstrtod modules/xstrtoimax modules/xstrtol modules/xstrtoumax modules/yesno
diffstat 144 files changed, 451 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sun Jan 19 14:02:55 2003 +0000
+++ b/ChangeLog	Mon Jan 20 10:02:37 2003 +0000
@@ -1,3 +1,9 @@
+2003-01-19  Bruno Haible  <bruno@clisp.org>
+
+	* gnulib-tool: Recognize option --extract-maintainer.
+	(func_get_maintainer): New function.
+	* modules/*: Add Maintainer entry.
+
 2003-01-16  Bruno Haible  <bruno@clisp.org>
 
 	* MODULES.html.sh: Add a table of contents. Add the module name as
--- a/gnulib-tool	Sun Jan 19 14:02:55 2003 +0000
+++ b/gnulib-tool	Mon Jan 20 10:02:37 2003 +0000
@@ -22,7 +22,7 @@
 
 progname=$0
 package=gnulib
-cvsdatestamp='$Date: 2003-01-13 21:57:21 $'
+cvsdatestamp='$Date: 2003-01-20 10:02:37 $'
 last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'`
 version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'`
 
@@ -57,6 +57,7 @@
        gnulib-tool --extract-autoconf-snippet module
        gnulib-tool --extract-automake-snippet module
        gnulib-tool --extract-include-directive module
+       gnulib-tool --extract-maintainer module
 
 Operation modes:
       --list                print the available module names
@@ -65,15 +66,16 @@
       --create-megatestdir  create a mega scratch package with the given modules
                             one by one and all together
       --test                test the combination of the given modules
-                            (recommended to use CC="gcc -Wall -Werror" here)
+                            (recommended to use CC=\"gcc -Wall\" here)
       --megatest            test the given modules one by one and all together
-                            (recommended to use CC="gcc -Wall -Werror" here)
+                            (recommended to use CC=\"gcc -Wall\" here)
       --extract-description        extract the description
       --extract-filelist           extract the list of files
       --extract-dependencies       extract the dependencies
       --extract-autoconf-snippet   extract the snippet for configure.ac
       --extract-automake-snippet   extract the snippet for lib/Makefile.am
       --extract-include-directive  extract the #include directive
+      --extract-maintainer         report the maintainer(s) inside gnulib
 
 Options:
       --dir=DIRECTORY       specify the target directory
@@ -279,6 +281,12 @@
   sed -e 's/^\(["<]\)/#include \1/'
 }
 
+# func_get_maintainer module
+func_get_maintainer ()
+{
+  sed -n -e "/^Maintainer$sed_extract_prog" < "$gnulib_dir/modules/$1"
+}
+
 # func_create_testdir testdir modules
 func_create_testdir ()
 {
@@ -636,6 +644,16 @@
     done
     ;;
 
+  extract-maintainer )
+    for module
+    do
+      func_verify_module
+      if test -n "$module"; then
+        func_get_maintainer "$module"
+      fi
+    done
+    ;;
+
   * )
     func_fatal_error "unknown operation mode --$mode" ;;
 esac
--- a/modules/TEMPLATE	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/TEMPLATE	Mon Jan 20 10:02:37 2003 +0000
@@ -10,3 +10,5 @@
 
 Include:
 
+Maintainer:
+
--- a/modules/acl	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/acl	Mon Jan 20 10:02:37 2003 +0000
@@ -17,3 +17,6 @@
 Include:
 "acl.h"
 
+Maintainer:
+Paul Eggert, Jim Meyering
+
--- a/modules/alloca	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/alloca	Mon Jan 20 10:02:37 2003 +0000
@@ -25,3 +25,6 @@
 Include:
 #include <alloca.h>
 
+Maintainer:
+bug-gnulib@gnu.org
+
--- a/modules/argmatch	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/argmatch	Mon Jan 20 10:02:37 2003 +0000
@@ -20,3 +20,6 @@
 Include:
 "argmatch.h"
 
+Maintainer:
+all
+
--- a/modules/assert	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/assert	Mon Jan 20 10:02:37 2003 +0000
@@ -14,3 +14,6 @@
 Include:
 <assert.h>
 
+Maintainer:
+Jim Meyering
+
--- a/modules/atexit	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/atexit	Mon Jan 20 10:02:37 2003 +0000
@@ -15,3 +15,6 @@
 Include:
 <stdlib.h>
 
+Maintainer:
+Jim Meyering
+
--- a/modules/backupfile	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/backupfile	Mon Jan 20 10:02:37 2003 +0000
@@ -23,3 +23,6 @@
 Include:
 "backupfile.h"
 
+Maintainer:
+Paul Eggert, Jim Meyering
+
--- a/modules/bcopy	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/bcopy	Mon Jan 20 10:02:37 2003 +0000
@@ -13,3 +13,5 @@
 
 Include:
 
+Maintainer:
+
--- a/modules/bumpalloc	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/bumpalloc	Mon Jan 20 10:02:37 2003 +0000
@@ -15,3 +15,6 @@
 Include:
 "bumpalloc.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/c-bs-a	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/c-bs-a	Mon Jan 20 10:02:37 2003 +0000
@@ -13,3 +13,6 @@
 
 Include:
 
+Maintainer:
+Paul Eggert
+
--- a/modules/c-stack	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/c-stack	Mon Jan 20 10:02:37 2003 +0000
@@ -19,3 +19,6 @@
 Include:
 "c-stack.h"
 
+Maintainer:
+Paul Eggert
+
--- a/modules/canon-host	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/canon-host	Mon Jan 20 10:02:37 2003 +0000
@@ -16,3 +16,6 @@
 
 Include:
 
+Maintainer:
+Jim Meyering
+
--- a/modules/chown	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/chown	Mon Jan 20 10:02:37 2003 +0000
@@ -15,3 +15,6 @@
 Include:
 <unistd.h>
 
+Maintainer:
+Jim Meyering
+
--- a/modules/closeout	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/closeout	Mon Jan 20 10:02:37 2003 +0000
@@ -22,3 +22,6 @@
 Include:
 "closeout.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/diacrit	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/diacrit	Mon Jan 20 10:02:37 2003 +0000
@@ -15,3 +15,6 @@
 Include:
 "diacrit.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/dirfd	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/dirfd	Mon Jan 20 10:02:37 2003 +0000
@@ -17,3 +17,6 @@
 Include:
 "dirfd.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/dirname	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/dirname	Mon Jan 20 10:02:37 2003 +0000
@@ -21,3 +21,6 @@
 Include:
 "dirname.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/dup2	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/dup2	Mon Jan 20 10:02:37 2003 +0000
@@ -15,3 +15,6 @@
 Include:
 <unistd.h>
 
+Maintainer:
+Paul Eggert, Jim Meyering
+
--- a/modules/error	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/error	Mon Jan 20 10:02:37 2003 +0000
@@ -18,3 +18,6 @@
 Include:
 "error.h"
 
+Maintainer:
+all, glibc
+
--- a/modules/euidaccess	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/euidaccess	Mon Jan 20 10:02:37 2003 +0000
@@ -15,3 +15,6 @@
 
 Include:
 
+Maintainer:
+Jim Meyering, glibc
+
--- a/modules/exclude	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/exclude	Mon Jan 20 10:02:37 2003 +0000
@@ -22,3 +22,6 @@
 Include:
 "exclude.h"
 
+Maintainer:
+Paul Eggert
+
--- a/modules/exitfail	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/exitfail	Mon Jan 20 10:02:37 2003 +0000
@@ -17,3 +17,6 @@
 Include:
 "exitfail.h"
 
+Maintainer:
+Paul Eggert
+
--- a/modules/fatal	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/fatal	Mon Jan 20 10:02:37 2003 +0000
@@ -19,3 +19,5 @@
 Include:
 "fatal.h"
 
+Maintainer:
+
--- a/modules/file-type	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/file-type	Mon Jan 20 10:02:37 2003 +0000
@@ -18,3 +18,6 @@
 Include:
 "file-type.h"
 
+Maintainer:
+Paul Eggert, Jim Meyering
+
--- a/modules/fileblocks	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/fileblocks	Mon Jan 20 10:02:37 2003 +0000
@@ -14,3 +14,6 @@
 
 Include:
 
+Maintainer:
+Jim Meyering
+
--- a/modules/filemode	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/filemode	Mon Jan 20 10:02:37 2003 +0000
@@ -18,3 +18,6 @@
 Include:
 "filemode.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/fnmatch	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/fnmatch	Mon Jan 20 10:02:37 2003 +0000
@@ -20,4 +20,8 @@
 DISTCLEANFILES += fnmatch.h
 
 Include:
+<fnmatch.h>
 
+Maintainer:
+all, glibc
+
--- a/modules/fnmatch-gnu	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/fnmatch-gnu	Mon Jan 20 10:02:37 2003 +0000
@@ -14,3 +14,6 @@
 Include:
 "fnmatch.h"
 
+Maintainer:
+all
+
--- a/modules/fnmatch-posix	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/fnmatch-posix	Mon Jan 20 10:02:37 2003 +0000
@@ -14,3 +14,6 @@
 Include:
 "fnmatch.h"
 
+Maintainer:
+all
+
--- a/modules/fpending	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/fpending	Mon Jan 20 10:02:37 2003 +0000
@@ -17,3 +17,6 @@
 Include:
 "__fpending.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/fsusage	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/fsusage	Mon Jan 20 10:02:37 2003 +0000
@@ -22,3 +22,6 @@
 Include:
 "fsusage.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/ftruncate	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/ftruncate	Mon Jan 20 10:02:37 2003 +0000
@@ -15,3 +15,6 @@
 Include:
 <unistd.h>
 
+Maintainer:
+Jim Meyering
+
--- a/modules/full-read	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/full-read	Mon Jan 20 10:02:37 2003 +0000
@@ -17,3 +17,6 @@
 Include:
 "full-read.h"
 
+Maintainer:
+Jim Meyering, Bruno Haible
+
--- a/modules/full-write	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/full-write	Mon Jan 20 10:02:37 2003 +0000
@@ -16,3 +16,6 @@
 Include:
 "full-write.h"
 
+Maintainer:
+Jim Meyering, Bruno Haible
+
--- a/modules/gcd	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/gcd	Mon Jan 20 10:02:37 2003 +0000
@@ -15,3 +15,6 @@
 Include:
 "gcd.h"
 
+Maintainer:
+Bruno Haible
+
--- a/modules/getdate	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/getdate	Mon Jan 20 10:02:37 2003 +0000
@@ -22,3 +22,6 @@
 Include:
 "getdate.h"
 
+Maintainer:
+Paul Eggert
+
--- a/modules/getgroups	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/getgroups	Mon Jan 20 10:02:37 2003 +0000
@@ -16,3 +16,6 @@
 Include:
 <unistd.h>
 
+Maintainer:
+Jim Meyering
+
--- a/modules/gethostname	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/gethostname	Mon Jan 20 10:02:37 2003 +0000
@@ -14,3 +14,6 @@
 
 Include:
 
+Maintainer:
+all
+
--- a/modules/getline	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/getline	Mon Jan 20 10:02:37 2003 +0000
@@ -18,3 +18,6 @@
 Include:
 "getline.h"
 
+Maintainer:
+all
+
--- a/modules/getloadavg	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/getloadavg	Mon Jan 20 10:02:37 2003 +0000
@@ -14,3 +14,6 @@
 
 Include:
 
+Maintainer:
+Jim Meyering
+
--- a/modules/getopt	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/getopt	Mon Jan 20 10:02:37 2003 +0000
@@ -19,3 +19,6 @@
 Include:
 "getopt.h"
 
+Maintainer:
+all, glibc
+
--- a/modules/getpagesize	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/getpagesize	Mon Jan 20 10:02:37 2003 +0000
@@ -16,3 +16,6 @@
 Include:
 "getpagesize.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/getpass	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/getpass	Mon Jan 20 10:02:37 2003 +0000
@@ -16,3 +16,6 @@
 
 Include:
 
+Maintainer:
+Jim Meyering, glibc
+
--- a/modules/gettext	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/gettext	Mon Jan 20 10:02:37 2003 +0000
@@ -33,3 +33,6 @@
 Include:
 "gettext.h"
 
+Maintainer:
+Bruno Haible
+
--- a/modules/gettime	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/gettime	Mon Jan 20 10:02:37 2003 +0000
@@ -18,3 +18,6 @@
 
 Include:
 
+Maintainer:
+Paul Eggert, Jim Meyering
+
--- a/modules/gettimeofday	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/gettimeofday	Mon Jan 20 10:02:37 2003 +0000
@@ -15,3 +15,6 @@
 Include:
 <sys/time.h>
 
+Maintainer:
+Jim Meyering
+
--- a/modules/getugroups	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/getugroups	Mon Jan 20 10:02:37 2003 +0000
@@ -15,3 +15,6 @@
 
 Include:
 
+Maintainer:
+Jim Meyering
+
--- a/modules/getusershell	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/getusershell	Mon Jan 20 10:02:37 2003 +0000
@@ -16,3 +16,6 @@
 
 Include:
 
+Maintainer:
+Jim Meyering
+
--- a/modules/group-member	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/group-member	Mon Jan 20 10:02:37 2003 +0000
@@ -18,3 +18,6 @@
 Include:
 "group-member.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/hard-locale	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/hard-locale	Mon Jan 20 10:02:37 2003 +0000
@@ -17,3 +17,6 @@
 Include:
 "hard-locale.h"
 
+Maintainer:
+Paul Eggert
+
--- a/modules/hash	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/hash	Mon Jan 20 10:02:37 2003 +0000
@@ -20,3 +20,6 @@
 Include:
 "hash.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/hash-pjw	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/hash-pjw	Mon Jan 20 10:02:37 2003 +0000
@@ -15,3 +15,6 @@
 Include:
 "hash-pjw.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/human	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/human	Mon Jan 20 10:02:37 2003 +0000
@@ -26,3 +26,6 @@
 Include:
 "human.h"
 
+Maintainer:
+Paul Eggert
+
--- a/modules/iconv	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/iconv	Mon Jan 20 10:02:37 2003 +0000
@@ -18,3 +18,6 @@
 Include:
 <iconv.h>
 
+Maintainer:
+Bruno Haible
+
--- a/modules/idcache	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/idcache	Mon Jan 20 10:02:37 2003 +0000
@@ -16,3 +16,6 @@
 
 Include:
 
+Maintainer:
+Jim Meyering
+
--- a/modules/isdir	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/isdir	Mon Jan 20 10:02:37 2003 +0000
@@ -15,3 +15,6 @@
 
 Include:
 
+Maintainer:
+Jim Meyering
+
--- a/modules/lchown	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/lchown	Mon Jan 20 10:02:37 2003 +0000
@@ -17,3 +17,6 @@
 
 Include:
 
+Maintainer:
+Jim Meyering
+
--- a/modules/linebuffer	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/linebuffer	Mon Jan 20 10:02:37 2003 +0000
@@ -17,3 +17,6 @@
 Include:
 "linebuffer.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/localcharset	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/localcharset	Mon Jan 20 10:02:37 2003 +0000
@@ -72,3 +72,6 @@
 Include:
 "localcharset.h"
 
+Maintainer:
+Bruno Haible
+
--- a/modules/long-options	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/long-options	Mon Jan 20 10:02:37 2003 +0000
@@ -18,3 +18,6 @@
 Include:
 "long-options.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/lstat	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/lstat	Mon Jan 20 10:02:37 2003 +0000
@@ -17,3 +17,6 @@
 Include:
 <sys/stat.h>
 
+Maintainer:
+Jim Meyering
+
--- a/modules/makepath	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/makepath	Mon Jan 20 10:02:37 2003 +0000
@@ -25,3 +25,6 @@
 Include:
 "makepath.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/malloc	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/malloc	Mon Jan 20 10:02:37 2003 +0000
@@ -15,3 +15,6 @@
 Include:
 <stdlib.h>
 
+Maintainer:
+Jim Meyering
+
--- a/modules/mbswidth	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/mbswidth	Mon Jan 20 10:02:37 2003 +0000
@@ -19,3 +19,6 @@
 Include:
 "mbswidth.h"
 
+Maintainer:
+Bruno Haible
+
--- a/modules/md5	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/md5	Mon Jan 20 10:02:37 2003 +0000
@@ -18,3 +18,6 @@
 Include:
 "md5.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/memcasecmp	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/memcasecmp	Mon Jan 20 10:02:37 2003 +0000
@@ -17,3 +17,6 @@
 Include:
 "memcasecmp.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/memchr	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/memchr	Mon Jan 20 10:02:37 2003 +0000
@@ -15,3 +15,6 @@
 Include:
 <string.h>
 
+Maintainer:
+Jim Meyering, glibc
+
--- a/modules/memcmp	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/memcmp	Mon Jan 20 10:02:37 2003 +0000
@@ -15,3 +15,6 @@
 Include:
 <string.h>
 
+Maintainer:
+Jim Meyering, glibc
+
--- a/modules/memcoll	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/memcoll	Mon Jan 20 10:02:37 2003 +0000
@@ -17,3 +17,6 @@
 Include:
 "memcoll.h"
 
+Maintainer:
+Paul Eggert, Jim Meyering
+
--- a/modules/memcpy	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/memcpy	Mon Jan 20 10:02:37 2003 +0000
@@ -15,3 +15,6 @@
 Include:
 <string.h>
 
+Maintainer:
+Jim Meyering
+
--- a/modules/memmove	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/memmove	Mon Jan 20 10:02:37 2003 +0000
@@ -15,3 +15,6 @@
 Include:
 <string.h>
 
+Maintainer:
+Jim Meyering
+
--- a/modules/memrchr	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/memrchr	Mon Jan 20 10:02:37 2003 +0000
@@ -14,3 +14,6 @@
 
 Include:
 
+Maintainer:
+Jim Meyering, glibc
+
--- a/modules/memset	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/memset	Mon Jan 20 10:02:37 2003 +0000
@@ -15,3 +15,6 @@
 Include:
 <string.h>
 
+Maintainer:
+Jim Meyering
+
--- a/modules/mkdir	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/mkdir	Mon Jan 20 10:02:37 2003 +0000
@@ -17,3 +17,6 @@
 Include:
 <sys/stat.h>
 
+Maintainer:
+Jim Meyering
+
--- a/modules/mkstemp	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/mkstemp	Mon Jan 20 10:02:37 2003 +0000
@@ -20,3 +20,6 @@
 Include:
 <stdlib.h>
 
+Maintainer:
+Jim Meyering
+
--- a/modules/mktime	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/mktime	Mon Jan 20 10:02:37 2003 +0000
@@ -15,3 +15,6 @@
 Include:
 <time.h>
 
+Maintainer:
+Paul Eggert, Jim Meyering, glibc
+
--- a/modules/modechange	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/modechange	Mon Jan 20 10:02:37 2003 +0000
@@ -19,3 +19,6 @@
 Include:
 "modechange.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/mountlist	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/mountlist	Mon Jan 20 10:02:37 2003 +0000
@@ -21,3 +21,6 @@
 Include:
 "mountlist.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/nanosleep	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/nanosleep	Mon Jan 20 10:02:37 2003 +0000
@@ -16,3 +16,6 @@
 Include:
 <time.h>
 
+Maintainer:
+Jim Meyering
+
--- a/modules/obstack	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/obstack	Mon Jan 20 10:02:37 2003 +0000
@@ -17,3 +17,6 @@
 Include:
 "obstack.h"
 
+Maintainer:
+all, glibc
+
--- a/modules/path-concat	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/path-concat	Mon Jan 20 10:02:37 2003 +0000
@@ -22,3 +22,6 @@
 Include:
 "path-concat.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/pathmax	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/pathmax	Mon Jan 20 10:02:37 2003 +0000
@@ -16,3 +16,6 @@
 Include:
 "pathmax.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/physmem	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/physmem	Mon Jan 20 10:02:37 2003 +0000
@@ -17,3 +17,6 @@
 Include:
 "physmem.h"
 
+Maintainer:
+Paul Eggert, Jim Meyering
+
--- a/modules/posixtm	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/posixtm	Mon Jan 20 10:02:37 2003 +0000
@@ -18,3 +18,6 @@
 Include:
 "posixtm.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/posixver	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/posixver	Mon Jan 20 10:02:37 2003 +0000
@@ -18,3 +18,6 @@
 Include:
 "posixver.h"
 
+Maintainer:
+Paul Eggert, Jim Meyering
+
--- a/modules/putenv	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/putenv	Mon Jan 20 10:02:37 2003 +0000
@@ -14,3 +14,6 @@
 
 Include:
 
+Maintainer:
+Jim Meyering
+
--- a/modules/quote	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/quote	Mon Jan 20 10:02:37 2003 +0000
@@ -18,3 +18,6 @@
 Include:
 "quote.h"
 
+Maintainer:
+Paul Eggert
+
--- a/modules/quotearg	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/quotearg	Mon Jan 20 10:02:37 2003 +0000
@@ -21,3 +21,6 @@
 Include:
 "quotearg.h"
 
+Maintainer:
+Paul Eggert
+
--- a/modules/readtokens	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/readtokens	Mon Jan 20 10:02:37 2003 +0000
@@ -19,3 +19,6 @@
 Include:
 "readtokens.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/readutmp	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/readutmp	Mon Jan 20 10:02:37 2003 +0000
@@ -19,3 +19,6 @@
 Include:
 "readutmp.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/realloc	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/realloc	Mon Jan 20 10:02:37 2003 +0000
@@ -15,3 +15,6 @@
 Include:
 <stdlib.h>
 
+Maintainer:
+Jim Meyering
+
--- a/modules/regex	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/regex	Mon Jan 20 10:02:37 2003 +0000
@@ -20,3 +20,6 @@
 Include:
 "regex.h"
 
+Maintainer:
+all
+
--- a/modules/rename	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/rename	Mon Jan 20 10:02:37 2003 +0000
@@ -17,3 +17,6 @@
 Include:
 <stdio.h>
 
+Maintainer:
+Jim Meyering
+
--- a/modules/rmdir	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/rmdir	Mon Jan 20 10:02:37 2003 +0000
@@ -15,3 +15,6 @@
 Include:
 <unistd.h>
 
+Maintainer:
+Jim Meyering
+
--- a/modules/rpmatch	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/rpmatch	Mon Jan 20 10:02:37 2003 +0000
@@ -16,3 +16,6 @@
 
 Include:
 
+Maintainer:
+Jim Meyering
+
--- a/modules/safe-read	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/safe-read	Mon Jan 20 10:02:37 2003 +0000
@@ -17,3 +17,6 @@
 Include:
 "safe-read.h"
 
+Maintainer:
+Jim Meyering, Bruno Haible
+
--- a/modules/safe-write	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/safe-write	Mon Jan 20 10:02:37 2003 +0000
@@ -18,3 +18,6 @@
 Include:
 "safe-write.h"
 
+Maintainer:
+Jim Meyering, Bruno Haible
+
--- a/modules/same	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/same	Mon Jan 20 10:02:37 2003 +0000
@@ -21,3 +21,6 @@
 Include:
 "same.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/save-cwd	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/save-cwd	Mon Jan 20 10:02:37 2003 +0000
@@ -18,3 +18,6 @@
 Include:
 "save-cwd.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/savedir	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/savedir	Mon Jan 20 10:02:37 2003 +0000
@@ -18,3 +18,6 @@
 Include:
 "savedir.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/setenv	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/setenv	Mon Jan 20 10:02:37 2003 +0000
@@ -20,3 +20,6 @@
 Include:
 "setenv.h"
 
+Maintainer:
+Bruno Haible
+
--- a/modules/settime	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/settime	Mon Jan 20 10:02:37 2003 +0000
@@ -17,3 +17,6 @@
 
 Include:
 
+Maintainer:
+Paul Eggert, Jim Meyering
+
--- a/modules/sha	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/sha	Mon Jan 20 10:02:37 2003 +0000
@@ -19,3 +19,6 @@
 Include:
 "sha.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/sig2str	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/sig2str	Mon Jan 20 10:02:37 2003 +0000
@@ -17,3 +17,6 @@
 Include:
 "sig2str.h"
 
+Maintainer:
+Paul Eggert, Jim Meyering
+
--- a/modules/stat	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/stat	Mon Jan 20 10:02:37 2003 +0000
@@ -15,3 +15,6 @@
 Include:
 <sys/stat.h>
 
+Maintainer:
+Jim Meyering
+
--- a/modules/stdbool	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/stdbool	Mon Jan 20 10:02:37 2003 +0000
@@ -24,3 +24,6 @@
 Include:
 #include <stdbool.h>
 
+Maintainer:
+Bruno Haible
+
--- a/modules/stdio-safer	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/stdio-safer	Mon Jan 20 10:02:37 2003 +0000
@@ -18,3 +18,6 @@
 Include:
 "stdio-safer.h"
 
+Maintainer:
+Paul Eggert, Jim Meyering
+
--- a/modules/stpcpy	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/stpcpy	Mon Jan 20 10:02:37 2003 +0000
@@ -17,3 +17,6 @@
 Include:
 "stpcpy.h"
 
+Maintainer:
+Bruno Haible, glibc
+
--- a/modules/strcase	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/strcase	Mon Jan 20 10:02:37 2003 +0000
@@ -17,3 +17,6 @@
 Include:
 "strcase.h"
 
+Maintainer:
+Bruno Haible
+
--- a/modules/strcspn	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/strcspn	Mon Jan 20 10:02:37 2003 +0000
@@ -15,3 +15,6 @@
 Include:
 <string.h>
 
+Maintainer:
+Bruno Haible, glibc
+
--- a/modules/strdup	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/strdup	Mon Jan 20 10:02:37 2003 +0000
@@ -14,3 +14,6 @@
 
 Include:
 
+Maintainer:
+all, glibc
+
--- a/modules/strerror	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/strerror	Mon Jan 20 10:02:37 2003 +0000
@@ -15,3 +15,6 @@
 Include:
 <string.h>
 
+Maintainer:
+all
+
--- a/modules/strftime	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/strftime	Mon Jan 20 10:02:37 2003 +0000
@@ -18,3 +18,6 @@
 Include:
 <time.h>
 
+Maintainer:
+glibc
+
--- a/modules/strndup	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/strndup	Mon Jan 20 10:02:37 2003 +0000
@@ -15,3 +15,6 @@
 
 Include:
 
+Maintainer:
+glibc
+
--- a/modules/strnlen	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/strnlen	Mon Jan 20 10:02:37 2003 +0000
@@ -14,3 +14,6 @@
 
 Include:
 
+Maintainer:
+glibc
+
--- a/modules/strpbrk	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/strpbrk	Mon Jan 20 10:02:37 2003 +0000
@@ -17,3 +17,6 @@
 Include:
 "strpbrk.h"
 
+Maintainer:
+Bruno Haible, glibc
+
--- a/modules/strstr	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/strstr	Mon Jan 20 10:02:37 2003 +0000
@@ -16,3 +16,6 @@
 Include:
 "strstr.h"
 
+Maintainer:
+Bruno Haible, glibc
+
--- a/modules/strtod	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/strtod	Mon Jan 20 10:02:37 2003 +0000
@@ -16,3 +16,6 @@
 Include:
 <stdlib.h>
 
+Maintainer:
+all
+
--- a/modules/strtoimax	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/strtoimax	Mon Jan 20 10:02:37 2003 +0000
@@ -19,3 +19,6 @@
 
 Include:
 
+Maintainer:
+Paul Eggert
+
--- a/modules/strtol	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/strtol	Mon Jan 20 10:02:37 2003 +0000
@@ -15,3 +15,6 @@
 Include:
 <stdlib.h>
 
+Maintainer:
+glibc
+
--- a/modules/strtoll	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/strtoll	Mon Jan 20 10:02:37 2003 +0000
@@ -17,3 +17,6 @@
 Include:
 <stdlib.h>
 
+Maintainer:
+glibc
+
--- a/modules/strtoul	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/strtoul	Mon Jan 20 10:02:37 2003 +0000
@@ -16,3 +16,6 @@
 Include:
 <stdlib.h>
 
+Maintainer:
+glibc
+
--- a/modules/strtoull	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/strtoull	Mon Jan 20 10:02:37 2003 +0000
@@ -17,3 +17,6 @@
 Include:
 <stdlib.h>
 
+Maintainer:
+glibc
+
--- a/modules/strtoumax	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/strtoumax	Mon Jan 20 10:02:37 2003 +0000
@@ -20,3 +20,6 @@
 
 Include:
 
+Maintainer:
+Paul Eggert
+
--- a/modules/strverscmp	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/strverscmp	Mon Jan 20 10:02:37 2003 +0000
@@ -17,3 +17,6 @@
 Include:
 "strverscmp.h"
 
+Maintainer:
+Jim Meyering, glibc
+
--- a/modules/timespec	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/timespec	Mon Jan 20 10:02:37 2003 +0000
@@ -17,3 +17,6 @@
 Include:
 "timespec.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/unicodeio	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/unicodeio	Mon Jan 20 10:02:37 2003 +0000
@@ -21,3 +21,6 @@
 Include:
 "unicodeio.h"
 
+Maintainer:
+Bruno Haible
+
--- a/modules/unistd-safer	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/unistd-safer	Mon Jan 20 10:02:37 2003 +0000
@@ -17,3 +17,6 @@
 Include:
 "unistd-safer.h"
 
+Maintainer:
+Paul Eggert, Jim Meyering
+
--- a/modules/unlocked-io	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/unlocked-io	Mon Jan 20 10:02:37 2003 +0000
@@ -16,3 +16,6 @@
 Include:
 "unlocked-io.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/userspec	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/userspec	Mon Jan 20 10:02:37 2003 +0000
@@ -21,3 +21,6 @@
 
 Include:
 
+Maintainer:
+Jim Meyering
+
--- a/modules/utime	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/utime	Mon Jan 20 10:02:37 2003 +0000
@@ -23,3 +23,6 @@
 # include <sys/utime.h>
 #endif
 
+Maintainer:
+Jim Meyering
+
--- a/modules/version-etc	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/version-etc	Mon Jan 20 10:02:37 2003 +0000
@@ -17,3 +17,6 @@
 Include:
 "version-etc.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/xalloc	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/xalloc	Mon Jan 20 10:02:37 2003 +0000
@@ -22,3 +22,6 @@
 Include:
 "xalloc.h"
 
+Maintainer:
+Bruno Haible
+
--- a/modules/xgetcwd	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/xgetcwd	Mon Jan 20 10:02:37 2003 +0000
@@ -20,3 +20,6 @@
 Include:
 "xgetcwd.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/xgethostname	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/xgethostname	Mon Jan 20 10:02:37 2003 +0000
@@ -16,3 +16,6 @@
 
 Include:
 
+Maintainer:
+Jim Meyering
+
--- a/modules/xmemcoll	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/xmemcoll	Mon Jan 20 10:02:37 2003 +0000
@@ -19,3 +19,6 @@
 Include:
 "xmemcoll.h"
 
+Maintainer:
+Paul Eggert, Jim Meyering
+
--- a/modules/xreadlink	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/xreadlink	Mon Jan 20 10:02:37 2003 +0000
@@ -18,3 +18,6 @@
 Include:
 "xreadlink.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/xstrtod	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/xstrtod	Mon Jan 20 10:02:37 2003 +0000
@@ -17,3 +17,6 @@
 Include:
 "xstrtod.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/xstrtoimax	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/xstrtoimax	Mon Jan 20 10:02:37 2003 +0000
@@ -19,3 +19,6 @@
 Include:
 "xstrtol.h"
 
+Maintainer:
+Paul Eggert
+
--- a/modules/xstrtol	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/xstrtol	Mon Jan 20 10:02:37 2003 +0000
@@ -24,3 +24,6 @@
 Include:
 "xstrtol.h"
 
+Maintainer:
+Jim Meyering
+
--- a/modules/xstrtoumax	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/xstrtoumax	Mon Jan 20 10:02:37 2003 +0000
@@ -18,3 +18,6 @@
 Include:
 "xstrtol.h"
 
+Maintainer:
+Paul Eggert
+
--- a/modules/yesno	Sun Jan 19 14:02:55 2003 +0000
+++ b/modules/yesno	Mon Jan 20 10:02:37 2003 +0000
@@ -18,3 +18,6 @@
 
 Include:
 
+Maintainer:
+Jim Meyering
+