diff -Nru libnet-mac-vendor-perl-1.265/Changes libnet-mac-vendor-perl-1.268/Changes --- libnet-mac-vendor-perl-1.265/Changes 2019-04-12 23:55:32.000000000 +0000 +++ libnet-mac-vendor-perl-1.268/Changes 2022-02-07 05:12:05.000000000 +0000 @@ -1,5 +1,15 @@ Revision history for Perl module Net::MAC::Vendor +1.268 2022-02-07 05:12:00Z + * gracefully fail a test if a server couldn't be contacted + +1.267 2022-02-06 05:08:22Z + * add IO::Socket::SSL to prereqs + +1.266 2022-02-05 21:34:12Z + * Fix issue where load_cache causes problems with <> afterwards (PR + #2, thanks Christopher Layne!) + 1.265 2019-04-12 23:55:27Z * properly remove Compress::* from list of mandatory prereqs diff -Nru libnet-mac-vendor-perl-1.265/CONTRIBUTING libnet-mac-vendor-perl-1.268/CONTRIBUTING --- libnet-mac-vendor-perl-1.265/CONTRIBUTING 2019-04-12 23:55:32.000000000 +0000 +++ libnet-mac-vendor-perl-1.268/CONTRIBUTING 2022-02-07 05:12:05.000000000 +0000 @@ -72,7 +72,9 @@ You can learn more about Dist::Zilla at http://dzil.org/. The code for this distribution is hosted at GitHub. The repository is: + https://github.com/karenetheridge/Net-MAC-Vendor + You can submit code changes by forking the repository, pushing your code 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. @@ -99,5 +101,5 @@ request to the .mailmap file to contain the correct mapping. -This file was generated via Dist::Zilla::Plugin::GenerateFile::FromShareDir 0.014 -from a template file originating in Dist-Zilla-PluginBundle-Author-ETHER-0.148. +This file was generated via Dist::Zilla::Plugin::GenerateFile::FromShareDir 0.015 +from a template file originating in Dist-Zilla-PluginBundle-Author-ETHER-0.162. diff -Nru libnet-mac-vendor-perl-1.265/debian/changelog libnet-mac-vendor-perl-1.268/debian/changelog --- libnet-mac-vendor-perl-1.265/debian/changelog 2019-12-26 16:35:15.000000000 +0000 +++ libnet-mac-vendor-perl-1.268/debian/changelog 2022-02-12 23:45:27.000000000 +0000 @@ -1,3 +1,20 @@ +libnet-mac-vendor-perl (1.268-1) unstable; urgency=medium + + * Team upload. + + [ Debian Janitor ] + * Update standards version to 4.5.0, no changes needed. + + [ gregor herrmann ] + * Import upstream version 1.268. + * Refresh no-network-tests.patch (offset). + * Declare compliance with Debian Policy 4.6.0. + * Set Rules-Requires-Root: no. + * Bump debhelper-compat to 13. + * Update (build) dependencies. + + -- gregor herrmann Sun, 13 Feb 2022 00:45:27 +0100 + libnet-mac-vendor-perl (1.265-1) unstable; urgency=medium * Team upload. diff -Nru libnet-mac-vendor-perl-1.265/debian/control libnet-mac-vendor-perl-1.268/debian/control --- libnet-mac-vendor-perl-1.265/debian/control 2019-12-26 16:35:15.000000000 +0000 +++ libnet-mac-vendor-perl-1.268/debian/control 2022-02-12 23:45:27.000000000 +0000 @@ -4,22 +4,25 @@ Section: perl Testsuite: autopkgtest-pkg-perl Priority: optional -Build-Depends: debhelper-compat (= 12) +Build-Depends: debhelper-compat (= 13) Build-Depends-Indep: libcompress-bzip2-perl , libio-compress-perl , + libio-socket-ssl-perl , libmojolicious-perl , libnet-ssleay-perl , libwww-perl , perl -Standards-Version: 4.4.1 +Standards-Version: 4.6.0 Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libnet-mac-vendor-perl Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libnet-mac-vendor-perl.git Homepage: https://metacpan.org/release/Net-MAC-Vendor +Rules-Requires-Root: no Package: libnet-mac-vendor-perl Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, + libio-socket-ssl-perl, libmojolicious-perl, libnet-ssleay-perl, libwww-perl diff -Nru libnet-mac-vendor-perl-1.265/debian/patches/no-network-tests.patch libnet-mac-vendor-perl-1.268/debian/patches/no-network-tests.patch --- libnet-mac-vendor-perl-1.265/debian/patches/no-network-tests.patch 2019-12-26 16:35:15.000000000 +0000 +++ libnet-mac-vendor-perl-1.268/debian/patches/no-network-tests.patch 2022-02-12 23:45:27.000000000 +0000 @@ -2,7 +2,7 @@ Forwarded: not-needed Author: Nuno Carvalho Reviewed-by: gregor herrmann -Last-Update: 2019-12-26 +Last-Update: 2022-02-13 --- a/t/fetch_oui_from_ieee.t +++ b/t/fetch_oui_from_ieee.t @@ -77,7 +77,7 @@ my $ssl_version = Net::SSLeay::SSLeay(); my $ssl_version_string = Net::SSLeay::SSLeay_version(); my $minimum_ssl = 0x10_00_00_00; -@@ -28,6 +30,8 @@ +@@ -30,6 +32,8 @@ subtest fetch => sub { SKIP: { diff -Nru libnet-mac-vendor-perl-1.265/inc/ExtUtils/HasCompiler.pm libnet-mac-vendor-perl-1.268/inc/ExtUtils/HasCompiler.pm --- libnet-mac-vendor-perl-1.265/inc/ExtUtils/HasCompiler.pm 2019-04-12 23:55:32.000000000 +0000 +++ libnet-mac-vendor-perl-1.268/inc/ExtUtils/HasCompiler.pm 2022-02-07 05:12:05.000000000 +0000 @@ -1,5 +1,5 @@ package ExtUtils::HasCompiler; -$ExtUtils::HasCompiler::VERSION = '0.021'; +$ExtUtils::HasCompiler::VERSION = '0.023'; use strict; use warnings; @@ -100,11 +100,12 @@ } else { my @extra; + my $inc = qq{"-I$incdir"}; if ($^O eq 'MSWin32') { my $lib = '-l' . ($libperl =~ /lib([^.]+)\./)[0]; push @extra, "$abs_basename.def", $lib, $perllibs; } - elsif ($^O eq 'cygwin') { + elsif ($^O =~ /^(cygwin|msys)$/) { push @extra, catfile($incdir, $config->get('useshrplib') ? 'libperl.dll.a' : 'libperl.a'); } elsif ($^O eq 'aix') { @@ -114,7 +115,10 @@ elsif ($^O eq 'android') { push @extra, qq{"-L$incdir"}, '-lperl', $perllibs; } - push @commands, qq{$cc $ccflags $optimize "-I$incdir" $cccdlflags -c $source_name -o $object_file}; + elsif ($^O eq 'darwin' && $config->get('perlpath') eq '/usr/bin/perl' && ($config->get('osvers') =~ /(\d+)/)[0] >= 18) { + $inc = qq{-iwithsysroot "$incdir"}; + } + push @commands, qq{$cc $ccflags $optimize $inc $cccdlflags -c $source_name -o $object_file}; push @commands, qq{$ld $object_file -o $loadable_object $lddlflags @extra}; } @@ -222,7 +226,7 @@ =head1 VERSION -version 0.021 +version 0.023 =head1 SYNOPSIS diff -Nru libnet-mac-vendor-perl-1.265/INSTALL libnet-mac-vendor-perl-1.268/INSTALL --- libnet-mac-vendor-perl-1.265/INSTALL 2019-04-12 23:55:32.000000000 +0000 +++ libnet-mac-vendor-perl-1.268/INSTALL 2022-02-07 05:12:05.000000000 +0000 @@ -21,8 +21,11 @@ ## Manual installation -As a last resort, you can manually install it. Download the tarball, untar it, -install configure prerequisites (see below), then build it: +As a last resort, you can manually install it. If you have not already +downloaded the release tarball, you can find the download link on the module's +MetaCPAN page: https://metacpan.org/pod/Net::MAC::Vendor + +Untar the tarball, install configure prerequisites (see below), then build it: % perl Makefile.PL % make && make test diff -Nru libnet-mac-vendor-perl-1.265/lib/Net/MAC/Vendor.pm libnet-mac-vendor-perl-1.268/lib/Net/MAC/Vendor.pm --- libnet-mac-vendor-perl-1.265/lib/Net/MAC/Vendor.pm 2019-04-12 23:55:32.000000000 +0000 +++ libnet-mac-vendor-perl-1.268/lib/Net/MAC/Vendor.pm 2022-02-07 05:12:05.000000000 +0000 @@ -1,10 +1,11 @@ -package Net::MAC::Vendor; # git description: v1.264-2-gda20c47 +package Net::MAC::Vendor; # git description: v1.267-2-g8373c47 # ABSTRACT: Look up the vendor for a MAC use strict; use warnings; use 5.010; +use IO::Socket::SSL (); use Net::SSLeay; #pod =head1 SYNOPSIS @@ -75,7 +76,7 @@ use Mojo::URL; use Mojo::UserAgent; -our $VERSION = '1.265'; +our $VERSION = '1.268'; #pod =item run( @macs ) #pod @@ -473,7 +474,7 @@ return; } - do { local( @ARGV, $/ ) = $source; <> } + do { local( *ARGV, $/ ); @ARGV = $source; <> } } else { #say time . " Fetching URL"; @@ -617,7 +618,7 @@ =head1 VERSION -version 1.265 +version 1.268 =head1 SYNOPSIS @@ -871,7 +872,7 @@ Bugs may be submitted through L (or L). -I am also usually active on irc, as 'ether' at C. +I am also usually active on irc, as 'ether' at C and C. =head1 AUTHOR @@ -879,7 +880,7 @@ =head1 CONTRIBUTORS -=for stopwords brian d foy Karen Etheridge Frank Maas openstrike Dean Hamstead +=for stopwords brian d foy Karen Etheridge Frank Maas openstrike Christopher Layne Dean Hamstead =over 4 @@ -901,6 +902,10 @@ =item * +Christopher Layne + +=item * + Dean Hamstead =back diff -Nru libnet-mac-vendor-perl-1.265/Makefile.PL libnet-mac-vendor-perl-1.268/Makefile.PL --- libnet-mac-vendor-perl-1.265/Makefile.PL 2019-04-12 23:55:32.000000000 +0000 +++ libnet-mac-vendor-perl-1.268/Makefile.PL 2022-02-07 05:12:05.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.024. use strict; use warnings; @@ -21,6 +21,7 @@ "Carp" => 0, "Exporter" => 0, "File::Temp" => 0, + "IO::Socket::SSL" => 0, "Mojo::URL" => 0, "Mojo::UserAgent" => 0, "Net::SSLeay" => 0, @@ -34,7 +35,7 @@ "File::Spec" => 0, "Test::More" => "0.98" }, - "VERSION" => "1.265", + "VERSION" => "1.268", "test" => { "TESTS" => "t/*.t" } @@ -49,6 +50,7 @@ "ExtUtils::MakeMaker" => 0, "File::Spec" => 0, "File::Temp" => 0, + "IO::Socket::SSL" => 0, "Mojo::URL" => 0, "Mojo::UserAgent" => 0, "Net::SSLeay" => 0, @@ -57,7 +59,7 @@ "warnings" => 0 ); -# inserted by Dist::Zilla::Plugin::DynamicPrereqs 0.035 +# inserted by Dist::Zilla::Plugin::DynamicPrereqs 0.039 if (can_xs() and not want_pp()) { requires('Compress::Bzip2'); requires('Compress::Zlib'); @@ -75,7 +77,7 @@ WriteMakefile(%WriteMakefileArgs); -# inserted by Dist::Zilla::Plugin::DynamicPrereqs 0.035 +# inserted by Dist::Zilla::Plugin::DynamicPrereqs 0.039 sub _add_prereq { my ($mm_key, $module, $version_or_range) = @_; $version_or_range ||= 0; @@ -83,7 +85,7 @@ if exists $WriteMakefileArgs{$mm_key}{$module} and $WriteMakefileArgs{$mm_key}{$module} ne '0' and $WriteMakefileArgs{$mm_key}{$module} ne $version_or_range; - warn "$module already exists in FallbackPrereqs (at version $WriteMakefileArgs{$mm_key}{$module}) -- need to do a sane metamerge!" + warn "$module already exists in FallbackPrereqs (at version $FallbackPrereqs{$module}) -- need to do a sane metamerge!" if exists $FallbackPrereqs{$module} and $FallbackPrereqs{$module} ne '0' and $FallbackPrereqs{$module} ne $version_or_range; $WriteMakefileArgs{$mm_key}{$module} = $FallbackPrereqs{$module} = $version_or_range; diff -Nru libnet-mac-vendor-perl-1.265/MANIFEST libnet-mac-vendor-perl-1.268/MANIFEST --- libnet-mac-vendor-perl-1.265/MANIFEST 2019-04-12 23:55:32.000000000 +0000 +++ libnet-mac-vendor-perl-1.268/MANIFEST 2022-02-07 05:12:05.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.024. CONTRIBUTING Changes INSTALL @@ -27,8 +27,8 @@ t/parse_oui.t t/run.t xt/author/00-compile.t -xt/author/changes_has_content.t xt/author/clean-namespaces.t +xt/author/distmeta.t xt/author/eol.t xt/author/kwalitee.t xt/author/minimum-version.t @@ -38,4 +38,3 @@ xt/author/portability.t xt/release/changes_has_content.t xt/release/cpan-changes.t -xt/release/distmeta.t diff -Nru libnet-mac-vendor-perl-1.265/META.json libnet-mac-vendor-perl-1.268/META.json --- libnet-mac-vendor-perl-1.265/META.json 2019-04-12 23:55:32.000000000 +0000 +++ libnet-mac-vendor-perl-1.268/META.json 2022-02-07 05:12:05.000000000 +0000 @@ -4,7 +4,7 @@ "brian d foy " ], "dynamic_config" : 1, - "generated_by" : "Dist::Zilla version 6.012, CPAN::Meta::Converter version 2.150010", + "generated_by" : "Dist::Zilla version 6.024, CPAN::Meta::Converter version 2.150010", "license" : [ "artistic_2" ], @@ -30,7 +30,7 @@ }, "develop" : { "recommends" : { - "Dist::Zilla::PluginBundle::Author::ETHER" : "0.148", + "Dist::Zilla::PluginBundle::Author::ETHER" : "0.162", "Dist::Zilla::PluginBundle::Git::VersionManager" : "0.007" }, "requires" : { @@ -62,6 +62,7 @@ "Carp" : "0", "Exporter" : "0", "File::Temp" : "0", + "IO::Socket::SSL" : "0", "Mojo::URL" : "0", "Mojo::UserAgent" : "0", "Net::SSLeay" : "0", @@ -132,13 +133,13 @@ "Dist::Zilla::Plugin::NextRelease" : "5.033", "Dist::Zilla::Plugin::PodCoverageTests" : "5.040", "Dist::Zilla::Plugin::PodSyntaxTests" : "5.040", - "Dist::Zilla::Plugin::PodWeaver" : "4.005", + "Dist::Zilla::Plugin::PodWeaver" : "4.008", "Dist::Zilla::Plugin::Prereqs" : "0", "Dist::Zilla::Plugin::Prereqs::AuthorDeps" : "0.006", "Dist::Zilla::Plugin::PromptIfStale" : "0", "Dist::Zilla::Plugin::Readme" : "0", "Dist::Zilla::Plugin::ReadmeAnyFromPod" : "0.142180", - "Dist::Zilla::Plugin::RewriteVersion::Transitional" : "0.004", + "Dist::Zilla::Plugin::RewriteVersion::Transitional" : "0.006", "Dist::Zilla::Plugin::Run::AfterBuild" : "0.041", "Dist::Zilla::Plugin::Run::AfterRelease" : "0.038", "Dist::Zilla::Plugin::RunExtraTests" : "0.024", @@ -149,7 +150,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::Portability" : "2.000007", "Dist::Zilla::Plugin::Test::ReportPrereqs" : "0.022", "Dist::Zilla::Plugin::TestRelease" : "0", @@ -165,7 +166,7 @@ "provides" : { "Net::MAC::Vendor" : { "file" : "lib/Net/MAC/Vendor.pm", - "version" : "1.265" + "version" : "1.268" } }, "release_status" : "stable", @@ -181,10 +182,10 @@ "web" : "https://github.com/karenetheridge/Net-MAC-Vendor" } }, - "version" : "1.265", + "version" : "1.268", "x_Dist_Zilla" : { "perl" : { - "version" : "5.029009" + "version" : "5.035008" }, "plugins" : [ { @@ -196,7 +197,7 @@ } }, "name" : "@Author::ETHER/pluginbundle version", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::PromptIfStale", @@ -213,12 +214,12 @@ } }, "name" : "@Author::ETHER/stale modules, build", - "version" : "0.055" + "version" : "0.057" }, { "class" : "Dist::Zilla::Plugin::FileFinder::ByName", "name" : "@Author::ETHER/Examples", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::Git::GatherDir", @@ -246,32 +247,32 @@ } }, "name" : "@Author::ETHER/Git::GatherDir", - "version" : "2.046" + "version" : "2.048" }, { "class" : "Dist::Zilla::Plugin::MetaYAML", "name" : "@Author::ETHER/MetaYAML", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::MetaJSON", "name" : "@Author::ETHER/MetaJSON", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::Readme", "name" : "@Author::ETHER/Readme", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::Manifest", "name" : "@Author::ETHER/Manifest", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::License", "name" : "@Author::ETHER/License", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::GenerateFile::FromShareDir", @@ -291,18 +292,18 @@ } }, "name" : "@Author::ETHER/generate CONTRIBUTING", - "version" : "0.014" + "version" : "0.015" }, { "class" : "Dist::Zilla::Plugin::InstallGuide", "config" : { "Dist::Zilla::Role::ModuleMetadata" : { - "Module::Metadata" : "1.000034", + "Module::Metadata" : "1.000037", "version" : "0.006" } }, "name" : "@Author::ETHER/InstallGuide", - "version" : "1.200013" + "version" : "1.200014" }, { "class" : "Dist::Zilla::Plugin::Test::Compile", @@ -349,7 +350,7 @@ { "class" : "Dist::Zilla::Plugin::MetaTests", "name" : "@Author::ETHER/MetaTests", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::Test::CPAN::Changes", @@ -362,43 +363,29 @@ "version" : "0.012" }, { - "class" : "Dist::Zilla::Plugin::GenerateFile::FromShareDir", - "config" : { - "Dist::Zilla::Plugin::GenerateFile::FromShareDir" : { - "destination_filename" : "xt/author/changes_has_content.t", - "dist" : "Dist-Zilla-PluginBundle-Author-ETHER", - "encoding" : "UTF-8", - "location" : "build", - "source_filename" : "changes_has_content.t" - }, - "Dist::Zilla::Role::RepoFileInjector" : { - "allow_overwrite" : 1, - "repo_root" : ".", - "version" : "0.009" - } - }, - "name" : "@Author::ETHER/generate xt/author/changes_has_content.t", - "version" : "0.014" - }, - { "class" : "Dist::Zilla::Plugin::Test::ChangesHasContent", "name" : "@Author::ETHER/Test::ChangesHasContent", "version" : "0.011" }, { "class" : "Dist::Zilla::Plugin::Test::MinimumVersion", + "config" : { + "Dist::Zilla::Plugin::Test::MinimumVersion" : { + "max_target_perl" : "5.010" + } + }, "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.024" }, { "class" : "Dist::Zilla::Plugin::PodCoverageTests", "name" : "@Author::ETHER/PodCoverageTests", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::Test::Kwalitee", @@ -419,7 +406,7 @@ { "class" : "Dist::Zilla::Plugin::Test::ReportPrereqs", "name" : "@Author::ETHER/Test::ReportPrereqs", - "version" : "0.027" + "version" : "0.028" }, { "class" : "Dist::Zilla::Plugin::Test::Portability", @@ -462,107 +449,102 @@ { "class" : "Pod::Weaver::Plugin::EnsurePod5", "name" : "@Author::ETHER/EnsurePod5", - "version" : "4.015" + "version" : "4.018" }, { "class" : "Pod::Weaver::Plugin::H1Nester", "name" : "@Author::ETHER/H1Nester", - "version" : "4.015" + "version" : "4.018" }, { "class" : "Pod::Weaver::Plugin::SingleEncoding", "name" : "@Author::ETHER/SingleEncoding", - "version" : "4.015" + "version" : "4.018" }, { "class" : "Pod::Weaver::Plugin::Transformer", "name" : "@Author::ETHER/List", - "version" : "4.015" + "version" : "4.018" }, { "class" : "Pod::Weaver::Plugin::Transformer", "name" : "@Author::ETHER/Verbatim", - "version" : "4.015" + "version" : "4.018" }, { "class" : "Pod::Weaver::Section::Region", "name" : "@Author::ETHER/header", - "version" : "4.015" + "version" : "4.018" }, { "class" : "Pod::Weaver::Section::Name", "name" : "@Author::ETHER/Name", - "version" : "4.015" + "version" : "4.018" }, { "class" : "Pod::Weaver::Section::Version", "name" : "@Author::ETHER/Version", - "version" : "4.015" + "version" : "4.018" }, { "class" : "Pod::Weaver::Section::Region", "name" : "@Author::ETHER/prelude", - "version" : "4.015" + "version" : "4.018" }, { "class" : "Pod::Weaver::Section::Generic", "name" : "SYNOPSIS", - "version" : "4.015" + "version" : "4.018" }, { "class" : "Pod::Weaver::Section::Generic", "name" : "DESCRIPTION", - "version" : "4.015" + "version" : "4.018" }, { "class" : "Pod::Weaver::Section::Generic", "name" : "OVERVIEW", - "version" : "4.015" + "version" : "4.018" }, { "class" : "Pod::Weaver::Section::Collect", "name" : "ATTRIBUTES", - "version" : "4.015" + "version" : "4.018" }, { "class" : "Pod::Weaver::Section::Collect", "name" : "METHODS", - "version" : "4.015" + "version" : "4.018" }, { "class" : "Pod::Weaver::Section::Collect", "name" : "FUNCTIONS", - "version" : "4.015" + "version" : "4.018" }, { "class" : "Pod::Weaver::Section::Collect", "name" : "TYPES", - "version" : "4.015" + "version" : "4.018" }, { "class" : "Pod::Weaver::Section::Leftovers", "name" : "@Author::ETHER/Leftovers", - "version" : "4.015" + "version" : "4.018" }, { "class" : "Pod::Weaver::Section::Region", "name" : "@Author::ETHER/postlude", - "version" : "4.015" + "version" : "4.018" }, { "class" : "Pod::Weaver::Section::GenerateSection", "name" : "@Author::ETHER/generate SUPPORT", - "version" : "1.06" - }, - { - "class" : "Pod::Weaver::Section::AllowOverride", - "name" : "@Author::ETHER/allow override SUPPORT", - "version" : "0.05" + "version" : "4.018" }, { "class" : "Pod::Weaver::Section::Authors", "name" : "@Author::ETHER/Authors", - "version" : "4.015" + "version" : "4.018" }, { "class" : "Pod::Weaver::Section::AllowOverride", @@ -577,18 +559,18 @@ { "class" : "Pod::Weaver::Section::Legal", "name" : "@Author::ETHER/Legal", - "version" : "4.015" + "version" : "4.018" }, { "class" : "Pod::Weaver::Section::Region", "name" : "@Author::ETHER/footer", - "version" : "4.015" + "version" : "4.018" } ] } }, "name" : "@Author::ETHER/PodWeaver", - "version" : "4.008" + "version" : "4.009" }, { "class" : "Dist::Zilla::Plugin::GithubMeta", @@ -608,7 +590,7 @@ { "class" : "Dist::Zilla::Plugin::MetaNoIndex", "name" : "@Author::ETHER/MetaNoIndex", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::MetaProvides::Package", @@ -621,7 +603,7 @@ { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":InstallModules", - "version" : "6.012" + "version" : "6.024" } ], "include_underscores" : 0 @@ -633,7 +615,7 @@ "meta_noindex" : 1 }, "Dist::Zilla::Role::ModuleMetadata" : { - "Module::Metadata" : "1.000034", + "Module::Metadata" : "1.000037", "version" : "0.006" } }, @@ -643,7 +625,7 @@ { "class" : "Dist::Zilla::Plugin::MetaConfig", "name" : "@Author::ETHER/MetaConfig", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::Keywords", @@ -668,12 +650,12 @@ { "class" : "Dist::Zilla::Plugin::AutoPrereqs", "name" : "@Author::ETHER/AutoPrereqs", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::Prereqs::AuthorDeps", "name" : "@Author::ETHER/Prereqs::AuthorDeps", - "version" : "0.006" + "version" : "0.007" }, { "class" : "Dist::Zilla::Plugin::MinimumPerl", @@ -688,13 +670,13 @@ } }, "name" : "@Author::ETHER/MakeMaker", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::Git::Contributors", "config" : { "Dist::Zilla::Plugin::Git::Contributors" : { - "git_version" : "2.19.1", + "git_version" : "2.34.1", "include_authors" : 0, "include_releaser" : 1, "order_by" : "commits", @@ -702,7 +684,7 @@ } }, "name" : "@Author::ETHER/Git::Contributors", - "version" : "0.035" + "version" : "0.036" }, { "class" : "Dist::Zilla::Plugin::StaticInstall", @@ -734,7 +716,7 @@ ] }, "Dist::Zilla::Role::ModuleMetadata" : { - "Module::Metadata" : "1.000034", + "Module::Metadata" : "1.000037", "version" : "0.006" } }, @@ -785,7 +767,7 @@ "class" : "Dist::Zilla::Plugin::EnsureLatestPerl", "config" : { "Dist::Zilla::Plugin::EnsureLatestPerl" : { - "Module::CoreList" : "5.20190320" + "Module::CoreList" : "5.20220120" } }, "name" : "@Author::ETHER/EnsureLatestPerl", @@ -804,7 +786,7 @@ } }, "name" : "@Author::ETHER/stale modules, release", - "version" : "0.055" + "version" : "0.057" }, { "class" : "Dist::Zilla::Plugin::Git::Check", @@ -818,18 +800,18 @@ "changelog" : "Changes" }, "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.19.1", + "git_version" : "2.34.1", "repo_root" : "." } }, "name" : "@Author::ETHER/initial check", - "version" : "2.046" + "version" : "2.048" }, { "class" : "Dist::Zilla::Plugin::Git::CheckFor::MergeConflicts", "config" : { "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.19.1", + "git_version" : "2.34.1", "repo_root" : "." } }, @@ -840,7 +822,7 @@ "class" : "Dist::Zilla::Plugin::Git::CheckFor::CorrectBranch", "config" : { "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.19.1", + "git_version" : "2.34.1", "repo_root" : "." } }, @@ -855,12 +837,12 @@ { "class" : "Dist::Zilla::Plugin::CheckPrereqsIndexed", "name" : "@Author::ETHER/CheckPrereqsIndexed", - "version" : "0.020" + "version" : "0.021" }, { "class" : "Dist::Zilla::Plugin::TestRelease", "name" : "@Author::ETHER/TestRelease", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::Git::Check", @@ -874,22 +856,22 @@ "changelog" : "Changes" }, "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.19.1", + "git_version" : "2.34.1", "repo_root" : "." } }, "name" : "@Author::ETHER/after tests", - "version" : "2.046" + "version" : "2.048" }, { "class" : "Dist::Zilla::Plugin::CheckIssues", "name" : "@Author::ETHER/CheckIssues", - "version" : "0.010" + "version" : "0.011" }, { "class" : "Dist::Zilla::Plugin::UploadToCPAN", "name" : "@Author::ETHER/UploadToCPAN", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::Run::AfterRelease", @@ -942,7 +924,7 @@ } }, "name" : "@Author::ETHER/@Git::VersionManager/pluginbundle version", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::RewriteVersion::Transitional", @@ -986,7 +968,8 @@ "add_files_in" : [ "." ], - "commit_msg" : "%N-%v%t%n%n%c" + "commit_msg" : "%N-%v%t%n%n%c", + "signoff" : 0 }, "Dist::Zilla::Role::Git::DirtyFiles" : { "allow_dirty" : [ @@ -1000,7 +983,7 @@ "changelog" : "Changes" }, "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.19.1", + "git_version" : "2.34.1", "repo_root" : "." }, "Dist::Zilla::Role::Git::StringFormatter" : { @@ -1008,7 +991,7 @@ } }, "name" : "@Author::ETHER/@Git::VersionManager/release snapshot", - "version" : "2.046" + "version" : "2.048" }, { "class" : "Dist::Zilla::Plugin::Git::Tag", @@ -1017,12 +1000,12 @@ "branch" : null, "changelog" : "Changes", "signed" : 0, - "tag" : "v1.265", + "tag" : "v1.268", "tag_format" : "v%V", "tag_message" : "v%v%t" }, "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.19.1", + "git_version" : "2.34.1", "repo_root" : "." }, "Dist::Zilla::Role::Git::StringFormatter" : { @@ -1030,14 +1013,13 @@ } }, "name" : "@Author::ETHER/@Git::VersionManager/Git::Tag", - "version" : "2.046" + "version" : "2.048" }, { "class" : "Dist::Zilla::Plugin::BumpVersionAfterRelease::Transitional", "config" : { "Dist::Zilla::Plugin::BumpVersionAfterRelease" : { "finders" : [ - ":ExecFiles", ":InstallModules" ], "global" : 1, @@ -1051,14 +1033,15 @@ { "class" : "Dist::Zilla::Plugin::NextRelease", "name" : "@Author::ETHER/@Git::VersionManager/NextRelease", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::Git::Commit", "config" : { "Dist::Zilla::Plugin::Git::Commit" : { "add_files_in" : [], - "commit_msg" : "increment $VERSION after %v release" + "commit_msg" : "increment $VERSION after %v release", + "signoff" : 0 }, "Dist::Zilla::Role::Git::DirtyFiles" : { "allow_dirty" : [ @@ -1072,7 +1055,7 @@ "changelog" : "Changes" }, "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.19.1", + "git_version" : "2.34.1", "repo_root" : "." }, "Dist::Zilla::Role::Git::StringFormatter" : { @@ -1080,7 +1063,7 @@ } }, "name" : "@Author::ETHER/@Git::VersionManager/post-release commit", - "version" : "2.046" + "version" : "2.048" }, { "class" : "Dist::Zilla::Plugin::Prereqs", @@ -1091,7 +1074,7 @@ } }, "name" : "@Author::ETHER/@Git::VersionManager/prereqs for @Git::VersionManager", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::Git::Push", @@ -1103,12 +1086,12 @@ "remotes_must_exist" : 1 }, "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.19.1", + "git_version" : "2.34.1", "repo_root" : "." } }, "name" : "@Author::ETHER/Git::Push", - "version" : "2.046" + "version" : "2.048" }, { "class" : "Dist::Zilla::Plugin::GitHub::Update", @@ -1118,7 +1101,7 @@ } }, "name" : "@Author::ETHER/GitHub::Update", - "version" : "0.47" + "version" : "0.48" }, { "class" : "Dist::Zilla::Plugin::Run::AfterRelease", @@ -1153,7 +1136,7 @@ { "class" : "Dist::Zilla::Plugin::ConfirmRelease", "name" : "@Author::ETHER/ConfirmRelease", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::Prereqs", @@ -1164,7 +1147,7 @@ } }, "name" : "@Author::ETHER/prereqs for @Author::ETHER", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::Prereqs", @@ -1175,18 +1158,18 @@ } }, "name" : "RuntimeRecommends", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::DynamicPrereqs", "config" : { "Dist::Zilla::Role::ModuleMetadata" : { - "Module::Metadata" : "1.000034", + "Module::Metadata" : "1.000037", "version" : "0.006" } }, "name" : "DynamicPrereqs", - "version" : "0.035" + "version" : "0.039" }, { "class" : "Dist::Zilla::Plugin::Prereqs", @@ -1197,57 +1180,57 @@ } }, "name" : "RuntimeSuggests", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":InstallModules", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":IncModules", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":TestFiles", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":ExtraTestFiles", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":ExecFiles", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":PerlExecFiles", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":ShareFiles", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":MainModule", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":AllFiles", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":NoFiles", - "version" : "6.012" + "version" : "6.024" }, { "class" : "Dist::Zilla::Plugin::VerifyPhases", @@ -1260,7 +1243,7 @@ "config" : { "is_trial" : 0 }, - "version" : "6.012" + "version" : "6.024" } }, "x_authority" : "cpan:ETHER", @@ -1269,10 +1252,12 @@ "Karen Etheridge ", "Frank Maas ", "openstrike ", + "Christopher Layne ", "Dean Hamstead " ], - "x_generated_by_perl" : "v5.29.9", - "x_serialization_backend" : "Cpanel::JSON::XS version 4.11", + "x_generated_by_perl" : "v5.35.8", + "x_serialization_backend" : "Cpanel::JSON::XS version 4.27", + "x_spdx_expression" : "Artistic-2.0", "x_static_install" : 0, "x_use_unsafe_inc" : 0 } diff -Nru libnet-mac-vendor-perl-1.265/META.yml libnet-mac-vendor-perl-1.268/META.yml --- libnet-mac-vendor-perl-1.265/META.yml 2019-04-12 23:55:32.000000000 +0000 +++ libnet-mac-vendor-perl-1.268/META.yml 2022-02-07 05:12:05.000000000 +0000 @@ -14,7 +14,7 @@ Text::ParseWords: '0' perl: '5.010' dynamic_config: 1 -generated_by: 'Dist::Zilla version 6.012, CPAN::Meta::Converter version 2.150010' +generated_by: 'Dist::Zilla version 6.024, CPAN::Meta::Converter version 2.150010' license: artistic_2 meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -28,7 +28,7 @@ provides: Net::MAC::Vendor: file: lib/Net/MAC/Vendor.pm - version: '1.265' + version: '1.268' recommends: Compress::Bzip2: '0' Compress::Zlib: '0' @@ -36,6 +36,7 @@ Carp: '0' Exporter: '0' File::Temp: '0' + IO::Socket::SSL: '0' Mojo::URL: '0' Mojo::UserAgent: '0' Net::SSLeay: '0' @@ -46,10 +47,10 @@ bugtracker: https://rt.cpan.org/Public/Dist/Display.html?Name=Net-MAC-Vendor homepage: https://github.com/karenetheridge/Net-MAC-Vendor repository: https://github.com/karenetheridge/Net-MAC-Vendor.git -version: '1.265' +version: '1.268' x_Dist_Zilla: perl: - version: '5.029009' + version: '5.035008' plugins: - class: Dist::Zilla::Plugin::Prereqs @@ -58,7 +59,7 @@ phase: develop type: recommends name: '@Author::ETHER/pluginbundle version' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::PromptIfStale config: @@ -71,11 +72,11 @@ run_under_travis: 0 skip: [] name: '@Author::ETHER/stale modules, build' - version: '0.055' + version: '0.057' - class: Dist::Zilla::Plugin::FileFinder::ByName name: '@Author::ETHER/Examples' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::Git::GatherDir config: @@ -97,27 +98,27 @@ Dist::Zilla::Plugin::Git::GatherDir: include_untracked: 0 name: '@Author::ETHER/Git::GatherDir' - version: '2.046' + version: '2.048' - class: Dist::Zilla::Plugin::MetaYAML name: '@Author::ETHER/MetaYAML' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::MetaJSON name: '@Author::ETHER/MetaJSON' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::Readme name: '@Author::ETHER/Readme' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::Manifest name: '@Author::ETHER/Manifest' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::License name: '@Author::ETHER/License' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::GenerateFile::FromShareDir config: @@ -133,15 +134,15 @@ repo_root: . version: '0.009' name: '@Author::ETHER/generate CONTRIBUTING' - version: '0.014' + version: '0.015' - class: Dist::Zilla::Plugin::InstallGuide config: Dist::Zilla::Role::ModuleMetadata: - Module::Metadata: '1.000034' + Module::Metadata: '1.000037' version: '0.006' name: '@Author::ETHER/InstallGuide' - version: '1.200013' + version: '1.200014' - class: Dist::Zilla::Plugin::Test::Compile config: @@ -178,7 +179,7 @@ - class: Dist::Zilla::Plugin::MetaTests name: '@Author::ETHER/MetaTests' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::Test::CPAN::Changes config: @@ -187,36 +188,24 @@ name: '@Author::ETHER/Test::CPAN::Changes' version: '0.012' - - class: Dist::Zilla::Plugin::GenerateFile::FromShareDir - config: - Dist::Zilla::Plugin::GenerateFile::FromShareDir: - destination_filename: xt/author/changes_has_content.t - dist: Dist-Zilla-PluginBundle-Author-ETHER - encoding: UTF-8 - location: build - source_filename: changes_has_content.t - Dist::Zilla::Role::RepoFileInjector: - allow_overwrite: 1 - repo_root: . - version: '0.009' - name: '@Author::ETHER/generate xt/author/changes_has_content.t' - version: '0.014' - - class: Dist::Zilla::Plugin::Test::ChangesHasContent name: '@Author::ETHER/Test::ChangesHasContent' version: '0.011' - class: Dist::Zilla::Plugin::Test::MinimumVersion + config: + Dist::Zilla::Plugin::Test::MinimumVersion: + max_target_perl: '5.010' 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.024' - class: Dist::Zilla::Plugin::PodCoverageTests name: '@Author::ETHER/PodCoverageTests' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::Test::Kwalitee config: @@ -232,7 +221,7 @@ - class: Dist::Zilla::Plugin::Test::ReportPrereqs name: '@Author::ETHER/Test::ReportPrereqs' - version: '0.027' + version: '0.028' - class: Dist::Zilla::Plugin::Test::Portability config: @@ -265,87 +254,83 @@ - class: Pod::Weaver::Plugin::EnsurePod5 name: '@Author::ETHER/EnsurePod5' - version: '4.015' + version: '4.018' - class: Pod::Weaver::Plugin::H1Nester name: '@Author::ETHER/H1Nester' - version: '4.015' + version: '4.018' - class: Pod::Weaver::Plugin::SingleEncoding name: '@Author::ETHER/SingleEncoding' - version: '4.015' + version: '4.018' - class: Pod::Weaver::Plugin::Transformer name: '@Author::ETHER/List' - version: '4.015' + version: '4.018' - class: Pod::Weaver::Plugin::Transformer name: '@Author::ETHER/Verbatim' - version: '4.015' + version: '4.018' - class: Pod::Weaver::Section::Region name: '@Author::ETHER/header' - version: '4.015' + version: '4.018' - class: Pod::Weaver::Section::Name name: '@Author::ETHER/Name' - version: '4.015' + version: '4.018' - class: Pod::Weaver::Section::Version name: '@Author::ETHER/Version' - version: '4.015' + version: '4.018' - class: Pod::Weaver::Section::Region name: '@Author::ETHER/prelude' - version: '4.015' + version: '4.018' - class: Pod::Weaver::Section::Generic name: SYNOPSIS - version: '4.015' + version: '4.018' - class: Pod::Weaver::Section::Generic name: DESCRIPTION - version: '4.015' + version: '4.018' - class: Pod::Weaver::Section::Generic name: OVERVIEW - version: '4.015' + version: '4.018' - class: Pod::Weaver::Section::Collect name: ATTRIBUTES - version: '4.015' + version: '4.018' - class: Pod::Weaver::Section::Collect name: METHODS - version: '4.015' + version: '4.018' - class: Pod::Weaver::Section::Collect name: FUNCTIONS - version: '4.015' + version: '4.018' - class: Pod::Weaver::Section::Collect name: TYPES - version: '4.015' + version: '4.018' - class: Pod::Weaver::Section::Leftovers name: '@Author::ETHER/Leftovers' - version: '4.015' + version: '4.018' - class: Pod::Weaver::Section::Region name: '@Author::ETHER/postlude' - version: '4.015' + version: '4.018' - class: Pod::Weaver::Section::GenerateSection name: '@Author::ETHER/generate SUPPORT' - version: '1.06' - - - class: Pod::Weaver::Section::AllowOverride - name: '@Author::ETHER/allow override SUPPORT' - version: '0.05' + version: '4.018' - class: Pod::Weaver::Section::Authors name: '@Author::ETHER/Authors' - version: '4.015' + version: '4.018' - class: Pod::Weaver::Section::AllowOverride name: '@Author::ETHER/allow override AUTHOR' @@ -357,13 +342,13 @@ - class: Pod::Weaver::Section::Legal name: '@Author::ETHER/Legal' - version: '4.015' + version: '4.018' - class: Pod::Weaver::Section::Region name: '@Author::ETHER/footer' - version: '4.015' + version: '4.018' name: '@Author::ETHER/PodWeaver' - version: '4.008' + version: '4.009' - class: Dist::Zilla::Plugin::GithubMeta name: '@Author::ETHER/GithubMeta' @@ -379,7 +364,7 @@ - class: Dist::Zilla::Plugin::MetaNoIndex name: '@Author::ETHER/MetaNoIndex' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::MetaProvides::Package config: @@ -390,7 +375,7 @@ - class: Dist::Zilla::Plugin::FinderCode name: ':InstallModules' - version: '6.012' + version: '6.024' include_underscores: 0 Dist::Zilla::Role::MetaProvider::Provider: $Dist::Zilla::Role::MetaProvider::Provider::VERSION: '2.002004' @@ -398,14 +383,14 @@ inherit_version: '0' meta_noindex: '1' Dist::Zilla::Role::ModuleMetadata: - Module::Metadata: '1.000034' + Module::Metadata: '1.000037' 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.024' - class: Dist::Zilla::Plugin::Keywords config: @@ -423,11 +408,11 @@ - class: Dist::Zilla::Plugin::AutoPrereqs name: '@Author::ETHER/AutoPrereqs' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::Prereqs::AuthorDeps name: '@Author::ETHER/Prereqs::AuthorDeps' - version: '0.006' + version: '0.007' - class: Dist::Zilla::Plugin::MinimumPerl name: '@Author::ETHER/MinimumPerl' @@ -438,18 +423,18 @@ Dist::Zilla::Role::TestRunner: default_jobs: 9 name: '@Author::ETHER/MakeMaker' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::Git::Contributors config: Dist::Zilla::Plugin::Git::Contributors: - git_version: 2.19.1 + git_version: 2.34.1 include_authors: 0 include_releaser: 1 order_by: commits paths: [] name: '@Author::ETHER/Git::Contributors' - version: '0.035' + version: '0.036' - class: Dist::Zilla::Plugin::StaticInstall config: @@ -472,7 +457,7 @@ finder: - ':InstallModules' Dist::Zilla::Role::ModuleMetadata: - Module::Metadata: '1.000034' + Module::Metadata: '1.000037' version: '0.006' name: '@Author::ETHER/CheckSelfDependency' version: '0.011' @@ -510,7 +495,7 @@ class: Dist::Zilla::Plugin::EnsureLatestPerl config: Dist::Zilla::Plugin::EnsureLatestPerl: - Module::CoreList: '5.20190320' + Module::CoreList: '5.20220120' name: '@Author::ETHER/EnsureLatestPerl' version: '0.008' - @@ -524,7 +509,7 @@ run_under_travis: 0 skip: [] name: '@Author::ETHER/stale modules, release' - version: '0.055' + version: '0.057' - class: Dist::Zilla::Plugin::Git::Check config: @@ -535,15 +520,15 @@ allow_dirty_match: [] changelog: Changes Dist::Zilla::Role::Git::Repo: - git_version: 2.19.1 + git_version: 2.34.1 repo_root: . name: '@Author::ETHER/initial check' - version: '2.046' + version: '2.048' - class: Dist::Zilla::Plugin::Git::CheckFor::MergeConflicts config: Dist::Zilla::Role::Git::Repo: - git_version: 2.19.1 + git_version: 2.34.1 repo_root: . name: '@Author::ETHER/Git::CheckFor::MergeConflicts' version: '0.014' @@ -551,7 +536,7 @@ class: Dist::Zilla::Plugin::Git::CheckFor::CorrectBranch config: Dist::Zilla::Role::Git::Repo: - git_version: 2.19.1 + git_version: 2.34.1 repo_root: . name: '@Author::ETHER/Git::CheckFor::CorrectBranch' version: '0.014' @@ -562,11 +547,11 @@ - class: Dist::Zilla::Plugin::CheckPrereqsIndexed name: '@Author::ETHER/CheckPrereqsIndexed' - version: '0.020' + version: '0.021' - class: Dist::Zilla::Plugin::TestRelease name: '@Author::ETHER/TestRelease' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::Git::Check config: @@ -577,18 +562,18 @@ allow_dirty_match: [] changelog: Changes Dist::Zilla::Role::Git::Repo: - git_version: 2.19.1 + git_version: 2.34.1 repo_root: . name: '@Author::ETHER/after tests' - version: '2.046' + version: '2.048' - class: Dist::Zilla::Plugin::CheckIssues name: '@Author::ETHER/CheckIssues' - version: '0.010' + version: '0.011' - class: Dist::Zilla::Plugin::UploadToCPAN name: '@Author::ETHER/UploadToCPAN' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::Run::AfterRelease config: @@ -627,7 +612,7 @@ phase: develop type: recommends name: '@Author::ETHER/@Git::VersionManager/pluginbundle version' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::RewriteVersion::Transitional config: @@ -661,6 +646,7 @@ add_files_in: - . commit_msg: '%N-%v%t%n%n%c' + signoff: 0 Dist::Zilla::Role::Git::DirtyFiles: allow_dirty: - CONTRIBUTING @@ -671,12 +657,12 @@ allow_dirty_match: [] changelog: Changes Dist::Zilla::Role::Git::Repo: - git_version: 2.19.1 + git_version: 2.34.1 repo_root: . Dist::Zilla::Role::Git::StringFormatter: time_zone: local name: '@Author::ETHER/@Git::VersionManager/release snapshot' - version: '2.046' + version: '2.048' - class: Dist::Zilla::Plugin::Git::Tag config: @@ -684,22 +670,21 @@ branch: ~ changelog: Changes signed: 0 - tag: v1.265 + tag: v1.268 tag_format: v%V tag_message: v%v%t Dist::Zilla::Role::Git::Repo: - git_version: 2.19.1 + git_version: 2.34.1 repo_root: . Dist::Zilla::Role::Git::StringFormatter: time_zone: local name: '@Author::ETHER/@Git::VersionManager/Git::Tag' - version: '2.046' + version: '2.048' - class: Dist::Zilla::Plugin::BumpVersionAfterRelease::Transitional config: Dist::Zilla::Plugin::BumpVersionAfterRelease: finders: - - ':ExecFiles' - ':InstallModules' global: 1 munge_makefile_pl: 1 @@ -709,13 +694,14 @@ - class: Dist::Zilla::Plugin::NextRelease name: '@Author::ETHER/@Git::VersionManager/NextRelease' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::Git::Commit config: Dist::Zilla::Plugin::Git::Commit: add_files_in: [] commit_msg: 'increment $VERSION after %v release' + signoff: 0 Dist::Zilla::Role::Git::DirtyFiles: allow_dirty: - Build.PL @@ -725,12 +711,12 @@ - (?^:^lib/.*\.pm$) changelog: Changes Dist::Zilla::Role::Git::Repo: - git_version: 2.19.1 + git_version: 2.34.1 repo_root: . Dist::Zilla::Role::Git::StringFormatter: time_zone: local name: '@Author::ETHER/@Git::VersionManager/post-release commit' - version: '2.046' + version: '2.048' - class: Dist::Zilla::Plugin::Prereqs config: @@ -738,7 +724,7 @@ phase: x_Dist_Zilla type: requires name: '@Author::ETHER/@Git::VersionManager/prereqs for @Git::VersionManager' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::Git::Push config: @@ -747,17 +733,17 @@ - origin remotes_must_exist: 1 Dist::Zilla::Role::Git::Repo: - git_version: 2.19.1 + git_version: 2.34.1 repo_root: . name: '@Author::ETHER/Git::Push' - version: '2.046' + version: '2.048' - class: Dist::Zilla::Plugin::GitHub::Update config: Dist::Zilla::Plugin::GitHub::Update: metacpan: 1 name: '@Author::ETHER/GitHub::Update' - version: '0.47' + version: '0.48' - class: Dist::Zilla::Plugin::Run::AfterRelease config: @@ -783,7 +769,7 @@ - class: Dist::Zilla::Plugin::ConfirmRelease name: '@Author::ETHER/ConfirmRelease' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::Prereqs config: @@ -791,7 +777,7 @@ phase: x_Dist_Zilla type: requires name: '@Author::ETHER/prereqs for @Author::ETHER' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::Prereqs config: @@ -799,15 +785,15 @@ phase: runtime type: recommends name: RuntimeRecommends - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::DynamicPrereqs config: Dist::Zilla::Role::ModuleMetadata: - Module::Metadata: '1.000034' + Module::Metadata: '1.000037' version: '0.006' name: DynamicPrereqs - version: '0.035' + version: '0.039' - class: Dist::Zilla::Plugin::Prereqs config: @@ -815,47 +801,47 @@ phase: runtime type: suggests name: RuntimeSuggests - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::FinderCode name: ':InstallModules' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::FinderCode name: ':IncModules' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::FinderCode name: ':TestFiles' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::FinderCode name: ':ExtraTestFiles' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::FinderCode name: ':ExecFiles' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::FinderCode name: ':PerlExecFiles' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::FinderCode name: ':ShareFiles' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::FinderCode name: ':MainModule' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::FinderCode name: ':AllFiles' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::FinderCode name: ':NoFiles' - version: '6.012' + version: '6.024' - class: Dist::Zilla::Plugin::VerifyPhases name: '@Author::ETHER/PHASE VERIFICATION' @@ -864,15 +850,17 @@ class: Dist::Zilla::Dist::Builder config: is_trial: '0' - version: '6.012' + version: '6.024' x_authority: cpan:ETHER x_contributors: - 'brian d foy ' - 'Karen Etheridge ' - 'Frank Maas ' - 'openstrike ' + - 'Christopher Layne ' - 'Dean Hamstead ' -x_generated_by_perl: v5.29.9 +x_generated_by_perl: v5.35.8 x_serialization_backend: 'YAML::Tiny version 1.73' +x_spdx_expression: Artistic-2.0 x_static_install: 0 x_use_unsafe_inc: 0 diff -Nru libnet-mac-vendor-perl-1.265/README libnet-mac-vendor-perl-1.268/README --- libnet-mac-vendor-perl-1.265/README 2019-04-12 23:55:32.000000000 +0000 +++ libnet-mac-vendor-perl-1.268/README 2022-02-07 05:12:05.000000000 +0000 @@ -1,5 +1,5 @@ This archive contains the distribution Net-MAC-Vendor, -version 1.265: +version 1.268: Look up the vendor for a MAC @@ -10,4 +10,4 @@ The Artistic License 2.0 (GPL Compatible) -This README file was generated by Dist::Zilla::Plugin::Readme v6.012. +This README file was generated by Dist::Zilla::Plugin::Readme v6.024. diff -Nru libnet-mac-vendor-perl-1.265/t/00-report-prereqs.dd libnet-mac-vendor-perl-1.268/t/00-report-prereqs.dd --- libnet-mac-vendor-perl-1.265/t/00-report-prereqs.dd 2019-04-12 23:55:32.000000000 +0000 +++ libnet-mac-vendor-perl-1.268/t/00-report-prereqs.dd 2022-02-07 05:12:05.000000000 +0000 @@ -8,7 +8,7 @@ }, 'develop' => { 'recommends' => { - 'Dist::Zilla::PluginBundle::Author::ETHER' => '0.148', + 'Dist::Zilla::PluginBundle::Author::ETHER' => '0.162', 'Dist::Zilla::PluginBundle::Git::VersionManager' => '0.007' }, 'requires' => { @@ -40,6 +40,7 @@ 'Carp' => '0', 'Exporter' => '0', 'File::Temp' => '0', + 'IO::Socket::SSL' => '0', 'Mojo::URL' => '0', 'Mojo::UserAgent' => '0', 'Net::SSLeay' => '0', @@ -110,13 +111,13 @@ 'Dist::Zilla::Plugin::NextRelease' => '5.033', 'Dist::Zilla::Plugin::PodCoverageTests' => '5.040', 'Dist::Zilla::Plugin::PodSyntaxTests' => '5.040', - 'Dist::Zilla::Plugin::PodWeaver' => '4.005', + 'Dist::Zilla::Plugin::PodWeaver' => '4.008', 'Dist::Zilla::Plugin::Prereqs' => '0', 'Dist::Zilla::Plugin::Prereqs::AuthorDeps' => '0.006', 'Dist::Zilla::Plugin::PromptIfStale' => '0', 'Dist::Zilla::Plugin::Readme' => '0', 'Dist::Zilla::Plugin::ReadmeAnyFromPod' => '0.142180', - 'Dist::Zilla::Plugin::RewriteVersion::Transitional' => '0.004', + 'Dist::Zilla::Plugin::RewriteVersion::Transitional' => '0.006', 'Dist::Zilla::Plugin::Run::AfterBuild' => '0.041', 'Dist::Zilla::Plugin::Run::AfterRelease' => '0.038', 'Dist::Zilla::Plugin::RunExtraTests' => '0.024', @@ -127,7 +128,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::Portability' => '2.000007', 'Dist::Zilla::Plugin::Test::ReportPrereqs' => '0.022', 'Dist::Zilla::Plugin::TestRelease' => '0', diff -Nru libnet-mac-vendor-perl-1.265/t/00-report-prereqs.t libnet-mac-vendor-perl-1.268/t/00-report-prereqs.t --- libnet-mac-vendor-perl-1.265/t/00-report-prereqs.t 2019-04-12 23:55:32.000000000 +0000 +++ libnet-mac-vendor-perl-1.268/t/00-report-prereqs.t 2022-02-07 05:12:05.000000000 +0000 @@ -3,7 +3,7 @@ use strict; use warnings; -# This test was generated by Dist::Zilla::Plugin::Test::ReportPrereqs 0.027 +# This test was generated by Dist::Zilla::Plugin::Test::ReportPrereqs 0.028 use Test::More tests => 1; @@ -195,6 +195,6 @@ ); } -pass; +pass('Reported prereqs'); # vim: ts=4 sts=4 sw=4 et: diff -Nru libnet-mac-vendor-perl-1.265/t/fetch_oui_from_custom.t libnet-mac-vendor-perl-1.268/t/fetch_oui_from_custom.t --- libnet-mac-vendor-perl-1.265/t/fetch_oui_from_custom.t 2019-04-12 23:55:32.000000000 +0000 +++ libnet-mac-vendor-perl-1.268/t/fetch_oui_from_custom.t 2022-02-07 05:12:05.000000000 +0000 @@ -20,6 +20,8 @@ my $array = Net::MAC::Vendor::fetch_oui_from_ieee( '14:10:9F' ); + skip "Couldn't fetch data, which happens, so no big whoop", 2 + unless defined $array; isa_ok( $array, ref [], "Got back array reference" ); my $html = join "\n", @$array; like( $html, qr/Apple, Inc\./, "Fetched Apple's OUI entry" ); diff -Nru libnet-mac-vendor-perl-1.265/xt/author/changes_has_content.t libnet-mac-vendor-perl-1.268/xt/author/changes_has_content.t --- libnet-mac-vendor-perl-1.265/xt/author/changes_has_content.t 2019-04-12 23:55:32.000000000 +0000 +++ libnet-mac-vendor-perl-1.268/xt/author/changes_has_content.t 1970-01-01 00:00:00.000000000 +0000 @@ -1,15 +0,0 @@ -use strict; -use warnings; - -use Test::More; -plan skip_all => 'xt/release/changes_has_content.t is missing' if not -e 'xt/release/changes_has_content.t'; - -# skip for master branch, only for travis -if (($ENV{TRAVIS_PULL_REQUEST} || '') eq 'false') { - chomp(my $branch_name = ($ENV{TRAVIS_BRANCH} || `git rev-parse --abbrev-ref HEAD`)); - $TODO = 'Changes need not have content for this release yet if this is only the master branch' - if ($branch_name || '') eq 'master'; -} - -do './xt/release/changes_has_content.t'; -die $@ if $@; diff -Nru libnet-mac-vendor-perl-1.265/xt/author/distmeta.t libnet-mac-vendor-perl-1.268/xt/author/distmeta.t --- libnet-mac-vendor-perl-1.265/xt/author/distmeta.t 1970-01-01 00:00:00.000000000 +0000 +++ libnet-mac-vendor-perl-1.268/xt/author/distmeta.t 2022-02-07 05:12:05.000000000 +0000 @@ -0,0 +1,6 @@ +#!perl +# This file was automatically generated by Dist::Zilla::Plugin::MetaTests. + +use Test::CPAN::Meta; + +meta_yaml_ok(); diff -Nru libnet-mac-vendor-perl-1.265/xt/author/eol.t libnet-mac-vendor-perl-1.268/xt/author/eol.t --- libnet-mac-vendor-perl-1.265/xt/author/eol.t 2019-04-12 23:55:32.000000000 +0000 +++ libnet-mac-vendor-perl-1.268/xt/author/eol.t 2022-02-07 05:12:05.000000000 +0000 @@ -21,8 +21,8 @@ 't/parse_oui.t', 't/run.t', 'xt/author/00-compile.t', - 'xt/author/changes_has_content.t', 'xt/author/clean-namespaces.t', + 'xt/author/distmeta.t', 'xt/author/eol.t', 'xt/author/kwalitee.t', 'xt/author/minimum-version.t', @@ -31,8 +31,7 @@ 'xt/author/pod-syntax.t', 'xt/author/portability.t', 'xt/release/changes_has_content.t', - 'xt/release/cpan-changes.t', - 'xt/release/distmeta.t' + 'xt/release/cpan-changes.t' ); eol_unix_ok($_, { trailing_whitespace => 1 }) foreach @files; diff -Nru libnet-mac-vendor-perl-1.265/xt/author/minimum-version.t libnet-mac-vendor-perl-1.268/xt/author/minimum-version.t --- libnet-mac-vendor-perl-1.265/xt/author/minimum-version.t 2019-04-12 23:55:32.000000000 +0000 +++ libnet-mac-vendor-perl-1.268/xt/author/minimum-version.t 2022-02-07 05:12:05.000000000 +0000 @@ -1,6 +1,6 @@ -#!perl +use strict; +use warnings; use Test::More; - use Test::MinimumVersion; all_minimum_version_ok( qq{5.010} ); diff -Nru libnet-mac-vendor-perl-1.265/xt/release/changes_has_content.t libnet-mac-vendor-perl-1.268/xt/release/changes_has_content.t --- libnet-mac-vendor-perl-1.265/xt/release/changes_has_content.t 2019-04-12 23:55:32.000000000 +0000 +++ libnet-mac-vendor-perl-1.268/xt/release/changes_has_content.t 2022-02-07 05:12:05.000000000 +0000 @@ -2,7 +2,7 @@ note 'Checking Changes'; my $changes_file = 'Changes'; -my $newver = '1.265'; +my $newver = '1.268'; my $trial_token = '-TRIAL'; my $encoding = 'UTF-8'; diff -Nru libnet-mac-vendor-perl-1.265/xt/release/distmeta.t libnet-mac-vendor-perl-1.268/xt/release/distmeta.t --- libnet-mac-vendor-perl-1.265/xt/release/distmeta.t 2019-04-12 23:55:32.000000000 +0000 +++ libnet-mac-vendor-perl-1.268/xt/release/distmeta.t 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -#!perl -# This file was automatically generated by Dist::Zilla::Plugin::MetaTests. - -use Test::CPAN::Meta; - -meta_yaml_ok();