[Catalyst-commits] r6341 - in trunk: Catalyst-Plugin-Cache-FastMmap Catalyst-Plugin-Cache-FastMmap/lib/Catalyst/Plugin/Cache Catalyst-Plugin-Cache-FileCache Catalyst-Plugin-Cache-FileCache/lib/Catalyst/Plugin/Cache Catalyst-Plugin-Cache-Memcached Catalyst-Plugin-Cache-Memcached/lib/Catalyst/Plugin/Cache

marcus at dev.catalyst.perl.org marcus at dev.catalyst.perl.org
Sun Apr 29 01:54:42 GMT 2007


Author: marcus
Date: 2007-04-29 01:54:41 +0100 (Sun, 29 Apr 2007)
New Revision: 6341

Removed:
   trunk/Catalyst-Plugin-Cache-FastMmap/Build.PL
   trunk/Catalyst-Plugin-Cache-Memcached/Build.PL
Modified:
   trunk/Catalyst-Plugin-Cache-FastMmap/Changes
   trunk/Catalyst-Plugin-Cache-FastMmap/MANIFEST
   trunk/Catalyst-Plugin-Cache-FastMmap/Makefile.PL
   trunk/Catalyst-Plugin-Cache-FastMmap/lib/Catalyst/Plugin/Cache/FastMmap.pm
   trunk/Catalyst-Plugin-Cache-FileCache/Changes
   trunk/Catalyst-Plugin-Cache-FileCache/MANIFEST
   trunk/Catalyst-Plugin-Cache-FileCache/Makefile.PL
   trunk/Catalyst-Plugin-Cache-FileCache/lib/Catalyst/Plugin/Cache/FileCache.pm
   trunk/Catalyst-Plugin-Cache-Memcached/Changes
   trunk/Catalyst-Plugin-Cache-Memcached/MANIFEST
   trunk/Catalyst-Plugin-Cache-Memcached/Makefile.PL
   trunk/Catalyst-Plugin-Cache-Memcached/lib/Catalyst/Plugin/Cache/Memcached.pm
Log:
update old cache modules to Module::Install'


Deleted: trunk/Catalyst-Plugin-Cache-FastMmap/Build.PL
===================================================================
--- trunk/Catalyst-Plugin-Cache-FastMmap/Build.PL	2007-04-29 00:36:30 UTC (rev 6340)
+++ trunk/Catalyst-Plugin-Cache-FastMmap/Build.PL	2007-04-29 00:54:41 UTC (rev 6341)
@@ -1,17 +0,0 @@
-use strict;
-use Module::Build;
-
-my $build = Module::Build->new(
-    create_makefile_pl => 'passthrough',
-    license            => 'perl',
-    module_name        => 'Catalyst::Plugin::Cache::FastMmap',
-    requires           => {
-        'Cache::FastMmap' => 0
-    },
-    create_makefile_pl => 'passthrough',
-    test_files   => [
-        glob('t/*.t') 
-    ],
-    create_readme     => 1,
-);
-$build->create_build_script;

Modified: trunk/Catalyst-Plugin-Cache-FastMmap/Changes
===================================================================
--- trunk/Catalyst-Plugin-Cache-FastMmap/Changes	2007-04-29 00:36:30 UTC (rev 6340)
+++ trunk/Catalyst-Plugin-Cache-FastMmap/Changes	2007-04-29 00:54:41 UTC (rev 6341)
@@ -1,7 +1,10 @@
 Revision history for Perl extension Catalyst::Plugin::Cache::FastMmap
 
+0.7  2007-04-29 02:05:00
+     - Switch to Module-Install
+
 0.6  Wed Apr 26 17:46:00 2006
-	- pod cleanups
+     - pod cleanups
 
 0.5  Tue Apr 23 01:00:00 2005
-        - original version.
+     - original version.

