r51825 - in /trunk/libfile-changenotify-perl: ./ debian/ lib/File/ lib/File/ChangeNotify/ lib/File/ChangeNotify/Watcher/ xt/

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sat Jan 30 04:38:19 UTC 2010


Author: jawnsy-guest
Date: Sat Jan 30 04:38:14 2010
New Revision: 51825

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=51825
Log:
Standards-Version 3.8.4 (no changes)

Modified:
    trunk/libfile-changenotify-perl/Build.PL
    trunk/libfile-changenotify-perl/Changes
    trunk/libfile-changenotify-perl/META.yml
    trunk/libfile-changenotify-perl/Makefile.PL
    trunk/libfile-changenotify-perl/SIGNATURE
    trunk/libfile-changenotify-perl/debian/changelog
    trunk/libfile-changenotify-perl/debian/control
    trunk/libfile-changenotify-perl/lib/File/ChangeNotify.pm
    trunk/libfile-changenotify-perl/lib/File/ChangeNotify/Event.pm
    trunk/libfile-changenotify-perl/lib/File/ChangeNotify/Watcher.pm
    trunk/libfile-changenotify-perl/lib/File/ChangeNotify/Watcher/Default.pm
    trunk/libfile-changenotify-perl/lib/File/ChangeNotify/Watcher/Inotify.pm
    trunk/libfile-changenotify-perl/lib/File/ChangeNotify/Watcher/KQueue.pm
    trunk/libfile-changenotify-perl/xt/kwalitee.t
    trunk/libfile-changenotify-perl/xt/pod-coverage.t
    trunk/libfile-changenotify-perl/xt/pod.t

Modified: trunk/libfile-changenotify-perl/Build.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-changenotify-perl/Build.PL?rev=51825&op=diff
==============================================================================
--- trunk/libfile-changenotify-perl/Build.PL (original)
+++ trunk/libfile-changenotify-perl/Build.PL Sat Jan 30 04:38:14 2010
@@ -3,27 +3,45 @@
 
 use Module::Build;
 
-my $builder =
-    Module::Build->new
-        ( module_name => 'File::ChangeNotify',
-          license     => 'perl',
-          requires    => { 'Carp'                           => '0',
-                           'Class::MOP'                     => '0',
-                           'File::Find'                     => '0',
-                           'File::Spec'                     => '0',
-                           'Module::Pluggable::Object'      => '0',
-                           'Moose'                          => '0',
-                           'MooseX::Params::Validate'       => '0.08',
-                           'MooseX::SemiAffordanceAccessor' => '0',
-                           'Time::HiRes'                    => '0',
-                         },
-          build_requires => { 'File::Path' => '0',
-                              'File::Temp' => '0',
-                              'Test::More' => '0',
-                            },
-          create_readme => 1,
-          sign          => 1,
-          create_makefile_pl => 'traditional',
-        );
+my $builder = Module::Build->new(
+    module_name => 'File::ChangeNotify',
+    license     => 'perl',
+    requires    => {
+        'Carp'                           => '0',
+        'Class::MOP'                     => '0',
+        'File::Find'                     => '0',
+        'File::Spec'                     => '0',
+        'Module::Pluggable::Object'      => '0',
+        'Moose'                          => '0',
+        'MooseX::Params::Validate'       => '0.08',
+        'MooseX::SemiAffordanceAccessor' => '0',
+        'Time::HiRes'                    => '0',
+    },
+    build_requires => {
+        'File::Path' => '0',
+        'File::Temp' => '0',
+        'Test::More' => '0',
+    },
+    auto_features => {
+        Inotify => {
+            description => 'Inotify support',
+            requires    => { 'Linux::Inotify2' => '1.2' },
+        },
+        KQueue => {
+            description => 'KQueue support',
+            requires    => { 'IO::Kqueue' => '0' },
+        },
+    },
+    create_readme      => 1,
+    sign               => 1,
+    create_makefile_pl => 'traditional',
+    meta_merge         => {
+        resources => {
+            bugtracker =>
+                'http://rt.cpan.org/NoAuth/Bugs.html?Dist=File-ChangeNotify',
+            repository => 'http://hg.urth.org/hg/File-ChangeNotify',
+        },
+    },
+);
 
 $builder->create_build_script();

