Updated Task::Catalyst
Sebastian Riedel [Sat, 11 Feb 2006 10:23:01 +0000 (10:23 +0000)]
Catalyst.pm
Changes
Makefile.PL

index 75e021e..a9d8c22 100644 (file)
@@ -2,7 +2,7 @@ package Task::Catalyst;
 
 use strict;
 
-our $VERSION = '1.50';
+our $VERSION = '1.60';
 
 =head1 NAME
 
@@ -66,8 +66,6 @@ L<Test::WWW::Mechanize::Catalyst>
 
 L<DBD::SQLite>
 
-L<YAML>
-
 =head1 AUTHOR
 
 Sebastian Riedel, C<sri@oook.de>
diff --git a/Changes b/Changes
index c082846..02c4fe9 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Perl extension Task::Catalyst.
 
+1.60  Wed Jan 11 00:00:00 2006
+        - Updated to address some install problems
+
 1.50  Wed Jan 11 00:00:00 2006
         - More updates
 
index 3dc7d04..fa266b0 100644 (file)
@@ -8,15 +8,17 @@ license('perl');
 
 include('ExtUtils::AutoInstall');
 
-requires( 'Catalyst' => '5.61' );
+requires( 'Catalyst' => '5.64' );
 
 features(
     'Log4perl Support' => [
         -default                  => 1,
+        'Params::Validate'        => 0,
         'Catalyst::Log::Log4perl' => 0
     ],
     'HTML::Widget Support' => [
         -default                         => 1,
+        'Date::Calc'                     => 0,
         'Catalyst::Plugin::HTML::Widget' => 0
     ],
     'Stacktrace Advanced Debugging Support' => [
@@ -58,10 +60,12 @@ features(
         -default                 => 1,
         'Catalyst::Plugin::I18N' => 0
     ],
-    'XMLRPC Support' => [
-        -default                   => 1,
+'XMLRPC Support (WARNING: requires XML::Parser which requires a C compiler and expat to be installed!)'
+      => [
+        -default                   => 0,
+        'XML::Parser'              => 0,
         'Catalyst::Plugin::XMLRPC' => 0
-    ],
+      ],
     'Pluggable Application Support' => [
         -default                      => 1,
         'Catalyst::Plugin::Pluggable' => 0
@@ -79,13 +83,9 @@ features(
         -default                         => 1,
         'Test::WWW::Mechanize::Catalyst' => 0
     ],
-    'SQLite Support' => [
-        -default      => 1,
+    'SQLite Support (WARNING: requires a C compiler!)' => [
+        -default      => 0,
         'DBD::SQLite' => 0
-    ],
-    'YAML Support' => [
-        -default => 1,
-        'YAML'   => 0
     ]
 );