From: Sebastian Riedel Date: Sat, 11 Feb 2006 10:23:01 +0000 (+0000) Subject: Updated Task::Catalyst X-Git-Tag: v4.00~20 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FTask-Catalyst.git;a=commitdiff_plain;h=a2a0fb872390bb3cc2a245c185fe5ab00f78e133 Updated Task::Catalyst --- diff --git a/Catalyst.pm b/Catalyst.pm index 75e021e..a9d8c22 100644 --- a/Catalyst.pm +++ b/Catalyst.pm @@ -2,7 +2,7 @@ package Task::Catalyst; use strict; -our $VERSION = '1.50'; +our $VERSION = '1.60'; =head1 NAME @@ -66,8 +66,6 @@ L L -L - =head1 AUTHOR Sebastian Riedel, C diff --git a/Changes b/Changes index c082846..02c4fe9 100644 --- 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 diff --git a/Makefile.PL b/Makefile.PL index 3dc7d04..fa266b0 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -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 ] );