From: Bruno Haible Date: Fri, 19 Apr 2024 15:41:54 +0000 (+0200) Subject: gnulib-tool.py: Update authors list. X-Git-Tag: v1.0~38 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=6adcc628404f1e0413fe41a76584a1de55b3cb1e;p=gnulib.git gnulib-tool.py: Update authors list. * pygnulib/constants.py (__author__): Add Collin Funk. * pygnulib/__init__.py (__copyright__, __author__): Include years and authors of the gnulib-tool shell script. --- diff --git a/ChangeLog b/ChangeLog index 0c2a95e10e..f9b957efef 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2024-04-19 Bruno Haible + + gnulib-tool.py: Update authors list. + * pygnulib/constants.py (__author__): Add Collin Funk. + * pygnulib/__init__.py (__copyright__, __author__): Include years and + authors of the gnulib-tool shell script. + 2024-04-19 Bruno Haible getpayload* tests: Don't assume that '-' works as expected on NaN. diff --git a/pygnulib/__init__.py b/pygnulib/__init__.py index b9050a98ac..ff1f870681 100644 --- a/pygnulib/__init__.py +++ b/pygnulib/__init__.py @@ -30,6 +30,13 @@ coding standards, the GNU maintainer information, the GPL and other licenses (in Texinfo), assorted configuration scripts, and more. The goal is to provide all the common infrastructure needed by GNU packages.''' -__copyright__ = '2012-2024 Free Software Foundation, Inc.' -__author__ = 'Dmitry Selyutin' +__copyright__ = '2002-2024 Free Software Foundation, Inc.' +__author__ = \ + [ + 'Bruno Haible', + 'Paul Eggert', + 'Simon Josefsson', + 'Dmitry Selyutin', + 'Collin Funk', + ] __license__ = 'GNU GPLv3+' diff --git a/pygnulib/constants.py b/pygnulib/constants.py index 81f9b660f7..0b6a606a01 100644 --- a/pygnulib/constants.py +++ b/pygnulib/constants.py @@ -40,6 +40,7 @@ __author__ = \ 'Paul Eggert', 'Simon Josefsson', 'Dmitry Selyutin', + 'Collin Funk', ] __license__ = 'GNU GPLv3+' __copyright__ = '2002-2024 Free Software Foundation, Inc.'