r10031 - in /branches/upstream/libroman-perl/current: Changes META.yml Makefile.PL README lib/Roman.pm t/01.t

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Fri Nov 30 14:54:01 UTC 2007


Author: gregoa-guest
Date: Fri Nov 30 14:54:00 2007
New Revision: 10031

URL: http://svn.debian.org/wsvn/?sc=1&rev=10031
Log:
[svn-upgrade] Integrating new upstream version, libroman-perl (1.21)

Modified:
    branches/upstream/libroman-perl/current/Changes
    branches/upstream/libroman-perl/current/META.yml
    branches/upstream/libroman-perl/current/Makefile.PL
    branches/upstream/libroman-perl/current/README
    branches/upstream/libroman-perl/current/lib/Roman.pm
    branches/upstream/libroman-perl/current/t/01.t

Modified: branches/upstream/libroman-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libroman-perl/current/Changes?rev=10031&op=diff
==============================================================================
--- branches/upstream/libroman-perl/current/Changes (original)
+++ branches/upstream/libroman-perl/current/Changes Fri Nov 30 14:54:00 2007
@@ -1,12 +1,18 @@
 Revision history for Roman
 
-1.00    01 Sep 1995
+1.21  26 Nov 2007
+        Requires 5.006 instead of 5.6.0.
+        Do not subclass Exporter
+
+1.20  10 Mar 2007
+        Same as 1.10_01
+
+1.10_01  06 Mar 2007
+        Rewrite by Alexandr Ciornii
 
 1.10    03 Sep 1997
         Author's address is now <ozawa at aisoft.co.jp>
 
-1.10_01  06 Mar 2007
-        Rewrite by Alexandr Ciornii
+1.00    01 Sep 1995
 
-1.20  10 Mar 2007
-        Same as 1.10_01
+

Modified: branches/upstream/libroman-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libroman-perl/current/META.yml?rev=10031&op=diff
==============================================================================
--- branches/upstream/libroman-perl/current/META.yml (original)
+++ branches/upstream/libroman-perl/current/META.yml Fri Nov 30 14:54:00 2007
@@ -1,9 +1,9 @@
 --- #YAML:1.0
 name:                Roman
-version:             1.20
+version:             1.21
 abstract:            Perl module for conversion between Roman and Arabic numerals.
 license:             perl
-generated_by:        ExtUtils::MakeMaker version 6.31
+generated_by:        ExtUtils::MakeMaker version 6.32
 distribution_type:   module
 requires:     
     Test::More:                    0

Modified: branches/upstream/libroman-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/branches/upstream/libroman-perl/current/Makefile.PL?rev=10031&op=diff
==============================================================================
--- branches/upstream/libroman-perl/current/Makefile.PL (original)
+++ branches/upstream/libroman-perl/current/Makefile.PL Fri Nov 30 14:54:00 2007
@@ -1,4 +1,4 @@
-use 5.6.0;
+use 5.006;
 use strict;
 use warnings;
 use ExtUtils::MakeMaker;
@@ -12,7 +12,7 @@
     PREREQ_PM => {
         'Test::More' => 0,
     },
-    ($ExtUtils::MakeMaker::VERSION ge '6.30_00'? 
+    ($ExtUtils::MakeMaker::VERSION gt '6.30'? 
      ('LICENSE'		=> 'perl', ) : ()),
     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
     clean               => { FILES => 'Roman-*' },

Modified: branches/upstream/libroman-perl/current/README
URL: http://svn.debian.org/wsvn/branches/upstream/libroman-perl/current/README?rev=10031&op=diff
==============================================================================
--- branches/upstream/libroman-perl/current/README (original)
+++ branches/upstream/libroman-perl/current/README Fri Nov 30 14:54:00 2007
@@ -1,4 +1,4 @@
-Roman.pm version 1.20
+Roman.pm version 1.21
 
 NAME
      Roman - Perl module for conversion between Roman and Arabic

Modified: branches/upstream/libroman-perl/current/lib/Roman.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libroman-perl/current/lib/Roman.pm?rev=10031&op=diff
==============================================================================
--- branches/upstream/libroman-perl/current/lib/Roman.pm (original)
+++ branches/upstream/libroman-perl/current/lib/Roman.pm Fri Nov 30 14:54:00 2007
@@ -1,9 +1,9 @@
 package Roman;
 
-use 5.6.0;
+use 5.006;
+use strict;
 use warnings;
-use strict;
-our $VERSION='1.20';
+our $VERSION='1.21';
 
 =head1 NAME
 
@@ -99,8 +99,8 @@
 
 =cut
 
-require Exporter;
-our @ISA = qw(Exporter);
+use Exporter 'import';
+#our @ISA = qw(Exporter);
 our @EXPORT = qw(isroman arabic Roman roman);
 
 our %roman2arabic = qw(I 1 V 5 X 10 L 50 C 100 D 500 M 1000);

Modified: branches/upstream/libroman-perl/current/t/01.t
URL: http://svn.debian.org/wsvn/branches/upstream/libroman-perl/current/t/01.t?rev=10031&op=diff
==============================================================================
--- branches/upstream/libroman-perl/current/t/01.t (original)
+++ branches/upstream/libroman-perl/current/t/01.t Fri Nov 30 14:54:00 2007
@@ -1,6 +1,6 @@
 #!perl -T
 
-use 5.6.0;
+use 5.006;
 use strict;
 use warnings;
 our %test;




More information about the Pkg-perl-cvs-commits mailing list