Modified: trunk/Catalyst-Plugin-Cache-FastMmap/MANIFEST
===================================================================
--- trunk/Catalyst-Plugin-Cache-FastMmap/MANIFEST	2007-04-29 00:36:30 UTC (rev 6340)
+++ trunk/Catalyst-Plugin-Cache-FastMmap/MANIFEST	2007-04-29 00:54:41 UTC (rev 6341)
@@ -1,4 +1,3 @@
-Build.PL
 Changes
 lib/Catalyst/Plugin/Cache/FastMmap.pm
 Makefile.PL

Modified: trunk/Catalyst-Plugin-Cache-FastMmap/Makefile.PL
===================================================================
--- trunk/Catalyst-Plugin-Cache-FastMmap/Makefile.PL	2007-04-29 00:36:30 UTC (rev 6340)
+++ trunk/Catalyst-Plugin-Cache-FastMmap/Makefile.PL	2007-04-29 00:54:41 UTC (rev 6341)
@@ -1,31 +1,12 @@
-# Note: this file was auto-generated by Module::Build::Compat version 0.03
-    
-    unless (eval "use Module::Build::Compat 0.02; 1" ) {
-      print "This module requires Module::Build to install itself.\n";
-      
-      require ExtUtils::MakeMaker;
-      my $yn = ExtUtils::MakeMaker::prompt
-	('  Install Module::Build now from CPAN?', 'y');
-      
-      unless ($yn =~ /^y/i) {
-	die " *** Cannot install without Module::Build.  Exiting ...\n";
-      }
-      
-      require Cwd;
-      require File::Spec;
-      require CPAN;
-      
-      # Save this 'cause CPAN will chdir all over the place.
-      my $cwd = Cwd::cwd();
-      my $makefile = File::Spec->rel2abs($0);
-      
-      CPAN::Shell->install('Module::Build::Compat')
-	or die " *** Cannot install without Module::Build.  Exiting ...\n";
-      
-      chdir $cwd or die "Cannot chdir() back to $cwd: $!";
-    }
-    eval "use Module::Build::Compat 0.02; 1" or die $@;
-    use lib '_build/lib';
-    Module::Build::Compat->run_build_pl(args => \@ARGV);
-    require Module::Build;
-    Module::Build::Compat->write_makefile(build_class => 'Module::Build');
+use strict;
+use warnings;
+use inc::Module::Install 0.65;
+
+name 'Catalyst-Plugin-Cache-FastMmap';
+all_from 'lib/Catalyst/Plugin/Cache/FastMmap.pm';
+
+requires 'Catalyst::Runtime' => '5.7006';
+requires 'Cache::FastMmap';
+
+auto_install;
+WriteAll;

Modified: trunk/Catalyst-Plugin-Cache-FastMmap/lib/Catalyst/Plugin/Cache/FastMmap.pm
===================================================================
--- trunk/Catalyst-Plugin-Cache-FastMmap/lib/Catalyst/Plugin/Cache/FastMmap.pm	2007-04-29 00:36:30 UTC (rev 6340)
+++ trunk/Catalyst-Plugin-Cache-FastMmap/lib/Catalyst/Plugin/Cache/FastMmap.pm	2007-04-29 00:54:41 UTC (rev 6341)
@@ -5,7 +5,7 @@
 
 use Cache::FastMmap;
 
-our $VERSION= '0.6';
+our $VERSION= '0.7';
 
 __PACKAGE__->mk_classdata('cache');
 

Modified: trunk/Catalyst-Plugin-Cache-FileCache/Changes
===================================================================
--- trunk/Catalyst-Plugin-Cache-FileCache/Changes	2007-04-29 00:36:30 UTC (rev 6340)
+++ trunk/Catalyst-Plugin-Cache-FileCache/Changes	2007-04-29 00:54:41 UTC (rev 6341)
@@ -1,4 +1,6 @@
 Revision history for Perl extension Catalyst::Plugin::Cache::FileCache
+0.06  2007-04-29 02:13:00
+        - Switch to Module::Install
 
 0.5  Tue Apr 23 01:00:00 2005
         - original version.

