Fix Makefile.PL, reword Changes to be more in line with reality. multipart will master
Chris Nehren [Wed, 27 Jul 2011 15:19:58 +0000 (11:19 -0400)]
have to wait for now. Also ignore vim swap files in the MANIFEST.SKIP.

Changes [new file with mode: 0644]
MANIFEST.SKIP
Makefile.PL [new file with mode: 0644]

diff --git a/Changes b/Changes
new file mode 100644 (file)
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
index 8de40ec..055a205 100644 (file)
@@ -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 (file)
index 0000000..cb439f9
--- /dev/null
@@ -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;