Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package perl-Mixin-Linewise for 
openSUSE:Factory checked in at 2021-07-02 13:27:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Mixin-Linewise (Old)
 and      /work/SRC/openSUSE:Factory/.perl-Mixin-Linewise.new.2625 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-Mixin-Linewise"

Fri Jul  2 13:27:12 2021 rev:16 rq:903521 version:0.110

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-Mixin-Linewise/perl-Mixin-Linewise.changes  
2015-04-15 16:23:43.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Mixin-Linewise.new.2625/perl-Mixin-Linewise.changes
        2021-07-02 13:28:01.796498554 +0200
@@ -1,0 +2,16 @@
+Thu Jun 24 03:08:44 UTC 2021 - Tina M??ller <timueller+p...@suse.de>
+
+- updated to 0.110
+   see /usr/share/doc/packages/perl-Mixin-Linewise/Changes
+
+  0.110     2021-06-22 22:27:07-04:00 America/New_York
+          - tweak the file test again to exclude directories; (is this going to
+            turn into something more convoluted in several releases? probably)
+
+  0.109     2021-06-20 21:10:22-04:00 America/New_York
+          - use "-r" test instead of "-f" test, to allow use on (say) named
+            pipes (thanks, L. Alberto Gim??nez!)
+          - update author information
+          - add perl support section to docs
+
+-------------------------------------------------------------------

Old:
----
  Mixin-Linewise-0.108.tar.gz

New:
----
  Mixin-Linewise-0.110.tar.gz
  cpanspec.yml

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ perl-Mixin-Linewise.spec ++++++
--- /var/tmp/diff_new_pack.56agxv/_old  2021-07-02 13:28:02.152495792 +0200
+++ /var/tmp/diff_new_pack.56agxv/_new  2021-07-02 13:28:02.152495792 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Mixin-Linewise
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2021 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,23 +12,23 @@
 # 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/
 #
 
 
+%define cpan_name Mixin-Linewise
 Name:           perl-Mixin-Linewise
-Version:        0.108
+Version:        0.110
 Release:        0
-%define cpan_name Mixin-Linewise
-Summary:        write your linewise code for handles; this does the rest
-License:        Artistic-1.0 or GPL-1.0+
-Group:          Development/Libraries/Perl
-Url:            http://search.cpan.org/dist/Mixin-Linewise/
-Source:         
http://www.cpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
+Summary:        Write your linewise code for handles; this does the rest
+License:        Artistic-1.0 OR GPL-1.0-or-later
+URL:            https://metacpan.org/release/%{cpan_name}
+Source0:        
https://cpan.metacpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
+Source1:        cpanspec.yml
 BuildArch:      noarch
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
+BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.78
 BuildRequires:  perl(PerlIO::utf8_strict)
 BuildRequires:  perl(Sub::Exporter)
 BuildRequires:  perl(Test::More) >= 0.96
@@ -38,20 +38,19 @@
 
 %description
 It's boring to deal with opening files for IO, converting strings to
-handle-like objects, and all that. With the Mixin::Linewise::Readers
-manpage and the Mixin::Linewise::Writers manpage, you can just write a
-method to handle handles, and methods for handling strings and filenames
-are added for you.
+handle-like objects, and all that. With Mixin::Linewise::Readers and
+Mixin::Linewise::Writers, you can just write a method to handle handles,
+and methods for handling strings and filenames are added for you.
 
 %prep
-%setup -q -n %{cpan_name}-%{version}
+%autosetup  -n %{cpan_name}-%{version}
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
-%{__make} %{?_smp_mflags}
+perl Makefile.PL INSTALLDIRS=vendor
+%make_build
 
 %check
-%{__make} test
+make test
 
 %install
 %perl_make_install
@@ -59,7 +58,7 @@
 %perl_gen_filelist
 
 %files -f %{name}.files
-%defattr(-,root,root,755)
-%doc Changes LICENSE README
+%doc Changes README
+%license LICENSE
 
 %changelog

++++++ Mixin-Linewise-0.108.tar.gz -> Mixin-Linewise-0.110.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mixin-Linewise-0.108/Changes 
new/Mixin-Linewise-0.110/Changes
--- old/Mixin-Linewise-0.108/Changes    2015-04-08 20:56:08.000000000 +0200
+++ new/Mixin-Linewise-0.110/Changes    2021-06-23 04:27:10.000000000 +0200
@@ -1,5 +1,15 @@
 Changelog for Mixin-Linewise
 
+0.110     2021-06-22 22:27:07-04:00 America/New_York
+        - tweak the file test again to exclude directories; (is this going to
+          turn into something more convoluted in several releases? probably)
+
+0.109     2021-06-20 21:10:22-04:00 America/New_York
+        - use "-r" test instead of "-f" test, to allow use on (say) named
+          pipes (thanks, L. Alberto Gim??nez!)
+        - update author information
+        - add perl support section to docs
+
 0.108     2015-04-08 14:56:06-04:00 America/New_York
         - first argument can be options only if there are two options
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mixin-Linewise-0.108/MANIFEST 
new/Mixin-Linewise-0.110/MANIFEST
--- old/Mixin-Linewise-0.108/MANIFEST   2015-04-08 20:56:08.000000000 +0200
+++ new/Mixin-Linewise-0.110/MANIFEST   2021-06-23 04:27:10.000000000 +0200
@@ -1,4 +1,4 @@
-# This file was automatically generated by Dist::Zilla::Plugin::Manifest 
v5.034.
+# This file was automatically generated by Dist::Zilla::Plugin::Manifest 
v6.021.
 Changes
 LICENSE
 MANIFEST
@@ -18,5 +18,5 @@
 t/reader.t
 t/utf8.txt
 t/writer.t
+xt/author/pod-syntax.t
 xt/release/changes_has_content.t
-xt/release/pod-syntax.t
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mixin-Linewise-0.108/META.json 
new/Mixin-Linewise-0.110/META.json
--- old/Mixin-Linewise-0.108/META.json  2015-04-08 20:56:08.000000000 +0200
+++ new/Mixin-Linewise-0.110/META.json  2021-06-23 04:27:10.000000000 +0200
@@ -1,10 +1,10 @@
 {
    "abstract" : "write your linewise code for handles; this does the rest",
    "author" : [
-      "Ricardo SIGNES <r...@cpan.org>"
+      "Ricardo SIGNES <rjbs@semiotic.systems>"
    ],
    "dynamic_config" : 0,
-   "generated_by" : "Dist::Zilla version 5.034, CPAN::Meta::Converter version 
2.150001",
+   "generated_by" : "Dist::Zilla version 6.021, CPAN::Meta::Converter version 
2.150010",
    "license" : [
       "perl_5"
    ],
@@ -16,11 +16,13 @@
    "prereqs" : {
       "configure" : {
          "requires" : {
-            "ExtUtils::MakeMaker" : "0"
+            "ExtUtils::MakeMaker" : "6.78"
          }
       },
       "develop" : {
          "requires" : {
+            "Encode" : "0",
+            "Test::More" : "0",
             "Test::Pod" : "1.41"
          }
       },
@@ -30,7 +32,7 @@
             "IO::File" : "0",
             "PerlIO::utf8_strict" : "0",
             "Sub::Exporter" : "0",
-            "perl" : "5.008001",
+            "perl" : "5.012",
             "strict" : "0",
             "warnings" : "0"
          }
@@ -61,10 +63,10 @@
          "web" : "https://github.com/rjbs/Mixin-Linewise";
       }
    },
