Blob Blame History Raw
From ec3610aee2308bab534fcc2a605851a7279fe295 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:25:28 +0200
Subject: [PATCH] Make XML::Tidy version valid
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

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

CPAN RT#56073

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

diff --git a/Tidy.pm b/Tidy.pm
index 0c87aef..8dba992 100644
--- a/Tidy.pm
+++ b/Tidy.pm
@@ -8,7 +8,7 @@ use Carp;
 use Exporter;
 use Math::BaseCnv qw(:b64);
 use XML::XPath::XMLParser;
-our $VERSION     = '1.12.B55J2qn'; our $PTVR = $VERSION; $PTVR =~ s/^\d+\.\d+\.//; # Please see `perldoc Time::PT` for an explanation of $PTVR.
+our $VERSION     = '1.12'; our $PTVR = $VERSION; $PTVR =~ s/^\d+\.\d+\.//; # Please see `perldoc Time::PT` for an explanation of $PTVR.
 @EXPORT = qw(
     UNKNOWN_NODE
     ELEMENT_NODE
-- 
2.4.3