r41095 - in /trunk/libtext-simpletable-perl: Changes LICENSE MANIFEST META.yml Makefile.PL README debian/changelog lib/Text/SimpleTable.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sun Aug 2 22:30:24 UTC 2009


Author: jawnsy-guest
Date: Sun Aug  2 22:30:18 2009
New Revision: 41095

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=41095
Log:
IGNORE-VERSION: 1.8-1
+ Lots of changes to improve Kwalitee score

Added:
    trunk/libtext-simpletable-perl/LICENSE
      - copied unchanged from r41094, branches/upstream/libtext-simpletable-perl/current/LICENSE
    trunk/libtext-simpletable-perl/README
      - copied unchanged from r41094, branches/upstream/libtext-simpletable-perl/current/README
Modified:
    trunk/libtext-simpletable-perl/Changes
    trunk/libtext-simpletable-perl/MANIFEST
    trunk/libtext-simpletable-perl/META.yml
    trunk/libtext-simpletable-perl/Makefile.PL
    trunk/libtext-simpletable-perl/debian/changelog
    trunk/libtext-simpletable-perl/lib/Text/SimpleTable.pm

Modified: trunk/libtext-simpletable-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-simpletable-perl/Changes?rev=41095&op=diff
==============================================================================
--- trunk/libtext-simpletable-perl/Changes (original)
+++ trunk/libtext-simpletable-perl/Changes Sun Aug  2 22:30:18 2009
@@ -1,4 +1,16 @@
 Tis file documents the revision history for Perl extension Text::SimpleTable.
+
+1.8   2009-08-01 00:00:00
+        - Improved kwalitee.
+
+1.7   2009-08-01 00:00:00
+        - Fixed typo.
+
+1.6   2009-07-27 00:00:00
+        - Improved kwalitee.
+
+1.5   2009-07-27 00:00:00
+        - Added readme.
 
 1.4   2009-07-16 00:00:00
         - Fixed all shebang lines.

Modified: trunk/libtext-simpletable-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-simpletable-perl/MANIFEST?rev=41095&op=diff
==============================================================================
--- trunk/libtext-simpletable-perl/MANIFEST (original)
+++ trunk/libtext-simpletable-perl/MANIFEST Sun Aug  2 22:30:18 2009
@@ -1,9 +1,11 @@
 .perltidyrc
 Changes
 lib/Text/SimpleTable.pm
+LICENSE
 Makefile.PL
 MANIFEST			This list of files
 MANIFEST.SKIP
+README
 t/01use.t
 t/02pod.t
 t/03podcoverage.t

Modified: trunk/libtext-simpletable-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-simpletable-perl/META.yml?rev=41095&op=diff
==============================================================================
--- trunk/libtext-simpletable-perl/META.yml (original)
+++ trunk/libtext-simpletable-perl/META.yml Sun Aug  2 22:30:18 2009
@@ -1,20 +1,25 @@
 --- #YAML:1.0
 name:               Text-SimpleTable
-version:            1.4
-abstract:           ~
+version:            1.8
+abstract:           Simple eyecandy ASCII tables
 author:
     - Sebastian Riedel <sri at cpan.org>
-license:            unknown
+license:            artistic_2
 distribution_type:  module
-configure_requires:
+configure_requires:  {}
+build_requires:  {}
+requires:
     ExtUtils::MakeMaker:  0
-build_requires:
-    ExtUtils::MakeMaker:  0
-requires:  {}
+    perl:                 5.008001
+    Test::More:           0
+resources:
+    license:     http://dev.perl.org/licenses/
+    repository:  http://github.com/kraih/text-simpletable/tree/master
 no_index:
     directory:
         - t
         - inc
+        - t
 generated_by:       ExtUtils::MakeMaker version 6.54
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html

Modified: trunk/libtext-simpletable-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-simpletable-perl/Makefile.PL?rev=41095&op=diff
==============================================================================
--- trunk/libtext-simpletable-perl/Makefile.PL (original)
+++ trunk/libtext-simpletable-perl/Makefile.PL Sun Aug  2 22:30:18 2009
@@ -7,10 +7,35 @@
 
 use ExtUtils::MakeMaker;
 
+my $mm = $ExtUtils::MakeMaker::VERSION;
+
 # Son, when you participate in sporting events,
 # it's not whether you win or lose, it's how drunk you get.
 WriteMakefile(
     NAME         => 'Text::SimpleTable',
     VERSION_FROM => 'lib/Text/SimpleTable.pm',
-    AUTHOR       => 'Sebastian Riedel <sri at cpan.org>'
+    ABSTRACT     => 'Simple eyecandy ASCII tables',
+    AUTHOR       => 'Sebastian Riedel <sri at cpan.org>',
+
+    ($mm < 6.3002 ? () : ('LICENSE' => 'artistic_2')),
+
+    (   $mm < 6.46
+        ? ()
+        : ( META_MERGE => {
+                requires  => {perl => '5.008001'},
+                resources => {
+                    license => 'http://dev.perl.org/licenses/',
+                    repository =>
+                      'http://github.com/kraih/text-simpletable/tree/master'
+                },
+                no_index => {directory => [qw/t/]}
+            },
+            META_ADD => {
+                build_requires     => {},
+                configure_requires => {}
+            },
+        )
+    ),
+
+    PREREQ_PM => {'ExtUtils::MakeMaker' => 0, 'Test::More' => 0}
 );

Modified: trunk/libtext-simpletable-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-simpletable-perl/debian/changelog?rev=41095&op=diff
==============================================================================
--- trunk/libtext-simpletable-perl/debian/changelog (original)
+++ trunk/libtext-simpletable-perl/debian/changelog Sun Aug  2 22:30:18 2009
@@ -1,12 +1,13 @@
-libtext-simpletable-perl (1.4-1) UNRELEASED; urgency=low
+libtext-simpletable-perl (1.8-1) UNRELEASED; urgency=low
 
-  IGNORE-VERSION: 1.4-1
+  IGNORE-VERSION: 1.8-1
   No release necessary
 
   * New upstream release
     + Fixed shebang lines to use /usr/bin/env perl
+    + Lots of changes to improve Kwalitee score
 
- -- Jonathan Yu <frequency at cpan.org>  Thu, 16 Jul 2009 14:31:46 -0400
+ -- Jonathan Yu <frequency at cpan.org>  Sun, 02 Aug 2009 14:30:35 -0400
 
 libtext-simpletable-perl (1.2-1) unstable; urgency=low
 

Modified: trunk/libtext-simpletable-perl/lib/Text/SimpleTable.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-simpletable-perl/lib/Text/SimpleTable.pm?rev=41095&op=diff
==============================================================================
--- trunk/libtext-simpletable-perl/lib/Text/SimpleTable.pm (original)
+++ trunk/libtext-simpletable-perl/lib/Text/SimpleTable.pm Sun Aug  2 22:30:18 2009
@@ -4,7 +4,7 @@
 
 use strict;
 
-our $VERSION = '1.4';
+our $VERSION = '1.8';
 
 # Top
 our $TOP_LEFT      = '.-';
@@ -373,11 +373,11 @@
 
 Brian Cassidy
 
-=head1 COPYRIGHT
+=head1 COPYRIGHT AND LICENSE
 
 Copyright (C) 2005-2009, Sebastian Riedel.
 
 This program is free software, you can redistribute it and/or modify it under
-the same terms as Perl 5.10.
+the terms of the Artistic License version 2.0.
 
 =cut




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