-   "version" : "0.108",
+   "version" : "0.110",
    "x_Dist_Zilla" : {
       "perl" : {
-         "version" : "5.021009"
+         "version" : "5.035001"
       },
       "plugins" : [
          {
@@ -73,28 +75,28 @@
                "Dist::Zilla::Plugin::GatherDir" : {
                   "exclude_filename" : [],
                   "exclude_match" : [],
-                  "follow_symlinks" : "0",
-                  "include_dotfiles" : "0",
+                  "follow_symlinks" : 0,
+                  "include_dotfiles" : 0,
                   "prefix" : "",
                   "prune_directory" : [],
                   "root" : "."
                },
                "Dist::Zilla::Plugin::Git::GatherDir" : {
-                  "include_untracked" : "0"
+                  "include_untracked" : 0
                }
             },
             "name" : "@RJBS/Git::GatherDir",
-            "version" : "2.033"
+            "version" : "2.047"
          },
          {
             "class" : "Dist::Zilla::Plugin::CheckPrereqsIndexed",
             "name" : "@RJBS/CheckPrereqsIndexed",
-            "version" : "0.015"
+            "version" : "0.021"
          },
          {
             "class" : "Dist::Zilla::Plugin::CheckExtraTests",
             "name" : "@RJBS/CheckExtraTests",
-            "version" : "0.026"
+            "version" : "0.029"
          },
          {
             "class" : "Dist::Zilla::Plugin::PromptIfStale",
@@ -106,80 +108,84 @@
                      "Dist::Zilla::PluginBundle::RJBS"
                   ],
                   "phase" : "build",
+                  "run_under_travis" : 0,
                   "skip" : []
                }
             },
             "name" : "@RJBS/RJBS-Outdated",
-            "version" : "0.040"
+            "version" : "0.057"
          },
          {
             "class" : "Dist::Zilla::Plugin::PromptIfStale",
             "config" : {
                "Dist::Zilla::Plugin::PromptIfStale" : {
-                  "check_all_plugins" : "1",
+                  "check_all_plugins" : 1,
                   "check_all_prereqs" : 0,
                   "modules" : [],
                   "phase" : "release",
-                  "skip" : []
+                  "run_under_travis" : 0,
+                  "skip" : [
+                     "Dist::Zilla::Plugin::RJBSMisc"
+                  ]
                }
             },
             "name" : "@RJBS/CPAN-Outdated",
-            "version" : "0.040"
+            "version" : "0.057"
          },
          {
             "class" : "Dist::Zilla::Plugin::PruneCruft",
             "name" : "@RJBS/@Filter/PruneCruft",
-            "version" : "5.034"
+            "version" : "6.021"
          },
          {
             "class" : "Dist::Zilla::Plugin::ManifestSkip",
             "name" : "@RJBS/@Filter/ManifestSkip",
-            "version" : "5.034"
+            "version" : "6.021"
          },
          {
             "class" : "Dist::Zilla::Plugin::MetaYAML",
             "name" : "@RJBS/@Filter/MetaYAML",
-            "version" : "5.034"
+            "version" : "6.021"
          },
          {
             "class" : "Dist::Zilla::Plugin::License",
             "name" : "@RJBS/@Filter/License",
-            "version" : "5.034"
+            "version" : "6.021"
          },
          {
             "class" : "Dist::Zilla::Plugin::Readme",
             "name" : "@RJBS/@Filter/Readme",
-            "version" : "5.034"
+            "version" : "6.021"
          },
          {
             "class" : "Dist::Zilla::Plugin::ExecDir",
             "name" : "@RJBS/@Filter/ExecDir",
-            "version" : "5.034"
+            "version" : "6.021"
          },
          {
             "class" : "Dist::Zilla::Plugin::ShareDir",
             "name" : "@RJBS/@Filter/ShareDir",
-            "version" : "5.034"
+            "version" : "6.021"
          },
          {
             "class" : "Dist::Zilla::Plugin::Manifest",
             "name" : "@RJBS/@Filter/Manifest",
-            "version" : "5.034"
+            "version" : "6.021"
          },
          {
             "class" : "Dist::Zilla::Plugin::TestRelease",
             "name" : "@RJBS/@Filter/TestRelease",
-            "version" : "5.034"
+            "version" : "6.021"
          },
          {
             "class" : "Dist::Zilla::Plugin::ConfirmRelease",
             "name" : "@RJBS/@Filter/ConfirmRelease",
-            "version" : "5.034"
+            "version" : "6.021"
          },
          {
             "class" : "Dist::Zilla::Plugin::UploadToCPAN",
             "name" : "@RJBS/@Filter/UploadToCPAN",
-            "version" : "5.034"
+            "version" : "6.021"
          },
          {
             "class" : "Dist::Zilla::Plugin::MakeMaker",
@@ -189,62 +195,63 @@
                }
             },
             "name" : "@RJBS/MakeMaker",
-            "version" : "5.034"
+            "version" : "6.021"
          },
          {
             "class" : "Dist::Zilla::Plugin::AutoPrereqs",
             "name" : "@RJBS/AutoPrereqs",
-            "version" : "5.034"
+            "version" : "6.021"
          },
          {
             "class" : "Dist::Zilla::Plugin::Git::NextVersion",
             "config" : {
                "Dist::Zilla::Plugin::Git::NextVersion" : {
                   "first_version" : "0.001",
-                  "version_by_branch" : "0",
+                  "version_by_branch" : 1,
                   "version_regexp" : "(?^:^([0-9]+\\.[0-9]+)$)"
                },
                "Dist::Zilla::Role::Git::Repo" : {
+                  "git_version" : "2.30.1 (Apple Git-130)",
                   "repo_root" : "."
                }
             },
             "name" : "@RJBS/Git::NextVersion",
-            "version" : "2.033"
+            "version" : "2.047"
          },
          {
             "class" : "Dist::Zilla::Plugin::PkgVersion",
             "name" : "@RJBS/PkgVersion",
-            "version" : "5.034"
+            "version" : "6.021"
          },
          {
             "class" : "Dist::Zilla::Plugin::MetaConfig",
             "name" : "@RJBS/MetaConfig",
-            "version" : "5.034"
+            "version" : "6.021"
          },
          {
             "class" : "Dist::Zilla::Plugin::MetaJSON",
             "name" : "@RJBS/MetaJSON",
-            "version" : "5.034"
+            "version" : "6.021"
          },
          {
             "class" : "Dist::Zilla::Plugin::NextRelease",
             "name" : "@RJBS/NextRelease",
-            "version" : "5.034"
+            "version" : "6.021"
          },
          {
             "class" : "Dist::Zilla::Plugin::Test::ChangesHasContent",
             "name" : "@RJBS/Test::ChangesHasContent",
-            "version" : "0.008"
+            "version" : "0.011"
          },
          {
             "class" : "Dist::Zilla::Plugin::PodSyntaxTests",
             "name" : "@RJBS/PodSyntaxTests",
-            "version" : "5.034"
+            "version" : "6.021"
          },
          {
             "class" : "Dist::Zilla::Plugin::Test::ReportPrereqs",
             "name" : "@RJBS/Test::ReportPrereqs",
-            "version" : "0.021"
+            "version" : "0.028"
          },
          {
             "class" : "Dist::Zilla::Plugin::Prereqs",
@@ -255,7 +262,7 @@
                }
             },
             "name" : "@RJBS/TestMoreWithSubtests",
