r41092 - in /branches/upstream/libtext-simpletable-perl: 1.7/ current/Changes current/LICENSE current/MANIFEST current/META.yml current/Makefile.PL current/README current/lib/Text/SimpleTable.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sun Aug 2 15:28:29 UTC 2009


Author: jawnsy-guest
Date: Sun Aug  2 15:28:23 2009
New Revision: 41092

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=41092
Log:
revert my recent upgrade

Removed:
    branches/upstream/libtext-simpletable-perl/1.7/
    branches/upstream/libtext-simpletable-perl/current/LICENSE
    branches/upstream/libtext-simpletable-perl/current/README
Modified:
    branches/upstream/libtext-simpletable-perl/current/Changes
    branches/upstream/libtext-simpletable-perl/current/MANIFEST
    branches/upstream/libtext-simpletable-perl/current/META.yml
    branches/upstream/libtext-simpletable-perl/current/Makefile.PL
    branches/upstream/libtext-simpletable-perl/current/lib/Text/SimpleTable.pm

Modified: branches/upstream/libtext-simpletable-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-simpletable-perl/current/Changes?rev=41092&op=diff
==============================================================================
--- branches/upstream/libtext-simpletable-perl/current/Changes (original)
+++ branches/upstream/libtext-simpletable-perl/current/Changes Sun Aug  2 15:28:23 2009
@@ -1,13 +1,4 @@
 Tis file documents the revision history for Perl extension Text::SimpleTable.
-
-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: branches/upstream/libtext-simpletable-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-simpletable-perl/current/MANIFEST?rev=41092&op=diff
==============================================================================
--- branches/upstream/libtext-simpletable-perl/current/MANIFEST (original)
+++ branches/upstream/libtext-simpletable-perl/current/MANIFEST Sun Aug  2 15:28:23 2009
@@ -1,11 +1,9 @@
 .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: branches/upstream/libtext-simpletable-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-simpletable-perl/current/META.yml?rev=41092&op=diff
==============================================================================
--- branches/upstream/libtext-simpletable-perl/current/META.yml (original)
+++ branches/upstream/libtext-simpletable-perl/current/META.yml Sun Aug  2 15:28:23 2009
@@ -1,25 +1,20 @@
 --- #YAML:1.0
 name:               Text-SimpleTable
-version:            1.7
-abstract:           Simple eyecandy ASCII tables
+version:            1.4
+abstract:           ~
 author:
     - Sebastian Riedel <sri at cpan.org>
-license:            artistic_2
+license:            unknown
 distribution_type:  module
-configure_requires:  {}
-build_requires:  {}
-requires:
+configure_requires:
     ExtUtils::MakeMaker:  0
-    perl:                 5.008001
-    Test::More:           0
-resources:
-    license:     http://dev.perl.org/licenses/
-    repository:  http://github.com/kraih/text-simpletable/tree/master
+build_requires:
+    ExtUtils::MakeMaker:  0
+requires:  {}
 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: branches/upstream/libtext-simpletable-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-simpletable-perl/current/Makefile.PL?rev=41092&op=diff
==============================================================================
--- branches/upstream/libtext-simpletable-perl/current/Makefile.PL (original)
+++ branches/upstream/libtext-simpletable-perl/current/Makefile.PL Sun Aug  2 15:28:23 2009
@@ -7,35 +7,10 @@
 
 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',
-    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}
+    AUTHOR       => 'Sebastian Riedel <sri at cpan.org>'
 );

Modified: branches/upstream/libtext-simpletable-perl/current/lib/Text/SimpleTable.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-simpletable-perl/current/lib/Text/SimpleTable.pm?rev=41092&op=diff
==============================================================================
--- branches/upstream/libtext-simpletable-perl/current/lib/Text/SimpleTable.pm (original)
+++ branches/upstream/libtext-simpletable-perl/current/lib/Text/SimpleTable.pm Sun Aug  2 15:28:23 2009
@@ -4,7 +4,7 @@
 
 use strict;
 
-our $VERSION = '1.7';
+our $VERSION = '1.4';
 
 # Top
 our $TOP_LEFT      = '.-';
@@ -377,9 +377,7 @@
 
 Copyright (C) 2005-2009, Sebastian Riedel.
 
-=head1 LICENSE
-
 This program is free software, you can redistribute it and/or modify it under
-the terms of the Artistic License version 2.0.
+the same terms as Perl 5.10.
 
 =cut




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