r29099 - in /trunk/libroman-perl: Changes META.yml Makefile.PL README debian/changelog lib/Roman.pm t/01.t

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Thu Jan 1 20:48:44 UTC 2009


Author: gregoa
Date: Thu Jan  1 20:48:41 2009
New Revision: 29099

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=29099
Log:
New upstream release.

Modified:
    trunk/libroman-perl/Changes
    trunk/libroman-perl/META.yml
    trunk/libroman-perl/Makefile.PL
    trunk/libroman-perl/README
    trunk/libroman-perl/debian/changelog
    trunk/libroman-perl/lib/Roman.pm
    trunk/libroman-perl/t/01.t

Modified: trunk/libroman-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libroman-perl/Changes?rev=29099&op=diff
==============================================================================
--- trunk/libroman-perl/Changes (original)
+++ trunk/libroman-perl/Changes Thu Jan  1 20:48:41 2009
@@ -1,4 +1,7 @@
 Revision history for Roman
+
+1.23  18 Dec 2008, Perl 21th birthday version
+        Minimum Perl version required in META.yml
 
 1.22  20 Dec 2007, Perl 20th birthday version
         Require a new version of Exporter

Modified: trunk/libroman-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libroman-perl/META.yml?rev=29099&op=diff
==============================================================================
--- trunk/libroman-perl/META.yml (original)
+++ trunk/libroman-perl/META.yml Thu Jan  1 20:48:41 2009
@@ -1,15 +1,22 @@
 --- #YAML:1.0
-name:                Roman
-version:             1.22
-abstract:            Perl module for conversion between Roman and Arabic numerals.
-license:             perl
-generated_by:        ExtUtils::MakeMaker version 6.32
-distribution_type:   module
-requires:     
-    Exporter:                      5.57
-    Test::More:                    0
-meta-spec:
-    url:     http://module-build.sourceforge.net/META-spec-v1.2.html
-    version: 1.2
+name:               Roman
+version:            1.23
+abstract:           Perl module for conversion between Roman and Arabic numerals.
 author:
     - Alexandr Ciornii <alexchorny AT gmail.com>
+license:            perl
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
+requires:
+    Exporter:    5.57
+    perl:        5.006
+    Test::More:  0
+no_index:
+    directory:
+        - t
+        - inc
+generated_by:       ExtUtils::MakeMaker version 6.48
+meta-spec:
+    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
+    version:  1.4

Modified: trunk/libroman-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libroman-perl/Makefile.PL?rev=29099&op=diff
==============================================================================
--- trunk/libroman-perl/Makefile.PL (original)
+++ trunk/libroman-perl/Makefile.PL Thu Jan  1 20:48:41 2009
@@ -13,8 +13,10 @@
         'Test::More' => 0,
         'Exporter' => 5.57,
     },
-    ($ExtUtils::MakeMaker::VERSION gt '6.30'? 
+    ($ExtUtils::MakeMaker::VERSION ge '6.31'? 
      ('LICENSE'		=> 'perl', ) : ()),
+    ($ExtUtils::MakeMaker::VERSION ge '6.48'? 
+     ('MIN_PERL_VERSION' => 5.006,) : ()),
     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
     clean               => { FILES => 'Roman-*' },
 );

Modified: trunk/libroman-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libroman-perl/README?rev=29099&op=diff
==============================================================================
--- trunk/libroman-perl/README (original)
+++ trunk/libroman-perl/README Thu Jan  1 20:48:41 2009
@@ -1,4 +1,4 @@
-Roman.pm version 1.21
+Roman.pm version 1.23
 
 NAME
      Roman - Perl module for conversion between Roman and Arabic
@@ -54,7 +54,7 @@
 COPYRIGHT AND LICENCE
 
 Copyright (c) 1995-1997 OZAWA Sakuro.
-Copyright (C) 2007 Alexandr Ciornii
+Copyright (C) 2007-2008 Alexandr Ciornii
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.

Modified: trunk/libroman-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libroman-perl/debian/changelog?rev=29099&op=diff
==============================================================================
--- trunk/libroman-perl/debian/changelog (original)
+++ trunk/libroman-perl/debian/changelog Thu Jan  1 20:48:41 2009
@@ -1,8 +1,10 @@
-libroman-perl (1.22-3) UNRELEASED; urgency=low
+libroman-perl (1.23-1) UNRELEASED; urgency=low
 
   * debian/control: Changed: Switched Vcs-Browser field to ViewSVN
     (source stanza).
   * debian/control: Added: ${misc:Depends} to Depends: field.
+
+  * New upstream release.
 
  -- gregor herrmann <gregoa at debian.org>  Sun, 16 Nov 2008 20:46:40 +0100
 

Modified: trunk/libroman-perl/lib/Roman.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libroman-perl/lib/Roman.pm?rev=29099&op=diff
==============================================================================
--- trunk/libroman-perl/lib/Roman.pm (original)
+++ trunk/libroman-perl/lib/Roman.pm Thu Jan  1 20:48:41 2009
@@ -3,7 +3,7 @@
 use 5.006;
 use strict;
 use warnings;
-our $VERSION='1.22';
+our $VERSION='1.23';
 
 =head1 NAME
 

Modified: trunk/libroman-perl/t/01.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libroman-perl/t/01.t?rev=29099&op=diff
==============================================================================
--- trunk/libroman-perl/t/01.t (original)
+++ trunk/libroman-perl/t/01.t Thu Jan  1 20:48:41 2009
@@ -12,8 +12,8 @@
  qw/V 5 X 10 L 50 C 100 D 500 M 1000 MCDXLIV 1444 MMVII 2007/
 );
 }
-use Test::More tests => (scalar(keys %test)*3+1);
-use_ok 'Roman';
+use Test::More tests => (scalar(keys %test)*3);
+use Roman;
 
 while (my ($rom,$arab)=each %test) {
  ok(isroman($rom),"$rom is roman");




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