From 3541057c475480df5c25dfe631bd5793cc8928ec Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Mon, 10 Mar 2014 01:15:07 +0200 Subject: [PATCH] Update Changes, Makefile.PL and bump version to 0.001001 --- Changes | 12 ++++++++++-- Makefile.PL | 30 ++++++++++++++++++++---------- lib/App/XMMS2/Notifier.pm | 4 +++- 3 files changed, 33 insertions(+), 13 deletions(-) diff --git a/Changes b/Changes index f30994e..09befbb 100644 --- a/Changes +++ b/Changes @@ -1,2 +1,10 @@ -App::XMMS2::Notifier (0.001) - * Initial release +Revision history for Perl extension App::XMMS2::Notifier. + +0.001001 2014-03-10T01:15+02:00 + - Update Changes to CPAN::Changes::Spec format + - Use a git repository (and mention it in Makefile.PL, too) + - Add SIGN => 1, LICENSE, MIN_PERL_VERSION, resources, dynamic_config => 0 to Makefile.PL + - Add use strict; to Notifier.pm to make Kwalitee happy + +0.001 2013-06-05 + - Initial release diff --git a/Makefile.PL b/Makefile.PL index ab6fc11..a182d8b 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,14 +1,24 @@ -use 5.014002; +use 5.014000; use ExtUtils::MakeMaker; WriteMakefile( - NAME => 'App::XMMS2::Notifier', - VERSION_FROM => 'lib/App/XMMS2/Notifier.pm', - PREREQ_PM => { - 'Audio::XMMSClient' => 0.03, - 'Gtk2::Notify' => 0.05, - 'Getopt::Long' => 0}, - ABSTRACT_FROM => 'lib/App/XMMS2/Notifier.pm', - AUTHOR => 'Marius Gavrilescu ', - EXE_FILES => ['xmms2-notifier'], + NAME => 'App::XMMS2::Notifier', + VERSION_FROM => 'lib/App/XMMS2/Notifier.pm', + EXE_FILES => ['xmms2-notifier'], + ABSTRACT_FROM => 'lib/App/XMMS2/Notifier.pm', + AUTHOR => 'Marius Gavrilescu ', + MIN_PERL_VERSION => '5.14.0', + LICENSE => 'perl', + SIGN => 1, + PREREQ_PM => { + qw/Audio::XMMSClient 0.03 + Gtk2::Notify 0.05, + Getopt::Long 0/, + }, + META_MERGE => { + dynamic_config => 0, + resources => { + repository => 'https://git.ieval.ro/?p=app-xmms2-notifier.git' + } + } ); diff --git a/lib/App/XMMS2/Notifier.pm b/lib/App/XMMS2/Notifier.pm index 430e9a6..3e3183d 100644 --- a/lib/App/XMMS2/Notifier.pm +++ b/lib/App/XMMS2/Notifier.pm @@ -1,6 +1,8 @@ -package App::XMMS2::Notifier 0.001; +package App::XMMS2::Notifier; use v5.14; +use strict; use warnings; +our $VERSION = 0.001001; use Audio::XMMSClient 0.03; use Gtk2::Notify 0.05 -init,'xmms2-notifyd'; -- 2.30.2