Clean up distribution 0.001003
authorMarius Gavrilescu <marius@ieval.ro>
Sun, 16 Mar 2014 23:56:00 +0000 (01:56 +0200)
committerMarius Gavrilescu <marius@ieval.ro>
Sun, 16 Mar 2014 23:56:00 +0000 (01:56 +0200)
Changes
Makefile.PL
lib/App/Devbot.pm

diff --git a/Changes b/Changes
index 056d809a2abf2ff7e9c1325cc91fac5d7cb60eaa..dec053bb05167b2c6c6ae5caf209b956df367391 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,8 +1,18 @@
-App::Devbot (0.001) 13 Jun 2013
-  * Initial release
-App::Devbot (0.001001) 15 Jun 2013
-  * Log quits and nicks
-  * Add tests for quits and nicks
-  * Clean up tests
-App::Devbot (0.001002) 15 Jun 2013
-  * Fix typo: Compnent instead of Component
\ No newline at end of file
+Release history for Perl extension App::Devbot.
+
+0.001003 2014-03-17T01:55+02:00
+ - Update Changes to CPAN::Changes::Spec format
+ - Use a git repository
+ - Add SIGN => 1, MIN_PERL_VERSION, resources, dynamic_config => 0 to Makefile.PL
+ - Add an 'use strict;' (to keep Kwalitee happy) and a $VERSION
+
+0.001002 2013-06-15
+ - Fix typo: Compnent instead of Component
+
+0.001001 2013-06-15
+ - Log quits and nicks
+ - Add tests for quits and nicks
+ - Clean up tests
+
+0.001 2013-06-13
+ - Initial release
index 9804782dc0b5d798d15cb21cde9b9e0b763faa91..a83aa865f7d9b078129faec77ce35a590ef4f628 100644 (file)
@@ -1,16 +1,30 @@
-use 5.014002;
+use 5.014000;
 use ExtUtils::MakeMaker;
 
 WriteMakefile(
-  NAME          => 'App::Devbot',
-  VERSION_FROM  => 'lib/App/Devbot.pm',
-  EXE_FILES     => [ 'devbot' ],
-  ABSTRACT_FROM => 'lib/App/Devbot.pm',
-  AUTHOR        => 'Marius Gavrilescu <marius@ieval.ro>',
-  LICENSE       => 'perl',
-  PREREQ_PM     => {
-       'POE::Component::IRC' => 6.37, #6.37 is the version in Debian squeeze. Hope devbot works with 6.37 :-).
-       'IRC::Utils'          => 0,
-       'File::Slurp'         => 0,
-  },
+       NAME             => 'App::Devbot',
+       VERSION_FROM     => 'lib/App/Devbot.pm',
+       EXE_FILES        => [ 'devbot' ],
+       ABSTRACT_FROM    => 'lib/App/Devbot.pm',
+       AUTHOR           => 'Marius Gavrilescu <marius@ieval.ro>',
+       MIN_PERL_VERSION => '5.14.0',
+       LICENSE          => 'perl',
+       SIGN             => 1,
+       PREREQ_PM        => {
+               qw/Getopt::Long 0
+                  POSIX        0
+
+                  File::Slurp                             0
+                  IRC::Utils                              0
+                  POE                                     0
+                  POE::Component::IRC::Plugin::AutoJoin   0
+                  POE::Component::IRC::Plugin::NickServID 0
+                  POE::Component::IRC::State              0/,
+       },
+       META_MERGE       => {
+               dynamic_config => 0,
+               resources      => {
+                       repository => 'https://git.ieval.ro/?p=app-devbot.git'
+               }
+       }
 );
index 019bcc718eb5b7cfe75e33efceaa7b4d60c6341f..1e0f5c8ff1d54a3db96c67fab02708e05639cb10 100644 (file)
@@ -1,6 +1,9 @@
-package App::Devbot 0.001002;
+package App::Devbot;
+
 use v5.14;
+use strict;
 use warnings;
+our $VERSION = 0.001003;
 
 use POE;
 use POE::Component::IRC::State;
This page took 0.012904 seconds and 4 git commands to generate.