-            "version" : "5.034"
+            "version" : "6.021"
          },
          {
             "class" : "Dist::Zilla::Plugin::PodWeaver",
@@ -272,82 +279,87 @@
                      {
                         "class" : "Pod::Weaver::Plugin::EnsurePod5",
                         "name" : "@CorePrep/EnsurePod5",
-                        "version" : "4.010"
+                        "version" : "4.018"
                      },
                      {
                         "class" : "Pod::Weaver::Plugin::H1Nester",
                         "name" : "@CorePrep/H1Nester",
-                        "version" : "4.010"
+                        "version" : "4.018"
                      },
                      {
                         "class" : "Pod::Weaver::Plugin::SingleEncoding",
                         "name" : "@RJBS/SingleEncoding",
-                        "version" : "4.010"
+                        "version" : "4.018"
                      },
                      {
                         "class" : "Pod::Weaver::Section::Name",
                         "name" : "@RJBS/Name",
-                        "version" : "4.010"
+                        "version" : "4.018"
                      },
                      {
                         "class" : "Pod::Weaver::Section::Version",
                         "name" : "@RJBS/Version",
-                        "version" : "4.010"
+                        "version" : "4.018"
                      },
                      {
                         "class" : "Pod::Weaver::Section::Region",
                         "name" : "@RJBS/Prelude",
-                        "version" : "4.010"
+                        "version" : "4.018"
                      },
                      {
                         "class" : "Pod::Weaver::Section::Generic",
                         "name" : "@RJBS/Synopsis",
-                        "version" : "4.010"
+                        "version" : "4.018"
                      },
                      {
                         "class" : "Pod::Weaver::Section::Generic",
                         "name" : "@RJBS/Description",
-                        "version" : "4.010"
+                        "version" : "4.018"
                      },
                      {
                         "class" : "Pod::Weaver::Section::Generic",
                         "name" : "@RJBS/Overview",
-                        "version" : "4.010"
+                        "version" : "4.018"
                      },
                      {
                         "class" : "Pod::Weaver::Section::Generic",
                         "name" : "@RJBS/Stability",
-                        "version" : "4.010"
+                        "version" : "4.018"
+                     },
+                     {
+                        "class" : "Pod::Weaver::Section::GenerateSection",
+                        "name" : "@RJBS/PerlSupport",
+                        "version" : "4.018"
                      },
                      {
                         "class" : "Pod::Weaver::Section::Collect",
                         "name" : "Attributes",
-                        "version" : "4.010"
+                        "version" : "4.018"
                      },
                      {
                         "class" : "Pod::Weaver::Section::Collect",
                         "name" : "Methods",
-                        "version" : "4.010"
+                        "version" : "4.018"
                      },
                      {
                         "class" : "Pod::Weaver::Section::Collect",
                         "name" : "Functions",
-                        "version" : "4.010"
+                        "version" : "4.018"
                      },
                      {
                         "class" : "Pod::Weaver::Section::Leftovers",
                         "name" : "@RJBS/Leftovers",
-                        "version" : "4.010"
+                        "version" : "4.018"
                      },
                      {
                         "class" : "Pod::Weaver::Section::Region",
                         "name" : "@RJBS/postlude",
-                        "version" : "4.010"
+                        "version" : "4.018"
                      },
                      {
                         "class" : "Pod::Weaver::Section::Authors",
                         "name" : "@RJBS/Authors",
-                        "version" : "4.010"
+                        "version" : "4.018"
                      },
                      {
                         "class" : "Pod::Weaver::Section::Contributors",
@@ -357,23 +369,28 @@
                      {
                         "class" : "Pod::Weaver::Section::Legal",
                         "name" : "@RJBS/Legal",
-                        "version" : "4.010"
+                        "version" : "4.018"
                      },
                      {
                         "class" : "Pod::Weaver::Plugin::Transformer",
                         "name" : "@RJBS/List",
-                        "version" : "4.010"
+                        "version" : "4.018"
                      }
                   ]
                }
             },
             "name" : "@RJBS/PodWeaver",
-            "version" : "4.006"
+            "version" : "4.009"
+         },
+         {
+            "class" : "Dist::Zilla::Plugin::RJBSMisc",
+            "name" : "@RJBS/RJBSMisc",
+            "version" : "5.019"
          },
          {
             "class" : "Dist::Zilla::Plugin::GithubMeta",
             "name" : "@RJBS/GithubMeta",
-            "version" : "0.48"
+            "version" : "0.58"
          },
          {
             "class" : "Dist::Zilla::Plugin::Git::Check",
@@ -383,143 +400,168 @@
                },
                "Dist::Zilla::Role::Git::DirtyFiles" : {
                   "allow_dirty" : [
-                     "dist.ini",
-                     "Changes"
+                     "Changes",
+                     "dist.ini"
                   ],
                   "allow_dirty_match" : [],
                   "changelog" : "Changes"
                },
                "Dist::Zilla::Role::Git::Repo" : {
+                  "git_version" : "2.30.1 (Apple Git-130)",
                   "repo_root" : "."
                }
             },
             "name" : "@RJBS/@Git/Check",
