r53818 - in /branches/upstream/libtext-simpletable-perl/current: .perltidyrc Changes MANIFEST META.yml Makefile.PL examples/simple.pl lib/Text/SimpleTable.pm t/01use.t t/02pod.t t/03podcoverage.t t/04tables.t

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sun Mar 7 01:53:56 UTC 2010


Author: jawnsy-guest
Date: Sun Mar  7 01:53:48 2010
New Revision: 53818

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

Removed:
    branches/upstream/libtext-simpletable-perl/current/.perltidyrc
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/examples/simple.pl
    branches/upstream/libtext-simpletable-perl/current/lib/Text/SimpleTable.pm
    branches/upstream/libtext-simpletable-perl/current/t/01use.t
    branches/upstream/libtext-simpletable-perl/current/t/02pod.t
    branches/upstream/libtext-simpletable-perl/current/t/03podcoverage.t
    branches/upstream/libtext-simpletable-perl/current/t/04tables.t

Modified: branches/upstream/libtext-simpletable-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-simpletable-perl/current/Changes?rev=53818&op=diff
==============================================================================
--- branches/upstream/libtext-simpletable-perl/current/Changes (original)
+++ branches/upstream/libtext-simpletable-perl/current/Changes Sun Mar  7 01:53:48 2010
@@ -1,4 +1,7 @@
 Tis file documents the revision history for Perl extension Text::SimpleTable.
+
+2.01  2010-03-01 00:00:00
+        - Removed .perltidyrc.
 
 2.0   2009-08-01 00:00:00
         - Fixed package.

Modified: branches/upstream/libtext-simpletable-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-simpletable-perl/current/MANIFEST?rev=53818&op=diff
==============================================================================
--- branches/upstream/libtext-simpletable-perl/current/MANIFEST (original)
+++ branches/upstream/libtext-simpletable-perl/current/MANIFEST Sun Mar  7 01:53:48 2010
@@ -1,4 +1,3 @@
-.perltidyrc
 Changes
 examples/simple.pl
 lib/Text/SimpleTable.pm

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=53818&op=diff
==============================================================================
--- branches/upstream/libtext-simpletable-perl/current/META.yml (original)
+++ branches/upstream/libtext-simpletable-perl/current/META.yml Sun Mar  7 01:53:48 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Text-SimpleTable
-version:            2.0
+version:            2.01
 abstract:           Simple eyecandy ASCII tables
 author:
     - Sebastian Riedel <sri at cpan.org>
@@ -20,7 +20,7 @@
         - t
         - inc
         - t
-generated_by:       ExtUtils::MakeMaker version 6.54
+generated_by:       ExtUtils::MakeMaker version 6.55_02
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4

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=53818&op=diff
==============================================================================
--- branches/upstream/libtext-simpletable-perl/current/Makefile.PL (original)
+++ branches/upstream/libtext-simpletable-perl/current/Makefile.PL Sun Mar  7 01:53:48 2010
@@ -1,6 +1,6 @@
 #!/usr/bin/env perl
 
-# Copyright (C) 2005-2009, Sebastian Riedel.
+# Copyright (C) 2005-2010, Sebastian Riedel.
 
 use strict;
 use warnings;

Modified: 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=53818&op=diff
==============================================================================
--- branches/upstream/libtext-simpletable-perl/current/examples/simple.pl (original)
+++ branches/upstream/libtext-simpletable-perl/current/examples/simple.pl Sun Mar  7 01:53:48 2010
@@ -1,6 +1,6 @@
 #!/usr/bin/env perl
 
-# Copyright (C) 2005-2009, Sebastian Riedel.
+# Copyright (C) 2005-2010, Sebastian Riedel.
 
 use strict;
 use warnings;

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=53818&op=diff
==============================================================================
--- branches/upstream/libtext-simpletable-perl/current/lib/Text/SimpleTable.pm (original)
+++ branches/upstream/libtext-simpletable-perl/current/lib/Text/SimpleTable.pm Sun Mar  7 01:53:48 2010
@@ -1,11 +1,11 @@
-# Copyright (C) 2005-2009, Sebastian Riedel.
+# Copyright (C) 2005-2010, Sebastian Riedel.
 
 package Text::SimpleTable;
 
 use strict;
 use warnings;
 
-our $VERSION = '2.0';
+our $VERSION = '2.01';
 
 # Top
 our $TOP_LEFT      = '.-';
@@ -376,7 +376,7 @@
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2005-2009, Sebastian Riedel.
+Copyright (C) 2005-2010, Sebastian Riedel.
 
 This program is free software, you can redistribute it and/or modify it under
 the terms of the Artistic License version 2.0.

Modified: branches/upstream/libtext-simpletable-perl/current/t/01use.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-simpletable-perl/current/t/01use.t?rev=53818&op=diff
==============================================================================
--- branches/upstream/libtext-simpletable-perl/current/t/01use.t (original)
+++ branches/upstream/libtext-simpletable-perl/current/t/01use.t Sun Mar  7 01:53:48 2010
@@ -1,6 +1,6 @@
 #!/usr/bin/env perl
 
-# Copyright (C) 2005-2009, Sebastian Riedel.
+# Copyright (C) 2005-2010, Sebastian Riedel.
 
 use strict;
 use warnings;

Modified: branches/upstream/libtext-simpletable-perl/current/t/02pod.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-simpletable-perl/current/t/02pod.t?rev=53818&op=diff
==============================================================================
--- branches/upstream/libtext-simpletable-perl/current/t/02pod.t (original)
+++ branches/upstream/libtext-simpletable-perl/current/t/02pod.t Sun Mar  7 01:53:48 2010
@@ -1,6 +1,6 @@
 #!/usr/bin/env perl
 
-# Copyright (C) 2005-2009, Sebastian Riedel.
+# Copyright (C) 2005-2010, Sebastian Riedel.
 
 use strict;
 use warnings;

Modified: branches/upstream/libtext-simpletable-perl/current/t/03podcoverage.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-simpletable-perl/current/t/03podcoverage.t?rev=53818&op=diff
==============================================================================
--- branches/upstream/libtext-simpletable-perl/current/t/03podcoverage.t (original)
+++ branches/upstream/libtext-simpletable-perl/current/t/03podcoverage.t Sun Mar  7 01:53:48 2010
@@ -1,6 +1,6 @@
 #!/usr/bin/env perl
 
-# Copyright (C) 2005-2009, Sebastian Riedel.
+# Copyright (C) 2005-2010, Sebastian Riedel.
 
 use strict;
 use warnings;

Modified: branches/upstream/libtext-simpletable-perl/current/t/04tables.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-simpletable-perl/current/t/04tables.t?rev=53818&op=diff
==============================================================================
--- branches/upstream/libtext-simpletable-perl/current/t/04tables.t (original)
+++ branches/upstream/libtext-simpletable-perl/current/t/04tables.t Sun Mar  7 01:53:48 2010
@@ -1,6 +1,6 @@
 #!/usr/bin/env perl
 
-# Copyright (C) 2005-2009, Sebastian Riedel.
+# Copyright (C) 2005-2010, Sebastian Riedel.
 
 use strict;
 use warnings;




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