In perl.git, the branch blead has been updated

<https://perl5.git.perl.org/perl.git/commitdiff/be26e211565c83faad0abdb7f5f17d82cfdfe97d?hp=fef47adaf9aff92370afa2482f7c17f81cabfab7>

- Log -----------------------------------------------------------------
commit be26e211565c83faad0abdb7f5f17d82cfdfe97d
Author: Chris 'BinGOs' Williams <ch...@bingosnet.co.uk>
Date:   Mon Jun 3 12:15:03 2019 +0100

    Update podlators to CPAN version 4.12
    
      [DELTA]
    
    podlators 4.12 (2019-05-31)
    
        Skip the man/no-encode.t test if Encode is already loaded while
        running the test suite, which seems to happen sometimes with CPAN
        Testers tests.

commit 74345e5babdbabfa88bf620ee5d6e7aa73434884
Author: Chris 'BinGOs' Williams <ch...@bingosnet.co.uk>
Date:   Mon Jun 3 12:12:07 2019 +0100

    Update Pod-Simple to CPAN version 3.38
    
      [DELTA]
    
      * Release 3.38
    2019-05-30 Karl Williamson <k...@cpan.org>
      Removed some alien files that somehow got in the tar, including a copy
      of Pod::Escapes.  Spotted by Petr Pisar++
    
      * Release 3.37
    2019-05-30 Karl Williamson <k...@cpan.org>
      Suppressed some expected diagnostics under harness
      Pod::Simple now depends on the 'if' module

-----------------------------------------------------------------------

Summary of changes:
 Porting/Maintainers.pl                                 |  4 ++--
 cpan/Pod-Simple/lib/Pod/Simple.pm                      |  2 +-
 cpan/Pod-Simple/lib/Pod/Simple/BlackBox.pm             |  2 +-
 cpan/Pod-Simple/lib/Pod/Simple/Checker.pm              |  2 +-
 cpan/Pod-Simple/lib/Pod/Simple/Debug.pm                |  2 +-
 cpan/Pod-Simple/lib/Pod/Simple/DumpAsText.pm           |  2 +-
 cpan/Pod-Simple/lib/Pod/Simple/DumpAsXML.pm            |  2 +-
 cpan/Pod-Simple/lib/Pod/Simple/HTML.pm                 |  2 +-
 cpan/Pod-Simple/lib/Pod/Simple/HTMLBatch.pm            |  2 +-
 cpan/Pod-Simple/lib/Pod/Simple/LinkSection.pm          |  2 +-
 cpan/Pod-Simple/lib/Pod/Simple/Methody.pm              |  2 +-
 cpan/Pod-Simple/lib/Pod/Simple/Progress.pm             |  2 +-
 cpan/Pod-Simple/lib/Pod/Simple/PullParser.pm           |  2 +-
 cpan/Pod-Simple/lib/Pod/Simple/PullParserEndToken.pm   |  2 +-
 cpan/Pod-Simple/lib/Pod/Simple/PullParserStartToken.pm |  2 +-
 cpan/Pod-Simple/lib/Pod/Simple/PullParserTextToken.pm  |  2 +-
 cpan/Pod-Simple/lib/Pod/Simple/PullParserToken.pm      |  2 +-
 cpan/Pod-Simple/lib/Pod/Simple/RTF.pm                  |  2 +-
 cpan/Pod-Simple/lib/Pod/Simple/Search.pm               |  2 +-
 cpan/Pod-Simple/lib/Pod/Simple/SimpleTree.pm           |  2 +-
 cpan/Pod-Simple/lib/Pod/Simple/Text.pm                 |  2 +-
 cpan/Pod-Simple/lib/Pod/Simple/TextContent.pm          |  2 +-
 cpan/Pod-Simple/lib/Pod/Simple/TiedOutFH.pm            |  2 +-
 cpan/Pod-Simple/lib/Pod/Simple/Transcode.pm            |  2 +-
 cpan/Pod-Simple/lib/Pod/Simple/TranscodeDumb.pm        |  2 +-
 cpan/Pod-Simple/lib/Pod/Simple/TranscodeSmart.pm       |  2 +-
 cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm                |  2 +-
 cpan/Pod-Simple/lib/Pod/Simple/XMLOutStream.pm         |  2 +-
 cpan/Pod-Simple/t/JustPod_corpus.t                     |  2 +-
 cpan/podlators/lib/Pod/Man.pm                          |  2 +-
 cpan/podlators/lib/Pod/ParseLink.pm                    |  2 +-
 cpan/podlators/lib/Pod/Text.pm                         |  2 +-
 cpan/podlators/lib/Pod/Text/Color.pm                   |  2 +-
 cpan/podlators/lib/Pod/Text/Overstrike.pm              |  2 +-
 cpan/podlators/lib/Pod/Text/Termcap.pm                 |  2 +-
 cpan/podlators/t/man/no-encode.t                       | 14 ++++++++++----
 36 files changed, 46 insertions(+), 40 deletions(-)

diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index ef5bc075c9..43bc3d569a 100755
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -921,7 +921,7 @@ use File::Glob qw(:case);
     },
 
     'Pod::Simple' => {
-        'DISTRIBUTION' => 'KHW/Pod-Simple-3.36.tar.gz',
+        'DISTRIBUTION' => 'KHW/Pod-Simple-3.38.tar.gz',
         'FILES'        => q[cpan/Pod-Simple],
     },
 
@@ -931,7 +931,7 @@ use File::Glob qw(:case);
     },
 
     'podlators' => {
-        'DISTRIBUTION' => 'RRA/podlators-4.11.tar.gz',
+        'DISTRIBUTION' => 'RRA/podlators-4.12.tar.gz',
         'FILES'        => q[cpan/podlators pod/perlpodstyle.pod],
         'EXCLUDED'     => [
             qr{^docs/metadata/},
diff --git a/cpan/Pod-Simple/lib/Pod/Simple.pm 
b/cpan/Pod-Simple/lib/Pod/Simple.pm
index a9db8c2a68..8d09c258a0 100644
--- a/cpan/Pod-Simple/lib/Pod/Simple.pm
+++ b/cpan/Pod-Simple/lib/Pod/Simple.pm
@@ -18,7 +18,7 @@ use vars qw(
 );
 
 @ISA = ('Pod::Simple::BlackBox');
-$VERSION = '3.36';
+$VERSION = '3.38';
 
 @Known_formatting_codes = qw(I B C L E F S X Z); 
 %Known_formatting_codes = map(($_=>1), @Known_formatting_codes);
diff --git a/cpan/Pod-Simple/lib/Pod/Simple/BlackBox.pm 
b/cpan/Pod-Simple/lib/Pod/Simple/BlackBox.pm
index 7f30052b0d..af736f86df 100644
--- a/cpan/Pod-Simple/lib/Pod/Simple/BlackBox.pm
+++ b/cpan/Pod-Simple/lib/Pod/Simple/BlackBox.pm
@@ -22,7 +22,7 @@ use integer; # vroom!
 use strict;
 use Carp ();
 use vars qw($VERSION );
-$VERSION = '3.36';
+$VERSION = '3.38';
 #use constant DEBUG => 7;
 
 sub my_qr ($$) {
diff --git a/cpan/Pod-Simple/lib/Pod/Simple/Checker.pm 
b/cpan/Pod-Simple/lib/Pod/Simple/Checker.pm
index b30dd66296..54d10e3eb7 100644
--- a/cpan/Pod-Simple/lib/Pod/Simple/Checker.pm
+++ b/cpan/Pod-Simple/lib/Pod/Simple/Checker.pm
@@ -9,7 +9,7 @@ use Carp ();
 use Pod::Simple::Methody ();
 use Pod::Simple ();
 use vars qw( @ISA $VERSION );
-$VERSION = '3.36';
+$VERSION = '3.38';
 @ISA = ('Pod::Simple::Methody');
 BEGIN { *DEBUG = defined(&Pod::Simple::DEBUG)
           ? \&Pod::Simple::DEBUG
diff --git a/cpan/Pod-Simple/lib/Pod/Simple/Debug.pm 
b/cpan/Pod-Simple/lib/Pod/Simple/Debug.pm
index aa714db47a..444651fbc5 100644
--- a/cpan/Pod-Simple/lib/Pod/Simple/Debug.pm
+++ b/cpan/Pod-Simple/lib/Pod/Simple/Debug.pm
@@ -2,7 +2,7 @@ require 5;
 package Pod::Simple::Debug;
 use strict;
 use vars qw($VERSION );
-$VERSION = '3.36';
+$VERSION = '3.38';
 
 sub import {
   my($value,$variable);
diff --git a/cpan/Pod-Simple/lib/Pod/Simple/DumpAsText.pm 
b/cpan/Pod-Simple/lib/Pod/Simple/DumpAsText.pm
index 2de11f19fb..3b4546641f 100644
--- a/cpan/Pod-Simple/lib/Pod/Simple/DumpAsText.pm
+++ b/cpan/Pod-Simple/lib/Pod/Simple/DumpAsText.pm
@@ -1,7 +1,7 @@
 
 require 5;
 package Pod::Simple::DumpAsText;
-$VERSION = '3.36';
+$VERSION = '3.38';
 use Pod::Simple ();
 BEGIN {@ISA = ('Pod::Simple')}
 
diff --git a/cpan/Pod-Simple/lib/Pod/Simple/DumpAsXML.pm 
b/cpan/Pod-Simple/lib/Pod/Simple/DumpAsXML.pm
index b68597fb68..c7a379f2a9 100644
--- a/cpan/Pod-Simple/lib/Pod/Simple/DumpAsXML.pm
+++ b/cpan/Pod-Simple/lib/Pod/Simple/DumpAsXML.pm
@@ -1,7 +1,7 @@
 
 require 5;
 package Pod::Simple::DumpAsXML;
-$VERSION = '3.36';
+$VERSION = '3.38';
 use Pod::Simple ();
 BEGIN {@ISA = ('Pod::Simple')}
 
diff --git a/cpan/Pod-Simple/lib/Pod/Simple/HTML.pm 
b/cpan/Pod-Simple/lib/Pod/Simple/HTML.pm
index 977e92ff32..95b2eb1825 100644
--- a/cpan/Pod-Simple/lib/Pod/Simple/HTML.pm
+++ b/cpan/Pod-Simple/lib/Pod/Simple/HTML.pm
@@ -9,7 +9,7 @@ use vars qw(
   $Doctype_decl  $Content_decl
 );
 @ISA = ('Pod::Simple::PullParser');
-$VERSION = '3.36';
+$VERSION = '3.38';
 BEGIN {
   if(defined &DEBUG) { } # no-op
   elsif( defined &Pod::Simple::DEBUG ) { *DEBUG = \&Pod::Simple::DEBUG }
diff --git a/cpan/Pod-Simple/lib/Pod/Simple/HTMLBatch.pm 
b/cpan/Pod-Simple/lib/Pod/Simple/HTMLBatch.pm
index 58cd1ee9a8..633d41bb27 100644
--- a/cpan/Pod-Simple/lib/Pod/Simple/HTMLBatch.pm
+++ b/cpan/Pod-Simple/lib/Pod/Simple/HTMLBatch.pm
@@ -5,7 +5,7 @@ use strict;
 use vars qw( $VERSION $HTML_RENDER_CLASS $HTML_EXTENSION
  $CSS $JAVASCRIPT $SLEEPY $SEARCH_CLASS @ISA
 );
-$VERSION = '3.36';
+$VERSION = '3.38';
 @ISA = ();  # Yup, we're NOT a subclass of Pod::Simple::HTML!
 
 # TODO: nocontents stylesheets. Strike some of the color variations?
diff --git a/cpan/Pod-Simple/lib/Pod/Simple/LinkSection.pm 
b/cpan/Pod-Simple/lib/Pod/Simple/LinkSection.pm
index 4b8e34fdd1..d29aaedc5e 100644
--- a/cpan/Pod-Simple/lib/Pod/Simple/LinkSection.pm
+++ b/cpan/Pod-Simple/lib/Pod/Simple/LinkSection.pm
@@ -6,7 +6,7 @@ package Pod::Simple::LinkSection;
 use strict;
 use Pod::Simple::BlackBox;
 use vars qw($VERSION );
-$VERSION = '3.36';
+$VERSION = '3.38';
 
 use overload( # So it'll stringify nice
   '""'   => \&Pod::Simple::BlackBox::stringify_lol,
diff --git a/cpan/Pod-Simple/lib/Pod/Simple/Methody.pm 
b/cpan/Pod-Simple/lib/Pod/Simple/Methody.pm
index 993f6e4a67..75e3137496 100644
--- a/cpan/Pod-Simple/lib/Pod/Simple/Methody.pm
+++ b/cpan/Pod-Simple/lib/Pod/Simple/Methody.pm
@@ -4,7 +4,7 @@ package Pod::Simple::Methody;
 use strict;
 use Pod::Simple ();
 use vars qw(@ISA $VERSION);
-$VERSION = '3.36';
+$VERSION = '3.38';
 @ISA = ('Pod::Simple');
 
 # Yes, we could use named variables, but I want this to be impose
diff --git a/cpan/Pod-Simple/lib/Pod/Simple/Progress.pm 
b/cpan/Pod-Simple/lib/Pod/Simple/Progress.pm
index fa983240d2..89280a57d9 100644
--- a/cpan/Pod-Simple/lib/Pod/Simple/Progress.pm
+++ b/cpan/Pod-Simple/lib/Pod/Simple/Progress.pm
@@ -1,7 +1,7 @@
 
 require 5;
 package Pod::Simple::Progress;
-$VERSION = '3.36';
+$VERSION = '3.38';
 use strict;
 
 # Objects of this class are used for noting progress of an
diff --git a/cpan/Pod-Simple/lib/Pod/Simple/PullParser.pm 
b/cpan/Pod-Simple/lib/Pod/Simple/PullParser.pm
index 672c6fc47e..c2279ee369 100644
--- a/cpan/Pod-Simple/lib/Pod/Simple/PullParser.pm
+++ b/cpan/Pod-Simple/lib/Pod/Simple/PullParser.pm
@@ -1,6 +1,6 @@
 require 5;
 package Pod::Simple::PullParser;
-$VERSION = '3.36';
+$VERSION = '3.38';
 use Pod::Simple ();
 BEGIN {@ISA = ('Pod::Simple')}
 
diff --git a/cpan/Pod-Simple/lib/Pod/Simple/PullParserEndToken.pm 
b/cpan/Pod-Simple/lib/Pod/Simple/PullParserEndToken.pm
index b3196e49cb..7c0d6cf14b 100644
--- a/cpan/Pod-Simple/lib/Pod/Simple/PullParserEndToken.pm
+++ b/cpan/Pod-Simple/lib/Pod/Simple/PullParserEndToken.pm
@@ -5,7 +5,7 @@ use Pod::Simple::PullParserToken ();
 use strict;
 use vars qw(@ISA $VERSION);
 @ISA = ('Pod::Simple::PullParserToken');
-$VERSION = '3.36';
+$VERSION = '3.38';
 
 sub new {  # Class->new(tagname);
   my $class = shift;
diff --git a/cpan/Pod-Simple/lib/Pod/Simple/PullParserStartToken.pm 
b/cpan/Pod-Simple/lib/Pod/Simple/PullParserStartToken.pm
index 01670470b1..0aae62fef7 100644
--- a/cpan/Pod-Simple/lib/Pod/Simple/PullParserStartToken.pm
+++ b/cpan/Pod-Simple/lib/Pod/Simple/PullParserStartToken.pm
@@ -5,7 +5,7 @@ use Pod::Simple::PullParserToken ();
 use strict;
 use vars qw(@ISA $VERSION);
 @ISA = ('Pod::Simple::PullParserToken');
-$VERSION = '3.36';
+$VERSION = '3.38';
 
 sub new {  # Class->new(tagname, optional_attrhash);
   my $class = shift;
diff --git a/cpan/Pod-Simple/lib/Pod/Simple/PullParserTextToken.pm 
b/cpan/Pod-Simple/lib/Pod/Simple/PullParserTextToken.pm
index 5cdd3baa0d..52d8e644b6 100644
--- a/cpan/Pod-Simple/lib/Pod/Simple/PullParserTextToken.pm
+++ b/cpan/Pod-Simple/lib/Pod/Simple/PullParserTextToken.pm
@@ -5,7 +5,7 @@ use Pod::Simple::PullParserToken ();
 use strict;
 use vars qw(@ISA $VERSION);
 @ISA = ('Pod::Simple::PullParserToken');
-$VERSION = '3.36';
+$VERSION = '3.38';
 
 sub new {  # Class->new(text);
   my $class = shift;
diff --git a/cpan/Pod-Simple/lib/Pod/Simple/PullParserToken.pm 
b/cpan/Pod-Simple/lib/Pod/Simple/PullParserToken.pm
index 75044d6fab..2983972301 100644
--- a/cpan/Pod-Simple/lib/Pod/Simple/PullParserToken.pm
+++ b/cpan/Pod-Simple/lib/Pod/Simple/PullParserToken.pm
@@ -3,7 +3,7 @@ require 5;
 package Pod::Simple::PullParserToken;
  # Base class for tokens gotten from Pod::Simple::PullParser's 
$parser->get_token
 @ISA = ();
-$VERSION = '3.36';
+$VERSION = '3.38';
 use strict;
 
 sub new {  # Class->new('type', stuff...);  ## Overridden in derived classes 
anyway
diff --git a/cpan/Pod-Simple/lib/Pod/Simple/RTF.pm 
b/cpan/Pod-Simple/lib/Pod/Simple/RTF.pm
index 9c4a8e3835..2ebc4a7dd8 100644
--- a/cpan/Pod-Simple/lib/Pod/Simple/RTF.pm
+++ b/cpan/Pod-Simple/lib/Pod/Simple/RTF.pm
@@ -8,7 +8,7 @@ package Pod::Simple::RTF;
 
 use strict;
 use vars qw($VERSION @ISA %Escape $WRAP %Tagmap);
-$VERSION = '3.36';
+$VERSION = '3.38';
 use Pod::Simple::PullParser ();
 BEGIN {@ISA = ('Pod::Simple::PullParser')}
 
diff --git a/cpan/Pod-Simple/lib/Pod/Simple/Search.pm 
b/cpan/Pod-Simple/lib/Pod/Simple/Search.pm
index 37c8e24c6b..094038c608 100644
--- a/cpan/Pod-Simple/lib/Pod/Simple/Search.pm
+++ b/cpan/Pod-Simple/lib/Pod/Simple/Search.pm
@@ -3,7 +3,7 @@ package Pod::Simple::Search;
 use strict;
 
 use vars qw($VERSION $MAX_VERSION_WITHIN $SLEEPY);
-$VERSION = '3.36';   ## Current version of this package
+$VERSION = '3.38';   ## Current version of this package
 
 BEGIN { *DEBUG = sub () {0} unless defined &DEBUG; }   # set DEBUG level
 use Carp ();
diff --git a/cpan/Pod-Simple/lib/Pod/Simple/SimpleTree.pm 
b/cpan/Pod-Simple/lib/Pod/Simple/SimpleTree.pm
index a6cdc8693c..eba922d236 100644
--- a/cpan/Pod-Simple/lib/Pod/Simple/SimpleTree.pm
+++ b/cpan/Pod-Simple/lib/Pod/Simple/SimpleTree.pm
@@ -5,7 +5,7 @@ use strict;
 use Carp ();
 use Pod::Simple ();
 use vars qw( $ATTR_PAD @ISA $VERSION $SORT_ATTRS);
-$VERSION = '3.36';
+$VERSION = '3.38';
 BEGIN {
   @ISA = ('Pod::Simple');
   *DEBUG = \&Pod::Simple::DEBUG unless defined &DEBUG;
diff --git a/cpan/Pod-Simple/lib/Pod/Simple/Text.pm 
b/cpan/Pod-Simple/lib/Pod/Simple/Text.pm
index 35166d7309..a555d26a3c 100644
--- a/cpan/Pod-Simple/lib/Pod/Simple/Text.pm
+++ b/cpan/Pod-Simple/lib/Pod/Simple/Text.pm
@@ -6,7 +6,7 @@ use Carp ();
 use Pod::Simple::Methody ();
 use Pod::Simple ();
 use vars qw( @ISA $VERSION $FREAKYMODE);
-$VERSION = '3.36';
+$VERSION = '3.38';
 @ISA = ('Pod::Simple::Methody');
 BEGIN { *DEBUG = defined(&Pod::Simple::DEBUG)
           ? \&Pod::Simple::DEBUG
diff --git a/cpan/Pod-Simple/lib/Pod/Simple/TextContent.pm 
b/cpan/Pod-Simple/lib/Pod/Simple/TextContent.pm
index 5db95ccc17..1843e692e8 100644
--- a/cpan/Pod-Simple/lib/Pod/Simple/TextContent.pm
+++ b/cpan/Pod-Simple/lib/Pod/Simple/TextContent.pm
@@ -6,7 +6,7 @@ use strict;
 use Carp ();
 use Pod::Simple ();
 use vars qw( @ISA $VERSION );
-$VERSION = '3.36';
+$VERSION = '3.38';
 @ISA = ('Pod::Simple');
 
 sub new {
diff --git a/cpan/Pod-Simple/lib/Pod/Simple/TiedOutFH.pm 
b/cpan/Pod-Simple/lib/Pod/Simple/TiedOutFH.pm
index 277a321b44..1b4063e049 100644
--- a/cpan/Pod-Simple/lib/Pod/Simple/TiedOutFH.pm
+++ b/cpan/Pod-Simple/lib/Pod/Simple/TiedOutFH.pm
@@ -4,7 +4,7 @@ package Pod::Simple::TiedOutFH;
 use Symbol ('gensym');
 use Carp ();
 use vars qw($VERSION );
-$VERSION = '3.36';
+$VERSION = '3.38';
 
 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
diff --git a/cpan/Pod-Simple/lib/Pod/Simple/Transcode.pm 
b/cpan/Pod-Simple/lib/Pod/Simple/Transcode.pm
index 6b4a43fdbd..6829046c2a 100644
--- a/cpan/Pod-Simple/lib/Pod/Simple/Transcode.pm
+++ b/cpan/Pod-Simple/lib/Pod/Simple/Transcode.pm
@@ -3,7 +3,7 @@ require 5;
 package Pod::Simple::Transcode;
 use strict;
 use vars qw($VERSION @ISA);
-$VERSION = '3.36';
+$VERSION = '3.38';
 
 BEGIN {
   if(defined &DEBUG) {;} # Okay
diff --git a/cpan/Pod-Simple/lib/Pod/Simple/TranscodeDumb.pm 
b/cpan/Pod-Simple/lib/Pod/Simple/TranscodeDumb.pm
index dfded058d2..d0b8b4430d 100644
--- a/cpan/Pod-Simple/lib/Pod/Simple/TranscodeDumb.pm
+++ b/cpan/Pod-Simple/lib/Pod/Simple/TranscodeDumb.pm
@@ -5,7 +5,7 @@ require 5;
 package Pod::Simple::TranscodeDumb;
 use strict;
 use vars qw($VERSION %Supported);
-$VERSION = '3.36';
+$VERSION = '3.38';
 # This module basically pretends it knows how to transcode, except
 #  only for null-transcodings!  We use this when Encode isn't
 #  available.
diff --git a/cpan/Pod-Simple/lib/Pod/Simple/TranscodeSmart.pm 
b/cpan/Pod-Simple/lib/Pod/Simple/TranscodeSmart.pm
index c0ae1c6ac0..f7b8a83432 100644
--- a/cpan/Pod-Simple/lib/Pod/Simple/TranscodeSmart.pm
+++ b/cpan/Pod-Simple/lib/Pod/Simple/TranscodeSmart.pm
@@ -9,7 +9,7 @@ use strict;
 use Pod::Simple;
 require Encode;
 use vars qw($VERSION );
-$VERSION = '3.36';
+$VERSION = '3.38';
 
 sub is_dumb  {0}
 sub is_smart {1}
diff --git a/cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm 
b/cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm
index 10f9d52cae..bbd38806ce 100644
--- a/cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm
+++ b/cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm
@@ -45,7 +45,7 @@ declare the output character set as UTF-8 before parsing, 
like so:
 package Pod::Simple::XHTML;
 use strict;
 use vars qw( $VERSION @ISA $HAS_HTML_ENTITIES );
-$VERSION = '3.36';
+$VERSION = '3.38';
 use Pod::Simple::Methody ();
 @ISA = ('Pod::Simple::Methody');
 
diff --git a/cpan/Pod-Simple/lib/Pod/Simple/XMLOutStream.pm 
b/cpan/Pod-Simple/lib/Pod/Simple/XMLOutStream.pm
index 856b308bcb..7d40521354 100644
--- a/cpan/Pod-Simple/lib/Pod/Simple/XMLOutStream.pm
+++ b/cpan/Pod-Simple/lib/Pod/Simple/XMLOutStream.pm
@@ -5,7 +5,7 @@ use strict;
 use Carp ();
 use Pod::Simple ();
 use vars qw( $ATTR_PAD @ISA $VERSION $SORT_ATTRS);
-$VERSION = '3.36';
+$VERSION = '3.38';
 BEGIN {
   @ISA = ('Pod::Simple');
   *DEBUG = \&Pod::Simple::DEBUG unless defined &DEBUG;
diff --git a/cpan/Pod-Simple/t/JustPod_corpus.t 
b/cpan/Pod-Simple/t/JustPod_corpus.t
index 31acaaf7b8..97833b774e 100644
--- a/cpan/Pod-Simple/t/JustPod_corpus.t
+++ b/cpan/Pod-Simple/t/JustPod_corpus.t
@@ -76,7 +76,7 @@ foreach my $file (@test_files) {
     my $errata = $parser->errata_seen();
     foreach my $line_number (sort { $a <=> $b } keys %$errata) {
         foreach my $err_msg (sort @{$errata->{$line_number}}) {
-            diag "$file: $line_number: $err_msg";
+            note "$file: $line_number: $err_msg";
         }
     }
     next;
diff --git a/cpan/podlators/lib/Pod/Man.pm b/cpan/podlators/lib/Pod/Man.pm
index 6ebab1e0e5..6bd6d4f34e 100644
--- a/cpan/podlators/lib/Pod/Man.pm
+++ b/cpan/podlators/lib/Pod/Man.pm
@@ -32,7 +32,7 @@ BEGIN {
 
 @ISA = qw(Pod::Simple);
 
-$VERSION = '4.11';
+$VERSION = '4.12';
 
 # Set the debugging level.  If someone has inserted a debug function into this
 # class already, use that.  Otherwise, use any Pod::Simple debug function
diff --git a/cpan/podlators/lib/Pod/ParseLink.pm 
b/cpan/podlators/lib/Pod/ParseLink.pm
index 0be5323973..6f11eeba1d 100644
--- a/cpan/podlators/lib/Pod/ParseLink.pm
+++ b/cpan/podlators/lib/Pod/ParseLink.pm
@@ -23,7 +23,7 @@ use Exporter;
 @ISA    = qw(Exporter);
 @EXPORT = qw(parselink);
 
-$VERSION = '4.11';
+$VERSION = '4.12';
 
 ##############################################################################
 # Implementation
diff --git a/cpan/podlators/lib/Pod/Text.pm b/cpan/podlators/lib/Pod/Text.pm
index b05730ef47..d428621379 100644
--- a/cpan/podlators/lib/Pod/Text.pm
+++ b/cpan/podlators/lib/Pod/Text.pm
@@ -30,7 +30,7 @@ use Pod::Simple ();
 # We have to export pod2text for backward compatibility.
 @EXPORT = qw(pod2text);
 
-$VERSION = '4.11';
+$VERSION = '4.12';
 
 # Ensure that $Pod::Simple::nbsp and $Pod::Simple::shy are available.  Code
 # taken from Pod::Simple 3.32, but was only added in 3.30.
diff --git a/cpan/podlators/lib/Pod/Text/Color.pm 
b/cpan/podlators/lib/Pod/Text/Color.pm
index 8d956f2a5d..d94c075940 100644
--- a/cpan/podlators/lib/Pod/Text/Color.pm
+++ b/cpan/podlators/lib/Pod/Text/Color.pm
@@ -23,7 +23,7 @@ use vars qw(@ISA $VERSION);
 
 @ISA = qw(Pod::Text);
 
-$VERSION = '4.11';
+$VERSION = '4.12';
 
 ##############################################################################
 # Overrides
diff --git a/cpan/podlators/lib/Pod/Text/Overstrike.pm 
b/cpan/podlators/lib/Pod/Text/Overstrike.pm
index 92a3a9330e..cc7c697120 100644
--- a/cpan/podlators/lib/Pod/Text/Overstrike.pm
+++ b/cpan/podlators/lib/Pod/Text/Overstrike.pm
@@ -29,7 +29,7 @@ use Pod::Text ();
 
 @ISA = qw(Pod::Text);
 
-$VERSION = '4.11';
+$VERSION = '4.12';
 
 ##############################################################################
 # Overrides
diff --git a/cpan/podlators/lib/Pod/Text/Termcap.pm 
b/cpan/podlators/lib/Pod/Text/Termcap.pm
index d36ba4f518..fdc7e8bc23 100644
--- a/cpan/podlators/lib/Pod/Text/Termcap.pm
+++ b/cpan/podlators/lib/Pod/Text/Termcap.pm
@@ -24,7 +24,7 @@ use vars qw(@ISA $VERSION);
 
 @ISA = qw(Pod::Text);
 
-$VERSION = '4.11';
+$VERSION = '4.12';
 
 ##############################################################################
 # Overrides
diff --git a/cpan/podlators/t/man/no-encode.t b/cpan/podlators/t/man/no-encode.t
index 15522a5d96..ca2dc86e2b 100644
--- a/cpan/podlators/t/man/no-encode.t
+++ b/cpan/podlators/t/man/no-encode.t
@@ -3,7 +3,7 @@
 # Test for graceful degradation to non-utf8 output without Encode module.
 #
 # Copyright 2016 Niko Tyni <nt...@iki.fi>
-# Copyright 2016, 2018 Russ Allbery <r...@cpan.org>
+# Copyright 2016, 2018-2019 Russ Allbery <r...@cpan.org>
 #
 # This program is free software; you may redistribute it and/or modify it
 # under the same terms as Perl itself.
@@ -14,11 +14,17 @@ use 5.006;
 use strict;
 use warnings;
 
-use Test::More tests => 6;
+use Test::More;
 
-# Force the Encode module to be impossible to import.
+# Force the Encode module to be impossible to import.  Sometimes Encode is
+# already loaded before the test suite runs (this seems common for CPAN
+# Testers tests for some reason), so skip the test if that's the case.
 BEGIN {
-    ok(!$INC{'Encode.pm'}, 'Encode is not loaded yet');
+    if ($INC{'Encode.pm'}) {
+        plan skip_all => 'Encode is already loaded';
+    } else {
+        plan tests => 5;
+    }
     my $reject_encode = sub {
         if ($_[1] eq 'Encode.pm') {
             die "refusing to load Encode\n";

-- 
Perl5 Master Repository

Reply via email to