-            "version" : "2.033"
+            "version" : "2.047"
          },
          {
             "class" : "Dist::Zilla::Plugin::Git::Commit",
             "config" : {
                "Dist::Zilla::Plugin::Git::Commit" : {
                   "add_files_in" : [],
-                  "commit_msg" : "v%v%n%n%c",
-                  "time_zone" : "local"
+                  "commit_msg" : "v%V%n%n%c",
+                  "signoff" : 0
                },
                "Dist::Zilla::Role::Git::DirtyFiles" : {
                   "allow_dirty" : [
-                     "dist.ini",
-                     "Changes"
+                     "Changes",
+                     "dist.ini"
                   ],
                   "allow_dirty_match" : [],
                   "changelog" : "Changes"
                },
                "Dist::Zilla::Role::Git::Repo" : {
+                  "git_version" : "2.30.1 (Apple Git-130)",
                   "repo_root" : "."
+               },
+               "Dist::Zilla::Role::Git::StringFormatter" : {
+                  "time_zone" : "local"
                }
             },
             "name" : "@RJBS/@Git/Commit",
-            "version" : "2.033"
+            "version" : "2.047"
          },
          {
             "class" : "Dist::Zilla::Plugin::Git::Tag",
             "config" : {
                "Dist::Zilla::Plugin::Git::Tag" : {
                   "branch" : null,
+                  "changelog" : "Changes",
                   "signed" : 0,
-                  "tag" : "0.108",
+                  "tag" : "0.110",
                   "tag_format" : "%v",
-                  "tag_message" : "v%v",
-                  "time_zone" : "local"
+                  "tag_message" : "v%V"
                },
                "Dist::Zilla::Role::Git::Repo" : {
+                  "git_version" : "2.30.1 (Apple Git-130)",
                   "repo_root" : "."
+               },
+               "Dist::Zilla::Role::Git::StringFormatter" : {
+                  "time_zone" : "local"
                }
             },
             "name" : "@RJBS/@Git/Tag",
-            "version" : "2.033"
+            "version" : "2.047"
          },
          {
             "class" : "Dist::Zilla::Plugin::Git::Push",
             "config" : {
                "Dist::Zilla::Plugin::Git::Push" : {
                   "push_to" : [
-                     "origin :",
                      "github :"
                   ],
                   "remotes_must_exist" : 0
                },
                "Dist::Zilla::Role::Git::Repo" : {
+                  "git_version" : "2.30.1 (Apple Git-130)",
                   "repo_root" : "."
                }
             },
             "name" : "@RJBS/@Git/Push",
-            "version" : "2.033"
+            "version" : "2.047"
          },
          {
             "class" : "Dist::Zilla::Plugin::Git::Contributors",
             "config" : {
                "Dist::Zilla::Plugin::Git::Contributors" : {
-                  "include_authors" : "0",
-                  "include_releaser" : "1",
+                  "git_version" : "2.30.1 (Apple Git-130)",
+                  "include_authors" : 0,
+                  "include_releaser" : 1,
                   "order_by" : "name",
                   "paths" : []
                }
             },
             "name" : "@RJBS/Git::Contributors",
-            "version" : "0.011"
+            "version" : "0.036"
          },
          {
             "class" : "Dist::Zilla::Plugin::FinderCode",
             "name" : ":InstallModules",
-            "version" : "5.034"
+            "version" : "6.021"
          },
          {
             "class" : "Dist::Zilla::Plugin::FinderCode",
             "name" : ":IncModules",
-            "version" : "5.034"
+            "version" : "6.021"
          },
          {
             "class" : "Dist::Zilla::Plugin::FinderCode",
             "name" : ":TestFiles",
-            "version" : "5.034"
+            "version" : "6.021"
+         },
+         {
+            "class" : "Dist::Zilla::Plugin::FinderCode",
+            "name" : ":ExtraTestFiles",
+            "version" : "6.021"
          },
          {
             "class" : "Dist::Zilla::Plugin::FinderCode",
             "name" : ":ExecFiles",
-            "version" : "5.034"
+            "version" : "6.021"
+         },
+         {
+            "class" : "Dist::Zilla::Plugin::FinderCode",
+            "name" : ":PerlExecFiles",
+            "version" : "6.021"
          },
          {
             "class" : "Dist::Zilla::Plugin::FinderCode",
             "name" : ":ShareFiles",
-            "version" : "5.034"
+            "version" : "6.021"
          },
          {
             "class" : "Dist::Zilla::Plugin::FinderCode",
             "name" : ":MainModule",
-            "version" : "5.034"
+            "version" : "6.021"
          },
          {
             "class" : "Dist::Zilla::Plugin::FinderCode",
             "name" : ":AllFiles",
-            "version" : "5.034"
+            "version" : "6.021"
          },
          {
             "class" : "Dist::Zilla::Plugin::FinderCode",
             "name" : ":NoFiles",
-            "version" : "5.034"
+            "version" : "6.021"
          }
       ],
       "zilla" : {
          "class" : "Dist::Zilla::Dist::Builder",
          "config" : {
-            "is_trial" : "0"
+            "is_trial" : 0
          },
-         "version" : "5.034"
+         "version" : "6.021"
       }
    },
    "x_contributors" : [
       "David Golden <dagol...@cpan.org>",
       "David Steinbrunner <dsteinbrun...@pobox.com>",
-      "Graham Knop <ha...@haarg.org>"
-   ]
+      "Graham Knop <ha...@haarg.org>",
+      "L. Alberto Gim\u00e9nez <agime...@sysvalve.es>"
+   ],
+   "x_generated_by_perl" : "v5.35.1",
+   "x_rjbs_perl_support" : "standard",
+   "x_serialization_backend" : "Cpanel::JSON::XS version 4.26",
+   "x_spdx_expression" : "Artistic-1.0-Perl OR GPL-1.0-or-later"
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mixin-Linewise-0.108/META.yml 
new/Mixin-Linewise-0.110/META.yml
--- old/Mixin-Linewise-0.108/META.yml   2015-04-08 20:56:08.000000000 +0200
+++ new/Mixin-Linewise-0.110/META.yml   2021-06-23 04:27:10.000000000 +0200
@@ -1,7 +1,7 @@
 ---
 abstract: 'write your linewise code for handles; this does the rest'
 author:
-  - 'Ricardo SIGNES <r...@cpan.org>'
+  - 'Ricardo SIGNES <rjbs@semiotic.systems>'
 build_requires:
   Encode: '0'
   ExtUtils::MakeMaker: '0'
@@ -10,9 +10,9 @@
   lib: '0'
   utf8: '0'
 configure_requires:
-  ExtUtils::MakeMaker: '0'
+  ExtUtils::MakeMaker: '6.78'
 dynamic_config: 0
-generated_by: 'Dist::Zilla version 5.034, CPAN::Meta::Converter version 
2.150001'
+generated_by: 'Dist::Zilla version 6.021, CPAN::Meta::Converter version 
2.150010'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -23,17 +23,17 @@
   IO::File: '0'
   PerlIO::utf8_strict: '0'
   Sub::Exporter: '0'
-  perl: '5.008001'
+  perl: '5.012'
   strict: '0'
   warnings: '0'
 resources:
   bugtracker: https://github.com/rjbs/Mixin-Linewise/issues
   homepage: https://github.com/rjbs/Mixin-Linewise
   repository: https://github.com/rjbs/Mixin-Linewise.git
-version: '0.108'
+version: '0.110'
 x_Dist_Zilla:
   perl:
-    version: '5.021009'
+    version: '5.035001'
   plugins:
     -
       class: Dist::Zilla::Plugin::Git::GatherDir
@@ -41,23 +41,23 @@
         Dist::Zilla::Plugin::GatherDir:
           exclude_filename: []
           exclude_match: []
-          follow_symlinks: '0'
-          include_dotfiles: '0'
+          follow_symlinks: 0
+          include_dotfiles: 0
           prefix: ''
           prune_directory: []
           root: .
         Dist::Zilla::Plugin::Git::GatherDir:
-          include_untracked: '0'
+          include_untracked: 0
       name: '@RJBS/Git::GatherDir'
-      version: '2.033'
+      version: '2.047'
     -
       class: Dist::Zilla::Plugin::CheckPrereqsIndexed
       name: '@RJBS/CheckPrereqsIndexed'
-      version: '0.015'
+      version: '0.021'
     -
       class: Dist::Zilla::Plugin::CheckExtraTests
       name: '@RJBS/CheckExtraTests'
-      version: '0.026'
+      version: '0.029'
     -
       class: Dist::Zilla::Plugin::PromptIfStale
       config:
@@ -67,114 +67,118 @@
           modules:
             - Dist::Zilla::PluginBundle::RJBS
           phase: build
+          run_under_travis: 0
           skip: []
       name: '@RJBS/RJBS-Outdated'
-      version: '0.040'
+      version: '0.057'
     -
       class: Dist::Zilla::Plugin::PromptIfStale
       config:
         Dist::Zilla::Plugin::PromptIfStale:
-          check_all_plugins: '1'
+          check_all_plugins: 1
           check_all_prereqs: 0
           modules: []
           phase: release
-          skip: []
+          run_under_travis: 0
+          skip:
+            - Dist::Zilla::Plugin::RJBSMisc
       name: '@RJBS/CPAN-Outdated'
