]> git.ipfire.org Git - thirdparty/gnulib.git/commitdiff
announce-gen: Pacify POD errors.
authorBasil L. Contovounesios <basil@contovou.net>
Fri, 14 Nov 2025 18:10:11 +0000 (19:10 +0100)
committerBruno Haible <bruno@clisp.org>
Mon, 17 Nov 2025 18:18:50 +0000 (19:18 +0100)
* build-aux/announce-gen: Wrap all =items within =over..=back.
Terminate all C< formatting codes with >, not EOL.
(sizes): Format assignment operator like surrounding code.
(print_locations): Add missing C formatting code.

ChangeLog
build-aux/announce-gen

index f9a11161f2dbfd31b7bda197d9eb7b5b45748e82..2e3d0d477e6d06670f227fe986f4223146543c36 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2025-11-17  Basil L. Contovounesios  <basil@contovou.net>
+
+       announce-gen: Pacify POD errors.
+       * build-aux/announce-gen: Wrap all =items within =over..=back.
+       Terminate all C< formatting codes with >, not EOL.
+       (sizes): Format assignment operator like surrounding code.
+       (print_locations): Add missing C formatting code.
+
 2025-11-16  Bruno Haible  <bruno@clisp.org>
 
        tests: Use C99 initialization syntax for single-variable 'for' loops.
index c90a33e3b2cc36f3b93ec5ac1b0f5d999cc4a207..8d02f4f5c8ecd3e6d6c58e557d19be63d1feaf20 100755 (executable)
@@ -35,7 +35,7 @@
 eval 'exec perl -wSx "$0" "$@"'
      if 0;
 
-my $VERSION = '2025-07-30 01:47'; # UTC
+my $VERSION = '2025-11-14 18:29'; # UTC
 # The definition above must lie within the first 8 lines in order
 # for the Emacs time-stamp write hook (at end) to update it.
 # If you change this file with Emacs, please let the write hook
@@ -111,8 +111,9 @@ EOF
   exit $exit_code;
 }
 
+=over
 
-=item C<%size> = C<sizes (@file)>
+=item C<%size = sizes (@file)>
 
 Compute the sizes of the C<@file> and return them as a hash.  Return
 C<undef> if one of the computation failed.
@@ -139,9 +140,9 @@ sub sizes (@)
   return $fail ? undef : %res;
 }
 
-=item C<print_locations ($title, \@url, \%size, @file)
+=item C<print_locations ($title, \@url, \%size, @file)>
 
-Print a section C<$title> dedicated to the list of <@file>, which
+Print a section C<$title> dedicated to the list of C<@file>, which
 sizes are stored in C<%size>, and which are available from the C<@url>.
 
 =cut
@@ -163,7 +164,7 @@ sub print_locations ($\@\%@)
   print "\n";
 }
 
-=item C<print_checksums (@file)
+=item C<print_checksums (@file)>
 
 Print the SHA1 and SHA256 signature section for each C<@file>.
 
@@ -214,7 +215,7 @@ sub print_checksums ($@)
     }
 }
 
-=item C<print_news_deltas ($news_file, $prev_version, $curr_version)
+=item C<print_news_deltas ($news_file, $prev_version, $curr_version)>
 
 Print the section of the NEWS file C<$news_file> addressing changes
 between versions C<$prev_version> and C<$curr_version>.
@@ -720,6 +721,10 @@ EOF
   exit 0;
 }
 
+=back
+
+=cut
+
 ### Setup "GNU" style for perl-mode and cperl-mode.
 ## Local Variables:
 ## mode: perl