Modified: trunk/Catalyst-Plugin-Cache-FileCache/MANIFEST
===================================================================
--- trunk/Catalyst-Plugin-Cache-FileCache/MANIFEST	2007-04-29 00:36:30 UTC (rev 6340)
+++ trunk/Catalyst-Plugin-Cache-FileCache/MANIFEST	2007-04-29 00:54:41 UTC (rev 6341)
@@ -1,4 +1,3 @@
-Build.PL
 Changes
 lib/Catalyst/Plugin/Cache/FileCache.pm
 Makefile.PL

Modified: trunk/Catalyst-Plugin-Cache-FileCache/Makefile.PL
===================================================================
--- trunk/Catalyst-Plugin-Cache-FileCache/Makefile.PL	2007-04-29 00:36:30 UTC (rev 6340)
+++ trunk/Catalyst-Plugin-Cache-FileCache/Makefile.PL	2007-04-29 00:54:41 UTC (rev 6341)
@@ -1,31 +1,12 @@
-# Note: this file was auto-generated by Module::Build::Compat version 0.03
-    
-    unless (eval "use Module::Build::Compat 0.02; 1" ) {
-      print "This module requires Module::Build to install itself.\n";
-      
-      require ExtUtils::MakeMaker;
-      my $yn = ExtUtils::MakeMaker::prompt
-	('  Install Module::Build now from CPAN?', 'y');
-      
-      unless ($yn =~ /^y/i) {
-	die " *** Cannot install without Module::Build.  Exiting ...\n";
-      }
-      
-      require Cwd;
-      require File::Spec;
-      require CPAN;
-      
-      # Save this 'cause CPAN will chdir all over the place.
-      my $cwd = Cwd::cwd();
-      my $makefile = File::Spec->rel2abs($0);
-      
-      CPAN::Shell->install('Module::Build::Compat')
-	or die " *** Cannot install without Module::Build.  Exiting ...\n";
-      
-      chdir $cwd or die "Cannot chdir() back to $cwd: $!";
-    }
-    eval "use Module::Build::Compat 0.02; 1" or die $@;
-    use lib '_build/lib';
-    Module::Build::Compat->run_build_pl(args => \@ARGV);
-    require Module::Build;
-    Module::Build::Compat->write_makefile(build_class => 'Module::Build');
+use strict;
+use warnings;
+use inc::Module::Install 0.65;
+
+name 'Catalyst-Plugin-Cache-FileCache';
+all_from 'lib/Catalyst/Plugin/Cache/FileCache.pm';
+
+requires 'Catalyst::Runtime' => '5.7006';
+requires 'Cache::FileCache';
+
+auto_install;
+WriteAll;

Modified: trunk/Catalyst-Plugin-Cache-FileCache/lib/Catalyst/Plugin/Cache/FileCache.pm
===================================================================
--- trunk/Catalyst-Plugin-Cache-FileCache/lib/Catalyst/Plugin/Cache/FileCache.pm	2007-04-29 00:36:30 UTC (rev 6340)
+++ trunk/Catalyst-Plugin-Cache-FileCache/lib/Catalyst/Plugin/Cache/FileCache.pm	2007-04-29 00:54:41 UTC (rev 6341)
@@ -3,7 +3,7 @@
 use strict;
 use base 'Class::Data::Inheritable';
 
-our $VERSION='0.5';
+our $VERSION='0.6';
 
 use Cache::FileCache;
 

Deleted: trunk/Catalyst-Plugin-Cache-Memcached/Build.PL
===================================================================
--- trunk/Catalyst-Plugin-Cache-Memcached/Build.PL	2007-04-29 00:36:30 UTC (rev 6340)
+++ trunk/Catalyst-Plugin-Cache-Memcached/Build.PL	2007-04-29 00:54:41 UTC (rev 6341)
@@ -1,17 +0,0 @@
-use strict;
-use Module::Build;
-
-my $build = Module::Build->new(
-    create_makefile_pl => 'passthrough',
-    license            => 'perl',
-    module_name        => 'Catalyst::Plugin::Cache::Memcached',
-    requires           => {
-         'Cache::Memcached' => 0 
-    },
-    create_makefile_pl => 'passthrough',
-    test_files   => [
-        glob('t/*.t') 
-    ],
-    create_readme => 1
-);
-$build->create_build_script;

