Hello community,
here is the log from the commit of package perl-Filesys-Notify-Simple for
openSUSE:Factory checked in at 2018-03-14 19:38:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Filesys-Notify-Simple (Old)
and /work/SRC/openSUSE:Factory/.perl-Filesys-Notify-Simple.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Filesys-Notify-Simple"
Wed Mar 14 19:38:04 2018 rev:4 rq:585301 version:0.13
Changes:
--------
---
/work/SRC/openSUSE:Factory/perl-Filesys-Notify-Simple/perl-Filesys-Notify-Simple.changes
2013-06-25 06:58:25.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.perl-Filesys-Notify-Simple.new/perl-Filesys-Notify-Simple.changes
2018-03-14 19:38:06.551181296 +0100
@@ -1,0 +2,10 @@
+Fri Mar 9 06:20:01 UTC 2018 - [email protected]
+
+- updated to 0.13
+ see /usr/share/doc/packages/perl-Filesys-Notify-Simple/Changes
+
+ 0.13 2018-03-07 23:02:15 PST
+ - Add OpenBSD support #22
+ - Fix for a new Mac::FSEvents API #25
+
+-------------------------------------------------------------------
Old:
----
Filesys-Notify-Simple-0.12.tar.gz
New:
----
Filesys-Notify-Simple-0.13.tar.gz
cpanspec.yml
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-Filesys-Notify-Simple.spec ++++++
--- /var/tmp/diff_new_pack.oVQOtL/_old 2018-03-14 19:38:07.355152739 +0100
+++ /var/tmp/diff_new_pack.oVQOtL/_new 2018-03-14 19:38:07.359152597 +0100
@@ -1,7 +1,7 @@
#
# spec file for package perl-Filesys-Notify-Simple
#
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,24 +17,20 @@
Name: perl-Filesys-Notify-Simple
-Version: 0.12
+Version: 0.13
Release: 0
%define cpan_name Filesys-Notify-Simple
Summary: Simple and dumb file system watcher
-License: Artistic-1.0 or GPL-1.0+
+License: Artistic-1.0 OR GPL-1.0-or-later
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/Filesys-Notify-Simple/
-Source:
http://www.cpan.org/authors/id/M/MI/MIYAGAWA/%{cpan_name}-%{version}.tar.gz
+Source0:
https://cpan.metacpan.org/authors/id/M/MI/MIYAGAWA/%{cpan_name}-%{version}.tar.gz
+Source1: cpanspec.yml
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Test::SharedFork)
-#BuildRequires: perl(Filesys::Notify::KQueue)
-#BuildRequires: perl(Filesys::Notify::Simple)
-#BuildRequires: perl(Linux::Inotify2)
-#BuildRequires: perl(Mac::FSEvents)
-#BuildRequires: perl(Win32::ChangeNotify)
%{perl_requires}
%description
@@ -44,39 +40,27 @@
FindFirstChangeNotification on Windows if they're installed, with a
fallback to the full directory scan if they're not available.
-There are some limitations in this module. If you don't like it, use the
-File::ChangeNotify manpage.
+There are some limitations in this module. If you don't like it, use
+File::ChangeNotify.
-* *
+ * There is no file name based filter. Do it in your own code.
- There is no file name based filter. Do it in your own code.
+ * You can not get types of events (created, updated, deleted).
-* *
-
- You can not get types of events (created, updated, deleted).
-
-* *
-
- Currently 'wait' method blocks.
+ * Currently 'wait' method blocks.
In return, this module doesn't depend on any non-core modules. Platform
-specific optimizations with the Linux::Inotify2 manpage, the Mac::FSEvents
-manpage, the Filesys::Notify::KQueue manpage and the Win32::ChangeNotify
-manpage are truely optional.
-
-NOTE: Using the Win32::ChangeNotify manpage may put additional limitations.
-
-* *
+specific optimizations with Linux::Inotify2, Mac::FSEvents,
+Filesys::Notify::KQueue and Win32::ChangeNotify are truely optional.
- the Win32::ChangeNotify manpage uses FindFirstChangeNotificationA so that
- Unicode characters can not be handled. On cygwin (1.7 or later), Unicode
- characters should be able to be handled when the Win32::ChangeNotify
- manpage is not used.
+NOTE: Using Win32::ChangeNotify may put additional limitations.
-* *
+ * Win32::ChangeNotify uses FindFirstChangeNotificationA so that Unicode
+characters can not be handled. On cygwin (1.7 or later), Unicode characters
+should be able to be handled when Win32::ChangeNotify is not used.
- If more than 64 directories are included under the specified paths, an
- error occurrs.
+ * If more than 64 directories are included under the specified paths, an
+error occurrs.
%prep
%setup -q -n %{cpan_name}-%{version}
@@ -95,6 +79,7 @@
%files -f %{name}.files
%defattr(-,root,root,755)
-%doc Changes cpanfile LICENSE README
+%doc Changes README
+%license LICENSE
%changelog
++++++ Filesys-Notify-Simple-0.12.tar.gz -> Filesys-Notify-Simple-0.13.tar.gz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Filesys-Notify-Simple-0.12/Changes
new/Filesys-Notify-Simple-0.13/Changes
--- old/Filesys-Notify-Simple-0.12/Changes 2013-06-13 23:45:38.000000000
+0200
+++ new/Filesys-Notify-Simple-0.13/Changes 2018-03-08 08:02:17.000000000
+0100
@@ -1,5 +1,9 @@
Revision history for Perl extension Filesys::Notify::Simple
+0.13 2018-03-07 23:02:15 PST
+ - Add OpenBSD support #22
+ - Fix for a new Mac::FSEvents API #25
+
0.12 2013-06-13 14:45:27 PDT
- Fix GH#12, Tests should no longer fail under HARNESS_OPTIONS=j10
(Kent Frederic)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Filesys-Notify-Simple-0.12/LICENSE
new/Filesys-Notify-Simple-0.13/LICENSE
--- old/Filesys-Notify-Simple-0.12/LICENSE 2013-06-13 23:45:38.000000000
+0200
+++ new/Filesys-Notify-Simple-0.13/LICENSE 2018-03-08 08:02:17.000000000
+0100
@@ -1,4 +1,4 @@
-This software is copyright (c) 2013 by Tatsuhiko Miyagawa
<[email protected]>.
+This software is copyright (c) 2018 by Tatsuhiko Miyagawa
<[email protected]>.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
@@ -12,7 +12,7 @@
--- The GNU General Public License, Version 1, February 1989 ---
-This software is Copyright (c) 2013 by Tatsuhiko Miyagawa
<[email protected]>.
+This software is Copyright (c) 2018 by Tatsuhiko Miyagawa
<[email protected]>.
This is free software, licensed under:
@@ -22,7 +22,7 @@
Version 1, February 1989
Copyright (C) 1989 Free Software Foundation, Inc.
- 51 Franklin St, Suite 500, Boston, MA 02110-1335 USA
+ 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
@@ -272,7 +272,7 @@
--- The Artistic License 1.0 ---
-This software is Copyright (c) 2013 by Tatsuhiko Miyagawa
<[email protected]>.
+This software is Copyright (c) 2018 by Tatsuhiko Miyagawa
<[email protected]>.
This is free software, licensed under:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Filesys-Notify-Simple-0.12/MANIFEST
new/Filesys-Notify-Simple-0.13/MANIFEST
--- old/Filesys-Notify-Simple-0.12/MANIFEST 2013-06-13 23:45:38.000000000
+0200
+++ new/Filesys-Notify-Simple-0.13/MANIFEST 2018-03-08 08:02:17.000000000
+0100
@@ -1,3 +1,4 @@
+# This file was automatically generated by Dist::Zilla::Plugin::Manifest
v6.009.
Changes
LICENSE
MANIFEST
@@ -9,8 +10,8 @@
dist.ini
lib/Filesys/Notify/Simple.pm
t/00_compile.t
+t/author-pod-syntax.t
t/move.t
t/non_existent_path.t
-t/release-pod-syntax.t
t/rm_create.t
t/x/placeholder
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Filesys-Notify-Simple-0.12/META.json
new/Filesys-Notify-Simple-0.13/META.json
--- old/Filesys-Notify-Simple-0.12/META.json 2013-06-13 23:45:38.000000000
+0200
+++ new/Filesys-Notify-Simple-0.13/META.json 2018-03-08 08:02:17.000000000
+0100
@@ -4,33 +4,34 @@
"Tatsuhiko Miyagawa <[email protected]>"
],
"dynamic_config" : 0,
- "generated_by" : "Dist::Milla version v1.0.2, Dist::Zilla version 4.300034,
CPAN::Meta::Converter version 2.131560",
+ "generated_by" : "Dist::Milla version v1.0.18, Dist::Zilla version 6.009,
CPAN::Meta::Converter version 2.150010",
"license" : [
"perl_5"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
- "version" : "2"
+ "version" : 2
},
"name" : "Filesys-Notify-Simple",
"no_index" : {
"directory" : [
- "t",
- "xt",
+ "eg",
+ "examples",
"inc",
"share",
- "eg",
- "examples"
+ "t",
+ "xt"
]
},
"prereqs" : {
"configure" : {
"requires" : {
- "ExtUtils::MakeMaker" : "6.30"
+ "ExtUtils::MakeMaker" : "0"
}
},
"develop" : {
"requires" : {
+ "Dist::Milla" : "v1.0.18",
"Test::Pod" : "1.41"
}
},
@@ -59,15 +60,19 @@
"web" : "https://github.com/miyagawa/Filesys-Notify-Simple"
}
},
- "version" : "0.12",
+ "version" : "0.13",
"x_contributors" : [
"Chia-liang Kao <[email protected]>",
"Christiaan Kras <[email protected]>",
- "Kent Fredric <[email protected]>",
+ "Ilya <[email protected]>",
"Kenta Sato <[email protected]>",
+ "Kent Fredric <[email protected]>",
"Masahiro Chiba <[email protected]>",
+ "Matthew Somerville <[email protected]>",
+ "mono <[email protected]>",
"Tatsuhiko Miyagawa <[email protected]>",
"Yasutaka ATARASHI <[email protected]>"
- ]
+ ],
+ "x_serialization_backend" : "Cpanel::JSON::XS version 3.0233"
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Filesys-Notify-Simple-0.12/META.yml
new/Filesys-Notify-Simple-0.13/META.yml
--- old/Filesys-Notify-Simple-0.12/META.yml 2013-06-13 23:45:38.000000000
+0200
+++ new/Filesys-Notify-Simple-0.13/META.yml 2018-03-08 08:02:17.000000000
+0100
@@ -3,38 +3,42 @@
author:
- 'Tatsuhiko Miyagawa <[email protected]>'
build_requires:
- File::Temp: 0
- Test::More: 0
- Test::SharedFork: 0
+ File::Temp: '0'
+ Test::More: '0'
+ Test::SharedFork: '0'
configure_requires:
- ExtUtils::MakeMaker: 6.30
+ ExtUtils::MakeMaker: '0'
dynamic_config: 0
-generated_by: 'Dist::Milla version v1.0.2, Dist::Zilla version 4.300034,
CPAN::Meta::Converter version 2.131560'
+generated_by: 'Dist::Milla version v1.0.18, Dist::Zilla version 6.009,
CPAN::Meta::Converter version 2.150010'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
- version: 1.4
+ version: '1.4'
name: Filesys-Notify-Simple
no_index:
directory:
- - t
- - xt
- - inc
- - share
- eg
- examples
+ - inc
+ - share
+ - t
+ - xt
requires:
- perl: 5.008001
+ perl: '5.008001'
resources:
bugtracker: https://github.com/miyagawa/Filesys-Notify-Simple/issues
homepage: https://github.com/miyagawa/Filesys-Notify-Simple
repository: https://github.com/miyagawa/Filesys-Notify-Simple.git
-version: 0.12
+version: '0.13'
x_contributors:
- 'Chia-liang Kao <[email protected]>'
- 'Christiaan Kras <[email protected]>'
- - 'Kent Fredric <[email protected]>'
+ - 'Ilya <[email protected]>'
- 'Kenta Sato <[email protected]>'
+ - 'Kent Fredric <[email protected]>'
- 'Masahiro Chiba <[email protected]>'
+ - 'Matthew Somerville <[email protected]>'
+ - 'mono <[email protected]>'
- 'Tatsuhiko Miyagawa <[email protected]>'
- 'Yasutaka ATARASHI <[email protected]>'
+x_serialization_backend: 'YAML::Tiny version 1.70'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Filesys-Notify-Simple-0.12/Makefile.PL
new/Filesys-Notify-Simple-0.13/Makefile.PL
--- old/Filesys-Notify-Simple-0.12/Makefile.PL 2013-06-13 23:45:38.000000000
+0200
+++ new/Filesys-Notify-Simple-0.13/Makefile.PL 2018-03-08 08:02:17.000000000
+0100
@@ -1,23 +1,20 @@
-
+# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker
v6.009.
use strict;
use warnings;
use 5.008001;
-use ExtUtils::MakeMaker 6.30;
-
-
+use ExtUtils::MakeMaker;
my %WriteMakefileArgs = (
"ABSTRACT" => "Simple and dumb file system watcher",
"AUTHOR" => "Tatsuhiko Miyagawa <miyagawa\@bulknews.net>",
- "BUILD_REQUIRES" => {},
"CONFIGURE_REQUIRES" => {
- "ExtUtils::MakeMaker" => "6.30"
+ "ExtUtils::MakeMaker" => 0
},
"DISTNAME" => "Filesys-Notify-Simple",
- "EXE_FILES" => [],
"LICENSE" => "perl",
+ "MIN_PERL_VERSION" => "5.008001",
"NAME" => "Filesys::Notify::Simple",
"PREREQ_PM" => {},
"TEST_REQUIRES" => {
@@ -25,43 +22,27 @@
"Test::More" => 0,
"Test::SharedFork" => 0
},
- "VERSION" => "0.12",
+ "VERSION" => "0.13",
"test" => {
"TESTS" => "t/*.t"
}
);
-unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
- my $tr = delete $WriteMakefileArgs{TEST_REQUIRES};
- my $br = $WriteMakefileArgs{BUILD_REQUIRES};
- for my $mod ( keys %$tr ) {
- if ( exists $br->{$mod} ) {
- $br->{$mod} = $tr->{$mod} if $tr->{$mod} > $br->{$mod};
- }
- else {
- $br->{$mod} = $tr->{$mod};
- }
- }
-}
+my %FallbackPrereqs = (
+ "File::Temp" => 0,
+ "Test::More" => 0,
+ "Test::SharedFork" => 0
+);
-unless ( eval { ExtUtils::MakeMaker->VERSION(6.56) } ) {
- my $br = delete $WriteMakefileArgs{BUILD_REQUIRES};
- my $pp = $WriteMakefileArgs{PREREQ_PM};
- for my $mod ( keys %$br ) {
- if ( exists $pp->{$mod} ) {
- $pp->{$mod} = $br->{$mod} if $br->{$mod} > $pp->{$mod};
- }
- else {
- $pp->{$mod} = $br->{$mod};
- }
- }
+
+unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
+ delete $WriteMakefileArgs{TEST_REQUIRES};
+ delete $WriteMakefileArgs{BUILD_REQUIRES};
+ $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}
delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
unless eval { ExtUtils::MakeMaker->VERSION(6.52) };
WriteMakefile(%WriteMakefileArgs);
-
-
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Filesys-Notify-Simple-0.12/README
new/Filesys-Notify-Simple-0.13/README
--- old/Filesys-Notify-Simple-0.12/README 2013-06-13 23:45:38.000000000
+0200
+++ new/Filesys-Notify-Simple-0.13/README 2018-03-08 08:02:17.000000000
+0100
@@ -1,9 +1,11 @@
NAME
+
Filesys::Notify::Simple - Simple and dumb file system watcher
SYNOPSIS
- use Filesys::Notify::Simple;
+ use Filesys::Notify::Simple;
+
my $watcher = Filesys::Notify::Simple->new([ "." ]);
$watcher->wait(sub {
for my $event (@_) {
@@ -12,6 +14,7 @@
});
DESCRIPTION
+
Filesys::Notify::Simple is a simple but unified interface to get
notifications of changes to a given filesystem path. It utilizes
inotify2 on Linux, fsevents on OS X, kqueue on FreeBSD and
@@ -21,11 +24,11 @@
There are some limitations in this module. If you don't like it, use
File::ChangeNotify.
- * There is no file name based filter. Do it in your own code.
+ * There is no file name based filter. Do it in your own code.
- * You can not get types of events (created, updated, deleted).
+ * You can not get types of events (created, updated, deleted).
- * Currently "wait" method blocks.
+ * Currently wait method blocks.
In return, this module doesn't depend on any non-core modules. Platform
specific optimizations with Linux::Inotify2, Mac::FSEvents,
@@ -33,22 +36,25 @@
NOTE: Using Win32::ChangeNotify may put additional limitations.
- * Win32::ChangeNotify uses FindFirstChangeNotificationA so that
- Unicode characters can not be handled. On cygwin (1.7 or later),
- Unicode characters should be able to be handled when
- Win32::ChangeNotify is not used.
+ * Win32::ChangeNotify uses FindFirstChangeNotificationA so that
+ Unicode characters can not be handled. On cygwin (1.7 or later),
+ Unicode characters should be able to be handled when
+ Win32::ChangeNotify is not used.
- * If more than 64 directories are included under the specified paths,
- an error occurrs.
+ * If more than 64 directories are included under the specified paths,
+ an error occurrs.
AUTHOR
+
Tatsuhiko Miyagawa <[email protected]>
LICENSE
+
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
SEE ALSO
- File::ChangeNotify Mac::FSEvents Linux::Inotify2 Filesys::Notify::KQueue
- Win32::ChangeNotify
+
+ File::ChangeNotify Mac::FSEvents Linux::Inotify2
+ Filesys::Notify::KQueue Win32::ChangeNotify
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/Filesys-Notify-Simple-0.12/lib/Filesys/Notify/Simple.pm
new/Filesys-Notify-Simple-0.13/lib/Filesys/Notify/Simple.pm
--- old/Filesys-Notify-Simple-0.12/lib/Filesys/Notify/Simple.pm 2013-06-13
23:45:38.000000000 +0200
+++ new/Filesys-Notify-Simple-0.13/lib/Filesys/Notify/Simple.pm 2018-03-08
08:02:17.000000000 +0100
@@ -2,7 +2,7 @@
use strict;
use 5.008_001;
-our $VERSION = '0.12';
+our $VERSION = '0.13';
use Carp ();
use Cwd;
@@ -36,7 +36,7 @@
$self->{watcher_cb} = \&wait_inotify2;
} elsif ($^O eq 'darwin' && !NO_OPT && eval { require Mac::FSEvents; 1 }) {
$self->{watcher_cb} = \&wait_fsevents;
- } elsif ($^O eq 'freebsd' && !NO_OPT && eval { require
Filesys::Notify::KQueue; 1 }) {
+ } elsif (($^O eq 'freebsd' || $^O eq 'openbsd') && !NO_OPT && eval {
require Filesys::Notify::KQueue; 1 }) {
$self->{watcher_cb} = \&wait_kqueue;
} elsif ($^O eq 'MSWin32' && !NO_OPT && eval { require
Win32::ChangeNotify; 1 }) {
$self->{watcher_cb} = mk_wait_win32(0); # Not cygwin
@@ -55,7 +55,8 @@
my $fs = _full_scan(@path);
for my $path (keys %$fs) {
- $inotify->watch($path,
&IN_MODIFY|&IN_CREATE|&IN_DELETE|&IN_DELETE_SELF|&IN_MOVE_SELF|&IN_MOVE);
+ $inotify->watch($path,
&IN_MODIFY|&IN_CREATE|&IN_DELETE|&IN_DELETE_SELF|&IN_MOVE_SELF|&IN_MOVE)
+ or Carp::croak("watch failed: $!");
}
return sub {
@@ -75,7 +76,7 @@
my %events;
for my $path (@path) {
- my $fsevents = Mac::FSEvents->new({ path => $path, latency => 1 });
+ my $fsevents = Mac::FSEvents->new({ path => $path, latency => 1,
file_events => 1 });
my $fh = $fsevents->watch;
$sel->add($fh);
$events{fileno $fh} = $fsevents;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Filesys-Notify-Simple-0.12/t/author-pod-syntax.t
new/Filesys-Notify-Simple-0.13/t/author-pod-syntax.t
--- old/Filesys-Notify-Simple-0.12/t/author-pod-syntax.t 1970-01-01
01:00:00.000000000 +0100
+++ new/Filesys-Notify-Simple-0.13/t/author-pod-syntax.t 2018-03-08
08:02:17.000000000 +0100
@@ -0,0 +1,15 @@
+#!perl
+
+BEGIN {
+ unless ($ENV{AUTHOR_TESTING}) {
+ print qq{1..0 # SKIP these tests are for testing by the author\n};
+ exit
+ }
+}
+
+# This file was automatically generated by Dist::Zilla::Plugin::PodSyntaxTests.
+use strict; use warnings;
+use Test::More;
+use Test::Pod 1.41;
+
+all_pod_files_ok();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Filesys-Notify-Simple-0.12/t/release-pod-syntax.t
new/Filesys-Notify-Simple-0.13/t/release-pod-syntax.t
--- old/Filesys-Notify-Simple-0.12/t/release-pod-syntax.t 2013-06-13
23:45:38.000000000 +0200
+++ new/Filesys-Notify-Simple-0.13/t/release-pod-syntax.t 1970-01-01
01:00:00.000000000 +0100
@@ -1,15 +0,0 @@
-#!perl
-
-BEGIN {
- unless ($ENV{RELEASE_TESTING}) {
- require Test::More;
- Test::More::plan(skip_all => 'these tests are for release candidate
testing');
- }
-}
-
-use Test::More;
-
-eval "use Test::Pod 1.41";
-plan skip_all => "Test::Pod 1.41 required for testing POD" if $@;
-
-all_pod_files_ok();
++++++ cpanspec.yml ++++++
---
#description_paragraphs: 3
#description: |-
# override description from CPAN
#summary: override summary from CPAN
#no_testing: broken upstream
#sources:
# - source1
# - source2
#patches:
# foo.patch: -p1
# bar.patch:
#preamble: |-
# BuildRequires: gcc-c++
#post_prep: |-
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s, *,,g'`
# sed -i -e "s,hunspell-X,$hunspell," t/00-prereq.t Makefile.PL
#post_build: |-
# rm unused.files
#post_install: |-
# sed on %{name}.files
#license: SUSE-NonFree
#skip_noarch: 1
#custom_build: |-
#./Build build flags=%{?_smp_mflags} --myflag
#custom_test: |-
#startserver && make test
#ignore_requires: Bizarre::Module