-      version: '0.040'
+      version: '0.057'
     -
       class: Dist::Zilla::Plugin::PruneCruft
       name: '@RJBS/@Filter/PruneCruft'
-      version: '5.034'
+      version: '6.021'
     -
       class: Dist::Zilla::Plugin::ManifestSkip
       name: '@RJBS/@Filter/ManifestSkip'
-      version: '5.034'
+      version: '6.021'
     -
       class: Dist::Zilla::Plugin::MetaYAML
       name: '@RJBS/@Filter/MetaYAML'
-      version: '5.034'
+      version: '6.021'
     -
       class: Dist::Zilla::Plugin::License
       name: '@RJBS/@Filter/License'
-      version: '5.034'
+      version: '6.021'
     -
       class: Dist::Zilla::Plugin::Readme
       name: '@RJBS/@Filter/Readme'
-      version: '5.034'
+      version: '6.021'
     -
       class: Dist::Zilla::Plugin::ExecDir
       name: '@RJBS/@Filter/ExecDir'
-      version: '5.034'
+      version: '6.021'
     -
       class: Dist::Zilla::Plugin::ShareDir
       name: '@RJBS/@Filter/ShareDir'
-      version: '5.034'
+      version: '6.021'
     -
       class: Dist::Zilla::Plugin::Manifest
       name: '@RJBS/@Filter/Manifest'
-      version: '5.034'
+      version: '6.021'
     -
       class: Dist::Zilla::Plugin::TestRelease
       name: '@RJBS/@Filter/TestRelease'
-      version: '5.034'
+      version: '6.021'
     -
       class: Dist::Zilla::Plugin::ConfirmRelease
       name: '@RJBS/@Filter/ConfirmRelease'
-      version: '5.034'
+      version: '6.021'
     -
       class: Dist::Zilla::Plugin::UploadToCPAN
       name: '@RJBS/@Filter/UploadToCPAN'
-      version: '5.034'
+      version: '6.021'
     -
       class: Dist::Zilla::Plugin::MakeMaker
       config:
         Dist::Zilla::Role::TestRunner:
           default_jobs: 9
       name: '@RJBS/MakeMaker'
-      version: '5.034'
+      version: '6.021'
     -
       class: Dist::Zilla::Plugin::AutoPrereqs
       name: '@RJBS/AutoPrereqs'
-      version: '5.034'
+      version: '6.021'
     -
       class: Dist::Zilla::Plugin::Git::NextVersion
       config:
         Dist::Zilla::Plugin::Git::NextVersion:
           first_version: '0.001'
-          version_by_branch: '0'
+          version_by_branch: 1
           version_regexp: (?^:^([0-9]+\.[0-9]+)$)
         Dist::Zilla::Role::Git::Repo:
+          git_version: '2.30.1 (Apple Git-130)'
           repo_root: .
       name: '@RJBS/Git::NextVersion'
-      version: '2.033'
+      version: '2.047'
     -
       class: Dist::Zilla::Plugin::PkgVersion
       name: '@RJBS/PkgVersion'
-      version: '5.034'
+      version: '6.021'
     -
       class: Dist::Zilla::Plugin::MetaConfig
       name: '@RJBS/MetaConfig'
-      version: '5.034'
+      version: '6.021'
     -
       class: Dist::Zilla::Plugin::MetaJSON
       name: '@RJBS/MetaJSON'
-      version: '5.034'
+      version: '6.021'
     -
       class: Dist::Zilla::Plugin::NextRelease
       name: '@RJBS/NextRelease'
-      version: '5.034'
+      version: '6.021'
     -
       class: Dist::Zilla::Plugin::Test::ChangesHasContent
       name: '@RJBS/Test::ChangesHasContent'
-      version: '0.008'
+      version: '0.011'
     -
       class: Dist::Zilla::Plugin::PodSyntaxTests
       name: '@RJBS/PodSyntaxTests'
-      version: '5.034'
+      version: '6.021'
     -
       class: Dist::Zilla::Plugin::Test::ReportPrereqs
       name: '@RJBS/Test::ReportPrereqs'
-      version: '0.021'
+      version: '0.028'
     -
       class: Dist::Zilla::Plugin::Prereqs
       config:
@@ -182,7 +186,7 @@
           phase: test
           type: requires
       name: '@RJBS/TestMoreWithSubtests'
-      version: '5.034'
+      version: '6.021'
     -
       class: Dist::Zilla::Plugin::PodWeaver
       config:
@@ -196,67 +200,71 @@
             -
               class: Pod::Weaver::Plugin::EnsurePod5
               name: '@CorePrep/EnsurePod5'
-              version: '4.010'
+              version: '4.018'
             -
               class: Pod::Weaver::Plugin::H1Nester
               name: '@CorePrep/H1Nester'
-              version: '4.010'
+              version: '4.018'
             -
               class: Pod::Weaver::Plugin::SingleEncoding
               name: '@RJBS/SingleEncoding'
-              version: '4.010'
+              version: '4.018'
             -
               class: Pod::Weaver::Section::Name
               name: '@RJBS/Name'
-              version: '4.010'
+              version: '4.018'
             -
               class: Pod::Weaver::Section::Version
               name: '@RJBS/Version'
-              version: '4.010'
+              version: '4.018'
             -
               class: Pod::Weaver::Section::Region
               name: '@RJBS/Prelude'
-              version: '4.010'
+              version: '4.018'
             -
               class: Pod::Weaver::Section::Generic
               name: '@RJBS/Synopsis'
-              version: '4.010'
+              version: '4.018'
             -
               class: Pod::Weaver::Section::Generic
               name: '@RJBS/Description'
-              version: '4.010'
+              version: '4.018'
             -
               class: Pod::Weaver::Section::Generic
               name: '@RJBS/Overview'
-              version: '4.010'
+              version: '4.018'
             -
               class: Pod::Weaver::Section::Generic
               name: '@RJBS/Stability'
-              version: '4.010'
+              version: '4.018'
+            -
+              class: Pod::Weaver::Section::GenerateSection
+              name: '@RJBS/PerlSupport'
+              version: '4.018'
             -
               class: Pod::Weaver::Section::Collect
               name: Attributes
-              version: '4.010'
+              version: '4.018'
             -
               class: Pod::Weaver::Section::Collect
               name: Methods
-              version: '4.010'
+              version: '4.018'
             -
               class: Pod::Weaver::Section::Collect
               name: Functions
-              version: '4.010'
+              version: '4.018'
             -
               class: Pod::Weaver::Section::Leftovers
               name: '@RJBS/Leftovers'
-              version: '4.010'
+              version: '4.018'
             -
               class: Pod::Weaver::Section::Region
               name: '@RJBS/postlude'
-              version: '4.010'
+              version: '4.018'
             -
               class: Pod::Weaver::Section::Authors
               name: '@RJBS/Authors'
-              version: '4.010'
+              version: '4.018'
             -
               class: Pod::Weaver::Section::Contributors
               name: '@RJBS/Contributors'
@@ -264,17 +272,21 @@
             -
               class: Pod::Weaver::Section::Legal
               name: '@RJBS/Legal'
-              version: '4.010'
+              version: '4.018'
             -
               class: Pod::Weaver::Plugin::Transformer
               name: '@RJBS/List'
