Skip Menu |

This queue is for tickets about the Module-Build CPAN distribution.

Report information
The Basics
Id: 52089
Status: resolved
Priority: 0/
Queue: Module-Build

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

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



Subject: [PATCH] bring Module::Build in line with current version.pm
Date: Thu, 26 Nov 2009 09:43:38 -0500
To: bug-Module-Build [...] rt.cpan.org
From: David Golden <dagolden [...] cpan.org>
Show quoted text
---------- Forwarded message ---------- From: John Peacock <john.peacock@havurah-software.org> Date: Thu, Nov 26, 2009 at 9:08 AM Subject: Patch to bring Module::Build in line with current version.pm To: List - Module-Build <module-build@perl.org> This patch should be applied as soon as practical, as it improves the v-string detection in Perl releases from 5.6.x through 5.8.0 (inclusive).  It is not required for the 5.10.2 release (though I wouldn't cry if it were included anyways, just to be consistent, since 5.10.2 should ship with version.pm 0.78). I have an in-progress patch to deal with multiple underscores in version initialization, so if that lands before this gets applied, I'll provide a new patch. John --- lib/Module/Build/Version.pm (revision 2870) +++ lib/Module/Build/Version.pm (local) @@ -121,8 +121,7 @@  use POSIX qw/locale_h/;  use locale;  use vars qw ($VERSION @ISA @REGEXS); -$VERSION = '0.77'; -$VERSION = eval $VERSION; +$VERSION = 0.78;  push @REGEXS, qr/        ^v?     # optional leading 'v' @@ -613,9 +612,10 @@  sub _un_vstring {     my $value = shift;     # may be a v-string -    if ( $] >= 5.006_000 && length($value) >= 3 && $value !~ /[._]/ ) { +    if ( $] >= 5.006_000 && length($value) >= 3 && $value !~ /[._]/ +       && (ord($value) < ord('0') || ord($value) > ord('9')) ) {        my $tvalue = sprintf("v%vd",$value); -       if ( $tvalue =~ /^v\d+\.\d+\.\d+$/ ) { +       if ( $tvalue =~ /^v\d+(\.\d+){2,}$/ ) {            # must be a v-string            $value = $tvalue;        }
I'm going to hold off on M::B::Version updates until version-strictness work for blead is resolved.
Updated to M::B::Version to 0.82