r41313 - in /branches/upstream/libtext-simpletable-perl/current: Changes MANIFEST META.yml examples/ examples/simple.pl lib/Text/SimpleTable.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Tue Aug 4 21:41:01 UTC 2009


Author: jawnsy-guest
Date: Tue Aug  4 21:40:55 2009
New Revision: 41313

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=41313
Log:
[svn-upgrade] Integrating new upstream version, libtext-simpletable-perl (1.9)

Added:
    branches/upstream/libtext-simpletable-perl/current/examples/
    branches/upstream/libtext-simpletable-perl/current/examples/simple.pl
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/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=41313&op=diff
==============================================================================
--- branches/upstream/libtext-simpletable-perl/current/Changes (original)
+++ branches/upstream/libtext-simpletable-perl/current/Changes Tue Aug  4 21:40:55 2009
@@ -1,13 +1,16 @@
 Tis file documents the revision history for Perl extension Text::SimpleTable.
 
+1.9   2009-08-01 00:00:00
+        - Improved Kwalitee.
+
 1.8   2009-08-01 00:00:00
-        - Improved kwalitee.
+        - Improved Kwalitee.
 
 1.7   2009-08-01 00:00:00
         - Fixed typo.
 
 1.6   2009-07-27 00:00:00
-        - Improved kwalitee.
+        - Improved Kwalitee.
 
 1.5   2009-07-27 00:00:00
         - Added readme.

Modified: branches/upstream/libtext-simpletable-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-simpletable-perl/current/MANIFEST?rev=41313&op=diff
==============================================================================
--- branches/upstream/libtext-simpletable-perl/current/MANIFEST (original)
+++ branches/upstream/libtext-simpletable-perl/current/MANIFEST Tue Aug  4 21:40:55 2009
@@ -1,5 +1,6 @@
 .perltidyrc
 Changes
+examples/simple.pl
 lib/Text/SimpleTable.pm
 LICENSE
 Makefile.PL

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=41313&op=diff
==============================================================================
--- branches/upstream/libtext-simpletable-perl/current/META.yml (original)
+++ branches/upstream/libtext-simpletable-perl/current/META.yml Tue Aug  4 21:40:55 2009
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Text-SimpleTable
-version:            1.8
+version:            1.9
 abstract:           Simple eyecandy ASCII tables
 author:
     - Sebastian Riedel <sri at cpan.org>

Added: branches/upstream/libtext-simpletable-perl/current/examples/simple.pl
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-simpletable-perl/current/examples/simple.pl?rev=41313&op=file
==============================================================================
--- branches/upstream/libtext-simpletable-perl/current/examples/simple.pl (added)
+++ branches/upstream/libtext-simpletable-perl/current/examples/simple.pl Tue Aug  4 21:40:55 2009
@@ -1,0 +1,14 @@
+#!/usr/bin/env perl
+
+# Copyright (C) 2005-2009, Sebastian Riedel.
+
+use strict;
+use warnings;
+
+use Text::SimpleTable;
+
+my $t = Text::SimpleTable->new(5, 10);
+$t->row('Catalyst',          'rockz!');
+$t->row('DBIx::Class',       'suckz!');
+$t->row('Template::Toolkit', 'rockz!');
+print $t->draw;

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=41313&op=diff
==============================================================================
--- branches/upstream/libtext-simpletable-perl/current/lib/Text/SimpleTable.pm (original)
+++ branches/upstream/libtext-simpletable-perl/current/lib/Text/SimpleTable.pm Tue Aug  4 21:40:55 2009
@@ -3,8 +3,9 @@
 package Text::SimpleTable;
 
 use strict;
-
-our $VERSION = '1.8';
+use warnings;
+
+our $VERSION = '1.9';
 
 # Top
 our $TOP_LEFT      = '.-';




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