[Catalyst-commits] r6354 - in trunk/Catalyst-Plugin-Prototype: .
lib/Catalyst/Plugin
marcus at dev.catalyst.perl.org
marcus at dev.catalyst.perl.org
Wed May 2 08:04:08 GMT 2007
Author: marcus
Date: 2007-05-02 08:04:07 +0100 (Wed, 02 May 2007)
New Revision: 6354
Modified:
trunk/Catalyst-Plugin-Prototype/Changes
trunk/Catalyst-Plugin-Prototype/MANIFEST
trunk/Catalyst-Plugin-Prototype/Makefile.PL
trunk/Catalyst-Plugin-Prototype/lib/Catalyst/Plugin/Prototype.pm
Log:
oops, this revision is the prototype release, jrockway
Modified: trunk/Catalyst-Plugin-Prototype/Changes
===================================================================
--- trunk/Catalyst-Plugin-Prototype/Changes 2007-04-30 19:25:41 UTC (rev 6353)
+++ trunk/Catalyst-Plugin-Prototype/Changes 2007-05-02 07:04:07 UTC (rev 6354)
@@ -1,5 +1,8 @@
Revision history for Perl extension Catalyst::Plugin::Prototype
+1.33 2007-04-29 02:29:00
+ - Switched to Module::Install
+
1.32 Mon Jul 12 21:00:00 2005
- Fixed helper
Modified: trunk/Catalyst-Plugin-Prototype/MANIFEST
===================================================================
--- trunk/Catalyst-Plugin-Prototype/MANIFEST 2007-04-30 19:25:41 UTC (rev 6353)
+++ trunk/Catalyst-Plugin-Prototype/MANIFEST 2007-05-02 07:04:07 UTC (rev 6354)
@@ -1,8 +1,20 @@
Changes
+inc/Module/AutoInstall.pm
+inc/Module/Install.pm
+inc/Module/Install/AutoInstall.pm
+inc/Module/Install/Base.pm
+inc/Module/Install/Can.pm
+inc/Module/Install/Fetch.pm
+inc/Module/Install/Include.pm
+inc/Module/Install/Makefile.pm
+inc/Module/Install/Metadata.pm
+inc/Module/Install/Win32.pm
+inc/Module/Install/WriteAll.pm
lib/Catalyst/Helper/Prototype.pm
lib/Catalyst/Plugin/Prototype.pm
Makefile.PL
MANIFEST This list of files
+META.yml
README
t/01use.t
t/02pod.t
Modified: trunk/Catalyst-Plugin-Prototype/Makefile.PL
===================================================================
--- trunk/Catalyst-Plugin-Prototype/Makefile.PL 2007-04-30 19:25:41 UTC (rev 6353)
+++ trunk/Catalyst-Plugin-Prototype/Makefile.PL 2007-05-02 07:04:07 UTC (rev 6354)
@@ -1,11 +1,12 @@
-use ExtUtils::MakeMaker;
+use strict;
+use warnings;
+use inc::Module::Install 0.65;
-WriteMakefile(
- 'NAME' => 'Catalyst::Plugin::Prototype',
- 'VERSION_FROM' => 'lib/Catalyst/Plugin/Prototype.pm',
- 'PREREQ_PM' => {
- Class::Data::Inheritable => 0,
- Catalyst => 0,
- HTML::Prototype => '1.30'
- }
-);
+name 'Catalyst-Plugin-Prototype';
+all_from 'lib/Catalyst/Plugin/Prototype.pm';
+
+requires 'Catalyst::Runtime' => '5.7006';
+requires 'HTML::Prototype' => '1.48';
+
+auto_install;
+WriteAll;
Modified: trunk/Catalyst-Plugin-Prototype/lib/Catalyst/Plugin/Prototype.pm
===================================================================
--- trunk/Catalyst-Plugin-Prototype/lib/Catalyst/Plugin/Prototype.pm 2007-04-30 19:25:41 UTC (rev 6353)
+++ trunk/Catalyst-Plugin-Prototype/lib/Catalyst/Plugin/Prototype.pm 2007-05-02 07:04:07 UTC (rev 6354)
@@ -4,7 +4,7 @@
use base 'Class::Data::Inheritable';
use HTML::Prototype;
-our $VERSION = '1.32';
+our $VERSION = '1.33';
__PACKAGE__->mk_classdata('prototype');
eval { require HTML::Prototype::Useful; };
More information about the Catalyst-commits
mailing list