From 49843e25f4f9e0d01bedef23c3997857e60fada3 Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Mon, 17 Mar 2014 01:56:00 +0200 Subject: [PATCH] Clean up distribution --- Changes | 26 ++++++++++++++++++-------- Makefile.PL | 38 ++++++++++++++++++++++++++------------ lib/App/Devbot.pm | 5 ++++- 3 files changed, 48 insertions(+), 21 deletions(-) diff --git a/Changes b/Changes index 056d809..dec053b 100644 --- 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 diff --git a/Makefile.PL b/Makefile.PL index 9804782..a83aa86 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -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 ', - 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 ', + 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' + } + } ); diff --git a/lib/App/Devbot.pm b/lib/App/Devbot.pm index 019bcc7..1e0f5c8 100644 --- a/lib/App/Devbot.pm +++ b/lib/App/Devbot.pm @@ -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; -- 2.30.2