Skip Menu |

This queue is for tickets about the Fraction CPAN distribution.

Report information
The Basics
Id: 121620
Status: new
Priority: 0/
Queue: Fraction

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

Bug Information
Severity: (no value)
Broken in: v.53b
Fixed in: (no value)



Subject: version scheme is confusing PAUSE
Hi, Your version scheme is confusing PAUSE. Ideally package and distro versions would be simple numbers. the "v." is enough to confuse most parsing based on the norm. Patch to come.
Patch
Subject: patch.patch
diff --git a/Fraction.pm b/Fraction.pm index 63b0d68..59b2675 100644 --- a/Fraction.pm +++ b/Fraction.pm @@ -15,7 +15,7 @@ package Math::Fraction; use vars qw($VERSION @ISA @EXPORT); require Exporter; -$VERSION = "0.53"; +$VERSION = "0.54"; @ISA = qw(Exporter); @EXPORT = qw(frac); @EXPORT_OK = qw(reduce string decimal num list is_tag); diff --git a/FractionDemo.pm b/FractionDemo.pm index cd2e14e..314e100 100644 --- a/FractionDemo.pm +++ b/FractionDemo.pm @@ -1,12 +1,12 @@ package Math::FractionDemo; -# Math::Fraction v.53b (2 Feb 1998) Test Script +# Math::Fraction 0.54 (2 Feb 1998) Test Script use Math::Fraction qw(:DEFAULT :STR_NUM); require Exporter; use vars qw($VERSION); -$VERSION = ".53"; +$VERSION = "0.54"; @ISA = qw(Exporter); @EXPORT = qw(frac_calc frac_demo); diff --git a/META.json b/META.json new file mode 100644 index 0000000..81a0f0e --- /dev/null +++ b/META.json @@ -0,0 +1,40 @@ +{ + "abstract" : "unknown", + "author" : [ + "unknown" + ], + "dynamic_config" : 1, + "generated_by" : "ExtUtils::MakeMaker version 7.1002, CPAN::Meta::Converter version 2.150005", + "license" : [ + "unknown" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", + "version" : "2" + }, + "name" : "Math-Fraction", + "no_index" : { + "directory" : [ + "t", + "inc" + ] + }, + "prereqs" : { + "build" : { + "requires" : { + "ExtUtils::MakeMaker" : "0" + } + }, + "configure" : { + "requires" : { + "ExtUtils::MakeMaker" : "0" + } + }, + "runtime" : { + "requires" : {} + } + }, + "release_status" : "stable", + "version" : "0.54", + "x_serialization_backend" : "JSON::PP version 2.27300_01" +} diff --git a/META.yml b/META.yml new file mode 100644 index 0000000..4e460b9 --- /dev/null +++ b/META.yml @@ -0,0 +1,22 @@ +--- +abstract: unknown +author: + - unknown +build_requires: + ExtUtils::MakeMaker: '0' +configure_requires: + ExtUtils::MakeMaker: '0' +dynamic_config: 1 +generated_by: 'ExtUtils::MakeMaker version 7.1002, CPAN::Meta::Converter version 2.150005' +license: unknown +meta-spec: + url: http://module-build.sourceforge.net/META-spec-v1.4.html + version: '1.4' +name: Math-Fraction +no_index: + directory: + - t + - inc +requires: {} +version: '0.54' +x_serialization_backend: 'CPAN::Meta::YAML version 0.018'