Skip Menu |

This queue is for tickets about the Text-RecordParser CPAN distribution.

Report information
The Basics
Id: 19103
Status: resolved
Worked: 1 min
Priority: 0/
Queue: Text-RecordParser

People
Owner: kclark [...] cpan.org
Requestors: rmo [...] sunnmore.net
Cc:
AdminCc:

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



Subject: Change in version definition to help package system pick up version
perl version v5.8.8 rpm-4.4.2-15.2 linux v2.6.16 RPM, and probably other package systems, seems to have problems picking up the version of Text::RecordParse::Tab. If you use the same approach to the version info as in Text::RecordParser::Tab, picks this up fine. I've attached a diff for the change of lib/Text/RecordParser.pm
Subject: Text-RecordParser-v1.1.2-version.patch
--- lib/Text/RecordParser.pm.orig 2006-05-05 19:35:53.000000000 +0200 +++ lib/Text/RecordParser.pm 2006-05-05 19:36:22.000000000 +0200 @@ -87,7 +87,7 @@ use Readonly; use Text::ParseWords qw( parse_line ); -use version; our $VERSION = qv('1.1.2'); +our $VERSION = version->new('1.1.2'); Readonly my $COMMA => ','; Readonly my $EMPTY_STR => q{};
On Fri May 05 13:50:37 2006, guest wrote: Show quoted text
> perl version v5.8.8 > rpm-4.4.2-15.2 > linux v2.6.16 > > RPM, and probably other package systems, seems to have problems picking > up the version of Text::RecordParse::Tab. If you use the same approach > to the version info as in Text::RecordParser::Tab, picks this up fine. > I've attached a diff for the change of lib/Text/RecordParser.pm
OK, no problem. This will be in 1.2.1. ky