Skip Menu |

This queue is for tickets about the Perl-MinimumVersion CPAN distribution.

Report information
The Basics
Id: 36716
Status: stalled
Priority: 0/
Queue: Perl-MinimumVersion

People
Owner: Nobody in particular
Requestors: burak [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.15
Fixed in: (no value)



Subject: misinterpreted $^V
I have this code in my Sys::Info module: sub perl { defined $^V ? sprintf( '%vd', $^V ) : _legacy_perl( $] ) } and since I'm checking $^V, it's interpreted as actually using that variable and this makes the minimum version v5.6.0. I'm not sure how to fix that since the check related to this is hardcoded in a hash, but FYI...