Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: how check the first release of a new operand? (perlvers )

by Anonymous Monk
on Dec 07, 2020 at 10:54 UTC ( [id://11124772]=note: print w/replies, xml ) Need Help??


in reply to how check the first release of a new operand?

perlver The Perl Minimum Version Analyzer Modules Perl::MinimumVersion Find a minimum required version of perl for Perl code
  • Comment on Re: how check the first release of a new operand? (perlvers )

Replies are listed 'Best First'.
Re^2: how check the first release of a new operand? (perlvers )
by Tux (Canon) on Dec 07, 2020 at 11:54 UTC

    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

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11124772]
help
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found