diff -Nru libcarp-clan-perl-6.07/Changes libcarp-clan-perl-6.08/Changes --- libcarp-clan-perl-6.07/Changes 2018-12-02 21:45:01.000000000 +0000 +++ libcarp-clan-perl-6.08/Changes 2019-09-14 17:09:48.000000000 +0000 @@ -1,5 +1,10 @@ Revision history for Carp-Clan +6.08 2019-09-14 17:09:41Z + - fix warning in bad test (thanks, Todd Rinaldo - RT#130494) + - speed up code that was accomodating ancient perl versions that are no + longer supported + 6.07 2018-12-02 21:44:55Z - declared test prerequisites in the proper phase (RT#125288) - modernized distribution tooling diff -Nru libcarp-clan-perl-6.07/CONTRIBUTING libcarp-clan-perl-6.08/CONTRIBUTING --- libcarp-clan-perl-6.07/CONTRIBUTING 2018-12-02 21:45:01.000000000 +0000 +++ libcarp-clan-perl-6.08/CONTRIBUTING 2019-09-14 17:09:48.000000000 +0000 @@ -74,11 +74,18 @@ The code for this distribution is hosted at GitHub. The repository is: https://github.com/karenetheridge/Carp-Clan You can submit code changes by forking the repository, pushing your code -changes to your clone, and then submitting a pull request. Detailed -instructions for doing that is available here: +changes to your clone, and then submitting a pull request. Please include a +suitable end-user-oriented entry in the Changes file describing your change. +Detailed instructions for doing that is available here: https://help.github.com/articles/creating-a-pull-request +All pull requests for this distribution will be automatically tested on Linux +by Travis at: https://travis-ci.com/karenetheridge/Carp-Clan +Results will be visible in the pull request on GitHub. Follow the appropriate +links for details when tests fail. Changes will not be mergeable until all +tests pass. + If you have found a bug, but do not have an accompanying patch to fix it, you can submit an issue report here: https://rt.cpan.org/Public/Dist/Display.html?Name=Carp-Clan @@ -93,4 +100,4 @@ This file was generated via Dist::Zilla::Plugin::GenerateFile::FromShareDir 0.014 -from a template file originating in Dist-Zilla-PluginBundle-Author-ETHER-0.145. +from a template file originating in Dist-Zilla-PluginBundle-Author-ETHER-0.150. diff -Nru libcarp-clan-perl-6.07/debian/changelog libcarp-clan-perl-6.08/debian/changelog --- libcarp-clan-perl-6.07/debian/changelog 2018-12-21 20:43:54.000000000 +0000 +++ libcarp-clan-perl-6.08/debian/changelog 2019-10-13 06:03:28.000000000 +0000 @@ -1,3 +1,14 @@ +libcarp-clan-perl (6.08-1) unstable; urgency=medium + + * Team upload + * Import upstream version 6.08 + * Bump debhelper compatibility level to 12 + * Declare compliance with policy 4.4.1 + * Declare that debian/rules does not need (fake)root + * Explicitly declare dependencies provided by perl + + -- intrigeri Sun, 13 Oct 2019 06:03:28 +0000 + libcarp-clan-perl (6.07-1) unstable; urgency=medium * Team upload diff -Nru libcarp-clan-perl-6.07/debian/compat libcarp-clan-perl-6.08/debian/compat --- libcarp-clan-perl-6.07/debian/compat 2015-08-18 15:08:41.000000000 +0000 +++ libcarp-clan-perl-6.08/debian/compat 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -9 diff -Nru libcarp-clan-perl-6.07/debian/control libcarp-clan-perl-6.08/debian/control --- libcarp-clan-perl-6.07/debian/control 2018-12-21 20:43:49.000000000 +0000 +++ libcarp-clan-perl-6.08/debian/control 2019-10-13 06:03:28.000000000 +0000 @@ -4,12 +4,14 @@ Section: perl Testsuite: autopkgtest-pkg-perl Priority: optional -Build-Depends: debhelper (>= 9) -Build-Depends-Indep: perl -Standards-Version: 4.2.1 +Build-Depends: debhelper-compat (= 12) +Build-Depends-Indep: libtest-simple-perl, + perl +Standards-Version: 4.4.1 Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libcarp-clan-perl Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libcarp-clan-perl.git Homepage: https://metacpan.org/release/Carp-Clan +Rules-Requires-Root: no Package: libcarp-clan-perl Architecture: all diff -Nru libcarp-clan-perl-6.07/lib/Carp/Clan.pm libcarp-clan-perl-6.08/lib/Carp/Clan.pm --- libcarp-clan-perl-6.07/lib/Carp/Clan.pm 2018-12-02 21:45:01.000000000 +0000 +++ libcarp-clan-perl-6.08/lib/Carp/Clan.pm 2019-09-14 17:09:48.000000000 +0000 @@ -12,7 +12,7 @@ @DB::args = (); # Avoid warning "used only once" in Perl 5.003 -package Carp::Clan; # git description: v6.06-8-g0cfdd10 +package Carp::Clan; # git description: v6.07-8-g8b5dba6 use strict; use overload (); @@ -28,7 +28,7 @@ our $Verbose = 0; # If true then make _shortmsg call _longmsg instead. -our $VERSION = '6.07'; +our $VERSION = '6.08'; # _longmsg() crawls all the way up the stack reporting on all the function # calls made. The error string, $error, is originally constructed from the @@ -207,19 +207,14 @@ else { $pattern = $item; } } - # Speed up pattern matching in Perl versions >= 5.005: - # (Uses "eval ''" because qr// is a syntax error in previous Perl versions) - if ( $] >= 5.005 ) { - eval '$pattern = qr/$pattern/;'; - } - else { - eval { $pkg =~ /$pattern/; }; - } + eval { $pattern = qr/$pattern/ }; + if ($@) { $@ =~ s/\s+$//; $@ =~ s/\s+at\s.+$//; die _shortmsg( '^:::', 0, $@ ); } + { local ($^W) = 0; no strict "refs"; @@ -244,7 +239,7 @@ =head1 VERSION -version 6.07 +version 6.08 =head1 SYNOPSIS @@ -345,17 +340,17 @@ =head1 CONTRIBUTORS -=for stopwords Joshua ben Jore Karen Etheridge Kent Fredric +=for stopwords Karen Etheridge Joshua ben Jore Kent Fredric =over 4 =item * -Joshua ben Jore +Karen Etheridge =item * -Karen Etheridge +Joshua ben Jore =item * diff -Nru libcarp-clan-perl-6.07/Makefile.PL libcarp-clan-perl-6.08/Makefile.PL --- libcarp-clan-perl-6.07/Makefile.PL 2018-12-02 21:45:01.000000000 +0000 +++ libcarp-clan-perl-6.08/Makefile.PL 2019-09-14 17:09:48.000000000 +0000 @@ -1,4 +1,4 @@ -# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.012. +# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.013. use strict; use warnings; @@ -26,7 +26,7 @@ "Test::More" => 0, "warnings" => 0 }, - "VERSION" => "6.07", + "VERSION" => "6.08", "test" => { "TESTS" => "t/*.t" } diff -Nru libcarp-clan-perl-6.07/MANIFEST libcarp-clan-perl-6.08/MANIFEST --- libcarp-clan-perl-6.07/MANIFEST 2018-12-02 21:45:01.000000000 +0000 +++ libcarp-clan-perl-6.08/MANIFEST 2019-09-14 17:09:48.000000000 +0000 @@ -1,4 +1,4 @@ -# This file was automatically generated by Dist::Zilla::Plugin::Manifest v6.012. +# This file was automatically generated by Dist::Zilla::Plugin::Manifest v6.013. CONTRIBUTING Changes INSTALL diff -Nru libcarp-clan-perl-6.07/META.json libcarp-clan-perl-6.08/META.json --- libcarp-clan-perl-6.07/META.json 2018-12-02 21:45:01.000000000 +0000 +++ libcarp-clan-perl-6.08/META.json 2019-09-14 17:09:48.000000000 +0000 @@ -4,7 +4,7 @@ "Steffen Beyer " ], "dynamic_config" : 0, - "generated_by" : "Dist::Zilla version 6.012, CPAN::Meta::Converter version 2.150010", + "generated_by" : "Dist::Zilla version 6.013, CPAN::Meta::Converter version 2.150010", "license" : [ "perl_5" ], @@ -28,7 +28,7 @@ }, "develop" : { "recommends" : { - "Dist::Zilla::PluginBundle::Author::ETHER" : "0.145", + "Dist::Zilla::PluginBundle::Author::ETHER" : "0.150", "Dist::Zilla::PluginBundle::Git::VersionManager" : "0.007" }, "requires" : { @@ -135,7 +135,7 @@ "Dist::Zilla::Plugin::Test::Compile" : "2.039", "Dist::Zilla::Plugin::Test::EOL" : "0.17", "Dist::Zilla::Plugin::Test::Kwalitee" : "2.10", - "Dist::Zilla::Plugin::Test::MinimumVersion" : "2.000008", + "Dist::Zilla::Plugin::Test::MinimumVersion" : "2.000010", "Dist::Zilla::Plugin::Test::NoTabs" : "0.08", "Dist::Zilla::Plugin::Test::Pod::No404s" : "1.003", "Dist::Zilla::Plugin::Test::PodSpelling" : "2.006003", @@ -153,7 +153,7 @@ "provides" : { "Carp::Clan" : { "file" : "lib/Carp/Clan.pm", - "version" : "6.07" + "version" : "6.08" } }, "release_status" : "stable", @@ -169,10 +169,10 @@ "web" : "https://github.com/karenetheridge/Carp-Clan" } }, - "version" : "6.07", + "version" : "6.08", "x_Dist_Zilla" : { "perl" : { - "version" : "5.029005" + "version" : "5.031003" }, "plugins" : [ { @@ -184,7 +184,7 @@ } }, "name" : "@Author::ETHER/pluginbundle version", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::PromptIfStale", @@ -206,13 +206,18 @@ { "class" : "Dist::Zilla::Plugin::FileFinder::ByName", "name" : "@Author::ETHER/Examples", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::Git::GatherDir", "config" : { "Dist::Zilla::Plugin::GatherDir" : { - "exclude_filename" : [], + "exclude_filename" : [ + "CONTRIBUTING", + "INSTALL", + "LICENSE", + "README.pod" + ], "exclude_match" : [], "follow_symlinks" : 0, "include_dotfiles" : 0, @@ -225,32 +230,32 @@ } }, "name" : "@Author::ETHER/Git::GatherDir", - "version" : "2.045" + "version" : "2.046" }, { "class" : "Dist::Zilla::Plugin::MetaYAML", "name" : "@Author::ETHER/MetaYAML", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::MetaJSON", "name" : "@Author::ETHER/MetaJSON", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::Readme", "name" : "@Author::ETHER/Readme", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::Manifest", "name" : "@Author::ETHER/Manifest", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::License", "name" : "@Author::ETHER/License", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::GenerateFile::FromShareDir", @@ -274,8 +279,14 @@ }, { "class" : "Dist::Zilla::Plugin::InstallGuide", + "config" : { + "Dist::Zilla::Role::ModuleMetadata" : { + "Module::Metadata" : "1.000036", + "version" : "0.006" + } + }, "name" : "@Author::ETHER/InstallGuide", - "version" : "1.200012" + "version" : "1.200013" }, { "class" : "Dist::Zilla::Plugin::Test::Compile", @@ -339,7 +350,7 @@ { "class" : "Dist::Zilla::Plugin::MetaTests", "name" : "@Author::ETHER/MetaTests", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::Test::CPAN::Changes", @@ -377,13 +388,18 @@ }, { "class" : "Dist::Zilla::Plugin::Test::MinimumVersion", + "config" : { + "Dist::Zilla::Plugin::Test::MinimumVersion" : { + "max_target_perl" : "5.006" + } + }, "name" : "@Author::ETHER/Test::MinimumVersion", - "version" : "2.000008" + "version" : "2.000010" }, { "class" : "Dist::Zilla::Plugin::PodSyntaxTests", "name" : "@Author::ETHER/PodSyntaxTests", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::Test::PodSpelling", @@ -619,7 +635,7 @@ { "class" : "Dist::Zilla::Plugin::MetaNoIndex", "name" : "@Author::ETHER/MetaNoIndex", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::MetaProvides::Package", @@ -632,7 +648,7 @@ { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":InstallModules", - "version" : "6.012" + "version" : "6.013" } ], "include_underscores" : 0 @@ -644,7 +660,7 @@ "meta_noindex" : 1 }, "Dist::Zilla::Role::ModuleMetadata" : { - "Module::Metadata" : "1.000034", + "Module::Metadata" : "1.000036", "version" : "0.006" } }, @@ -654,7 +670,7 @@ { "class" : "Dist::Zilla::Plugin::MetaConfig", "name" : "@Author::ETHER/MetaConfig", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::Keywords", @@ -679,7 +695,7 @@ { "class" : "Dist::Zilla::Plugin::AutoPrereqs", "name" : "@Author::ETHER/AutoPrereqs", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::Prereqs::AuthorDeps", @@ -699,13 +715,13 @@ } }, "name" : "@Author::ETHER/MakeMaker", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::Git::Contributors", "config" : { "Dist::Zilla::Plugin::Git::Contributors" : { - "git_version" : "2.19.1", + "git_version" : "2.22.0", "include_authors" : 0, "include_releaser" : 1, "order_by" : "commits", @@ -745,7 +761,7 @@ ] }, "Dist::Zilla::Role::ModuleMetadata" : { - "Module::Metadata" : "1.000034", + "Module::Metadata" : "1.000036", "version" : "0.006" } }, @@ -761,11 +777,11 @@ "run" : [ "bash -c \"test -e .ackrc && grep -q -- '--ignore-dir=.latest' .ackrc || echo '--ignore-dir=.latest' >> .ackrc; if [[ `dirname '%d'` != .build ]]; then test -e .ackrc && grep -q -- '--ignore-dir=%d' .ackrc || echo '--ignore-dir=%d' >> .ackrc; fi\"" ], - "version" : "0.047" + "version" : "0.048" } }, "name" : "@Author::ETHER/.ackrc", - "version" : "0.047" + "version" : "0.048" }, { "class" : "Dist::Zilla::Plugin::Run::AfterBuild", @@ -776,11 +792,11 @@ ], "fatal_errors" : 0, "quiet" : 1, - "version" : "0.047" + "version" : "0.048" } }, "name" : "@Author::ETHER/.latest", - "version" : "0.047" + "version" : "0.048" }, { "class" : "Dist::Zilla::Plugin::CheckStrictVersion", @@ -796,7 +812,7 @@ "class" : "Dist::Zilla::Plugin::EnsureLatestPerl", "config" : { "Dist::Zilla::Plugin::EnsureLatestPerl" : { - "Module::CoreList" : "5.20181120" + "Module::CoreList" : "5.20190820" } }, "name" : "@Author::ETHER/EnsureLatestPerl", @@ -829,18 +845,18 @@ "changelog" : "Changes" }, "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.19.1", + "git_version" : "2.22.0", "repo_root" : "." } }, "name" : "@Author::ETHER/initial check", - "version" : "2.045" + "version" : "2.046" }, { "class" : "Dist::Zilla::Plugin::Git::CheckFor::MergeConflicts", "config" : { "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.19.1", + "git_version" : "2.22.0", "repo_root" : "." } }, @@ -851,7 +867,7 @@ "class" : "Dist::Zilla::Plugin::Git::CheckFor::CorrectBranch", "config" : { "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.19.1", + "git_version" : "2.22.0", "repo_root" : "." } }, @@ -871,7 +887,7 @@ { "class" : "Dist::Zilla::Plugin::TestRelease", "name" : "@Author::ETHER/TestRelease", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::Git::Check", @@ -885,12 +901,12 @@ "changelog" : "Changes" }, "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.19.1", + "git_version" : "2.22.0", "repo_root" : "." } }, "name" : "@Author::ETHER/after tests", - "version" : "2.045" + "version" : "2.046" }, { "class" : "Dist::Zilla::Plugin::CheckIssues", @@ -900,7 +916,7 @@ { "class" : "Dist::Zilla::Plugin::UploadToCPAN", "name" : "@Author::ETHER/UploadToCPAN", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::CopyFilesFromRelease", @@ -938,7 +954,7 @@ } }, "name" : "@Author::ETHER/@Git::VersionManager/pluginbundle version", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::RewriteVersion::Transitional", @@ -986,13 +1002,17 @@ }, "Dist::Zilla::Role::Git::DirtyFiles" : { "allow_dirty" : [ - "Changes" + "CONTRIBUTING", + "Changes", + "INSTALL", + "LICENSE", + "README.pod" ], "allow_dirty_match" : [], "changelog" : "Changes" }, "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.19.1", + "git_version" : "2.22.0", "repo_root" : "." }, "Dist::Zilla::Role::Git::StringFormatter" : { @@ -1000,7 +1020,7 @@ } }, "name" : "@Author::ETHER/@Git::VersionManager/release snapshot", - "version" : "2.045" + "version" : "2.046" }, { "class" : "Dist::Zilla::Plugin::Git::Tag", @@ -1009,12 +1029,12 @@ "branch" : null, "changelog" : "Changes", "signed" : 0, - "tag" : "v6.07", - "tag_format" : "v%v", + "tag" : "v6.08", + "tag_format" : "v%V", "tag_message" : "v%v%t" }, "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.19.1", + "git_version" : "2.22.0", "repo_root" : "." }, "Dist::Zilla::Role::Git::StringFormatter" : { @@ -1022,7 +1042,7 @@ } }, "name" : "@Author::ETHER/@Git::VersionManager/Git::Tag", - "version" : "2.045" + "version" : "2.046" }, { "class" : "Dist::Zilla::Plugin::BumpVersionAfterRelease::Transitional", @@ -1043,7 +1063,7 @@ { "class" : "Dist::Zilla::Plugin::NextRelease", "name" : "@Author::ETHER/@Git::VersionManager/NextRelease", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::Git::Commit", @@ -1064,7 +1084,7 @@ "changelog" : "Changes" }, "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.19.1", + "git_version" : "2.22.0", "repo_root" : "." }, "Dist::Zilla::Role::Git::StringFormatter" : { @@ -1072,7 +1092,7 @@ } }, "name" : "@Author::ETHER/@Git::VersionManager/post-release commit", - "version" : "2.045" + "version" : "2.046" }, { "class" : "Dist::Zilla::Plugin::Prereqs", @@ -1083,7 +1103,7 @@ } }, "name" : "@Author::ETHER/@Git::VersionManager/prereqs for @Git::VersionManager", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::Git::Push", @@ -1095,12 +1115,12 @@ "remotes_must_exist" : 1 }, "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.19.1", + "git_version" : "2.22.0", "repo_root" : "." } }, "name" : "@Author::ETHER/Git::Push", - "version" : "2.045" + "version" : "2.046" }, { "class" : "Dist::Zilla::Plugin::GitHub::Update", @@ -1121,11 +1141,11 @@ "run" : [ "REDACTED" ], - "version" : "0.047" + "version" : "0.048" } }, "name" : "@Author::ETHER/install release", - "version" : "0.047" + "version" : "0.048" }, { "class" : "Dist::Zilla::Plugin::Run::AfterRelease", @@ -1136,16 +1156,16 @@ ], "fatal_errors" : 1, "quiet" : 1, - "version" : "0.047" + "version" : "0.048" } }, "name" : "@Author::ETHER/release complete", - "version" : "0.047" + "version" : "0.048" }, { "class" : "Dist::Zilla::Plugin::ConfirmRelease", "name" : "@Author::ETHER/ConfirmRelease", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::Prereqs", @@ -1156,7 +1176,7 @@ } }, "name" : "@Author::ETHER/prereqs for @Author::ETHER", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::RemovePrereqs", @@ -1168,57 +1188,57 @@ } }, "name" : "RemovePrereqs", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":InstallModules", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":IncModules", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":TestFiles", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":ExtraTestFiles", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":ExecFiles", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":PerlExecFiles", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":ShareFiles", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":MainModule", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":AllFiles", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":NoFiles", - "version" : "6.012" + "version" : "6.013" }, { "class" : "Dist::Zilla::Plugin::VerifyPhases", @@ -1231,17 +1251,18 @@ "config" : { "is_trial" : 0 }, - "version" : "6.012" + "version" : "6.013" } }, "x_authority" : "cpan:STBEY", "x_contributors" : [ - "Joshua ben Jore ", "Karen Etheridge ", + "Joshua ben Jore ", "Kent Fredric " ], - "x_generated_by_perl" : "v5.29.5", - "x_serialization_backend" : "Cpanel::JSON::XS version 4.07", + "x_generated_by_perl" : "v5.31.3", + "x_serialization_backend" : "Cpanel::JSON::XS version 4.12", + "x_spdx_expression" : "Artistic-1.0-Perl OR GPL-1.0-or-later", "x_use_unsafe_inc" : 0 } diff -Nru libcarp-clan-perl-6.07/META.yml libcarp-clan-perl-6.08/META.yml --- libcarp-clan-perl-6.07/META.yml 2018-12-02 21:45:01.000000000 +0000 +++ libcarp-clan-perl-6.08/META.yml 2019-09-14 17:09:48.000000000 +0000 @@ -12,7 +12,7 @@ ExtUtils::MakeMaker: '0' perl: '5.006' dynamic_config: 0 -generated_by: 'Dist::Zilla version 6.012, CPAN::Meta::Converter version 2.150010' +generated_by: 'Dist::Zilla version 6.013, CPAN::Meta::Converter version 2.150010' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -25,7 +25,7 @@ provides: Carp::Clan: file: lib/Carp/Clan.pm - version: '6.07' + version: '6.08' requires: overload: '0' perl: '5.006' @@ -34,10 +34,10 @@ bugtracker: https://rt.cpan.org/Public/Dist/Display.html?Name=Carp-Clan homepage: https://github.com/karenetheridge/Carp-Clan repository: https://github.com/karenetheridge/Carp-Clan.git -version: '6.07' +version: '6.08' x_Dist_Zilla: perl: - version: '5.029005' + version: '5.031003' plugins: - class: Dist::Zilla::Plugin::Prereqs @@ -46,7 +46,7 @@ phase: develop type: recommends name: '@Author::ETHER/pluginbundle version' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::PromptIfStale config: @@ -63,12 +63,16 @@ - class: Dist::Zilla::Plugin::FileFinder::ByName name: '@Author::ETHER/Examples' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::Git::GatherDir config: Dist::Zilla::Plugin::GatherDir: - exclude_filename: [] + exclude_filename: + - CONTRIBUTING + - INSTALL + - LICENSE + - README.pod exclude_match: [] follow_symlinks: 0 include_dotfiles: 0 @@ -78,27 +82,27 @@ Dist::Zilla::Plugin::Git::GatherDir: include_untracked: 0 name: '@Author::ETHER/Git::GatherDir' - version: '2.045' + version: '2.046' - class: Dist::Zilla::Plugin::MetaYAML name: '@Author::ETHER/MetaYAML' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::MetaJSON name: '@Author::ETHER/MetaJSON' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::Readme name: '@Author::ETHER/Readme' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::Manifest name: '@Author::ETHER/Manifest' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::License name: '@Author::ETHER/License' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::GenerateFile::FromShareDir config: @@ -117,8 +121,12 @@ version: '0.014' - class: Dist::Zilla::Plugin::InstallGuide + config: + Dist::Zilla::Role::ModuleMetadata: + Module::Metadata: '1.000036' + version: '0.006' name: '@Author::ETHER/InstallGuide' - version: '1.200012' + version: '1.200013' - class: Dist::Zilla::Plugin::Test::Compile config: @@ -168,7 +176,7 @@ - class: Dist::Zilla::Plugin::MetaTests name: '@Author::ETHER/MetaTests' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::Test::CPAN::Changes config: @@ -197,12 +205,15 @@ version: '0.011' - class: Dist::Zilla::Plugin::Test::MinimumVersion + config: + Dist::Zilla::Plugin::Test::MinimumVersion: + max_target_perl: '5.006' name: '@Author::ETHER/Test::MinimumVersion' - version: '2.000008' + version: '2.000010' - class: Dist::Zilla::Plugin::PodSyntaxTests name: '@Author::ETHER/PodSyntaxTests' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::Test::PodSpelling config: @@ -385,7 +396,7 @@ - class: Dist::Zilla::Plugin::MetaNoIndex name: '@Author::ETHER/MetaNoIndex' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::MetaProvides::Package config: @@ -396,7 +407,7 @@ - class: Dist::Zilla::Plugin::FinderCode name: ':InstallModules' - version: '6.012' + version: '6.013' include_underscores: 0 Dist::Zilla::Role::MetaProvider::Provider: $Dist::Zilla::Role::MetaProvider::Provider::VERSION: '2.002004' @@ -404,14 +415,14 @@ inherit_version: '0' meta_noindex: '1' Dist::Zilla::Role::ModuleMetadata: - Module::Metadata: '1.000034' + Module::Metadata: '1.000036' version: '0.006' name: '@Author::ETHER/MetaProvides::Package' version: '2.004003' - class: Dist::Zilla::Plugin::MetaConfig name: '@Author::ETHER/MetaConfig' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::Keywords config: @@ -429,7 +440,7 @@ - class: Dist::Zilla::Plugin::AutoPrereqs name: '@Author::ETHER/AutoPrereqs' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::Prereqs::AuthorDeps name: '@Author::ETHER/Prereqs::AuthorDeps' @@ -444,12 +455,12 @@ Dist::Zilla::Role::TestRunner: default_jobs: 9 name: '@Author::ETHER/MakeMaker' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::Git::Contributors config: Dist::Zilla::Plugin::Git::Contributors: - git_version: 2.19.1 + git_version: 2.22.0 include_authors: 0 include_releaser: 1 order_by: commits @@ -478,7 +489,7 @@ finder: - ':InstallModules' Dist::Zilla::Role::ModuleMetadata: - Module::Metadata: '1.000034' + Module::Metadata: '1.000036' version: '0.006' name: '@Author::ETHER/CheckSelfDependency' version: '0.011' @@ -490,9 +501,9 @@ quiet: 1 run: - "bash -c \"test -e .ackrc && grep -q -- '--ignore-dir=.latest' .ackrc || echo '--ignore-dir=.latest' >> .ackrc; if [[ `dirname '%d'` != .build ]]; then test -e .ackrc && grep -q -- '--ignore-dir=%d' .ackrc || echo '--ignore-dir=%d' >> .ackrc; fi\"" - version: '0.047' + version: '0.048' name: '@Author::ETHER/.ackrc' - version: '0.047' + version: '0.048' - class: Dist::Zilla::Plugin::Run::AfterBuild config: @@ -501,9 +512,9 @@ - "if ('%d' =~ /^%n-[.[:xdigit:]]+$/) { unlink '.latest'; symlink '%d', '.latest'; }" fatal_errors: 0 quiet: 1 - version: '0.047' + version: '0.048' name: '@Author::ETHER/.latest' - version: '0.047' + version: '0.048' - class: Dist::Zilla::Plugin::CheckStrictVersion name: '@Author::ETHER/CheckStrictVersion' @@ -516,7 +527,7 @@ class: Dist::Zilla::Plugin::EnsureLatestPerl config: Dist::Zilla::Plugin::EnsureLatestPerl: - Module::CoreList: '5.20181120' + Module::CoreList: '5.20190820' name: '@Author::ETHER/EnsureLatestPerl' version: '0.008' - @@ -541,15 +552,15 @@ allow_dirty_match: [] changelog: Changes Dist::Zilla::Role::Git::Repo: - git_version: 2.19.1 + git_version: 2.22.0 repo_root: . name: '@Author::ETHER/initial check' - version: '2.045' + version: '2.046' - class: Dist::Zilla::Plugin::Git::CheckFor::MergeConflicts config: Dist::Zilla::Role::Git::Repo: - git_version: 2.19.1 + git_version: 2.22.0 repo_root: . name: '@Author::ETHER/Git::CheckFor::MergeConflicts' version: '0.014' @@ -557,7 +568,7 @@ class: Dist::Zilla::Plugin::Git::CheckFor::CorrectBranch config: Dist::Zilla::Role::Git::Repo: - git_version: 2.19.1 + git_version: 2.22.0 repo_root: . name: '@Author::ETHER/Git::CheckFor::CorrectBranch' version: '0.014' @@ -572,7 +583,7 @@ - class: Dist::Zilla::Plugin::TestRelease name: '@Author::ETHER/TestRelease' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::Git::Check config: @@ -583,10 +594,10 @@ allow_dirty_match: [] changelog: Changes Dist::Zilla::Role::Git::Repo: - git_version: 2.19.1 + git_version: 2.22.0 repo_root: . name: '@Author::ETHER/after tests' - version: '2.045' + version: '2.046' - class: Dist::Zilla::Plugin::CheckIssues name: '@Author::ETHER/CheckIssues' @@ -594,7 +605,7 @@ - class: Dist::Zilla::Plugin::UploadToCPAN name: '@Author::ETHER/UploadToCPAN' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::CopyFilesFromRelease config: @@ -622,7 +633,7 @@ phase: develop type: recommends name: '@Author::ETHER/@Git::VersionManager/pluginbundle version' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::RewriteVersion::Transitional config: @@ -658,16 +669,20 @@ commit_msg: '%N-%v%t%n%n%c' Dist::Zilla::Role::Git::DirtyFiles: allow_dirty: + - CONTRIBUTING - Changes + - INSTALL + - LICENSE + - README.pod allow_dirty_match: [] changelog: Changes Dist::Zilla::Role::Git::Repo: - git_version: 2.19.1 + git_version: 2.22.0 repo_root: . Dist::Zilla::Role::Git::StringFormatter: time_zone: local name: '@Author::ETHER/@Git::VersionManager/release snapshot' - version: '2.045' + version: '2.046' - class: Dist::Zilla::Plugin::Git::Tag config: @@ -675,16 +690,16 @@ branch: ~ changelog: Changes signed: 0 - tag: v6.07 - tag_format: v%v + tag: v6.08 + tag_format: v%V tag_message: v%v%t Dist::Zilla::Role::Git::Repo: - git_version: 2.19.1 + git_version: 2.22.0 repo_root: . Dist::Zilla::Role::Git::StringFormatter: time_zone: local name: '@Author::ETHER/@Git::VersionManager/Git::Tag' - version: '2.045' + version: '2.046' - class: Dist::Zilla::Plugin::BumpVersionAfterRelease::Transitional config: @@ -700,7 +715,7 @@ - class: Dist::Zilla::Plugin::NextRelease name: '@Author::ETHER/@Git::VersionManager/NextRelease' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::Git::Commit config: @@ -716,12 +731,12 @@ - (?^:^lib/.*\.pm$) changelog: Changes Dist::Zilla::Role::Git::Repo: - git_version: 2.19.1 + git_version: 2.22.0 repo_root: . Dist::Zilla::Role::Git::StringFormatter: time_zone: local name: '@Author::ETHER/@Git::VersionManager/post-release commit' - version: '2.045' + version: '2.046' - class: Dist::Zilla::Plugin::Prereqs config: @@ -729,7 +744,7 @@ phase: x_Dist_Zilla type: requires name: '@Author::ETHER/@Git::VersionManager/prereqs for @Git::VersionManager' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::Git::Push config: @@ -738,10 +753,10 @@ - origin remotes_must_exist: 1 Dist::Zilla::Role::Git::Repo: - git_version: 2.19.1 + git_version: 2.22.0 repo_root: . name: '@Author::ETHER/Git::Push' - version: '2.045' + version: '2.046' - class: Dist::Zilla::Plugin::GitHub::Update config: @@ -757,9 +772,9 @@ quiet: 0 run: - REDACTED - version: '0.047' + version: '0.048' name: '@Author::ETHER/install release' - version: '0.047' + version: '0.048' - class: Dist::Zilla::Plugin::Run::AfterRelease config: @@ -768,13 +783,13 @@ - 'print "release complete!\xa"' fatal_errors: 1 quiet: 1 - version: '0.047' + version: '0.048' name: '@Author::ETHER/release complete' - version: '0.047' + version: '0.048' - class: Dist::Zilla::Plugin::ConfirmRelease name: '@Author::ETHER/ConfirmRelease' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::Prereqs config: @@ -782,7 +797,7 @@ phase: x_Dist_Zilla type: requires name: '@Author::ETHER/prereqs for @Author::ETHER' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::RemovePrereqs config: @@ -790,47 +805,47 @@ modules_to_remove: - Object::Deadly name: RemovePrereqs - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::FinderCode name: ':InstallModules' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::FinderCode name: ':IncModules' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::FinderCode name: ':TestFiles' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::FinderCode name: ':ExtraTestFiles' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::FinderCode name: ':ExecFiles' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::FinderCode name: ':PerlExecFiles' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::FinderCode name: ':ShareFiles' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::FinderCode name: ':MainModule' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::FinderCode name: ':AllFiles' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::FinderCode name: ':NoFiles' - version: '6.012' + version: '6.013' - class: Dist::Zilla::Plugin::VerifyPhases name: '@Author::ETHER/PHASE VERIFICATION' @@ -839,12 +854,13 @@ class: Dist::Zilla::Dist::Builder config: is_trial: '0' - version: '6.012' + version: '6.013' x_authority: cpan:STBEY x_contributors: - - 'Joshua ben Jore ' - 'Karen Etheridge ' + - 'Joshua ben Jore ' - 'Kent Fredric ' -x_generated_by_perl: v5.29.5 +x_generated_by_perl: v5.31.3 x_serialization_backend: 'YAML::Tiny version 1.73' +x_spdx_expression: 'Artistic-1.0-Perl OR GPL-1.0-or-later' x_use_unsafe_inc: 0 diff -Nru libcarp-clan-perl-6.07/README libcarp-clan-perl-6.08/README --- libcarp-clan-perl-6.07/README 2018-12-02 21:45:01.000000000 +0000 +++ libcarp-clan-perl-6.08/README 2019-09-14 17:09:48.000000000 +0000 @@ -1,5 +1,5 @@ This archive contains the distribution Carp-Clan, -version 6.07: +version 6.08: Report errors from perspective of caller of a "clan" of modules @@ -9,4 +9,4 @@ the same terms as the Perl 5 programming language system itself. -This README file was generated by Dist::Zilla::Plugin::Readme v6.012. +This README file was generated by Dist::Zilla::Plugin::Readme v6.013. diff -Nru libcarp-clan-perl-6.07/t/00-report-prereqs.dd libcarp-clan-perl-6.08/t/00-report-prereqs.dd --- libcarp-clan-perl-6.07/t/00-report-prereqs.dd 2018-12-02 21:45:01.000000000 +0000 +++ libcarp-clan-perl-6.08/t/00-report-prereqs.dd 2019-09-14 17:09:48.000000000 +0000 @@ -7,7 +7,7 @@ }, 'develop' => { 'recommends' => { - 'Dist::Zilla::PluginBundle::Author::ETHER' => '0.145', + 'Dist::Zilla::PluginBundle::Author::ETHER' => '0.150', 'Dist::Zilla::PluginBundle::Git::VersionManager' => '0.007' }, 'requires' => { @@ -114,7 +114,7 @@ 'Dist::Zilla::Plugin::Test::Compile' => '2.039', 'Dist::Zilla::Plugin::Test::EOL' => '0.17', 'Dist::Zilla::Plugin::Test::Kwalitee' => '2.10', - 'Dist::Zilla::Plugin::Test::MinimumVersion' => '2.000008', + 'Dist::Zilla::Plugin::Test::MinimumVersion' => '2.000010', 'Dist::Zilla::Plugin::Test::NoTabs' => '0.08', 'Dist::Zilla::Plugin::Test::Pod::No404s' => '1.003', 'Dist::Zilla::Plugin::Test::PodSpelling' => '2.006003', diff -Nru libcarp-clan-perl-6.07/t/10basic.t libcarp-clan-perl-6.08/t/10basic.t --- libcarp-clan-perl-6.07/t/10basic.t 2018-12-02 21:45:01.000000000 +0000 +++ libcarp-clan-perl-6.08/t/10basic.t 2019-09-14 17:09:48.000000000 +0000 @@ -1,25 +1,17 @@ -#!perl -w - -BEGIN -{ - eval { require Test::More; Test::More->import(); }; - if ($@) { print "1..0 # skip Test::More is not available on this platform\n"; exit 0; } -} - use strict; +use warnings; + +use Test::More; plan tests => 2; use_ok( 'Carp::Clan', 'Use Carp::Clan' ); eval { - sub { - Carp::Clan->import(qw(^Carp\\b)); - return 1; - }, + Carp::Clan->import(qw(^Carp\\b)); }; -ok(!$@, 'No errors importing'); +is($@, '', 'No errors importing'); __END__ diff -Nru libcarp-clan-perl-6.07/t/11basic.t libcarp-clan-perl-6.08/t/11basic.t --- libcarp-clan-perl-6.07/t/11basic.t 2018-12-02 21:45:01.000000000 +0000 +++ libcarp-clan-perl-6.08/t/11basic.t 2019-09-14 17:09:48.000000000 +0000 @@ -1,11 +1,5 @@ -#!perl -w - -#BEGIN -#{ -# if ($] < 5.006) { print "1..0 # skip current Perl version $] < 5.006000\n"; exit 0; } -#} - use strict; +use warnings; my $USE_OBJECT_DEADLY = eval { require Object::Deadly; diff -Nru libcarp-clan-perl-6.07/t/21pre560.t libcarp-clan-perl-6.08/t/21pre560.t --- libcarp-clan-perl-6.07/t/21pre560.t 2018-12-02 21:45:01.000000000 +0000 +++ libcarp-clan-perl-6.08/t/21pre560.t 2019-09-14 17:09:48.000000000 +0000 @@ -1,11 +1,5 @@ -#!perl -w - -#BEGIN -#{ -# if ($] >= 5.006) { print "1..0 # skip current Perl version $] >= 5.006000\n"; exit 0; } -#} - use strict; +use warnings; # ====================================================================== # use Carp::Clan qw(package::pattern); diff -Nru libcarp-clan-perl-6.07/xt/author/minimum-version.t libcarp-clan-perl-6.08/xt/author/minimum-version.t --- libcarp-clan-perl-6.07/xt/author/minimum-version.t 2018-12-02 21:45:01.000000000 +0000 +++ libcarp-clan-perl-6.08/xt/author/minimum-version.t 2019-09-14 17:09:48.000000000 +0000 @@ -1,6 +1,6 @@ -#!perl +use strict; +use warnings; use Test::More; - use Test::MinimumVersion; all_minimum_version_ok( qq{5.006} ); diff -Nru libcarp-clan-perl-6.07/xt/release/changes_has_content.t libcarp-clan-perl-6.08/xt/release/changes_has_content.t --- libcarp-clan-perl-6.07/xt/release/changes_has_content.t 2018-12-02 21:45:01.000000000 +0000 +++ libcarp-clan-perl-6.08/xt/release/changes_has_content.t 2019-09-14 17:09:48.000000000 +0000 @@ -2,7 +2,7 @@ note 'Checking Changes'; my $changes_file = 'Changes'; -my $newver = '6.07'; +my $newver = '6.08'; my $trial_token = '-TRIAL'; my $encoding = 'UTF-8';