Modified: trunk/libfile-changenotify-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-changenotify-perl/Changes?rev=51825&op=diff
==============================================================================
--- trunk/libfile-changenotify-perl/Changes (original)
+++ trunk/libfile-changenotify-perl/Changes Sat Jan 30 04:38:14 2010
@@ -1,3 +1,12 @@
+0.12   2010-01-28
+
+- Added auto_features to the Build.PL, which will give hints on what modules
+  to install for KQueue and Inotify support.
+
+- Require Linux::Inotify 1.2+, since 1.1 apparently doesn't work with this
+  module. Reported by Michael Grondin. RT #54069.
+
+
 0.11   2009-12-07
 
 - A test attempted to use Test::Without::Module but this wasn't in the prereq

Modified: trunk/libfile-changenotify-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-changenotify-perl/META.yml?rev=51825&op=diff
==============================================================================
--- trunk/libfile-changenotify-perl/META.yml (original)
+++ trunk/libfile-changenotify-perl/META.yml Sat Jan 30 04:38:14 2010
@@ -7,8 +7,8 @@
   File::Temp: 0
   Test::More: 0
 configure_requires:
-  Module::Build: 0.35
-generated_by: 'Module::Build version 0.351'
+  Module::Build: 0.36
+generated_by: 'Module::Build version 0.3603'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -17,22 +17,22 @@
 provides:
   File::ChangeNotify:
     file: lib/File/ChangeNotify.pm
-    version: 0.11
+    version: 0.12
   File::ChangeNotify::Event:
     file: lib/File/ChangeNotify/Event.pm
-    version: 0.11
+    version: 0.12
   File::ChangeNotify::Watcher:
     file: lib/File/ChangeNotify/Watcher.pm
-    version: 0.11
+    version: 0.12
   File::ChangeNotify::Watcher::Default:
     file: lib/File/ChangeNotify/Watcher/Default.pm
-    version: 0.11
+    version: 0.12
   File::ChangeNotify::Watcher::Inotify:
     file: lib/File/ChangeNotify/Watcher/Inotify.pm
-    version: 0.11
+    version: 0.12
   File::ChangeNotify::Watcher::KQueue:
     file: lib/File/ChangeNotify/Watcher/KQueue.pm
-    version: 0.11
+    version: 0.12
 requires:
   Carp: 0
   Class::MOP: 0
@@ -44,5 +44,7 @@
   MooseX::SemiAffordanceAccessor: 0
   Time::HiRes: 0
 resources:
+  bugtracker: http://rt.cpan.org/NoAuth/Bugs.html?Dist=File-ChangeNotify
   license: http://dev.perl.org/licenses/
-version: 0.11
+  repository: http://hg.urth.org/hg/File-ChangeNotify
+version: 0.12

