diff options
40 files changed, 104 insertions, 43 deletions
@@ -1,3 +1,7 @@ +2018-03-13 Arnold D. Robbins <arnold@skeeve.com> + + * debug.c, nonposix.h: Update copyright year. + 2018-03-11 Arnold D. Robbins <arnold@skeeve.com> * compile, config.guess, config.sub, configure.ac, depcomp, @@ -3,7 +3,7 @@ */ /* - * Copyright (C) 2004, 2010-2013, 2016-2017 the Free Software Foundation, Inc. + * Copyright (C) 2004, 2010-2013, 2016-2018 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. diff --git a/doc/ChangeLog b/doc/ChangeLog index 45c61dd5..107414eb 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,7 @@ +2018-03-13 Arnold D. Robbins <arnold@skeeve.com> + + * gawkworkflow.texi: Fix update month. + 2018-02-25 Arnold D. Robbins <arnold@skeeve.com> * 4.2.1: Release tar ball made. diff --git a/doc/gawkworkflow.texi b/doc/gawkworkflow.texi index 88d5e5db..2b971395 100644 --- a/doc/gawkworkflow.texi +++ b/doc/gawkworkflow.texi @@ -28,7 +28,7 @@ @c applies to and all the info about who's publishing this edition @c These apply across the board. -@set UPDATE-MONTH April, 2017 +@set UPDATE-MONTH November, 2017 @set TITLE Participating in @command{gawk} Development @set EDITION 0.7 diff --git a/extension/ChangeLog b/extension/ChangeLog index c793fc21..0ac4457d 100644 --- a/extension/ChangeLog +++ b/extension/ChangeLog @@ -1,3 +1,12 @@ +2018-03-13 Arnold D. Robbins <arnold@skeeve.com> + + * filefuncs.3am, filefuncs.c, fnmatch.3am, fnmatch.c, + fork.3am, fork.c, inplace.3am, inplace.c, intdiv.c, + ordchr.3am, ordchr.c, readdir.3am, readdir.c, readdir_test.c, + readfile.3am, readfile.c, revoutput.3am, revoutput.c, + revtwoway.3am, revtwoway.c, rwarray.3am, rwarray.c, + rwarray0.c, testext.c, time.3am, time.c: Update copyright year. + 2018-03-07 gettextize <bug-gnu-gettext@gnu.org> * Makefile.am (SUBDIRS): Add po. diff --git a/extension/filefuncs.3am b/extension/filefuncs.3am index e5be1e99..36acf649 100644 --- a/extension/filefuncs.3am +++ b/extension/filefuncs.3am @@ -1,4 +1,4 @@ -.TH FILEFUNCS 3am "Jan 15 2013" "Free Software Foundation" "GNU Awk Extension Modules" +.TH FILEFUNCS 3am "Feb 21 2018" "Free Software Foundation" "GNU Awk Extension Modules" .SH NAME filefuncs \- provide some file related functionality to gawk .SH SYNOPSIS @@ -346,7 +346,7 @@ distribution for an example. Arnold Robbins, .BR arnold@skeeve.com . .SH COPYING PERMISSIONS -Copyright \(co 2012, 2013, +Copyright \(co 2012, 2013, 2018, Free Software Foundation, Inc. .PP Permission is granted to make and distribute verbatim copies of diff --git a/extension/filefuncs.c b/extension/filefuncs.c index 017256a4..1cf37453 100644 --- a/extension/filefuncs.c +++ b/extension/filefuncs.c @@ -10,7 +10,7 @@ */ /* - * Copyright (C) 2001, 2004, 2005, 2010-2017 + * Copyright (C) 2001, 2004, 2005, 2010-2018 * the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the diff --git a/extension/fnmatch.3am b/extension/fnmatch.3am index d82a154d..c9e2b82d 100644 --- a/extension/fnmatch.3am +++ b/extension/fnmatch.3am @@ -1,4 +1,4 @@ -.TH FNMATCH 3am "Jan 15 2013" "Free Software Foundation" "GNU Awk Extension Modules" +.TH FNMATCH 3am "Feb 21 2018" "Free Software Foundation" "GNU Awk Extension Modules" .SH NAME fnmatch \- compare a string against a filename wildcard .SH SYNOPSIS @@ -101,7 +101,7 @@ if (fnmatch("*.a", "foo.c", flags) == FNM_NOMATCH) Arnold Robbins, .BR arnold@skeeve.com . .SH COPYING PERMISSIONS -Copyright \(co 2012, 2013, +Copyright \(co 2012, 2013, 2018, Free Software Foundation, Inc. .PP Permission is granted to make and distribute verbatim copies of diff --git a/extension/fnmatch.c b/extension/fnmatch.c index 9e39e433..bf7d124f 100644 --- a/extension/fnmatch.c +++ b/extension/fnmatch.c @@ -7,7 +7,7 @@ */ /* - * Copyright (C) 2012, 2013 the Free Software Foundation, Inc. + * Copyright (C) 2012, 2013, 2018 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. diff --git a/extension/fork.3am b/extension/fork.3am index 14e3e1fc..31daa240 100644 --- a/extension/fork.3am +++ b/extension/fork.3am @@ -1,4 +1,4 @@ -.TH FORK 3am "Jan 15 2013" "Free Software Foundation" "GNU Awk Extension Modules" +.TH FORK 3am "Feb 02 2018" "Free Software Foundation" "GNU Awk Extension Modules" .SH NAME fork, wait, waitpid \- basic process management .SH SYNOPSIS @@ -74,7 +74,7 @@ else Arnold Robbins, .BR arnold@skeeve.com . .SH COPYING PERMISSIONS -Copyright \(co 2012, 2013, +Copyright \(co 2012, 2013, 2018, Free Software Foundation, Inc. .PP Permission is granted to make and distribute verbatim copies of diff --git a/extension/fork.c b/extension/fork.c index 9ff758d5..6fa6f0fa 100644 --- a/extension/fork.c +++ b/extension/fork.c @@ -6,7 +6,8 @@ */ /* - * Copyright (C) 2001, 2004, 2011, 2012, 2013 the Free Software Foundation, Inc. + * Copyright (C) 2001, 2004, 2011, 2012, 2013, 2018 + * the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. diff --git a/extension/inplace.3am b/extension/inplace.3am index 0d1d535d..48fac54a 100644 --- a/extension/inplace.3am +++ b/extension/inplace.3am @@ -1,4 +1,4 @@ -.TH INPLACE 3am "Jun 17 2015" "Free Software Foundation" "GNU Awk Extension Modules" +.TH INPLACE 3am "Feb 02 2018" "Free Software Foundation" "GNU Awk Extension Modules" .SH NAME inplace \- emulate sed/perl/ruby in-place editing .SH SYNOPSIS @@ -66,7 +66,7 @@ gawk -i inplace -f \f(CIscriptfile\fP files ... Andrew Schorr, .BR schorr@telemetry-investments.com . .SH COPYING PERMISSIONS -Copyright \(co 2012, 2013, 2015 +Copyright \(co 2012, 2013, 2015, 2018, Free Software Foundation, Inc. .PP Permission is granted to make and distribute verbatim copies of diff --git a/extension/inplace.c b/extension/inplace.c index daed0654..516edc97 100644 --- a/extension/inplace.c +++ b/extension/inplace.c @@ -3,7 +3,7 @@ */ /* - * Copyright (C) 2013-2015 the Free Software Foundation, Inc. + * Copyright (C) 2013-2015, 2018, the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. diff --git a/extension/intdiv.c b/extension/intdiv.c index bd0919cc..4e3ae50d 100644 --- a/extension/intdiv.c +++ b/extension/intdiv.c @@ -1,3 +1,28 @@ +/* + * intdiv.c - Provide integer div/mod for MPFR. + */ + +/* + * Copyright (C) 2017, 2018, the Free Software Foundation, Inc. + * + * This file is part of GAWK, the GNU implementation of the + * AWK Programming Language. + * + * GAWK is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * GAWK is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + */ + #ifdef HAVE_CONFIG_H #include <config.h> #endif diff --git a/extension/ordchr.3am b/extension/ordchr.3am index 186cf616..8831ab57 100644 --- a/extension/ordchr.3am +++ b/extension/ordchr.3am @@ -1,4 +1,4 @@ -.TH ORDCHR 3am "Jan 15 2013" "Free Software Foundation" "GNU Awk Extension Modules" +.TH ORDCHR 3am "Feb 02 2018" "Free Software Foundation" "GNU Awk Extension Modules" .SH NAME ordchr \- convert characters to strings and vice versa .SH SYNOPSIS @@ -54,7 +54,7 @@ printf("The string value of 65 is %s\en", chr(65)) Arnold Robbins, .BR arnold@skeeve.com . .SH COPYING PERMISSIONS -Copyright \(co 2012, 2013, +Copyright \(co 2012, 2013, 2018, Free Software Foundation, Inc. .PP Permission is granted to make and distribute verbatim copies of diff --git a/extension/ordchr.c b/extension/ordchr.c index f0e90562..d9543126 100644 --- a/extension/ordchr.c +++ b/extension/ordchr.c @@ -9,7 +9,8 @@ */ /* - * Copyright (C) 2001, 2004, 2011, 2012, 2013 the Free Software Foundation, Inc. + * Copyright (C) 2001, 2004, 2011, 2012, 2013, 2018 + * the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. diff --git a/extension/readdir.3am b/extension/readdir.3am index cbc221df..9cec8606 100644 --- a/extension/readdir.3am +++ b/extension/readdir.3am @@ -1,4 +1,4 @@ -.TH READDIR 3am "Jan 15 2013" "Free Software Foundation" "GNU Awk Extension Modules" +.TH READDIR 3am "Feb 02 2018" "Free Software Foundation" "GNU Awk Extension Modules" .SH NAME readdir \- directory input parser for gawk .SH SYNOPSIS @@ -81,7 +81,7 @@ BEGIN { FS = "/" } Arnold Robbins, .BR arnold@skeeve.com . .SH COPYING PERMISSIONS -Copyright \(co 2012, 2013, +Copyright \(co 2012, 2013, 2018, Free Software Foundation, Inc. .PP Permission is granted to make and distribute verbatim copies of diff --git a/extension/readdir.c b/extension/readdir.c index c4aa7b06..e8deecdd 100644 --- a/extension/readdir.c +++ b/extension/readdir.c @@ -10,7 +10,7 @@ */ /* - * Copyright (C) 2012-2014 the Free Software Foundation, Inc. + * Copyright (C) 2012-2014, 2018 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. diff --git a/extension/readdir_test.c b/extension/readdir_test.c index a9faa548..074d4ede 100644 --- a/extension/readdir_test.c +++ b/extension/readdir_test.c @@ -10,7 +10,7 @@ */ /* - * Copyright (C) 2012-2014, 2017 the Free Software Foundation, Inc. + * Copyright (C) 2012-2014, 2017, 2018 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. diff --git a/extension/readfile.3am b/extension/readfile.3am index a10815a4..8752bd53 100644 --- a/extension/readfile.3am +++ b/extension/readfile.3am @@ -1,4 +1,4 @@ -.TH READFILE 3am "Mar 24 2013" "Free Software Foundation" "GNU Awk Extension Modules" +.TH READFILE 3am "Feb 02 2018" "Free Software Foundation" "GNU Awk Extension Modules" .SH NAME readfile \- return the entire contents of a file as a string .SH SYNOPSIS @@ -63,7 +63,7 @@ if (contents == "" && ERRNO != "") { Arnold Robbins, .BR arnold@skeeve.com . .SH COPYING PERMISSIONS -Copyright \(co 2012, 2013, 2014, +Copyright \(co 2012, 2013, 2014, 2018, Free Software Foundation, Inc. .PP Permission is granted to make and distribute verbatim copies of diff --git a/extension/readfile.c b/extension/readfile.c index 99a12b45..6c3307cd 100644 --- a/extension/readfile.c +++ b/extension/readfile.c @@ -12,7 +12,7 @@ */ /* - * Copyright (C) 2002, 2003, 2004, 2011, 2012, 2013, 2014 + * Copyright (C) 2002, 2003, 2004, 2011, 2012, 2013, 2014, 2018 * the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the diff --git a/extension/revoutput.3am b/extension/revoutput.3am index fbf33dbe..5eec60e9 100644 --- a/extension/revoutput.3am +++ b/extension/revoutput.3am @@ -1,4 +1,4 @@ -.TH REVOUTPUT 3am "Aug 02 2015" "Free Software Foundation" "GNU Awk Extension Modules" +.TH REVOUTPUT 3am "Feb 21 2018" "Free Software Foundation" "GNU Awk Extension Modules" .SH NAME revoutput \- Reverse output strings sample extension .SH SYNOPSIS @@ -52,7 +52,7 @@ This extension does not affect the default standard output. Arnold Robbins, .BR arnold@skeeve.com . .SH COPYING PERMISSIONS -Copyright \(co 2012, 2013, +Copyright \(co 2012, 2013, 2018, Free Software Foundation, Inc. .PP Permission is granted to make and distribute verbatim copies of diff --git a/extension/revoutput.c b/extension/revoutput.c index 20f886e4..c50616d0 100644 --- a/extension/revoutput.c +++ b/extension/revoutput.c @@ -7,7 +7,7 @@ */ /* - * Copyright (C) 2012, 2013, 2015 the Free Software Foundation, Inc. + * Copyright (C) 2012, 2013, 2015, 2018 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. diff --git a/extension/revtwoway.3am b/extension/revtwoway.3am index 4aa71f7f..c7312641 100644 --- a/extension/revtwoway.3am +++ b/extension/revtwoway.3am @@ -1,4 +1,4 @@ -.TH REVTWOWAY 3am "Jan 15 2013" "Free Software Foundation" "GNU Awk Extension Modules" +.TH REVTWOWAY 3am "Feb 21 2018" "Free Software Foundation" "GNU Awk Extension Modules" .SH NAME revtwoway \- Reverse strings sample two-way processor extension .SH SYNOPSIS @@ -40,7 +40,7 @@ it may also be mildly amusing. Arnold Robbins, .BR arnold@skeeve.com . .SH COPYING PERMISSIONS -Copyright \(co 2012, 2013, +Copyright \(co 2012, 2013, 2018, Free Software Foundation, Inc. .PP Permission is granted to make and distribute verbatim copies of diff --git a/extension/revtwoway.c b/extension/revtwoway.c index 5d4fb0fc..ebb9692e 100644 --- a/extension/revtwoway.c +++ b/extension/revtwoway.c @@ -7,7 +7,7 @@ */ /* - * Copyright (C) 2012-2014, 2016 the Free Software Foundation, Inc. + * Copyright (C) 2012-2014, 2016, 2018 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. diff --git a/extension/rwarray.3am b/extension/rwarray.3am index e8714460..f17ffaa9 100644 --- a/extension/rwarray.3am +++ b/extension/rwarray.3am @@ -1,4 +1,4 @@ -.TH RWARRAY 3am "Jan 15 2013" "Free Software Foundation" "GNU Awk Extension Modules" +.TH RWARRAY 3am "Feb 02 2018" "Free Software Foundation" "GNU Awk Extension Modules" .SH NAME writea, reada \- write and read gawk arrays to/from files .SH SYNOPSIS @@ -79,7 +79,7 @@ ret = reada("arraydump.bin", array) Arnold Robbins, .BR arnold@skeeve.com . .SH COPYING PERMISSIONS -Copyright \(co 2012, 2013, +Copyright \(co 2012, 2013, 2018, Free Software Foundation, Inc. .PP Permission is granted to make and distribute verbatim copies of diff --git a/extension/rwarray.c b/extension/rwarray.c index 7ae1870e..9ba2dca4 100644 --- a/extension/rwarray.c +++ b/extension/rwarray.c @@ -8,7 +8,7 @@ */ /* - * Copyright (C) 2009-2014, 2017 the Free Software Foundation, Inc. + * Copyright (C) 2009-2014, 2017, 2018 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. diff --git a/extension/rwarray0.c b/extension/rwarray0.c index f535a6a7..726570db 100644 --- a/extension/rwarray0.c +++ b/extension/rwarray0.c @@ -7,7 +7,8 @@ */ /* - * Copyright (C) 2009, 2010, 2011, 2012, 2013 the Free Software Foundation, Inc. + * Copyright (C) 2009, 2010, 2011, 2012, 2013, 2018 + * the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. diff --git a/extension/testext.c b/extension/testext.c index 3815dbf5..6629296a 100644 --- a/extension/testext.c +++ b/extension/testext.c @@ -3,7 +3,7 @@ */ /* - * Copyright (C) 2012, 2013, 2014, 2015 + * Copyright (C) 2012, 2013, 2014, 2015, 2018 * the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the diff --git a/extension/time.3am b/extension/time.3am index 9d397f7b..0b872c70 100644 --- a/extension/time.3am +++ b/extension/time.3am @@ -1,4 +1,4 @@ -.TH TIME 3am "Jan 15 2013" "Free Software Foundation" "GNU Awk Extension Modules" +.TH TIME 3am "Feb 02 2018" "Free Software Foundation" "GNU Awk Extension Modules" .SH NAME time \- time functions for gawk .SH SYNOPSIS @@ -65,7 +65,7 @@ printf "Pausing for a while... " ; sleep(2.5) ; print "done" Arnold Robbins, .BR arnold@skeeve.com . .SH COPYING PERMISSIONS -Copyright \(co 2012, 2013, +Copyright \(co 2012, 2013, 2018, Free Software Foundation, Inc. .PP Permission is granted to make and distribute verbatim copies of diff --git a/extension/time.c b/extension/time.c index 7451b258..e77a0d87 100644 --- a/extension/time.c +++ b/extension/time.c @@ -3,7 +3,7 @@ */ /* - * Copyright (C) 2012, 2013, 2014 + * Copyright (C) 2012, 2013, 2014, 2018 * the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the diff --git a/missing_d/ChangeLog b/missing_d/ChangeLog index 95da749e..a5838ccc 100644 --- a/missing_d/ChangeLog +++ b/missing_d/ChangeLog @@ -1,3 +1,7 @@ +2018-03-13 Arnold D. Robbins <arnold@skeeve.com> + + * snprintf.c: Update copyright year. + 2018-02-25 Arnold D. Robbins <arnold@skeeve.com> * 4.2.1: Release tar ball made. diff --git a/missing_d/snprintf.c b/missing_d/snprintf.c index 53b75f65..c09c7473 100644 --- a/missing_d/snprintf.c +++ b/missing_d/snprintf.c @@ -3,7 +3,7 @@ */ /* - * Copyright (C) 2006, 2007 the Free Software Foundation, Inc. + * Copyright (C) 2006, 2007, 2018 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. @@ -3,7 +3,7 @@ */ /* - * Copyright (C) 2012, 2013, 2016 the Free Software Foundation, Inc. + * Copyright (C) 2012, 2013, 2016, 2017 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. diff --git a/pc/ChangeLog b/pc/ChangeLog index 28f6e8eb..2bfbf090 100644 --- a/pc/ChangeLog +++ b/pc/ChangeLog @@ -1,3 +1,7 @@ +2018-03-13 Arnold D. Robbins <arnold@skeeve.com> + + * gawkmisc.pc: Update copyright year. + 2018-03-03 Eli Zaretskii <eliz@gnu.org> * Makefile (install1): Create parent directories of $(pkgextensiondir). diff --git a/pc/gawkmisc.pc b/pc/gawkmisc.pc index 1d845cc8..f3d6d7fa 100644 --- a/pc/gawkmisc.pc +++ b/pc/gawkmisc.pc @@ -1,7 +1,7 @@ /* gawkmisc.c --- miscellaneous gawk routines that are OS specific. -*-C-*- */ /* - * Copyright (C) 1986, 1988, 1989, 1991 - 2003, 2012, 2016 + * Copyright (C) 1986, 1988, 1989, 1991 - 2003, 2012, 2016, 2017 * the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the diff --git a/support/ChangeLog b/support/ChangeLog index 6e628931..6dc5def3 100644 --- a/support/ChangeLog +++ b/support/ChangeLog @@ -1,3 +1,7 @@ +2018-03-13 Arnold D. Robbins <arnold@skeeve.com> + + * getopt.c: Update copyright year. + 2018-02-25 Arnold D. Robbins <arnold@skeeve.com> * 4.2.1: Release tar ball made. diff --git a/support/getopt.c b/support/getopt.c index 64293754..eeb71ba9 100644 --- a/support/getopt.c +++ b/support/getopt.c @@ -2,7 +2,7 @@ NOTE: getopt is part of the C library, so if you don't know what "Keep this file name-space clean" means, talk to drepper@gnu.org before changing it! - Copyright (C) 1987-2016 Free Software Foundation, Inc. + Copyright (C) 1987-2017 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/test/ChangeLog b/test/ChangeLog index cd3813cc..603df4e7 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,7 @@ +2018-03-13 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am: Update copyright year. + 2018-03-05 Arnold D. Robbins <arnold@skeeve.com> * Makefile.am (EXTRA_DIST): Add nlstringtest-nogettext.ok. diff --git a/test/Makefile.am b/test/Makefile.am index f0cd20d1..e502f86a 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1,7 +1,7 @@ # # test/Makefile.am --- automake input file for gawk # -# Copyright (C) 1988-2017 the Free Software Foundation, Inc. +# Copyright (C) 1988-2018 the Free Software Foundation, Inc. # # This file is part of GAWK, the GNU implementation of the # AWK Programming Language. |