[Catalyst-commits] r6843 - in trunk/Text-SimpleTable: . lib/Text

bricas at dev.catalyst.perl.org bricas at dev.catalyst.perl.org
Thu Sep 6 01:45:26 GMT 2007


Author: bricas
Date: 2007-09-06 01:45:26 +0100 (Thu, 06 Sep 2007)
New Revision: 6843

Added:
   trunk/Text-SimpleTable/MANIFEST.SKIP
   trunk/Text-SimpleTable/Makefile.PL
Removed:
   trunk/Text-SimpleTable/Build.PL
Modified:
   trunk/Text-SimpleTable/Changes
   trunk/Text-SimpleTable/lib/Text/SimpleTable.pm
Log:
switch to module::install

Deleted: trunk/Text-SimpleTable/Build.PL
===================================================================
--- trunk/Text-SimpleTable/Build.PL	2007-09-06 00:15:31 UTC (rev 6842)
+++ trunk/Text-SimpleTable/Build.PL	2007-09-06 00:45:26 UTC (rev 6843)
@@ -1,11 +0,0 @@
-use strict;
-use Module::Build;
-
-my $build = Module::Build->new(
-    create_makefile_pl => 'passthrough',
-    license            => 'perl',
-    module_name        => 'Text::SimpleTable',
-    create_readme      => 1,
-    test_files         => [ glob('t/*.t') ]
-);
-$build->create_build_script;

Modified: trunk/Text-SimpleTable/Changes
===================================================================
--- trunk/Text-SimpleTable/Changes	2007-09-06 00:15:31 UTC (rev 6842)
+++ trunk/Text-SimpleTable/Changes	2007-09-06 00:45:26 UTC (rev 6843)
@@ -1,5 +1,8 @@
 Tis file documents the revision history for Perl extension Text::SimpleTable.
 
+0.04  2007-09-05
+        - Switched to Module::Install
+
 0.03  2006-01-17 22:00:00
         - Fixed bug where text items of '0' were not displayed.
 

Added: trunk/Text-SimpleTable/MANIFEST.SKIP
===================================================================
--- trunk/Text-SimpleTable/MANIFEST.SKIP	                        (rev 0)
+++ trunk/Text-SimpleTable/MANIFEST.SKIP	2007-09-06 00:45:26 UTC (rev 6843)
@@ -0,0 +1,29 @@
+# Avoid version control files.
+\bRCS\b
+\bCVS\b
+,v$
+\B\.svn\b
+
+# Avoid Makemaker generated and utility files.
+\bMakefile$
+\bblib
+\bMakeMaker-\d
+\bpm_to_blib$
+\bblibdirs$
+^MANIFEST\.SKIP$
+
+# Avoid Module::Build generated and utility files.
+\bBuild$
+\b_build
+
+# Avoid temp and backup files.
+~$
+\.tmp$
+\.old$
+\.bak$
+\#$
+\b\.#
+\.DS_Store$
+
+# No tarballs!
+\.gz$

Added: trunk/Text-SimpleTable/Makefile.PL
===================================================================
--- trunk/Text-SimpleTable/Makefile.PL	                        (rev 0)
+++ trunk/Text-SimpleTable/Makefile.PL	2007-09-06 00:45:26 UTC (rev 6843)
@@ -0,0 +1,9 @@
+use inc::Module::Install 0.67;
+
+name 'Text-SimpleTable';
+all_from 'lib/Text/SimpleTable.pm';
+
+requires 'Test::More';
+
+auto_install;
+WriteAll;

Modified: trunk/Text-SimpleTable/lib/Text/SimpleTable.pm
===================================================================
--- trunk/Text-SimpleTable/lib/Text/SimpleTable.pm	2007-09-06 00:15:31 UTC (rev 6842)
+++ trunk/Text-SimpleTable/lib/Text/SimpleTable.pm	2007-09-06 00:45:26 UTC (rev 6843)
@@ -1,8 +1,9 @@
 package Text::SimpleTable;
 
 use strict;
+use warnings;
 
-our $VERSION = '0.03';
+our $VERSION = '0.04';
 
 our $TOP_LEFT      = '.-';
 our $TOP_BORDER    = '-';




More information about the Catalyst-commits mailing list