Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

Both perlver (from Perl::MinimumVersion) and perlver-fast (from Perl::MinimumVersion::Fast, which is much faster, but requires perl-5.8.0 and up) are extremely useful, but both lack some covarage, and I personally miss support for -e.

Another problem is that both only report a single issue:

$ cat test.pl #!/usr/bin/perl use strict; use warnings; # Requires 5.6.0 my $a = 5; -e -f -s $0 and print "0\n"; # Requires 5.8.0 1 < $a < 10 and print "1\n"; # Requires 5.31.11 / 5.32.0 $a //= 42; # Requires 5.10.0 $a =~ s{0\K}{}; # Requires 5.10.0 $b = $a =~ s{0}{1}r; # Requires 5.14.0 $ perlver --blame test.pl ------------------------------------------------------------ File : test.pl Line : 12 Char : 12 Rule : _regex Version : 5.013002 ------------------------------------------------------------ s{0}{1}r ------------------------------------------------------------

perlver-fast does not support --blame :(

$ perlver-fast test.pl test.pl: 5.010

If you replace the script of perlver-fast with this code:

#!/usr/bin/env perl use strict; use warnings; use Getopt::Long qw(:config bundling passthrough); use Perl::MinimumVersion::Fast; GetOptions ( "e:s" => \my $expr, "v" => \my $verbose, ) or die; if (@ARGV) { report ($_, $_) for @ARGV; } elsif ($expr) { report ("-e", \$expr); } else { my $src = do { local $/; <> }; report ("STDIN", \$src); } sub report { my ($in, $src) = @_; my $v = Perl::MinimumVersion::Fast->new ($src); printf "%s: %s / %s\n", $in, $v->minimum_version, $v->minimum_synt +ax_version; $verbose or return; my @markers = $v->version_markers; while (@markers) { my ($pv, $m) = splice @markers, 0, 2; printf "%-10s %s\n", $pv, $_ for @$m; } }

You have support for -e:

$ perlver-fast -e '$a //= 4' -e: 5.010 / 5.010

where it would otherwise fail with Unknown file: -e at ...

With this modified version you can also show the reasons (with -v)

$ perlver-fast -ve '$a //= 4; package foo 0.04 { 1; }' -e: 5.014 / 5.014 5.010 //= operator 5.012 package NAME VERSION 5.014 package NAME VERSION BLOCK

It however does not (yet) detect \K or s{}{}r (issues are created)

$ perlver-fast -ve '$a = "fo" =~ s{f\K}{o}r' -e: 5.006 / 5.006

Enjoy, Have FUN! H.Merijn

In reply to Re^2: how check the first release of a new operand? (perlvers ) by Tux
in thread how check the first release of a new operand? by xiaoyafeng

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (4)
As of 2024-04-25 09:47 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found