commit perl-Test-Spelling for openSUSE:Factory

2019-06-01 Thread root
Hello community,

here is the log from the commit of package perl-Test-Spelling for 
openSUSE:Factory checked in at 2019-06-01 09:51:51

Comparing /work/SRC/openSUSE:Factory/perl-Test-Spelling (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Test-Spelling.new.5148 (New)


Package is "perl-Test-Spelling"

Sat Jun  1 09:51:51 2019 rev:15 rq:706229 version:0.25

Changes:

--- /work/SRC/openSUSE:Factory/perl-Test-Spelling/perl-Test-Spelling.changes
2019-05-27 08:39:49.219037411 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Test-Spelling.new.5148/perl-Test-Spelling.changes
  2019-06-01 09:51:52.623275590 +0200
@@ -1,0 +2,15 @@
+Wed May 29 05:38:26 UTC 2019 - Stephan Kulow 
+
+- updated to 0.25
+   see /usr/share/doc/packages/perl-Test-Spelling/Changes
+
+  0.25  2019-05-28
+- Re-worded the documentation.
+- Ordered documented function in alphabetical order.
+- Fixed up the synopsis.
+- Put function usage examples directly below the function name; this
+  makes it easier to get clickable links for functions in metacpan
+- Documented get_pod_parser
+- Moved hunspell up to the preferred checker
+
+---

Old:

  Test-Spelling-0.24.tar.gz

New:

  Test-Spelling-0.25.tar.gz



Other differences:
--
++ perl-Test-Spelling.spec ++
--- /var/tmp/diff_new_pack.LDU8G5/_old  2019-06-01 09:51:53.183275399 +0200
+++ /var/tmp/diff_new_pack.LDU8G5/_new  2019-06-01 09:51:53.187275397 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Test-Spelling
-Version:0.24
+Version:0.25
 Release:0
 %define cpan_name Test-Spelling
 Summary:Check for spelling errors in POD files
@@ -39,9 +39,10 @@
 %{perl_requires}
 
 %description
-'Test::Spelling' lets you check the spelling of a POD file, and report its
-results in standard 'Test::More' fashion. This module requires a spellcheck
-program such as _spell_, _aspell_, _ispell_, or _hunspell_.
+Test::Spelling lets you check the spelling of a 'POD' file, and report its
+results in standard Test::More fashion. This module requires a spellcheck
+program such as at http://hunspell.github.io/, _aspell_, _spell_, or,
+_ispell_. We suggest using Hunspell.
 
 use Test::Spelling;
 pod_file_spelling_ok('lib/Foo/Bar.pm', 'POD file spelling OK');
@@ -51,10 +52,11 @@
 environment. There is no way of predicting whether the word list or
 spellcheck program used will give the same results. You *can* include the
 test in your distribution, but be sure to run it only for authors of the
-module by guarding it in a 'skip_all unless -d 'inc/.author'' clause, or by
-putting the test in your distribution's _xt/_ directory. Anyway, people
-installing your module really do not need to run such tests, as it is
-unlikely that the documentation will acquire typos while in transit. :-)
+module by guarding it in a 'skip_all unless $ENV{AUTHOR_TESTING}' clause,
+or by putting the test in your distribution's _xt/author_ directory.
+Anyway, people installing your module really do not need to run such tests,
+as it is unlikely that the documentation will acquire typos while in
+transit.
 
 You can add your own stop words, which are words that should be ignored by
 the spell check, like so:
@@ -68,18 +70,24 @@
 If you have a lot of stop words, it's useful to put them in your test
 file's 'DATA' section like so:
 
+use strict;
+use warnings;
+use Test::More;
+
 use Test::Spelling;
+use Pod::Wordlist;
+
 add_stopwords();
 all_pod_files_spelling_ok();
 
-__END__
+__DATA__
 folksonomy
 Jifty
 Zakirov
 
 To maintain backwards compatibility, comment markers and some whitespace
 are ignored. In the near future, the preprocessing we do on the arguments
-to add_stopwords will be changed and documented properly.
+to Test::Spelling/"add_stopwords" will be changed and documented properly.
 
 %prep
 %setup -q -n %{cpan_name}-%{version}

++ Test-Spelling-0.24.tar.gz -> Test-Spelling-0.25.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Spelling-0.24/Changes 
new/Test-Spelling-0.25/Changes
--- old/Test-Spelling-0.24/Changes  2019-05-24 15:43:01.0 +0200
+++ new/Test-Spelling-0.25/Changes  2019-05-29 03:11:09.0 +0200
@@ -1,5 +1,14 @@
 Revision history for Test-Spelling
 
+0.25  2019-05-28
+  - Re-worded the documentation.
+  - Ordered documented function in alphabetical order.
+  - Fixed up the synopsis.
+  - Put function usage examples directly below the function name; this
+makes it easier to get clickable links for functions in metacpan
+  - Documented get_pod_parser
+  - Moved hunspell up to the preferred checker

commit perl-Test-Spelling for openSUSE:Factory

2019-05-27 Thread root
Hello community,

here is the log from the commit of package perl-Test-Spelling for 
openSUSE:Factory checked in at 2019-05-27 08:39:47

Comparing /work/SRC/openSUSE:Factory/perl-Test-Spelling (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Test-Spelling.new.5148 (New)


Package is "perl-Test-Spelling"

Mon May 27 08:39:47 2019 rev:14 rq:705412 version:0.24

Changes:

--- /work/SRC/openSUSE:Factory/perl-Test-Spelling/perl-Test-Spelling.changes
2019-05-24 11:32:40.725382986 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Test-Spelling.new.5148/perl-Test-Spelling.changes
  2019-05-27 08:39:49.219037411 +0200
@@ -1,0 +2,11 @@
+Sat May 25 05:31:02 UTC 2019 - Stephan Kulow 
+
+- updated to 0.24
+   see /usr/share/doc/packages/perl-Test-Spelling/Changes
+
+  0.24  2019-05-24
+- Fixup the prereqs some
+- Revert the unicode support added in the last release as it caused
+  some test breakage
+
+---

Old:

  Test-Spelling-0.23.tar.gz

New:

  Test-Spelling-0.24.tar.gz



Other differences:
--
++ perl-Test-Spelling.spec ++
--- /var/tmp/diff_new_pack.U0bgkc/_old  2019-05-27 08:39:49.879037154 +0200
+++ /var/tmp/diff_new_pack.U0bgkc/_new  2019-05-27 08:39:49.879037154 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Test-Spelling
-Version:0.23
+Version:0.24
 Release:0
 %define cpan_name Test-Spelling
 Summary:Check for spelling errors in POD files

++ Test-Spelling-0.23.tar.gz -> Test-Spelling-0.24.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Spelling-0.23/Changes 
new/Test-Spelling-0.24/Changes
--- old/Test-Spelling-0.23/Changes  2019-05-22 02:44:53.0 +0200
+++ new/Test-Spelling-0.24/Changes  2019-05-24 15:43:01.0 +0200
@@ -1,5 +1,10 @@
 Revision history for Test-Spelling
 
+0.24  2019-05-24
+  - Fixup the prereqs some
+  - Revert the unicode support added in the last release as it caused
+some test breakage
+
 0.23  2019-05-21
   - Fixed some documentation errors (Mohammad S Anwar)
   - Added unicode support (Kivanc Yazan, GH PR#10)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Spelling-0.23/META.json 
new/Test-Spelling-0.24/META.json
--- old/Test-Spelling-0.23/META.json2019-05-22 02:44:53.0 +0200
+++ new/Test-Spelling-0.24/META.json2019-05-24 15:43:01.0 +0200
@@ -64,7 +64,6 @@
 "Symbol" : "0",
 "Test::Builder" : "0",
 "Text::Wrap" : "0",
-"base" : "0",
 "perl" : "5.008",
 "strict" : "0",
 "warnings" : "0"
@@ -80,6 +79,7 @@
 "Test::More" : "0.88",
 "Test::Tester" : "0",
 "strict" : "0",
+"utf8" : "0",
 "warnings" : "0"
  }
   }