Modified: trunk/Catalyst-Plugin-Cache-Memcached/Changes
===================================================================
--- trunk/Catalyst-Plugin-Cache-Memcached/Changes	2007-04-29 00:36:30 UTC (rev 6340)
+++ trunk/Catalyst-Plugin-Cache-Memcached/Changes	2007-04-29 00:54:41 UTC (rev 6341)
@@ -1,5 +1,8 @@
 Revision history for Perl extension Catalyst::Plugin::Cache::Memcached
 
+0.7  2007-04-29 02:10:00
+        - Switched to Module::Install
+
 0.6  Wed Apr 27 20:00:00 2005
         - fixed test
 

Modified: trunk/Catalyst-Plugin-Cache-Memcached/MANIFEST
===================================================================
--- trunk/Catalyst-Plugin-Cache-Memcached/MANIFEST	2007-04-29 00:36:30 UTC (rev 6340)
+++ trunk/Catalyst-Plugin-Cache-Memcached/MANIFEST	2007-04-29 00:54:41 UTC (rev 6341)
@@ -1,4 +1,3 @@
-Build.PL
 Changes
 lib/Catalyst/Plugin/Cache/Memcached.pm
 Makefile.PL

Modified: trunk/Catalyst-Plugin-Cache-Memcached/Makefile.PL
===================================================================
--- trunk/Catalyst-Plugin-Cache-Memcached/Makefile.PL	2007-04-29 00:36:30 UTC (rev 6340)
+++ trunk/Catalyst-Plugin-Cache-Memcached/Makefile.PL	2007-04-29 00:54:41 UTC (rev 6341)
@@ -1,31 +1,12 @@
-# Note: this file was auto-generated by Module::Build::Compat version 0.03
-    
-    unless (eval "use Module::Build::Compat 0.02; 1" ) {
-      print "This module requires Module::Build to install itself.\n";
-      
-      require ExtUtils::MakeMaker;
-      my $yn = ExtUtils::MakeMaker::prompt
-	('  Install Module::Build now from CPAN?', 'y');
-      
-      unless ($yn =~ /^y/i) {
-	die " *** Cannot install without Module::Build.  Exiting ...\n";
-      }
-      
-      require Cwd;
-      require File::Spec;
-      require CPAN;
-      
-      # Save this 'cause CPAN will chdir all over the place.
-      my $cwd = Cwd::cwd();
-      my $makefile = File::Spec->rel2abs($0);
-      
-      CPAN::Shell->install('Module::Build::Compat')
-	or die " *** Cannot install without Module::Build.  Exiting ...\n";
-      
-      chdir $cwd or die "Cannot chdir() back to $cwd: $!";
-    }
-    eval "use Module::Build::Compat 0.02; 1" or die $@;
-    use lib '_build/lib';
-    Module::Build::Compat->run_build_pl(args => \@ARGV);
-    require Module::Build;
-    Module::Build::Compat->write_makefile(build_class => 'Module::Build');
+use strict;
+use warnings;
+use inc::Module::Install 0.65;
+
+name 'Catalyst-Plugin-Cache-Memcached';
+all_from 'lib/Catalyst/Plugin/Cache/Memcached.pm';
+
+requires 'Catalyst::Runtime' => '5.7006';
+requires 'Cache::Memcached';
+
+auto_install;
+WriteAll;

Modified: trunk/Catalyst-Plugin-Cache-Memcached/lib/Catalyst/Plugin/Cache/Memcached.pm
===================================================================
--- trunk/Catalyst-Plugin-Cache-Memcached/lib/Catalyst/Plugin/Cache/Memcached.pm	2007-04-29 00:36:30 UTC (rev 6340)
+++ trunk/Catalyst-Plugin-Cache-Memcached/lib/Catalyst/Plugin/Cache/Memcached.pm	2007-04-29 00:54:41 UTC (rev 6341)
@@ -3,7 +3,7 @@
 use strict;
 use base 'Class::Data::Inheritable';
 
-our $VERSION='0.6';
+our $VERSION='0.7';
 
 use Cache::Memcached;
 




More information about the Catalyst-commits mailing list