-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
-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'
+ }
+ }
);