[prev in list] [next in list] [prev in thread] [next in thread] 

List:       perl5-changes
Subject:    [Perl/perl5] b10c83: Update podlators to CPAN version 4.13
From:       Chris Williams <noreply () github ! com>
Date:       2019-12-26 18:51:43
Message-ID: Perl/perl5/push/refs/heads/blead/77b20e-b10c83 () github ! com
[Download RAW message or body]

  Branch: refs/heads/blead
  Home:   https://github.com/Perl/perl5
  Commit: b10c836bbf5082735e1853c06ef188bc950a317b
      https://github.com/Perl/perl5/commit/b10c836bbf5082735e1853c06ef188bc950a317b
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date:   2019-12-26 (Thu, 26 Dec 2019)

  Changed paths:
    M MANIFEST
    M Porting/Maintainers.pl
    M cpan/podlators/Makefile.PL
    M cpan/podlators/lib/Pod/Man.pm
    M cpan/podlators/lib/Pod/ParseLink.pm
    M cpan/podlators/lib/Pod/Text.pm
    M cpan/podlators/lib/Pod/Text/Color.pm
    M cpan/podlators/lib/Pod/Text/Overstrike.pm
    M cpan/podlators/lib/Pod/Text/Termcap.pm
    M cpan/podlators/scripts/pod2man.PL
    M cpan/podlators/scripts/pod2text.PL
    M cpan/podlators/t/data/perl.conf
    A cpan/podlators/t/data/snippets/termcap/term-unknown
    A cpan/podlators/t/data/snippets/text/alt
    A cpan/podlators/t/data/snippets/text/c-with-spaces
    A cpan/podlators/t/data/snippets/text/code
    A cpan/podlators/t/data/snippets/text/error-die
    A cpan/podlators/t/data/snippets/text/error-none
    A cpan/podlators/t/data/snippets/text/error-normal
    A cpan/podlators/t/data/snippets/text/error-pod
    A cpan/podlators/t/data/snippets/text/error-stderr
    A cpan/podlators/t/data/snippets/text/error-stderr-opt
    A cpan/podlators/t/data/snippets/text/for
    A cpan/podlators/t/data/snippets/text/late-encoding
    A cpan/podlators/t/data/snippets/text/link-rt
    A cpan/podlators/t/data/snippets/text/link-url
    A cpan/podlators/t/data/snippets/text/margin
    A cpan/podlators/t/data/snippets/text/nonbreaking-space
    A cpan/podlators/t/data/snippets/text/nourls
    A cpan/podlators/t/data/snippets/text/periods
    A cpan/podlators/t/data/snippets/text/quotes-opt
    A cpan/podlators/t/data/snippets/text/s-whitespace
    A cpan/podlators/t/data/snippets/text/sentence-spacing
    A cpan/podlators/t/data/snippets/text/utf8
    A cpan/podlators/t/data/snippets/text/verbatim
    M cpan/podlators/t/data/termcap
    M cpan/podlators/t/docs/pod-spelling.t
    M cpan/podlators/t/docs/pod.t
    M cpan/podlators/t/docs/spdx-license.t
    M cpan/podlators/t/docs/synopsis.t
    R cpan/podlators/t/docs/urls.t
    M cpan/podlators/t/general/basic.t
    M cpan/podlators/t/general/filehandle.t
    M cpan/podlators/t/general/pod-parser.t
    M cpan/podlators/t/lib/Test/Podlators.pm
    M cpan/podlators/t/lib/Test/RRA.pm
    M cpan/podlators/t/lib/Test/RRA/Config.pm
    M cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm
    M cpan/podlators/t/man/devise-date.t
    M cpan/podlators/t/man/devise-title.t
    M cpan/podlators/t/man/empty.t
    M cpan/podlators/t/man/heading.t
    M cpan/podlators/t/man/iso-8859-1.t
    M cpan/podlators/t/man/no-encode.t
    M cpan/podlators/t/man/snippets.t
    M cpan/podlators/t/man/utf8-io.t
    M cpan/podlators/t/style/minimum-version.t
    M cpan/podlators/t/style/module-version.t
    A cpan/podlators/t/style/obsolete-strings.t
    M cpan/podlators/t/style/strict.t
    R cpan/podlators/t/text/basic.t
    M cpan/podlators/t/text/color.t
    R cpan/podlators/t/text/encoding.t
    R cpan/podlators/t/text/options.t
    A cpan/podlators/t/text/snippets.t
    M cpan/podlators/t/text/termcap.t
    R cpan/podlators/t/text/utf8.t

  Log Message:
  -----------
  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.
[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic