[Catalyst-commits] r11622 - in trunk/Catalyst-Plugin-DefaultEnd: . lib/Catalyst/Plugin

matthewt at dev.catalyst.perl.org matthewt at dev.catalyst.perl.org
Sun Oct 18 18:05:32 GMT 2009


Author: matthewt
Date: 2009-10-18 18:05:32 +0000 (Sun, 18 Oct 2009)
New Revision: 11622

Modified:
   trunk/Catalyst-Plugin-DefaultEnd/Changes
   trunk/Catalyst-Plugin-DefaultEnd/META.yml
   trunk/Catalyst-Plugin-DefaultEnd/Makefile.PL
   trunk/Catalyst-Plugin-DefaultEnd/README
   trunk/Catalyst-Plugin-DefaultEnd/lib/Catalyst/Plugin/DefaultEnd.pm
Log:
fixup copyright info for DefaultEnd

Modified: trunk/Catalyst-Plugin-DefaultEnd/Changes
===================================================================
--- trunk/Catalyst-Plugin-DefaultEnd/Changes	2009-10-18 17:59:11 UTC (rev 11621)
+++ trunk/Catalyst-Plugin-DefaultEnd/Changes	2009-10-18 18:05:32 UTC (rev 11622)
@@ -1,5 +1,8 @@
 Revision history for Perl extension Catalyst::Plugin::DefaultEnd
 
+0.08  18-10-2009 19:00:00 BST
+    - Fixup copyright info so deprecation notice gets into downstream packages
+
 0.07  24-04-2009 17:54:59
     - Change to not use deprecated Catalyst::Base
     - Mark this code as deprecated, as it has been for aaaages.

Modified: trunk/Catalyst-Plugin-DefaultEnd/META.yml
===================================================================
--- trunk/Catalyst-Plugin-DefaultEnd/META.yml	2009-10-18 17:59:11 UTC (rev 11621)
+++ trunk/Catalyst-Plugin-DefaultEnd/META.yml	2009-10-18 18:05:32 UTC (rev 11622)
@@ -1,14 +1,21 @@
 ---
 name: Catalyst-Plugin-DefaultEnd
-version: 0.06
+version: 0.08
 author:
   - 'Marcus Ramberg <marcus at thefeed.no>'
-abstract: Sensible default end action.
+abstract: DEPRECATED Sensible default end action.
 license: perl
+resources:
+  license: http://dev.perl.org/licenses/
 requires:
   Catalyst: 5.2
+configure_requires:
+  Module::Build: 0.34
 provides:
   Catalyst::Plugin::DefaultEnd:
     file: lib/Catalyst/Plugin/DefaultEnd.pm
-    version: 0.06
-generated_by: Module::Build version 0.2611
+    version: 0.08
+generated_by: Module::Build version 0.34
+meta-spec:
+  url: http://module-build.sourceforge.net/META-spec-v1.4.html
+  version: 1.4

Modified: trunk/Catalyst-Plugin-DefaultEnd/Makefile.PL
===================================================================
--- trunk/Catalyst-Plugin-DefaultEnd/Makefile.PL	2009-10-18 17:59:11 UTC (rev 11621)
+++ trunk/Catalyst-Plugin-DefaultEnd/Makefile.PL	2009-10-18 18:05:32 UTC (rev 11622)
@@ -1,4 +1,4 @@
-# Note: this file was auto-generated by Module::Build::Compat version 0.03
+# Note: this file was auto-generated by Module::Build::Compat version 0.34
     
     unless (eval "use Module::Build::Compat 0.02; 1" ) {
       print "This module requires Module::Build to install itself.\n";
@@ -17,15 +17,18 @@
       
       # 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";
+      CPAN::Shell->install('Module::Build::Compat');
+      CPAN::Shell->expand("Module", "Module::Build::Compat")->uptodate
+	or die "Couldn't install Module::Build, giving up.\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);
+    my $build_script = 'Build';  
+    $build_script .= '.com' if $^O eq 'VMS';
+    exit(0) unless(-e $build_script); # cpantesters convention
     require Module::Build;
     Module::Build::Compat->write_makefile(build_class => 'Module::Build');

Modified: trunk/Catalyst-Plugin-DefaultEnd/README
===================================================================
--- trunk/Catalyst-Plugin-DefaultEnd/README	2009-10-18 17:59:11 UTC (rev 11621)
+++ trunk/Catalyst-Plugin-DefaultEnd/README	2009-10-18 18:05:32 UTC (rev 11622)
@@ -26,6 +26,10 @@
 AUTHOR
     Marcus Ramberg <marcus at thefeed.no>
 
+COPYRIGHT
+    Copyright (c) 2005 - 2009 the Catalyst::Plugin::DefaultEnd "AUTHOR" as
+    listed above.
+
 LICENSE
     This library is free software . You can redistribute it and/or modify it
     under the same terms as perl itself.

Modified: trunk/Catalyst-Plugin-DefaultEnd/lib/Catalyst/Plugin/DefaultEnd.pm
===================================================================
--- trunk/Catalyst-Plugin-DefaultEnd/lib/Catalyst/Plugin/DefaultEnd.pm	2009-10-18 17:59:11 UTC (rev 11621)
+++ trunk/Catalyst-Plugin-DefaultEnd/lib/Catalyst/Plugin/DefaultEnd.pm	2009-10-18 18:05:32 UTC (rev 11622)
@@ -3,7 +3,7 @@
 use base qw/Catalyst::Controller/;
 
 use strict;
-our $VERSION = '0.07';
+our $VERSION = '0.08';
 
 =head1 NAME
 
@@ -62,6 +62,12 @@
 
 Marcus Ramberg <marcus at thefeed.no>
 
+=head1 COPYRIGHT
+
+Copyright (c) 2005 - 2009
+the Catalyst::Plugin::DefaultEnd L</AUTHOR>
+as listed above.
+
 =head1 LICENSE
 
 This library is free software . You can redistribute it and/or modify it under




More information about the Catalyst-commits mailing list