Blob Blame History Raw
From a1dc89a161100ed7430d91fe8f24716ca0d1f634 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
Date: Fri, 4 Sep 2015 14:06:00 +0200
Subject: [PATCH] Make Math::BaseCnv version valid
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

1.8.B59BrZX version is invalid and is refused by ExtUtils::MakeMaker
7.06 when building reverse dependencies. Therefore the version value
must be normalized.

CPAN RT#60275

Signed-off-by: Petr Písař <ppisar@redhat.com>
---
 BaseCnv.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/BaseCnv.pm b/BaseCnv.pm
index c6112df..b179a17 100644
--- a/BaseCnv.pm
+++ b/BaseCnv.pm
@@ -14,7 +14,7 @@ our %EXPORT_TAGS = ( 'all' =>[ qw(cnv dec hex b10 b64 b64sort dig diginit summ f
                      'b64' =>[ qw(cnv         b10 b64 b64sort            ) ],
                      'dig' =>[ qw(                            dig diginit) ],
                      'sfc' =>[ qw(                         summ fact choo) ] );
-our $VERSION     = '1.8.B59BrZX'; our $PTVR = $VERSION; $PTVR =~ s/^\d+\.\d+\.//; # Please see `perldoc Time::PT` for an explanation of $PTVR.
+our $VERSION     = '1.8'; our $PTVR = $VERSION; $PTVR =~ s/^\d+\.\d+\.//; # Please see `perldoc Time::PT` for an explanation of $PTVR.
 my $d2bs = ''; my %bs2d = (); my $nega = '';
 my %digsets = (
   'usr' => [], # this will be assigned if a dig(\@newd) call is made
-- 
2.4.3