From: Brian Cassidy Date: Thu, 26 Apr 2007 17:51:22 +0000 (+0000) Subject: switch to Module::Install. fix up changes file. fix up some invalid pod. X-Git-Tag: v5.8005~345 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=commitdiff_plain;h=8dbc5a5b8964ef29a4a3733f16cb6696bb84038b;hp=527a8293d9d0e9f2282832a075313b99c1dcc372 switch to Module::Install. fix up changes file. fix up some invalid pod. --- diff --git a/Changes b/Changes index d2f51ac..8709c25 100644 --- a/Changes +++ b/Changes @@ -1,11 +1,17 @@ Revision history for Catalyst-Manual -??? - - Removal of WritingPlugins. ExtendingCatalyst is now the main resource - for extensions to the framework and the application. +5.700702 26 April 2007 + - Switch to Module::Install + +5.700701 19 April 2007 + - Removal of WritingPlugins. ExtendingCatalyst is now the main resource + for extensions to the framework and the application. + +5.700501 10 November 2006 + - Matches Catalyst-Runtime 5.7005 5.700401 7 November 2006 - First release to CPAN; matches Catalyst-Runtime 5.7004. + - First release to CPAN; matches Catalyst-Runtime 5.7004. 5.700301 20 October 2006 - Splitting manual into its own distro + - Splitting manual into its own distro diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP new file mode 100644 index 0000000..f21a21f --- /dev/null +++ b/MANIFEST.SKIP @@ -0,0 +1,29 @@ +# Avoid version control files. +\bRCS\b +\bCVS\b +,v$ +\B\.svn\b + +# Avoid Makemaker generated and utility files. +\bMakefile$ +\bblib +\bMakeMaker-\d +\bpm_to_blib$ +\bblibdirs$ +^MANIFEST\.SKIP$ + +# Avoid Module::Build generated and utility files. +\bBuild$ +\b_build + +# Avoid temp and backup files. +~$ +\.tmp$ +\.old$ +\.bak$ +\#$ +\b\.# +\.DS_Store$ + +# No tarballs! +\.gz$ diff --git a/Makefile.PL b/Makefile.PL index a0ba640..4f399fd 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,17 +1,11 @@ -use strict; -use warnings; -use ExtUtils::MakeMaker; +use inc::Module::Install 0.65; -WriteMakefile( - NAME => 'Catalyst::Manual', - AUTHOR => 'Jonathan Rockway ', - VERSION_FROM => 'lib/Catalyst/Manual.pm', - ABSTRACT_FROM => 'lib/Catalyst/Manual.pm', - PL_FILES => {}, - PREREQ_PM => { - 'Test::More' => 0, - }, - dist => { COMPRESS => 'gzip -9f', - SUFFIX => 'gz', }, - clean => { FILES => 'Catalyst-Manual-*' }, - ); +name 'Catalyst-Manual'; +all_from 'lib/Catalyst/Manual.pm'; +author 'Jonathan Rockway '; +license 'perl'; + +requires 'Test::More'; + +auto_install; +WriteAll; diff --git a/lib/Catalyst/Manual.pm b/lib/Catalyst/Manual.pm index 2de08ba..75b900a 100644 --- a/lib/Catalyst/Manual.pm +++ b/lib/Catalyst/Manual.pm @@ -21,6 +21,6 @@ Tutorial. =cut -our $VERSION = '5.700701'; +our $VERSION = '5.700702'; 1; diff --git a/lib/Catalyst/Manual/WritingPlugins.pod b/lib/Catalyst/Manual/WritingPlugins.pod index 9d94613..ecc7d9a 100644 --- a/lib/Catalyst/Manual/WritingPlugins.pod +++ b/lib/Catalyst/Manual/WritingPlugins.pod @@ -1,12 +1,11 @@ -=head NAME +=head1 NAME Catalyst::Manual::WritingPlugins - (DEPRECATED, see L) -=head DESCRIPTION +=head1 DESCRIPTION This document is now deprecated. Please refer to L for information on how to extend the framework and your applications. =cut -