From: Chris Prather Date: Tue, 10 Jul 2007 05:23:07 +0000 (+0000) Subject: last cleanup before 0.01 release X-Git-Tag: 0.02~5 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=fff1338e49d2965097ee3107f43085afc0a5aad6;p=gitmo%2FMooseX-Daemonize.git last cleanup before 0.01 release r25014@alice-3: perigrin | 2007-07-10 00:22:35 -0500 tag 0.01 release --- diff --git a/MANIFEST b/MANIFEST index 228fd9f..321986b 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,18 +1,28 @@ .cvsignore Build.PL Changes +examples/moose_room.pl +inc/Module/AutoInstall.pm inc/Module/Install.pm +inc/Module/Install/AutoInstall.pm inc/Module/Install/Base.pm +inc/Module/Install/Build.pm +inc/Module/Install/Can.pm +inc/Module/Install/Fetch.pm +inc/Module/Install/Include.pm inc/Module/Install/Makefile.pm -inc/Module/Install/MakeMaker.pm inc/Module/Install/Metadata.pm +inc/Module/Install/Win32.pm +inc/Module/Install/WriteAll.pm lib/MooseX/Daemonize.pm +lib/Test/MooseX/Daemonize.pm Makefile.PL -MANIFEST -META.yml # Will be created by "make dist" +MANIFEST This list of files +META.yml README t/00.load.t t/01.filecreate.t +t/02.stdout.t t/kwalitee.t t/perlcritic.t t/pod-coverage.t diff --git a/Makefile.PL b/Makefile.PL index bdfdcb3..883ee82 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,18 +1,19 @@ +# Load the Module::Install bundled in ./inc/ use inc::Module::Install; -WriteMakefile( - NAME => 'MooseX::Daemonize', - AUTHOR => 'Chris Prather ', - VERSION_FROM => 'lib/MooseX/Daemonize.pm', - ABSTRACT_FROM => 'lib/MooseX/Daemonize.pm', - PL_FILES => {}, - PREREQ_PM => { - 'Test::More' => 0, - 'Proc::Daemon' => 0, - 'Carp' => 0, - 'File::Flock' => 0, - 'File::Slurp' => 0, - 'Moose' => 0.20, - }, - dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, - clean => { FILES => 'MooseX-Daemonize-*' }, -); + +# Define metadata +name 'MooseX-Daemonize'; +all_from 'lib/MooseX/Daemonize.pm'; + +# Specific dependencies +build_requires 'Test::More' => 0; +requires 'Proc::Daemon' => 0; +requires 'Carp' => 0; +requires 'File::Flock' => 0; +requires 'File::Slurp' => 0; +requires 'Moose' => 0.20; + +no_index 'directory' => 'examples'; + +auto_install; +WriteAll;