diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2019-12-26 18:16:02 +0000 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2019-12-26 18:18:29 +0000 |
commit | b10c836bbf5082735e1853c06ef188bc950a317b (patch) | |
tree | 77a13c5e39eaf365bd62a8e5352b6c8b25274dd2 /cpan/podlators/scripts/pod2man.PL | |
parent | 77b20e6796463e336dbbfa76dff14084266605d7 (diff) | |
download | perl-b10c836bbf5082735e1853c06ef188bc950a317b.tar.gz |
Update podlators to CPAN version 4.13
[DELTA]
podlators 4.13 (2019-12-25)
Drop support for Perl 5.6. The minimum supported version is now Perl
5.8. Perl 5.6 had not been tested even by CPAN Testers in some time
and isn't supported by Travis-CI, so true support is dubious.
Dropping that version allows cleaning up some old compatibility code.
Fix a warning when outputing to something without a PerlIO layer, such
as when output_string is used.
[Pod::Text] Fix behavior of S<> with Unicode input to be consistent
with behavior with a default encoding, namely treat all whitespace
inside S<> as non-space characters and do not collapse it with
adjacent whitespace.
[Pod::Text::Termcap] Remove an ancient workaround that set the
TERMPATH environment variable whenever a Pod::Text::Termcap object was
created in order to add /usr/share/lib/termcap, necessary on some
ancient Solaris systems. Setting environment variables is bad
behavior for a module, and the Solaris systems requiring this
workaround are long obsolete.
[Pod::Text::Termcap] Remove the fallback to VT100 escape sequences if
Term::Cap was not able to find sequences for bold, underline, or
normal text, and instead skip that part of the formatting. This will
produce more correct behavior on dumb terminals at the possible cost
of losing formatting on systems with malfunctioning terminal
databases, which seems like an improvement. Thanks, Zenin. (#131124)
Further improve the man/no-encode.t test to not care whether Encode
was already loaded or not. Thanks, Martin Becker.
Improve logic for showing large test failures to avoid spurious
failures on systems without diff.
Diffstat (limited to 'cpan/podlators/scripts/pod2man.PL')
-rw-r--r-- | cpan/podlators/scripts/pod2man.PL | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpan/podlators/scripts/pod2man.PL b/cpan/podlators/scripts/pod2man.PL index bc455d8829..d6e685d201 100644 --- a/cpan/podlators/scripts/pod2man.PL +++ b/cpan/podlators/scripts/pod2man.PL @@ -4,7 +4,7 @@ # required for proper start-up code on non-UNIX platforms, and is used inside # Perl core. -use 5.006; +use 5.008; use strict; use warnings; @@ -417,7 +417,7 @@ B<pod2man> by Larry Wall and Tom Christiansen. =head1 COPYRIGHT AND LICENSE -Copyright 1999-2001, 2004, 2006, 2008, 2010, 2012-2018 Russ Allbery +Copyright 1999-2001, 2004, 2006, 2008, 2010, 2012-2019 Russ Allbery <rra@cpan.org> This program is free software; you may redistribute it and/or modify it |