Update Changes, Makefile.PL and bump version to 0.001001 0.001001
authorMarius Gavrilescu <marius@ieval.ro>
Sun, 9 Mar 2014 23:15:07 +0000 (01:15 +0200)
committerMarius Gavrilescu <marius@ieval.ro>
Sun, 9 Mar 2014 23:15:07 +0000 (01:15 +0200)
Changes
Makefile.PL
lib/App/XMMS2/Notifier.pm

diff --git a/Changes b/Changes
index f30994e0f8c199a7f85f8930ddb0762c6e7dae80..09befbbd27eeb8e1e84c866aba6c4d6500916d77 100644 (file)
--- 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
index ab6fc11397928d41c9e376ecbb73cf19384cdb3b..a182d8be89f8d58f79af6ad73c95fac272291268 100644 (file)
@@ -1,14 +1,24 @@
-use 5.014002;
+use 5.014000;
 use ExtUtils::MakeMaker;
 
 WriteMakefile(
 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 <marius@ieval.ro>',
-  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 <marius@ieval.ro>',
+       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'
+               }
+       }
 );
 );
index 430e9a65dbaf08bf85730c0f0dca9232458dfdc7..3e3183d933c74a74563a8133ee271241d730e27f 100644 (file)
@@ -1,6 +1,8 @@
-package App::XMMS2::Notifier 0.001;
+package App::XMMS2::Notifier;
 use v5.14;
 use v5.14;
+use strict;
 use warnings;
 use warnings;
+our $VERSION = 0.001001;
 
 use Audio::XMMSClient 0.03;
 use Gtk2::Notify 0.05 -init,'xmms2-notifyd';
 
 use Audio::XMMSClient 0.03;
 use Gtk2::Notify 0.05 -init,'xmms2-notifyd';
This page took 0.011727 seconds and 4 git commands to generate.