-              version: '4.010'
+              version: '4.018'
       name: '@RJBS/PodWeaver'
-      version: '4.006'
+      version: '4.009'
+    -
+      class: Dist::Zilla::Plugin::RJBSMisc
+      name: '@RJBS/RJBSMisc'
+      version: '5.019'
     -
       class: Dist::Zilla::Plugin::GithubMeta
       name: '@RJBS/GithubMeta'
-      version: '0.48'
+      version: '0.58'
     -
       class: Dist::Zilla::Plugin::Git::Check
       config:
@@ -282,105 +294,126 @@
           untracked_files: die
         Dist::Zilla::Role::Git::DirtyFiles:
           allow_dirty:
-            - dist.ini
             - Changes
+            - dist.ini
           allow_dirty_match: []
           changelog: Changes
         Dist::Zilla::Role::Git::Repo:
+          git_version: '2.30.1 (Apple Git-130)'
           repo_root: .
       name: '@RJBS/@Git/Check'
-      version: '2.033'
+      version: '2.047'
     -
       class: Dist::Zilla::Plugin::Git::Commit
       config:
         Dist::Zilla::Plugin::Git::Commit:
           add_files_in: []
-          commit_msg: v%v%n%n%c
-          time_zone: local
+          commit_msg: v%V%n%n%c
+          signoff: '0'
         Dist::Zilla::Role::Git::DirtyFiles:
           allow_dirty:
-            - dist.ini
             - Changes
+            - dist.ini
           allow_dirty_match: []
           changelog: Changes
         Dist::Zilla::Role::Git::Repo:
+          git_version: '2.30.1 (Apple Git-130)'
           repo_root: .
+        Dist::Zilla::Role::Git::StringFormatter:
+          time_zone: local
       name: '@RJBS/@Git/Commit'
-      version: '2.033'
+      version: '2.047'
     -
       class: Dist::Zilla::Plugin::Git::Tag
       config:
         Dist::Zilla::Plugin::Git::Tag:
           branch: ~
+          changelog: Changes
           signed: 0
-          tag: '0.108'
+          tag: '0.110'
           tag_format: '%v'
-          tag_message: v%v
-          time_zone: local
+          tag_message: v%V
         Dist::Zilla::Role::Git::Repo:
+          git_version: '2.30.1 (Apple Git-130)'
           repo_root: .
+        Dist::Zilla::Role::Git::StringFormatter:
+          time_zone: local
       name: '@RJBS/@Git/Tag'
-      version: '2.033'
+      version: '2.047'
     -
       class: Dist::Zilla::Plugin::Git::Push
       config:
         Dist::Zilla::Plugin::Git::Push:
           push_to:
-            - 'origin :'
             - 'github :'
           remotes_must_exist: 0
         Dist::Zilla::Role::Git::Repo:
+          git_version: '2.30.1 (Apple Git-130)'
           repo_root: .
       name: '@RJBS/@Git/Push'
-      version: '2.033'
+      version: '2.047'
     -
       class: Dist::Zilla::Plugin::Git::Contributors
       config:
         Dist::Zilla::Plugin::Git::Contributors:
-          include_authors: '0'
-          include_releaser: '1'
+          git_version: '2.30.1 (Apple Git-130)'
+          include_authors: 0
+          include_releaser: 1
           order_by: name
           paths: []
       name: '@RJBS/Git::Contributors'
-      version: '0.011'
+      version: '0.036'
     -
       class: Dist::Zilla::Plugin::FinderCode
       name: ':InstallModules'
-      version: '5.034'
+      version: '6.021'
     -
       class: Dist::Zilla::Plugin::FinderCode
       name: ':IncModules'
-      version: '5.034'
+      version: '6.021'
     -
       class: Dist::Zilla::Plugin::FinderCode
       name: ':TestFiles'
-      version: '5.034'
+      version: '6.021'
+    -
+      class: Dist::Zilla::Plugin::FinderCode
+      name: ':ExtraTestFiles'
+      version: '6.021'
     -
       class: Dist::Zilla::Plugin::FinderCode
       name: ':ExecFiles'
-      version: '5.034'
+      version: '6.021'
+    -
+      class: Dist::Zilla::Plugin::FinderCode
+      name: ':PerlExecFiles'
+      version: '6.021'
     -
       class: Dist::Zilla::Plugin::FinderCode
       name: ':ShareFiles'
-      version: '5.034'
+      version: '6.021'
     -
       class: Dist::Zilla::Plugin::FinderCode
       name: ':MainModule'
-      version: '5.034'
+      version: '6.021'
     -
       class: Dist::Zilla::Plugin::FinderCode
       name: ':AllFiles'
-      version: '5.034'
+      version: '6.021'
     -
       class: Dist::Zilla::Plugin::FinderCode
       name: ':NoFiles'
-      version: '5.034'
+      version: '6.021'
   zilla:
     class: Dist::Zilla::Dist::Builder
     config:
       is_trial: '0'
-    version: '5.034'
+    version: '6.021'
 x_contributors:
   - 'David Golden <dagol...@cpan.org>'
   - 'David Steinbrunner <dsteinbrun...@pobox.com>'
   - 'Graham Knop <ha...@haarg.org>'
+  - 'L. Alberto Gim??nez <agime...@sysvalve.es>'
+x_generated_by_perl: v5.35.1
+x_rjbs_perl_support: standard
+x_serialization_backend: 'YAML::Tiny version 1.73'
+x_spdx_expression: 'Artistic-1.0-Perl OR GPL-1.0-or-later'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mixin-Linewise-0.108/Makefile.PL 
new/Mixin-Linewise-0.110/Makefile.PL
--- old/Mixin-Linewise-0.108/Makefile.PL        2015-04-08 20:56:08.000000000 
+0200
+++ new/Mixin-Linewise-0.110/Makefile.PL        2021-06-23 04:27:10.000000000 
+0200
@@ -1,21 +1,20 @@
-# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker 
v5.034.
+# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker 
v6.021.
 use strict;
 use warnings;
 
-use 5.008001;
+use 5.012;
 
