[Catalyst-commits] r12786 - Catalyst-View-Email/trunk

caelum at dev.catalyst.perl.org caelum at dev.catalyst.perl.org
Mon Feb 1 10:39:06 GMT 2010


Author: caelum
Date: 2010-02-01 10:39:04 +0000 (Mon, 01 Feb 2010)
New Revision: 12786

Added:
   Catalyst-View-Email/trunk/Makefile.PL
Removed:
   Catalyst-View-Email/trunk/dist.ini
Modified:
   Catalyst-View-Email/trunk/Changes
   Catalyst-View-Email/trunk/MANIFEST.SKIP
Log:
convert to Module::Install

Modified: Catalyst-View-Email/trunk/Changes
===================================================================
--- Catalyst-View-Email/trunk/Changes	2010-01-31 20:39:12 UTC (rev 12785)
+++ Catalyst-View-Email/trunk/Changes	2010-02-01 10:39:04 UTC (rev 12786)
@@ -1,8 +1,10 @@
 Revision history for Perl extension Catalyst::View::Email.
 
-0.23  2010-01-30
-        -  removed Email::Send::Test from t/lib/* views
+        - converted to Module::Install
 
+0.23    2010-01-30
+        - removed Email::Send::Test from t/lib/* views
+
 0.22    2010-01-28
         - small fixes, version bumpage etc
 

Modified: Catalyst-View-Email/trunk/MANIFEST.SKIP
===================================================================
--- Catalyst-View-Email/trunk/MANIFEST.SKIP	2010-01-31 20:39:12 UTC (rev 12785)
+++ Catalyst-View-Email/trunk/MANIFEST.SKIP	2010-02-01 10:39:04 UTC (rev 12786)
@@ -1,7 +1,5 @@
-MANIFEST.SKIP
-dist.ini
-^\.
+# stolen from Devel::REPL
+^(?!script/|examples/|lib/|inc/|t/|Makefile.PL$|README$|MANIFEST$|Changes$|META.yml$)
 .svn/
 .git/
 .swp$
-.obj

Added: Catalyst-View-Email/trunk/Makefile.PL
===================================================================
--- Catalyst-View-Email/trunk/Makefile.PL	                        (rev 0)
+++ Catalyst-View-Email/trunk/Makefile.PL	2010-02-01 10:39:04 UTC (rev 12786)
@@ -0,0 +1,41 @@
+use inc::Module::Install 0.91;
+
+name     'Catalyst-View-Email';
+all_from 'lib/Catalyst/View/Email.pm';
+author   'J. Shirley <jshirley at gmail.com>';
+license  'perl';
+
+test_requires 'Test::More';
+
+requires 'MIME::Base64'          => '3.08';
+requires 'Authen::SASL'          => '2.13';
+requires 'Catalyst'              => '5.7';
+requires 'Moose'                 => '0.93';
+requires 'parent'                => '0.223';
+requires 'Email::Sender::Simple' => '0.100110';
+requires 'Email::MIME'           => '1.859';
+requires 'Email::MIME::Creator'  => '1.455';
+
+feature 'Template Toolkit support',
+    -default                => 0,
+    'Catalyst::View::TT'    => '0.31';
+
+feature 'HTML::Mason support',
+    -default                => 0,
+    'Catalyst::View::Mason' => '0.18';
+
+# Rebuild README for maintainers
+if ($Module::Install::AUTHOR) {
+    system("pod2text lib/Catalyst/View/Email.pm > README");
+}
+
+realclean_files 'README';
+
+resources 'IRC'         => 'irc://irc.perl.org/#catalyst';
+resources 'license'     => 'http://dev.perl.org/licenses/';
+resources 'repository'  => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-View-Email';
+resources 'MailingList' => 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst';
+
+auto_provides;
+auto_install;
+WriteAll;

Deleted: Catalyst-View-Email/trunk/dist.ini
===================================================================
--- Catalyst-View-Email/trunk/dist.ini	2010-01-31 20:39:12 UTC (rev 12785)
+++ Catalyst-View-Email/trunk/dist.ini	2010-02-01 10:39:04 UTC (rev 12786)
@@ -1,24 +0,0 @@
-name = Catalyst-View-Email
-author = J. Shirley <jshirley at gmail.com>
-version = 0.23
-license = Perl_5
-copyright_holder = J. Shirley
-
-[@Classic]
-
-[MetaResources]
-repository = http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-View-Email
-
-
-
-[Prereq]
-Catalyst::View::TT = 0.31
-Catalyst::View::Mason = 0.18
-MIME::Base64 = 3.08
-Authen::SASL = 2.13
-Catalyst = 5.7
-Moose    = 0.93
-parent   = 0.223
-Email::Sender::Simple = 0.100110
-Email::MIME = 1.859
-Email::MIME::Creator = 1.455




More information about the Catalyst-commits mailing list