Modified: trunk/libfile-changenotify-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-changenotify-perl/Makefile.PL?rev=51825&op=diff
==============================================================================
--- trunk/libfile-changenotify-perl/Makefile.PL (original)
+++ trunk/libfile-changenotify-perl/Makefile.PL Sat Jan 30 04:38:14 2010
@@ -1,4 +1,4 @@
-# Note: this file was auto-generated by Module::Build::Compat version 0.35_10
+# Note: this file was auto-generated by Module::Build::Compat version 0.3603
 use ExtUtils::MakeMaker;
 WriteMakefile
 (

Modified: trunk/libfile-changenotify-perl/SIGNATURE
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-changenotify-perl/SIGNATURE?rev=51825&op=diff
==============================================================================
--- trunk/libfile-changenotify-perl/SIGNATURE (original)
+++ trunk/libfile-changenotify-perl/SIGNATURE Sat Jan 30 04:38:14 2010
@@ -14,31 +14,31 @@
 -----BEGIN PGP SIGNED MESSAGE-----
 Hash: SHA1
 
-SHA1 320e201e3ad750cc11b4a5154513bbb69d252baf Build.PL
-SHA1 a740e1efdb51eb68211f64a293d6ddd7df11c130 Changes
+SHA1 2a1c3128be76ba516d06b7ed35f2861b1161a2a1 Build.PL
+SHA1 c40ea30769f2ef3aaf32c6ac109a98afcbeba473 Changes
 SHA1 36ea511abb6f5e3f82bdb8c00416c328aa01c209 MANIFEST
-SHA1 fdf6c14dec55b8750d6080ae844e3e461db18477 META.yml
-SHA1 814cce029c7e7a6d7e00c5186ce98c27834816fb Makefile.PL
+SHA1 9f90039f591f37c9c6a6b205eba339a592cb90e2 META.yml
+SHA1 776ce83add48dd0b6462c49a3a32011a230fb508 Makefile.PL
 SHA1 87a34b42c7b238703780d6f0176cca227d48688f README
-SHA1 b632191521fc45956d2935cc29c90342937ef658 lib/File/ChangeNotify.pm
-SHA1 680af9436ebf5776a5216c0726ee8b90ca219df4 lib/File/ChangeNotify/Event.pm
-SHA1 738d0d2c62a83687fcdb40dec310906b8a3f94cf lib/File/ChangeNotify/Watcher.pm
-SHA1 46cf59c5b1c33dabcf10e2f24e972c7d5045309d lib/File/ChangeNotify/Watcher/Default.pm
-SHA1 434e73fbd9f5028e6740ae1d4a46b3a4c67546d6 lib/File/ChangeNotify/Watcher/Inotify.pm
-SHA1 dd0ed0dc2ccb89e96213310d18b922c91e16b5c8 lib/File/ChangeNotify/Watcher/KQueue.pm
+SHA1 2749f2addc5927e3d7922820f8b654e966777556 lib/File/ChangeNotify.pm
+SHA1 11a1e5e6d62c4e57adc0a44124eded46dd4968ca lib/File/ChangeNotify/Event.pm
+SHA1 0a43afcb4c564ecdc529307d14575aafbc959a01 lib/File/ChangeNotify/Watcher.pm
+SHA1 8a96d8b86fa0000dfa394f02f6ebc9e405847472 lib/File/ChangeNotify/Watcher/Default.pm
+SHA1 3444e06c698a45fb54108b690cc738c3fd3d0d26 lib/File/ChangeNotify/Watcher/Inotify.pm
+SHA1 1ac4b24acd29dd73fae07846b8eafe16b49e3ccc lib/File/ChangeNotify/Watcher/KQueue.pm
 SHA1 a20ef45409fdaaa48eb6c23e61c549f5578f8538 t/all.t
 SHA1 5fce136606b00c4f30c536d19efeb24f35c8394e t/excluded-dirs.t
 SHA1 38c0e578a21df2b9481d90d38428973fdbf4aab9 t/instantiate-twice.t
 SHA1 7937d1a567dab6508584f4f5c5b88f4d0a03dae2 t/lib/File/ChangeNotify/TestHelper.pm
-SHA1 09190c9e56f8c73824b2fd32dc650d5530b63c68 xt/kwalitee.t
-SHA1 8e6421341f83d310a8dad8a98542c390a8570118 xt/pod-coverage.t
+SHA1 437178b17e5942761ac30bb436dcac115e5adff8 xt/kwalitee.t
+SHA1 53ff5f877262e1cf1f0d27c1ee78ef5938fde1ca xt/pod-coverage.t
 SHA1 e089aeb9583cff991392910d6f39155eb78a9695 xt/pod-spell.t
-SHA1 8d1b5482518344568bc54528ff906481d4cc56e3 xt/pod.t
+SHA1 9bb24d755c9e2fbf5d9b7db34df15637ccd8e3f6 xt/pod.t
 SHA1 deebdfd5c8b0d2319e15f9941490e424f6072db5 xt/versions-match.t
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.9 (GNU/Linux)
 
-iEYEARECAAYFAksdhBoACgkQIgMCsV8qvRKidQCfRaE+uaVZ5xv6SvuG2abcODpo
-fZkAoIwvaXnDrGpVjC0/25GrXhXVw8QV
-=0iMG
+iEYEARECAAYFAktiUwgACgkQIgMCsV8qvRK10ACfQU3fODCaG1BXOF8HPn10w8kY
+SIQAn1GlT6pQ3l4lsMfdb736f3N5v+gm
+=2K/q
 -----END PGP SIGNATURE-----

Modified: trunk/libfile-changenotify-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-changenotify-perl/debian/changelog?rev=51825&op=diff
==============================================================================
--- trunk/libfile-changenotify-perl/debian/changelog (original)
+++ trunk/libfile-changenotify-perl/debian/changelog Sat Jan 30 04:38:14 2010
@@ -1,11 +1,9 @@
-libfile-changenotify-perl (0.11-1) UNRELEASED; urgency=low
-
-  Only test changes wrt Test::Without::Module
-  IGNORE-VERSION: 0.11-1
+libfile-changenotify-perl (0.12-1) UNRELEASED; urgency=low
 
   * New upstream release
+  * Standards-Version 3.8.4 (no changes)
 
- -- Jonathan Yu <jawnsy at cpan.org>  Tue, 08 Dec 2009 07:11:09 -0500
+ -- Jonathan Yu <jawnsy at cpan.org>  Fri, 29 Jan 2010 23:49:23 -0500
 
 libfile-changenotify-perl (0.10-1) unstable; urgency=low
 

Modified: trunk/libfile-changenotify-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-changenotify-perl/debian/control?rev=51825&op=diff
==============================================================================
--- trunk/libfile-changenotify-perl/debian/control (original)
+++ trunk/libfile-changenotify-perl/debian/control Sat Jan 30 04:38:14 2010
@@ -7,7 +7,7 @@
  libtest-without-module-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Jonathan Yu <jawnsy at cpan.org>
-Standards-Version: 3.8.3
+Standards-Version: 3.8.4
 Homepage: http://search.cpan.org/dist/File-ChangeNotify/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libfile-changenotify-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libfile-changenotify-perl/

Modified: trunk/libfile-changenotify-perl/lib/File/ChangeNotify.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-changenotify-perl/lib/File/ChangeNotify.pm?rev=51825&op=diff
==============================================================================
--- trunk/libfile-changenotify-perl/lib/File/ChangeNotify.pm (original)
+++ trunk/libfile-changenotify-perl/lib/File/ChangeNotify.pm Sat Jan 30 04:38:14 2010
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '0.11';
+our $VERSION = '0.12';
 
 use Carp qw( confess );
 use Class::MOP;

Modified: trunk/libfile-changenotify-perl/lib/File/ChangeNotify/Event.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-changenotify-perl/lib/File/ChangeNotify/Event.pm?rev=51825&op=diff
==============================================================================
--- trunk/libfile-changenotify-perl/lib/File/ChangeNotify/Event.pm (original)
+++ trunk/libfile-changenotify-perl/lib/File/ChangeNotify/Event.pm Sat Jan 30 04:38:14 2010
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '0.11';
+our $VERSION = '0.12';
 
 use Moose;
 use Moose::Util::TypeConstraints;

Modified: trunk/libfile-changenotify-perl/lib/File/ChangeNotify/Watcher.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-changenotify-perl/lib/File/ChangeNotify/Watcher.pm?rev=51825&op=diff
==============================================================================
--- trunk/libfile-changenotify-perl/lib/File/ChangeNotify/Watcher.pm (original)
+++ trunk/libfile-changenotify-perl/lib/File/ChangeNotify/Watcher.pm Sat Jan 30 04:38:14 2010
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '0.11';
+our $VERSION = '0.12';
 
 use File::ChangeNotify::Event;
 use List::MoreUtils qw(all);

Modified: trunk/libfile-changenotify-perl/lib/File/ChangeNotify/Watcher/Default.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-changenotify-perl/lib/File/ChangeNotify/Watcher/Default.pm?rev=51825&op=diff
==============================================================================
--- trunk/libfile-changenotify-perl/lib/File/ChangeNotify/Watcher/Default.pm (original)
+++ trunk/libfile-changenotify-perl/lib/File/ChangeNotify/Watcher/Default.pm Sat Jan 30 04:38:14 2010
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '0.11';
+our $VERSION = '0.12';
 
 use File::Find qw( finddepth );
 use File::Spec;

Modified: trunk/libfile-changenotify-perl/lib/File/ChangeNotify/Watcher/Inotify.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-changenotify-perl/lib/File/ChangeNotify/Watcher/Inotify.pm?rev=51825&op=diff
==============================================================================
--- trunk/libfile-changenotify-perl/lib/File/ChangeNotify/Watcher/Inotify.pm (original)
+++ trunk/libfile-changenotify-perl/lib/File/ChangeNotify/Watcher/Inotify.pm Sat Jan 30 04:38:14 2010
@@ -3,10 +3,10 @@
 use strict;
 use warnings;
 
-our $VERSION = '0.11';
+our $VERSION = '0.12';
 
 use File::Find ();
-use Linux::Inotify2;
+use Linux::Inotify2 1.2;
 
 use Moose;
 

Modified: trunk/libfile-changenotify-perl/lib/File/ChangeNotify/Watcher/KQueue.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-changenotify-perl/lib/File/ChangeNotify/Watcher/KQueue.pm?rev=51825&op=diff
==============================================================================
--- trunk/libfile-changenotify-perl/lib/File/ChangeNotify/Watcher/KQueue.pm (original)
+++ trunk/libfile-changenotify-perl/lib/File/ChangeNotify/Watcher/KQueue.pm Sat Jan 30 04:38:14 2010
@@ -5,7 +5,7 @@
 
 use Moose;
 
-our $VERSION = '0.11';
+our $VERSION = '0.12';
 
 use File::Find ();
 use IO::KQueue;

Modified: trunk/libfile-changenotify-perl/xt/kwalitee.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-changenotify-perl/xt/kwalitee.t?rev=51825&op=diff
==============================================================================
--- trunk/libfile-changenotify-perl/xt/kwalitee.t (original)
+++ trunk/libfile-changenotify-perl/xt/kwalitee.t Sat Jan 30 04:38:14 2010
@@ -3,9 +3,6 @@
 
 use Test::More;
 
-plan skip_all => 'This test is only run for the module author'
-    unless -d '.hg' || $ENV{IS_MAINTAINER};
-
 eval { require Test::Kwalitee; Test::Kwalitee->import() };
 plan skip_all => "Test::Kwalitee needed for testing kwalitee"
     if $@;

Modified: trunk/libfile-changenotify-perl/xt/pod-coverage.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-changenotify-perl/xt/pod-coverage.t?rev=51825&op=diff
==============================================================================
--- trunk/libfile-changenotify-perl/xt/pod-coverage.t (original)
+++ trunk/libfile-changenotify-perl/xt/pod-coverage.t Sat Jan 30 04:38:14 2010
@@ -4,9 +4,6 @@
 use warnings;
 
 use Test::More;
-
-plan skip_all => 'This test is only run for the module author'
-    unless -d '.hg' || $ENV{IS_MAINTAINER};
 
 eval "use Test::Pod::Coverage 1.04";
 plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage"

Modified: trunk/libfile-changenotify-perl/xt/pod.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-changenotify-perl/xt/pod.t?rev=51825&op=diff
==============================================================================
--- trunk/libfile-changenotify-perl/xt/pod.t (original)
+++ trunk/libfile-changenotify-perl/xt/pod.t Sat Jan 30 04:38:14 2010
@@ -3,9 +3,6 @@
 
 use Test::More;
 
-plan skip_all => 'This test is only run for the module author'
-    unless -d '.hg' || $ENV{IS_MAINTAINER};
-
 eval "use Test::Pod 1.14";
 plan skip_all => "Test::Pod 1.14 required for testing POD" if $@;
 




More information about the Pkg-perl-cvs-commits mailing list