-use ExtUtils::MakeMaker;
+use ExtUtils::MakeMaker 6.78;
 
 my %WriteMakefileArgs = (
   "ABSTRACT" => "write your linewise code for handles; this does the rest",
-  "AUTHOR" => "Ricardo SIGNES <rjbs\@cpan.org>",
+  "AUTHOR" => "Ricardo SIGNES <rjbs\@semiotic.systems>",
   "CONFIGURE_REQUIRES" => {
-    "ExtUtils::MakeMaker" => 0
+    "ExtUtils::MakeMaker" => "6.78"
   },
   "DISTNAME" => "Mixin-Linewise",
-  "EXE_FILES" => [],
   "LICENSE" => "perl",
-  "MIN_PERL_VERSION" => "5.008001",
+  "MIN_PERL_VERSION" => "5.012",
   "NAME" => "Mixin::Linewise",
   "PREREQ_PM" => {
     "Carp" => 0,
@@ -33,7 +32,7 @@
     "lib" => 0,
     "utf8" => 0
   },
-  "VERSION" => "0.108",
+  "VERSION" => "0.110",
   "test" => {
     "TESTS" => "t/*.t"
   }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mixin-Linewise-0.108/README 
new/Mixin-Linewise-0.110/README
--- old/Mixin-Linewise-0.108/README     2015-04-08 20:56:08.000000000 +0200
+++ new/Mixin-Linewise-0.110/README     2021-06-23 04:27:10.000000000 +0200
@@ -1,7 +1,5 @@
-
-
 This archive contains the distribution Mixin-Linewise,
-version 0.108:
+version 0.110:
 
   write your linewise code for handles; this does the rest
 
@@ -11,5 +9,4 @@
 the same terms as the Perl 5 programming language system itself.
 
 
-This README file was generated by Dist::Zilla::Plugin::Readme v5.034.
-
+This README file was generated by Dist::Zilla::Plugin::Readme v6.021.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mixin-Linewise-0.108/dist.ini 
new/Mixin-Linewise-0.110/dist.ini
--- old/Mixin-Linewise-0.108/dist.ini   2015-04-08 20:56:08.000000000 +0200
+++ new/Mixin-Linewise-0.110/dist.ini   2021-06-23 04:27:10.000000000 +0200
@@ -1,8 +1,9 @@
 name    = Mixin-Linewise
-author  = Ricardo SIGNES <r...@cpan.org>
+author  = Ricardo SIGNES <rjbs@semiotic.systems>
 license = Perl_5
 copyright_holder = Ricardo SIGNES
 copyright_year   = 2008
 
 [@RJBS]
 dont_compile = ^Mixin::Linewise$
+perl-support = standard
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mixin-Linewise-0.108/lib/Mixin/Linewise/Readers.pm 
new/Mixin-Linewise-0.110/lib/Mixin/Linewise/Readers.pm
--- old/Mixin-Linewise-0.108/lib/Mixin/Linewise/Readers.pm      2015-04-08 
20:56:09.000000000 +0200
+++ new/Mixin-Linewise-0.110/lib/Mixin/Linewise/Readers.pm      2021-06-23 
04:27:10.000000000 +0200
@@ -1,8 +1,8 @@
 use strict;
 use warnings;
-package Mixin::Linewise::Readers;
+package Mixin::Linewise::Readers 0.110;
 # ABSTRACT: get linewise readers for strings and filenames
-$Mixin::Linewise::Readers::VERSION = '0.108';
+
 use 5.008001; # PerlIO
 use Carp ();
 use IO::File;
@@ -95,7 +95,7 @@
     # Check the file
     Carp::croak "no filename specified"           unless $filename;
     Carp::croak "file '$filename' does not exist" unless -e $filename;
-    Carp::croak "'$filename' is not a plain file" unless -f _;
+    Carp::croak "'$filename' is not readable"     unless -r _ && ! -d _;
 
     my $handle = IO::File->new($filename, "<:$binmode")
       or Carp::croak "couldn't read file '$filename': $!";
@@ -157,7 +157,7 @@
 
 =head1 VERSION
 
-version 0.108
+version 0.110
 
 =head1 SYNOPSIS
 
@@ -184,6 +184,17 @@
 
   Your::Pkg->read_handle($fh);
 
+=head1 PERL VERSION SUPPORT
+
+This module has the same support period as perl itself:  it supports the two
+most recent versions of perl.  (That is, if the most recently released version
+is v5.40, then this module should work on both v5.40 and v5.38.)
+
+Although it may work on older versions of perl, no guarantee is made that the
+minimum required version will not be increased.  The version may be increased
+for any reason, and there is no promise that patches will be accepted to lower
+the minimum required perl.
+
 =head1 EXPORTS
 
 C<read_file> and C<read_string> are exported by default.  Either can be
@@ -231,7 +242,7 @@
 
 =head1 AUTHOR
 
-Ricardo SIGNES <r...@cpan.org>
+Ricardo SIGNES <rjbs@semiotic.systems>
 
 =head1 COPYRIGHT AND LICENSE
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mixin-Linewise-0.108/lib/Mixin/Linewise/Writers.pm 
new/Mixin-Linewise-0.110/lib/Mixin/Linewise/Writers.pm
--- old/Mixin-Linewise-0.108/lib/Mixin/Linewise/Writers.pm      2015-04-08 
20:56:09.000000000 +0200
+++ new/Mixin-Linewise-0.110/lib/Mixin/Linewise/Writers.pm      2021-06-23 
04:27:10.000000000 +0200
@@ -1,8 +1,8 @@
 use strict;
 use warnings;
-package Mixin::Linewise::Writers;
+package Mixin::Linewise::Writers 0.110;
 # ABSTRACT: get linewise writers for strings and filenames
-$Mixin::Linewise::Writers::VERSION = '0.108';
+
 use 5.008001; # PerlIO
 use Carp ();
 use IO::File;
@@ -153,7 +153,7 @@
 
 =head1 VERSION
 
-version 0.108
+version 0.110
 
 =head1 SYNOPSIS
 
@@ -176,6 +176,17 @@
 
   Your::Pkg->write_handle($data, $fh);
 
+=head1 PERL VERSION SUPPORT
+
+This module has the same support period as perl itself:  it supports the two
+most recent versions of perl.  (That is, if the most recently released version
+is v5.40, then this module should work on both v5.40 and v5.38.)
+
+Although it may work on older versions of perl, no guarantee is made that the
+minimum required version will not be increased.  The version may be increased
+for any reason, and there is no promise that patches will be accepted to lower
+the minimum required perl.
+
 =head1 EXPORTS
 
 C<write_file> and C<write_string> are exported by default.  Either can be
@@ -224,7 +235,7 @@
 
 =head1 AUTHOR
 
-Ricardo SIGNES <r...@cpan.org>
+Ricardo SIGNES <rjbs@semiotic.systems>
 
 =head1 COPYRIGHT AND LICENSE
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mixin-Linewise-0.108/lib/Mixin/Linewise.pm 
new/Mixin-Linewise-0.110/lib/Mixin/Linewise.pm
--- old/Mixin-Linewise-0.108/lib/Mixin/Linewise.pm      2015-04-08 
20:56:08.000000000 +0200
+++ new/Mixin-Linewise-0.110/lib/Mixin/Linewise.pm      2021-06-23 
04:27:10.000000000 +0200
@@ -1,8 +1,8 @@
 use strict;
 use warnings;
-package Mixin::Linewise;
+package Mixin::Linewise 0.110;
 # ABSTRACT: write your linewise code for handles; this does the rest
-$Mixin::Linewise::VERSION = '0.108';
+
 use 5.006;
 use Carp ();
 Carp::confess "not meant to be loaded";
@@ -30,7 +30,7 @@
 
 =head1 VERSION
 
-version 0.108
+version 0.110
 
 =head1 DESCRIPTION
 
@@ -39,13 +39,24 @@
 L<Mixin::Linewise::Writers>, you can just write a method to handle handles, and
 methods for handling strings and filenames are added for you.
 
+=head1 PERL VERSION SUPPORT
+
+This module has the same support period as perl itself:  it supports the two
+most recent versions of perl.  (That is, if the most recently released version
+is v5.40, then this module should work on both v5.40 and v5.38.)
+
+Although it may work on older versions of perl, no guarantee is made that the
+minimum required version will not be increased.  The version may be increased
+for any reason, and there is no promise that patches will be accepted to lower
+the minimum required perl.
+
 =head1 AUTHOR
 
-Ricardo SIGNES <r...@cpan.org>
+Ricardo SIGNES <rjbs@semiotic.systems>
 
 =head1 CONTRIBUTORS
 
-=for stopwords David Golden Steinbrunner Graham Knop
+=for stopwords David Golden Steinbrunner Graham Knop L. Alberto Gim??nez
 
 =over 4
 
@@ -61,6 +72,10 @@
 
 Graham Knop <ha...@haarg.org>
 
+=item *
+
+L. Alberto Gim??nez <agime...@sysvalve.es>
+
 =back
 
 =head1 COPYRIGHT AND LICENSE
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mixin-Linewise-0.108/t/00-report-prereqs.dd 
new/Mixin-Linewise-0.110/t/00-report-prereqs.dd
--- old/Mixin-Linewise-0.108/t/00-report-prereqs.dd     2015-04-08 
20:56:08.000000000 +0200
+++ new/Mixin-Linewise-0.110/t/00-report-prereqs.dd     2021-06-23 
04:27:10.000000000 +0200
@@ -1,11 +1,13 @@
 do { my $x = {
        'configure' => {
                         'requires' => {
-                                        'ExtUtils::MakeMaker' => '0'
+                                        'ExtUtils::MakeMaker' => '6.78'
                                       }
                       },
        'develop' => {
                       'requires' => {
+                                      'Encode' => '0',
+                                      'Test::More' => '0',
                                       'Test::Pod' => '1.41'
                                     }
                     },
@@ -15,7 +17,7 @@
                                       'IO::File' => '0',
                                       'PerlIO::utf8_strict' => '0',
                                       'Sub::Exporter' => '0',
-                                      'perl' => '5.008001',
+                                      'perl' => '5.012',
                                       'strict' => '0',
                                       'warnings' => '0'
                                     }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mixin-Linewise-0.108/t/00-report-prereqs.t 
new/Mixin-Linewise-0.110/t/00-report-prereqs.t
--- old/Mixin-Linewise-0.108/t/00-report-prereqs.t      2015-04-08 
20:56:08.000000000 +0200
+++ new/Mixin-Linewise-0.110/t/00-report-prereqs.t      2021-06-23 
04:27:10.000000000 +0200
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-# This test was generated by Dist::Zilla::Plugin::Test::ReportPrereqs 0.021
+# This test was generated by Dist::Zilla::Plugin::Test::ReportPrereqs 0.028
 
 use Test::More tests => 1;
 
@@ -68,7 +68,7 @@
 );
 
 # Add static prereqs to the included modules list
-my $static_prereqs = do 't/00-report-prereqs.dd';
+my $static_prereqs = do './t/00-report-prereqs.dd';
 
 # Merge all prereqs (either with ::Prereqs or a hashref)
 my $full_prereqs = _merge_prereqs(
@@ -78,12 +78,14 @@
 
 # Add dynamic prereqs to the included modules list (if we can)
 my ($source) = grep { -f } 'MYMETA.json', 'MYMETA.yml';
-if ( $source && $HAS_CPAN_META ) {
-    if ( my $meta = eval { CPAN::Meta->load_file($source) } ) {
-        $full_prereqs = _merge_prereqs($full_prereqs, $meta->prereqs);
-    }
+my $cpan_meta_error;
+if ( $source && $HAS_CPAN_META
+    && (my $meta = eval { CPAN::Meta->load_file($source) } )
+) {
+    $full_prereqs = _merge_prereqs($full_prereqs, $meta->prereqs);
 }
 else {
+    $cpan_meta_error = $@;    # capture error from 
CPAN::Meta->load_file($source)
     $source = 'static metadata';
 }
 
@@ -169,15 +171,23 @@
     diag "\nVersions for all modules listed in $source (including optional 
ones):\n\n", @full_reports;
 }
 
+if ( $cpan_meta_error || @dep_errors ) {
+    diag "\n*** WARNING WARNING WARNING WARNING WARNING WARNING WARNING 
WARNING ***\n";
+}
+
+if ( $cpan_meta_error ) {
+    my ($orig_source) = grep { -f } 'MYMETA.json', 'MYMETA.yml';
+    diag "\nCPAN::Meta->load_file('$orig_source') failed with: 
$cpan_meta_error\n";
+}
+
 if ( @dep_errors ) {
     diag join("\n",
-        "\n*** WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING 
***\n",
-        "The following REQUIRED prerequisites were not satisfied:\n",
+        "\nThe following REQUIRED prerequisites were not satisfied:\n",
         @dep_errors,
         "\n"
     );
 }
 
-pass;
+pass('Reported prereqs');
 
 # vim: ts=4 sts=4 sw=4 et:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mixin-Linewise-0.108/xt/author/pod-syntax.t 
new/Mixin-Linewise-0.110/xt/author/pod-syntax.t
--- old/Mixin-Linewise-0.108/xt/author/pod-syntax.t     1970-01-01 
01:00:00.000000000 +0100
+++ new/Mixin-Linewise-0.110/xt/author/pod-syntax.t     2021-06-23 
04:27:10.000000000 +0200
@@ -0,0 +1,7 @@
+#!perl
+# 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/Mixin-Linewise-0.108/xt/release/changes_has_content.t 
new/Mixin-Linewise-0.110/xt/release/changes_has_content.t
--- old/Mixin-Linewise-0.108/xt/release/changes_has_content.t   2015-04-08 
20:56:09.000000000 +0200
+++ new/Mixin-Linewise-0.110/xt/release/changes_has_content.t   2021-06-23 
04:27:10.000000000 +0200
@@ -1,11 +1,10 @@
-#!perl
-
 use Test::More tests => 2;
 
 note 'Checking Changes';
 my $changes_file = 'Changes';
-my $newver = '0.108';
+my $newver = '0.110';
 my $trial_token = '-TRIAL';
+my $encoding = 'UTF-8';
 
 SKIP: {
     ok(-e $changes_file, "$changes_file file exists")
@@ -16,8 +15,6 @@
 
 done_testing;
 
-# _get_changes copied and adapted from Dist::Zilla::Plugin::Git::Commit
-# by Jerome Quelin
 sub _get_changes
 {
     my $newver = shift;
@@ -25,6 +22,10 @@
     # parse changelog to find commit message
     open(my $fh, '<', $changes_file) or die "cannot open $changes_file: $!";
     my $changelog = join('', <$fh>);
+    if ($encoding) {
+        require Encode;
+        $changelog = Encode::decode($encoding, $changelog, Encode::FB_CROAK());
+    }
     close $fh;
 
     my @content =
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mixin-Linewise-0.108/xt/release/pod-syntax.t 
new/Mixin-Linewise-0.110/xt/release/pod-syntax.t
--- old/Mixin-Linewise-0.108/xt/release/pod-syntax.t    2015-04-08 
20:56:09.000000000 +0200
+++ new/Mixin-Linewise-0.110/xt/release/pod-syntax.t    1970-01-01 
01:00:00.000000000 +0100
@@ -1,6 +0,0 @@
-#!perl
-# This file was automatically generated by Dist::Zilla::Plugin::PodSyntaxTests.
-use Test::More;
-use Test::Pod 1.41;
-
-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:
#  baz.patch: PATCH-FIX-OPENSUSE
#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
#skip_doc: regexp_to_skip_for_doc.*
#add_doc: files to add to docs
#misc: |-
#anything else to be added to spec file
#follows directly after %files section, so it can contain new blocks or also
#changes to %files section

Reply via email to