Karl Berry wrote:
1) regarding gendocs_template{,_min}, they were munged by the global gnulib copyright update to say "2014-2015", but it's conventional for such template files to just have the current year ("2015"), like version strings.2) regarding gendocs.sh, 2a) the copyright year list is wrongly missing 2014, 2b) the version string still says 2013 instead of 2015,
Thanks for reporting that. Since I bumped the copyright year I might as well fix these problems too, which I did with the attached patch. I did not fix this problem:
2c) the help message still refers to (stale) texinfo urls and bug-texinfo.
and I hope Ludo can do that. Ludo, here's another problem for you: the file doc/gendocs_template_min is homeless (it does not belong to any gnulib module) and this should get fixed, e.g., by adding it to the gendocs module.
>From 034df544d9af70acdca9424fb2db210427f56d9a Mon Sep 17 00:00:00 2001 From: Paul Eggert <[email protected]> Date: Thu, 1 Jan 2015 15:19:42 -0800 Subject: [PATCH] gendocs: copyright date and version fix Reported by Karl Berry in: http://lists.gnu.org/archive/html/bug-gnulib/2015-01/msg00002.html * build-aux/gendocs.sh, doc/gendocs_template, doc/gendocs_template_min: Fix copyright date. * build-aux/gendocs.sh (scriptversion): Update. --- ChangeLog | 9 +++++++++ build-aux/gendocs.sh | 4 ++-- doc/gendocs_template | 2 +- doc/gendocs_template_min | 2 +- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7033d0c..0b5ff88 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2015-01-01 Paul Eggert <[email protected]> + + gendocs: copyright date and version fix + Reported by Karl Berry in: + http://lists.gnu.org/archive/html/bug-gnulib/2015-01/msg00002.html + * build-aux/gendocs.sh, doc/gendocs_template, doc/gendocs_template_min: + Fix copyright date. + * build-aux/gendocs.sh (scriptversion): Update. + 2015-01-01 Karl Berry <[email protected]> * doc/install.texi, diff --git a/build-aux/gendocs.sh b/build-aux/gendocs.sh index 619af2f..888ee24 100755 --- a/build-aux/gendocs.sh +++ b/build-aux/gendocs.sh @@ -2,9 +2,9 @@ # gendocs.sh -- generate a GNU manual in many formats. This script is # mentioned in maintain.texi. See the help message below for usage details. -scriptversion=2014-05-01.10 +scriptversion=2015-01-01.15 -# Copyright 2003-2013, 2015 Free Software Foundation, Inc. +# Copyright 2003-2015 Free Software Foundation, Inc. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/doc/gendocs_template b/doc/gendocs_template index 0ee4e7e..df7faa3 100644 --- a/doc/gendocs_template +++ b/doc/gendocs_template @@ -77,7 +77,7 @@ the FSF. Broken links and other corrections or suggestions can be sent to <a href="mailto:%%EMAIL%%"><%%EMAIL%%></a>.</p> </div> -<p>Copyright © 2014-2015 Free Software Foundation, Inc.</p> +<p>Copyright © 2015 Free Software Foundation, Inc.</p> <p>This page is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nd/3.0/us/">Creative diff --git a/doc/gendocs_template_min b/doc/gendocs_template_min index 8bb2f15..fe9c07e 100644 --- a/doc/gendocs_template_min +++ b/doc/gendocs_template_min @@ -80,7 +80,7 @@ the FSF. Broken links and other corrections or suggestions can be sent to <a href="mailto:%%EMAIL%%"><%%EMAIL%%></a>.</p> </div> -<p>Copyright © 2014-2015 Free Software Foundation, Inc.</p> +<p>Copyright © 2015 Free Software Foundation, Inc.</p> <p>This page is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nd/3.0/us/">Creative -- 2.1.0
