From: Chris Nehren Date: Wed, 27 Jul 2011 15:19:58 +0000 (-0400) Subject: Fix Makefile.PL, reword Changes to be more in line with reality. multipart will X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=HEAD;p=p5sagit%2FEmail-Archive.git Fix Makefile.PL, reword Changes to be more in line with reality. multipart will have to wait for now. Also ignore vim swap files in the MANIFEST.SKIP. --- diff --git a/Changes b/Changes new file mode 100644 index 0000000..6f2b329 --- /dev/null +++ b/Changes @@ -0,0 +1,6 @@ +0.02 2011-07-27 + * Add DBD::SQLite to Makefile.PL. Sorry, testers! + * Use Email::MIME, not Email::Simple. + * Use Moo, not Moose, since we're not doing anything to necessitate Moose. +0.01 2011-07-25 + * Initial release diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP index 8de40ec..055a205 100644 --- a/MANIFEST.SKIP +++ b/MANIFEST.SKIP @@ -1,2 +1,4 @@ ^(?!script/|examples/|lib/|inc/|t/.+\.t|t/dist/\w+/(\w+\.PL|lib/\w+\.pm)|Makefile.PL$|README$|MANIFEST$|Changes$|META.yml$) .svn +.swp +.swo diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..cb439f9 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,19 @@ +use inc::Module::Install; + +name 'Email-Archive'; +all_from 'lib/Email/Archive.pm'; + +requires 'Moo'; +requires 'Carp'; +requires 'DBI'; +requires 'DBD::SQLite'; +requires 'File::ShareDir'; +requires 'File::Slurp'; +requires 'Email::MIME'; +requires 'Email::Abstract'; +requires 'SQL::Abstract'; +requires 'autodie'; + +auto_install; + +WriteAll;