From: Bruno Haible Date: Wed, 28 Jan 2026 02:12:04 +0000 (+0100) Subject: Update "Written by ..." lines in --version output. X-Git-Tag: v1.0~9 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=b093401bea2957237253364f63861725f7cc7fe2;p=thirdparty%2Fgettext.git Update "Written by ..." lines in --version output. * gettext-tools/src/msgfmt.c (main): Add me and Daiki Ueno as co-authors. * gettext-runtime/src/ngettext.c (main): Add me as co-author. * gettext-tools/src/msgmerge.c (main): Likewise. * gettext-tools/src/msgunfmt.c (main): Likewise. * gettext-tools/src/xgettext.c (main): Likewise. * gettext-tools/wizard/gettextize.in (func_version): Likewise. Terminate the 'Written by' line with a '.'. * gettext-tools/autotools/autopoint.in (func_version): Terminate the 'Written by' line with a '.'. * gettext-tools/autotools/convert-archive.in (func_version): Likewise. * gettext-tools/misc/po-fetch.in (func_version): Likewise. * gettext-runtime/src/gettext.sh.in (func_version): Likewise. * libtextstyle/gnulib-local/build-aux/moopp (func_version): Likewise. --- diff --git a/gettext-runtime/src/gettext.sh.in b/gettext-runtime/src/gettext.sh.in index 25b58e341..7f8a9a68b 100644 --- a/gettext-runtime/src/gettext.sh.in +++ b/gettext-runtime/src/gettext.sh.in @@ -66,7 +66,7 @@ if test -z "${ZSH_VERSION+set}"; then License GPLv2+: GNU GPL version 2 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law." - echo "Written by" "Bruno Haible" + printf 'Written by %s.\n' "Bruno Haible" } if test $# = 1; then case "$1" in diff --git a/gettext-runtime/src/ngettext.c b/gettext-runtime/src/ngettext.c index f3ead15de..43d60b0f2 100644 --- a/gettext-runtime/src/ngettext.c +++ b/gettext-runtime/src/ngettext.c @@ -128,7 +128,8 @@ This is free software: you are free to change and redistribute it.\n\ There is NO WARRANTY, to the extent permitted by law.\n\ "), "1995-2026", "https://gnu.org/licenses/gpl.html"); - printf (_("Written by %s.\n"), proper_name ("Ulrich Drepper")); + printf (_("Written by %s and %s.\n"), + proper_name ("Ulrich Drepper"), proper_name ("Bruno Haible")); exit (EXIT_SUCCESS); } diff --git a/gettext-tools/autotools/autopoint.in b/gettext-tools/autotools/autopoint.in index f72f50085..5c1a4af31 100644 --- a/gettext-tools/autotools/autopoint.in +++ b/gettext-tools/autotools/autopoint.in @@ -221,7 +221,7 @@ func_version () License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law." - echo "Written by" "Bruno Haible" + printf 'Written by %s.\n' "Bruno Haible" } # func_fatal_error message diff --git a/gettext-tools/autotools/convert-archive.in b/gettext-tools/autotools/convert-archive.in index dd832c510..bcd5f06f0 100644 --- a/gettext-tools/autotools/convert-archive.in +++ b/gettext-tools/autotools/convert-archive.in @@ -52,7 +52,7 @@ func_version () License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law." - echo "Written by" "Bruno Haible" + printf 'Written by %s.\n' "Bruno Haible" } # func_fatal_error message diff --git a/gettext-tools/misc/po-fetch.in b/gettext-tools/misc/po-fetch.in index f0535a00e..bc6b50e38 100644 --- a/gettext-tools/misc/po-fetch.in +++ b/gettext-tools/misc/po-fetch.in @@ -118,7 +118,7 @@ func_version () License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law." - echo "Written by" "Bruno Haible" + printf 'Written by %s.\n' "Bruno Haible" } # func_fetch_TP DOMAIN diff --git a/gettext-tools/src/msgfmt.c b/gettext-tools/src/msgfmt.c index 99d6b9358..452212aec 100644 --- a/gettext-tools/src/msgfmt.c +++ b/gettext-tools/src/msgfmt.c @@ -455,7 +455,10 @@ This is free software: you are free to change and redistribute it.\n\ There is NO WARRANTY, to the extent permitted by law.\n\ "), "1995-2026", "https://gnu.org/licenses/gpl.html"); - printf (_("Written by %s.\n"), proper_name ("Ulrich Drepper")); + printf (_("Written by %s, %s, and %s.\n"), + proper_name ("Ulrich Drepper"), + proper_name ("Bruno Haible"), + proper_name ("Daiki Ueno")); exit (EXIT_SUCCESS); } diff --git a/gettext-tools/src/msgmerge.c b/gettext-tools/src/msgmerge.c index c84a9c7c2..6c9296865 100644 --- a/gettext-tools/src/msgmerge.c +++ b/gettext-tools/src/msgmerge.c @@ -307,7 +307,8 @@ This is free software: you are free to change and redistribute it.\n\ There is NO WARRANTY, to the extent permitted by law.\n\ "), "1995-2026", "https://gnu.org/licenses/gpl.html"); - printf (_("Written by %s.\n"), proper_name ("Peter Miller")); + printf (_("Written by %s and %s.\n"), + proper_name ("Peter Miller"), proper_name ("Bruno Haible")); exit (EXIT_SUCCESS); } diff --git a/gettext-tools/src/msgunfmt.c b/gettext-tools/src/msgunfmt.c index 13ee43121..6d52d0895 100644 --- a/gettext-tools/src/msgunfmt.c +++ b/gettext-tools/src/msgunfmt.c @@ -263,7 +263,8 @@ This is free software: you are free to change and redistribute it.\n\ There is NO WARRANTY, to the extent permitted by law.\n\ "), "1995-2026", "https://gnu.org/licenses/gpl.html"); - printf (_("Written by %s.\n"), proper_name ("Ulrich Drepper")); + printf (_("Written by %s and %s.\n"), + proper_name ("Ulrich Drepper"), proper_name ("Bruno Haible")); exit (EXIT_SUCCESS); } diff --git a/gettext-tools/src/xgettext.c b/gettext-tools/src/xgettext.c index 5bd577069..beac556d3 100644 --- a/gettext-tools/src/xgettext.c +++ b/gettext-tools/src/xgettext.c @@ -799,7 +799,8 @@ This is free software: you are free to change and redistribute it.\n\ There is NO WARRANTY, to the extent permitted by law.\n\ "), "1995-2026", "https://gnu.org/licenses/gpl.html"); - printf (_("Written by %s.\n"), proper_name ("Ulrich Drepper")); + printf (_("Written by %s and %s.\n"), + proper_name ("Ulrich Drepper"), proper_name ("Bruno Haible")); exit (EXIT_SUCCESS); } diff --git a/gettext-tools/wizard/gettextize.in b/gettext-tools/wizard/gettextize.in index 761dad938..135686b6e 100644 --- a/gettext-tools/wizard/gettextize.in +++ b/gettext-tools/wizard/gettextize.in @@ -211,7 +211,7 @@ func_version () License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law." - echo "Written by" "Ulrich Drepper" + printf 'Written by %s and %s.\n' "Ulrich Drepper" "Bruno Haible" } # func_fatal_error message diff --git a/libtextstyle/gnulib-local/build-aux/moopp b/libtextstyle/gnulib-local/build-aux/moopp index ff7dd7dcd..3f4503195 100755 --- a/libtextstyle/gnulib-local/build-aux/moopp +++ b/libtextstyle/gnulib-local/build-aux/moopp @@ -75,7 +75,7 @@ func_version () License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law." - echo "Written by" "Bruno Haible" + printf 'Written by %s.\n' "Bruno Haible" } # func_fatal_error message