@@ -87,7 +87,7 @@
"provides" : {
   "Test::Spelling" : {
  "file" : "lib/Test/Spelling.pm",
- "version" : "0.23"
+ "version" : "0.24"
   }
},
"release_status" : "stable",
@@ -102,7 +102,7 @@
  "web" : "https://github.com/genio/test-spelling;
   }
},
-   "version" : "0.23",
+   "version" : "0.24",
"x_Dist_Zilla" : {
   "perl" : {
  "version" : "5.026001"
@@ -413,7 +413,7 @@
   "branch" : null,
   "changelog" : "Changes",
   "signed" : 0,
-  "tag" : "v0.23",
+  "tag" : "v0.24",
   "tag_format" : "v%V",
   "tag_message" : "v%V"
},
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Spelling-0.23/META.yml 
new/Test-Spelling-0.24/META.yml
--- old/Test-Spelling-0.23/META.yml 2019-05-22 02:44:53.0 +0200
+++ new/Test-Spelling-0.24/META.yml 2019-05-24 15:43:01.0 +0200
@@ -8,6 +8,7 @@
   Test::More: '0.88'
   Test::Tester: '0'
   strict: '0'
+  utf8: '0'
   warnings: '0'
 configure_requires:
   ExtUtils::MakeMaker: '0'
@@ -29,7 +30,7 @@
 provides:
   Test::Spelling:
 file: lib/Test/Spelling.pm
-version: '0.23'
+version: '0.24'
 requires:
   Exporter: '5.57'
   File::Spec: '0'
@@ -38,7 +39,6 @@
   Symbol: '0'
   Test::Builder: '0'
   Text::Wrap: '0'
-  base: '0'
   perl: '5.008'
   strict: '0'
   warnings: '0'
@@ -46,7 +46,7 @@
   bugtracker: https://github.com/genio/test-spelling/issues
   homepage: https://github.com/genio/test-spelling
   repository: https://github.com/genio/test-spelling.git
-version: '0.23'
+version: '0.24'
 x_Dist_Zilla:
   perl:
 version: '5.026001'
@@ -286,7 +286,7 @@
   branch: ~
   

commit perl-Test-Spelling for openSUSE:Factory

2019-05-24 Thread root
Hello community,

here is the log from the commit of package perl-Test-Spelling for 
openSUSE:Factory checked in at 2019-05-24 11:32:38

Comparing /work/SRC/openSUSE:Factory/perl-Test-Spelling (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Test-Spelling.new.5148 (New)


Package is "perl-Test-Spelling"

Fri May 24 11:32:38 2019 rev:13 rq:704997 version:0.23

Changes:

--- /work/SRC/openSUSE:Factory/perl-Test-Spelling/perl-Test-Spelling.changes
2019-04-28 20:14:53.786364671 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Test-Spelling.new.5148/perl-Test-Spelling.changes
  2019-05-24 11:32:40.725382986 +0200
@@ -1,0 +2,13 @@
+Wed May 22 05:27:48 UTC 2019 - Stephan Kulow 
+
+- updated to 0.23
+   see /usr/share/doc/packages/perl-Test-Spelling/Changes
+
+  0.23  2019-05-21
+- Fixed some documentation errors (Mohammad S Anwar)
+- Added unicode support (Kivanc Yazan, GH PR#10)
+- Bump Perl prereq to 5.8 now that we support unicode
+- Don't inherit from Exporter (Olivier Mengué, GH PR#9)
+- Bump Exporter prereq to 5.57
+
+---

Old:

  Test-Spelling-0.22.tar.gz

New:

  Test-Spelling-0.23.tar.gz



Other differences:
--
++ perl-Test-Spelling.spec ++
--- /var/tmp/diff_new_pack.AQjXla/_old  2019-05-24 11:32:41.629382641 +0200
+++ /var/tmp/diff_new_pack.AQjXla/_new  2019-05-24 11:32:41.633382640 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Test-Spelling
-Version:0.22
+Version:0.23
 Release:0
 %define cpan_name Test-Spelling
 Summary:Check for spelling errors in POD files

++ Test-Spelling-0.22.tar.gz -> Test-Spelling-0.23.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Spelling-0.22/Changes 
new/Test-Spelling-0.23/Changes
--- old/Test-Spelling-0.22/Changes  2019-04-25 00:41:13.0 +0200
+++ new/Test-Spelling-0.23/Changes  2019-05-22 02:44:53.0 +0200
@@ -1,5 +1,12 @@
 Revision history for Test-Spelling
 
+0.23  2019-05-21
+  - Fixed some documentation errors (Mohammad S Anwar)
+  - Added unicode support (Kivanc Yazan, GH PR#10)
+  - Bump Perl prereq to 5.8 now that we support unicode
+  - Don't inherit from Exporter (Olivier Mengué, GH PR#9)
+  - Bump Exporter prereq to 5.57
+
 0.22  2019-04-24
   - Zero-code-change release encompassing everything from 0.21
   - Resolves RT#120425 . in @INC should no longer be an issue
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Spelling-0.22/MANIFEST 
new/Test-Spelling-0.23/MANIFEST
--- old/Test-Spelling-0.22/MANIFEST 2019-04-25 00:41:13.0 +0200
+++ new/Test-Spelling-0.23/MANIFEST 2019-05-22 02:44:53.0 +0200
@@ -16,6 +16,7 @@
 t/corpus/good-pod.pm
 t/corpus/no-pod.pm
 t/corpus/stopword.pm
+t/corpus/unicode-pod.pm
 t/fake_checker.t
 t/load.t
 t/stopword.t
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Spelling-0.22/META.json 
new/Test-Spelling-0.23/META.json
--- old/Test-Spelling-0.22/META.json2019-04-25 00:41:13.0 +0200
+++ new/Test-Spelling-0.23/META.json2019-05-22 02:44:53.0 +0200
@@ -32,6 +32,9 @@
   "configure" : {
  "requires" : {
 "ExtUtils::MakeMaker" : "0"
+ },
+ "suggests" : {
+"JSON::PP" : "2.27300"
  }
   },
   "develop" : {
@@ -54,7 +57,7 @@
   },
   "runtime" : {
  "requires" : {
-"Exporter" : "0",
+"Exporter" : "5.57",
 "File::Spec" : "0",
 "IPC::Run3" : "0",
 "Pod::Spell" : "0",
@@ -62,7 +65,7 @@
 "Test::Builder" : "0",
 "Text::Wrap" : "0",
 "base" : "0",
-"perl" : "5.006",
+"perl" : "5.008",
 "strict" : "0",
 "warnings" : "0"
  }
@@ -84,7 +87,7 @@
"provides" : {
   "Test::Spelling" : {
  "file" : "lib/Test/Spelling.pm",
- "version" : "0.22"
+ "version" : "0.23"
   }
},
"release_status" : "stable",
@@ -99,7 +102,7 @@
  "web" : "https://github.com/genio/test-spelling;
   }
},
-   "version" : "0.22",
+   "version" : "0.23",
"x_Dist_Zilla" : {
   "perl" : {
  "version" : "5.026001"
@@ -196,7 +199,7 @@
}
 },
 "name" : "@Starter/MakeMaker::Awesome",
-"version" : "0.47"
+"version" : "0.48"
  },
  {
 "class" : "Dist::Zilla::Plugin::Manifest",
@@ -304,7 +307,7 @@
   "meta_noindex" : 1
},

commit perl-Test-Spelling for openSUSE:Factory

2019-04-28 Thread root
Hello community,

here is the log from the commit of package perl-Test-Spelling for 
openSUSE:Factory checked in at 2019-04-28 20:14:53

Comparing /work/SRC/openSUSE:Factory/perl-Test-Spelling (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Test-Spelling.new.5536 (New)


Package is "perl-Test-Spelling"

Sun Apr 28 20:14:53 2019 rev:12 rq:698640 version:0.22

Changes:

--- /work/SRC/openSUSE:Factory/perl-Test-Spelling/perl-Test-Spelling.changes
2017-10-03 23:20:00.267455711 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Test-Spelling.new.5536/perl-Test-Spelling.changes
  2019-04-28 20:14:53.786364671 +0200
@@ -1,0 +2,19 @@
+Thu Apr 25 05:31:43 UTC 2019 - Stephan Kulow 
+
+- updated to 0.22
+   see /usr/share/doc/packages/perl-Test-Spelling/Changes
+
+  0.22  2019-04-24
+- Zero-code-change release encompassing everything from 0.21
+- Resolves RT#120425 . in @INC should no longer be an issue
+  
+  0.21  2019-04-19 (TRIAL)
+- Removed the POD spelling test from /t as it's now in /xt
+- Forego usage of inc::Module::Install for EU::MM
+- List out all prereqs individually; provide cpanfile
+- Use dzil to build the dist
+- Convert the README to markdown
+- Add a LICENSE file
+- Clean up the Changes log
+
+---

Old:

  Test-Spelling-0.20.tar.gz

New:

  Test-Spelling-0.22.tar.gz



Other differences:
--
++ perl-Test-Spelling.spec ++
--- /var/tmp/diff_new_pack.0rO6e4/_old  2019-04-28 20:14:55.282363742 +0200
+++ /var/tmp/diff_new_pack.0rO6e4/_new  2019-04-28 20:14:55.334363710 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Test-Spelling
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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
@@ -12,30 +12,30 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:   perl-Test-Spelling
-Version:0.20
+Version:0.22
 Release:0
 %define cpan_name Test-Spelling
-Summary:Check for Spelling Errors in Pod Files
-License:Artistic-1.0 or GPL-1.0+
+Summary:Check for spelling errors in POD files
+License:Artistic-1.0 OR GPL-1.0-or-later
 Group:  Development/Libraries/Perl
-Url:http://search.cpan.org/dist/Test-Spelling/
-Source0:
https://cpan.metacpan.org/authors/id/S/SA/SARTAK/%{cpan_name}-%{version}.tar.gz
+Url:https://metacpan.org/release/%{cpan_name}
+Source0:
https://cpan.metacpan.org/authors/id/C/CA/CAPOEIRAB/%{cpan_name}-%{version}.tar.gz
 Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(IPC::Run3) >= 0.044
-BuildRequires:  perl(Pod::Spell) >= 1.01
+BuildRequires:  perl(IPC::Run3)
+BuildRequires:  perl(Pod::Spell)
 BuildRequires:  perl(Test::More) >= 0.88
 BuildRequires:  perl(Test::Tester)
-Requires:   perl(IPC::Run3) >= 0.044
-Requires:   perl(Pod::Spell) >= 1.01
+Requires:   perl(IPC::Run3)
+Requires:   perl(Pod::Spell)
 %{perl_requires}
 
 %description
@@ -88,11 +88,11 @@
 # MANUAL END
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
-%{__make} %{?_smp_mflags}
+perl Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
 
 %check
-%{__make} test
+make test
 
 %install
 %perl_make_install
@@ -102,5 +102,6 @@
 %files -f %{name}.files
 %defattr(-,root,root,755)
 %doc Changes README
+%license LICENSE
 
 %changelog

++ Test-Spelling-0.20.tar.gz -> Test-Spelling-0.22.tar.gz ++
 4731 lines of diff (skipped)




commit perl-Test-Spelling for openSUSE:Factory

2017-10-04 Thread root
Hello community,

here is the log from the commit of package perl-Test-Spelling for 
openSUSE:Factory checked in at 2017-10-03 23:19:58

Comparing /work/SRC/openSUSE:Factory/perl-Test-Spelling (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Test-Spelling.new (New)


Package is "perl-Test-Spelling"

Tue Oct  3 23:19:58 2017 rev:11 rq:530791 version:0.20

Changes:

--- /work/SRC/openSUSE:Factory/perl-Test-Spelling/perl-Test-Spelling.changes
2015-02-08 11:42:44.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Test-Spelling.new/perl-Test-Spelling.changes   
2017-10-03 23:20:00.267455711 +0200
@@ -1,0 +2,5 @@
+Tue Oct  3 08:22:01 UTC 2017 - co...@suse.com
+
+- patch the Makefile to build with perl 5.26
+
+---

New:

  cpanspec.yml



Other differences:
--
++ perl-Test-Spelling.spec ++
--- /var/tmp/diff_new_pack.dj7YUc/_old  2017-10-03 23:20:00.903366218 +0200
+++ /var/tmp/diff_new_pack.dj7YUc/_new  2017-10-03 23:20:00.907365656 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Test-Spelling
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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
@@ -20,11 +20,12 @@
 Version:0.20
 Release:0
 %define cpan_name Test-Spelling
-Summary:check for spelling errors in POD files
+Summary:Check for Spelling Errors in Pod Files
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Test-Spelling/
-Source: 
http://www.cpan.org/authors/id/S/SA/SARTAK/%{cpan_name}-%{version}.tar.gz
+Source0:
https://cpan.metacpan.org/authors/id/S/SA/SARTAK/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
@@ -61,9 +62,8 @@
 add_stopwords(qw(asdf thiswordiscorrect));
 
 Adding stop words in this fashion affects all files checked for the
-remainder of the test script. See the Pod::Spell manpage (which this module
-is built upon) for a variety of ways to add per-file stop words to each .pm
-file.
+remainder of the test script. See Pod::Spell (which this module is built
+upon) for a variety of ways to add per-file stop words to each .pm file.
 
 If you have a lot of stop words, it's useful to put them in your test
 file's 'DATA' section like so:
@@ -79,10 +79,13 @@
 
 To maintain backwards compatibility, comment markers and some whitespace
 are ignored. In the near future, the preprocessing we do on the arguments
-to the add_stopwords manpage will be changed and documented properly.
+to add_stopwords will be changed and documented properly.
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
+# MANUAL BEGIN
+sed -i -e 's/use inc::Module::Install/use lib q[.];\nuse 
inc::Module::Install/' Makefile.PL
+# MANUAL END
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor

++ cpanspec.yml ++
---
post_prep:
 sed -i -e 's/use inc::Module::Install/use lib q[.];\nuse 
inc::Module::Install/' Makefile.PL



commit perl-Test-Spelling for openSUSE:Factory

2015-02-08 Thread h_root
Hello community,

here is the log from the commit of package perl-Test-Spelling for 
openSUSE:Factory checked in at 2015-02-08 11:42:43

Comparing /work/SRC/openSUSE:Factory/perl-Test-Spelling (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Test-Spelling.new (New)


Package is perl-Test-Spelling

Changes:

--- /work/SRC/openSUSE:Factory/perl-Test-Spelling/perl-Test-Spelling.changes
2013-06-06 12:57:44.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Test-Spelling.new/perl-Test-Spelling.changes   
2015-02-08 11:42:44.0 +0100
@@ -1,0 +2,8 @@
+Sat Feb  7 07:21:44 UTC 2015 - co...@suse.com
+
+- updated to 0.20
+- Add a sorted list of your most commonly misspelled words to
+  the end of all_pod_files_spelling_ok to aid stopword list creation
+  and bulk correction. (Kent Fredric)
+
+---

Old:

  Test-Spelling-0.19.tar.gz

New:

  Test-Spelling-0.20.tar.gz



Other differences:
--
++ perl-Test-Spelling.spec ++
--- /var/tmp/diff_new_pack.446ZnB/_old  2015-02-08 11:42:44.0 +0100
+++ /var/tmp/diff_new_pack.446ZnB/_new  2015-02-08 11:42:44.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Test-Spelling
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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,7 +17,7 @@
 
 
 Name:   perl-Test-Spelling
-Version:0.19
+Version:0.20
 Release:0
 %define cpan_name Test-Spelling
 Summary:check for spelling errors in POD files
@@ -33,17 +33,6 @@
 BuildRequires:  perl(Pod::Spell) = 1.01
 BuildRequires:  perl(Test::More) = 0.88
 BuildRequires:  perl(Test::Tester)
-#BuildRequires: perl(inc::Module::Install)
-#BuildRequires: perl(JSON)
-#BuildRequires: perl(LWP::Simple)
-#BuildRequires: perl(Module::Build)
-#BuildRequires: perl(Module::Install::AutoManifest)
-#BuildRequires: perl(Module::Install::Base)
-#BuildRequires: perl(Module::Install::GithubMeta)
-#BuildRequires: perl(Module::Install::ManifestSkip)
-#BuildRequires: perl(Parse::CPAN::Meta)
-#BuildRequires: perl(Test::Spelling)
-#BuildRequires: perl(YAML::Tiny)
 Requires:   perl(IPC::Run3) = 0.044
 Requires:   perl(Pod::Spell) = 1.01
 %{perl_requires}

++ Test-Spelling-0.19.tar.gz - Test-Spelling-0.20.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Spelling-0.19/.prove 
new/Test-Spelling-0.20/.prove
--- old/Test-Spelling-0.19/.prove   2013-04-26 16:50:23.0 +0200
+++ new/Test-Spelling-0.20/.prove   1970-01-01 01:00:00.0 +0100
@@ -1,72 +0,0 @@

-generation: 8
-last_run_time: 1366987823.5195
-tests:
-  t/basic.t:
-elapsed: 0.0465278625488281
-gen: 8
-last_fail_time: 1366987823.46117
-last_pass_time: 1366987750.13305
-last_result: 15
-last_run_time: 1366987823.46117
-last_todo: 0
-mtime: 1356046620
-seq: 46
-total_failures: 5
-total_passes: 3
-  t/fake_checker.t:
-elapsed: 0.0521571636199951
-gen: 8
-last_fail_time: 1366987823.45588
-last_pass_time: 1366987750.13592
-last_result: 15
-last_run_time: 1366987823.45588
-last_todo: 0
-mtime: 1366986959
-seq: 45
-total_failures: 5
-total_passes: 3
-  t/load.t:
-elapsed: 0.00190591812133789
-gen: 8
-last_pass_time: 1366987823.41582
-last_result: 0
-last_run_time: 1366987823.41582
-last_todo: 0
-mtime: 1366987242
-seq: 43
-total_passes: 8
-  t/pod-spell.t:
-elapsed: 0.0302088260650635
-gen: 8
-last_pass_time: 1366987823.51709
-last_result: 0
-last_run_time: 1366987823.51709
-last_todo: 0
-mtime: 1356046620
-seq: 48
-total_passes: 8
-  t/pod.t:
-elapsed: 0.0278980731964111
-gen: 8
-last_pass_time: 1366987823.50121
-last_result: 0
-last_run_time: 1366987823.50121
-last_todo: 0
-mtime: 1356046620
-seq: 47
-total_passes: 8
-  t/stopword.t:
-elapsed: 0.0294508934020996
-gen: 8
-last_fail_time: 1366987823.4445
-last_pass_time: 1366987750.10773
-last_result: 11
-last_run_time: 1366987823.4445
-last_todo: 0
-mtime: 1366986959
-seq: 44
-total_failures: 5
-total_passes: 3
-version: 1
-...
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Spelling-0.19/Changes 
new/Test-Spelling-0.20/Changes
--- old/Test-Spelling-0.19/Changes  2013-05-05 17:03:47.0 +0200
+++ new/Test-Spelling-0.20/Changes  

commit perl-Test-Spelling for openSUSE:Factory

2013-06-06 Thread h_root
Hello community,

here is the log from the commit of package perl-Test-Spelling for 
openSUSE:Factory checked in at 2013-06-06 12:57:42

Comparing /work/SRC/openSUSE:Factory/perl-Test-Spelling (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Test-Spelling.new (New)


Package is perl-Test-Spelling

Changes:

--- /work/SRC/openSUSE:Factory/perl-Test-Spelling/perl-Test-Spelling.changes
2011-12-21 10:02:53.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Test-Spelling.new/perl-Test-Spelling.changes   
2013-06-06 12:57:44.0 +0200
@@ -1,0 +2,24 @@
+Tue Jun  4 15:08:59 UTC 2013 - co...@suse.com
+
+- updated to 0.19
+ - for more consistent results avoid using the user's local aspell
+   dictionary [rt.cpan.org #56483] (Karen Etheridge)
+ 
+ - Work around Pod::Spell limitations (David Golden)
+ - Improve case handling (David Golden)
+ - Improve test failure reporting (Karen Etheridge)
+ - Include more useful info in Test-Spelling's own test
+ suite (Shawn Moore)
+ 
+ - Use IPC::Run3 instead of IPC::Open3
+ Quoth IPC::Open3:
+ If you try to read from the child's stdout writer
+ and their stderr writer, you'll have problems with
+ blocking ... This is very dangerous, as you may
+ block forever.
+ Also the code is nicely shorter. (Randy Stauner)
+ 
+ - Allow use of a custom POD parser rather than Pod::Spell
+   using set_pod_parser (Thomas Sibley)
+
+---

Old:

  Test-Spelling-0.15.tar.gz

New:

  Test-Spelling-0.19.tar.gz



Other differences:
--
++ perl-Test-Spelling.spec ++
--- /var/tmp/diff_new_pack.piRuxV/_old  2013-06-06 12:57:44.0 +0200
+++ /var/tmp/diff_new_pack.piRuxV/_new  2013-06-06 12:57:44.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Test-Spelling
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products 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,7 +17,7 @@
 
 
 Name:   perl-Test-Spelling
-Version:0.15
+Version:0.19
 Release:0
 %define cpan_name Test-Spelling
 Summary:check for spelling errors in POD files
@@ -29,6 +29,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
+BuildRequires:  perl(IPC::Run3) = 0.044
 BuildRequires:  perl(Pod::Spell) = 1.01
 BuildRequires:  perl(Test::More) = 0.88
 BuildRequires:  perl(Test::Tester)
@@ -43,6 +44,7 @@
 #BuildRequires: perl(Parse::CPAN::Meta)
 #BuildRequires: perl(Test::Spelling)
 #BuildRequires: perl(YAML::Tiny)
+Requires:   perl(IPC::Run3) = 0.044
 Requires:   perl(Pod::Spell) = 1.01
 %{perl_requires}
 

++ Test-Spelling-0.15.tar.gz - Test-Spelling-0.19.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Spelling-0.15/.prove 
new/Test-Spelling-0.19/.prove
--- old/Test-Spelling-0.15/.prove   1970-01-01 01:00:00.0 +0100
+++ new/Test-Spelling-0.19/.prove   2013-04-26 16:50:23.0 +0200
@@ -0,0 +1,72 @@
+---
+generation: 8
+last_run_time: 1366987823.5195
+tests:
+  t/basic.t:
+elapsed: 0.0465278625488281
+gen: 8
+last_fail_time: 1366987823.46117
+last_pass_time: 1366987750.13305
+last_result: 15
+last_run_time: 1366987823.46117
+last_todo: 0
+mtime: 1356046620
+seq: 46
+total_failures: 5
+total_passes: 3
+  t/fake_checker.t:
+elapsed: 0.0521571636199951
+gen: 8
+last_fail_time: 1366987823.45588
+last_pass_time: 1366987750.13592
+last_result: 15
+last_run_time: 1366987823.45588
+last_todo: 0
+mtime: 1366986959
+seq: 45
+total_failures: 5
+total_passes: 3
+  t/load.t:
+elapsed: 0.00190591812133789
+gen: 8
+last_pass_time: 1366987823.41582
+last_result: 0
+last_run_time: 1366987823.41582
+last_todo: 0
+mtime: 1366987242
+seq: 43
+total_passes: 8
+  t/pod-spell.t:
+elapsed: 0.0302088260650635
+gen: 8
+last_pass_time: 1366987823.51709
+last_result: 0
+last_run_time: 1366987823.51709
+last_todo: 0
+mtime: 1356046620
+seq: 48
+total_passes: 8
+  t/pod.t:
+elapsed: 0.0278980731964111
+gen: 8
+last_pass_time: 1366987823.50121
+last_result: 0
+last_run_time: 1366987823.50121
+last_todo: 0
+mtime: 1356046620
+seq: 47
+total_passes: 8
+  t/stopword.t:
+elapsed: 

commit perl-Test-Spelling for openSUSE:Factory

2011-12-21 Thread h_root
Hello community,

here is the log from the commit of package perl-Test-Spelling for 
openSUSE:Factory checked in at 2011-12-21 10:02:46

Comparing /work/SRC/openSUSE:Factory/perl-Test-Spelling (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Test-Spelling.new (New)


Package is perl-Test-Spelling, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/perl-Test-Spelling/perl-Test-Spelling.changes
2011-09-23 12:39:09.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Test-Spelling.new/perl-Test-Spelling.changes   
2011-12-21 10:02:53.0 +0100
@@ -1,0 +2,29 @@
+Mon Dec 19 16:22:38 UTC 2011 - co...@suse.de
+
+- update to 0.15
+ - Begin adding actual tests
+   (Hilariously, adding the suggested t/pod-spell.t to this
+   dist to test itself found a typo: stopwards)
+ - Fix an error when using add_stopwords(constant, strings)
+   [rt.cpan.org #68471] (reported by Nicholas Bamber)
+ - Make alternatives checking more robust by reading the spellchecker's
+   STDERR
+ - Best Practical has taken over maintainership of this module
+ - Try various spellcheck programs instead of hardcoding the ancient
+   `spell` [rt.cpan.org #56483] (reported by Lars Dɪᴇᴄᴋᴏᴡ, et al)
+ - Remove temporary files more aggressively [rt.cpan.org #41586]
+   (reported by Tokuhiro Matsuno)
+ - fixed by not creating them at all :) instead we now use IPC::Open3
+ - Remove suggestion to use broken `aspell -l` [rt.cpan.org #28967]
+   (reported by David Hand)
+ - Add set_pod_file_filter for skipping translations, etc.
+ - Skip tests in all_pod_files_spelling_ok if there is no working
+   spellchecker
+ - Provide a has_working_spellchecker so you can skip your own tests if
+   there's no working spellchecker
+ - Switch to Module::Install
+ - Rewrite and modernize a lot of the documentation
+ - Decruftify code, such as by using Exporter and lexical filehandles
+ - Support .plx files (you're welcome Schwern)
+
+---

Old:

  Test-Spelling-0.11.tar.gz

New:

  Test-Spelling-0.15.tar.gz



Other differences:
--
++ perl-Test-Spelling.spec ++
--- /var/tmp/diff_new_pack.9S8lge/_old  2011-12-21 10:02:54.0 +0100
+++ /var/tmp/diff_new_pack.9S8lge/_new  2011-12-21 10:02:54.0 +0100
@@ -15,64 +15,98 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-Test-Spelling
-Version:0.11
-Release:1
-Summary:Check POD Files for Spelling Mistakes
-Source: 
http://search.cpan.org/CPAN/authors/id/I/IT/ITUB/Test-Spelling-%{version}.tar.gz
-Url:http://search.cpan.org/dist/Test-Spelling
+Version:0.15
+Release:0
+%define cpan_name Test-Spelling
+Summary:check for spelling errors in POD files
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
-License:Perl License
+Url:http://search.cpan.org/dist/Test-Spelling/
+Source: 
http://www.cpan.org/authors/id/S/SA/SARTAK/%{cpan_name}-%{version}.tar.gz
+BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  make
-BuildRequires:  aspell
-BuildRequires:  perl(ExtUtils::MakeMaker)
-BuildRequires:  perl(Test::More)
-BuildRequires:  perl(File::Temp)
-BuildRequires:  perl(File::Spec)
 BuildRequires:  perl(Pod::Spell) = 1.01
-BuildRequires:  perl(Carp)
-Requires:   aspell
-Requires:   perl(Test::More)
-Requires:   perl(File::Temp)
-Requires:   perl(File::Spec)
+BuildRequires:  perl(Test::More) = 0.88
+BuildRequires:  perl(Test::Tester)
+#BuildRequires: perl(inc::Module::Install)
+#BuildRequires: perl(JSON)
+#BuildRequires: perl(LWP::Simple)
+#BuildRequires: perl(Module::Build)
+#BuildRequires: perl(Module::Install::AutoManifest)
+#BuildRequires: perl(Module::Install::Base)
+#BuildRequires: perl(Module::Install::GithubMeta)
+#BuildRequires: perl(Module::Install::ManifestSkip)
+#BuildRequires: perl(Parse::CPAN::Meta)
+#BuildRequires: perl(Test::Spelling)
+#BuildRequires: perl(YAML::Tiny)
 Requires:   perl(Pod::Spell) = 1.01
-Requires:   perl(Carp)
+%{perl_requires}
 
 %description
-Check POD files for spelling mistakes, using Pod::Spell and spell to do
-the heavy lifting.
+'Test::Spelling' lets you check the spelling of a POD file, and report its
+results in standard 'Test::More' fashion. This module requires a spellcheck
+program such as _spell_, _aspell_, _ispell_, or _hunspell_.
+
+use Test::Spelling;
+pod_file_spelling_ok('lib/Foo/Bar.pm', 'POD file spelling OK');
+

commit perl-Test-Spelling for openSUSE:Factory

2011-07-25 Thread h_root

Hello community,

here is the log from the commit of package perl-Test-Spelling for 
openSUSE:Factory
checked in at Mon Jul 25 13:03:09 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/perl-Test-Spelling/perl-Test-Spelling.changes  
2010-12-01 07:57:28.0 +0100
@@ -0,0 +1,15 @@
+---
+Wed Dec  1 06:55:44 UTC 2010 - co...@novell.com
+
+- switch to perl_requires macro
+
+---
+Mon Nov 29 18:31:15 UTC 2010 - co...@novell.com
+
+- remove /var/adm/perl-modules
+
+---
+Fri Aug 27 00:08:38 UTC 2010 - pascal.ble...@opensuse.org
+
+- initial package (0.11)
+

calling whatdependson for head-i586


New:

  perl-Test-Spelling.changes
  perl-Test-Spelling.spec
  Test-Spelling-0.11.tar.gz



Other differences:
--
++ perl-Test-Spelling.spec ++
#
# spec file for package perl-Test-Spelling
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An Open Source License is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#

# norootforbuild


Name:   perl-Test-Spelling
Version:0.11
Release:1
Summary:Check POD Files for Spelling Mistakes
Source: 
http://search.cpan.org/CPAN/authors/id/I/IT/ITUB/Test-Spelling-%{version}.tar.gz
Url:http://search.cpan.org/dist/Test-Spelling
Group:  Development/Libraries/Perl
License:Perl License
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
%{perl_requires}
BuildRequires:  perl
BuildRequires:  perl-macros
BuildRequires:  make
BuildRequires:  aspell
BuildRequires:  perl(ExtUtils::MakeMaker)
BuildRequires:  perl(Test::More)
BuildRequires:  perl(File::Temp)
BuildRequires:  perl(File::Spec)
BuildRequires:  perl(Pod::Spell) = 1.01
BuildRequires:  perl(Carp)
Requires:   aspell
Requires:   perl(Test::More)
Requires:   perl(File::Temp)
Requires:   perl(File::Spec)
Requires:   perl(Pod::Spell) = 1.01
Requires:   perl(Carp)

%description
Check POD files for spelling mistakes, using Pod::Spell and spell to do
the heavy lifting.

%prep
%setup -q -n Test-Spelling-%{version}
%__sed -i '/^auto_install/d' Makefile.PL

%build
%__perl Makefile.PL PREFIX=%{_prefix}
%__make %{?jobs:-j%{jobs}}

%install
%perl_make_install
%perl_process_packlist

%check
%__make test

%clean
%{?buildroot:%__rm -rf %{buildroot}}

%files
%defattr(-,root,root)
%doc Changes README
%dir %{perl_vendorlib}/Test
%{perl_vendorlib}/Test/Spelling.pm
%dir %{perl_vendorarch}/auto/Test
%{perl_vendorarch}/auto/Test/Spelling
%doc %{perl_man3dir}/Test::Spelling.%{perl_man3ext}%{ext_man}
%changelog





Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org