diff -Nru libnet-http-perl-6.18/Changes libnet-http-perl-6.19/Changes --- libnet-http-perl-6.18/Changes 2018-05-09 14:55:47.000000000 +0000 +++ libnet-http-perl-6.19/Changes 2019-05-16 19:17:02.000000000 +0000 @@ -1,7 +1,11 @@ Release history for Net-HTTP +6.19 2019-05-16 19:16:59Z + - partially skip live-https.t if there's no keep-alive connection (GH#58) (Slaven Rezić) + - set "x_static_install" : 1 in META files + 6.18 2018-05-09 14:55:43Z - - Move test that relies on http://httpbin.org to author tests + - Move httpbin.org tests to author testing (GH#56) (Olaf Alders) 6.17 2017-09-01 15:30:20Z - Fix test which relied on cpan.org speaking plain HTTP GH#54 (Chase diff -Nru libnet-http-perl-6.18/cpanfile libnet-http-perl-6.19/cpanfile --- libnet-http-perl-6.18/cpanfile 2018-05-09 14:55:47.000000000 +0000 +++ libnet-http-perl-6.19/cpanfile 2019-05-16 19:17:02.000000000 +0000 @@ -37,4 +37,5 @@ on 'develop' => sub { requires "Test::More" => "0"; + requires "Test::Pod" => "1.41"; }; diff -Nru libnet-http-perl-6.18/debian/changelog libnet-http-perl-6.19/debian/changelog --- libnet-http-perl-6.18/debian/changelog 2018-05-11 13:17:06.000000000 +0000 +++ libnet-http-perl-6.19/debian/changelog 2019-07-18 21:09:22.000000000 +0000 @@ -1,3 +1,14 @@ +libnet-http-perl (6.19-1) unstable; urgency=medium + + * Team upload. + * Import upstream version 6.19. + * Bump debhelper compatibility version to 12. + * Declare compatibility with Debian Policy 4.4.0. + * Remove dual-dependencies on modules provided by perl. + * Make dependencies satisfied by oldoldstable unversioned. + + -- intrigeri Thu, 18 Jul 2019 21:09:22 +0000 + libnet-http-perl (6.18-1) unstable; urgency=medium * Team upload. diff -Nru libnet-http-perl-6.18/debian/compat libnet-http-perl-6.19/debian/compat --- libnet-http-perl-6.18/debian/compat 2018-05-11 13:17:06.000000000 +0000 +++ libnet-http-perl-6.19/debian/compat 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -10 diff -Nru libnet-http-perl-6.18/debian/control libnet-http-perl-6.19/debian/control --- libnet-http-perl-6.18/debian/control 2018-05-11 13:17:06.000000000 +0000 +++ libnet-http-perl-6.19/debian/control 2019-07-18 21:09:22.000000000 +0000 @@ -4,12 +4,12 @@ Section: perl Testsuite: autopkgtest-pkg-perl Priority: optional -Build-Depends: debhelper (>= 10), - perl (>= 5.17.1) | libcpan-meta-perl, - perl (>= 5.19.8) | libio-socket-ip-perl (>= 0.26), +Build-Depends: debhelper-compat (= 12), + libcpan-meta-perl, + libio-socket-ip-perl, liburi-perl Build-Depends-Indep: perl -Standards-Version: 4.1.4 +Standards-Version: 4.4.0 Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libnet-http-perl Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libnet-http-perl.git Homepage: https://metacpan.org/release/Net-HTTP @@ -18,7 +18,7 @@ Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, - perl (>= 5.19.8) | libio-socket-ip-perl (>= 0.26), + libio-socket-ip-perl, liburi-perl Recommends: libio-socket-ssl-perl (>= 2.012) Description: module providing low-level HTTP connection client diff -Nru libnet-http-perl-6.18/dist.ini libnet-http-perl-6.19/dist.ini --- libnet-http-perl-6.18/dist.ini 2018-05-09 14:55:47.000000000 +0000 +++ libnet-http-perl-6.19/dist.ini 2019-05-16 19:17:02.000000000 +0000 @@ -23,6 +23,7 @@ -remove = Test::PodSpelling -remove = Test::Synopsis -remove = Test::TidyAll +-remove = StaticInstall [AutoPrereqs] skip = Net::SSL @@ -37,3 +38,6 @@ module = IO::Socket::IP module = IO::Socket::SSL module = Symbol + +[StaticInstall] +mode = on diff -Nru libnet-http-perl-6.18/INSTALL libnet-http-perl-6.19/INSTALL --- libnet-http-perl-6.18/INSTALL 2018-05-09 14:55:47.000000000 +0000 +++ libnet-http-perl-6.19/INSTALL 2019-05-16 19:17:02.000000000 +0000 @@ -22,7 +22,7 @@ ## Manual installation As a last resort, you can manually install it. Download the tarball, untar it, -then build it: +install configure prerequisites (see below), then build it: % perl Makefile.PL % make && make test @@ -37,16 +37,36 @@ directory to install modules to. For details, see the local::lib documentation: https://metacpan.org/pod/local::lib - The prerequisites of this distribution will also have to be installed manually. The prerequisites are listed in one of the files: `MYMETA.yml` or `MYMETA.json` generated by running the manual build process described above. +## Configure Prerequisites + +This distribution requires other modules to be installed before this +distribution's installer can be run. They can be found under the +"configure_requires" key of META.yml or the +"{prereqs}{configure}{requires}" key of META.json. + +## Other Prerequisites + +This distribution may require additional modules to be installed after running +Makefile.PL. +Look for prerequisites in the following phases: + +* to run make, PHASE = build +* to use the module code itself, PHASE = runtime +* to run tests, PHASE = test + +They can all be found in the "PHASE_requires" key of MYMETA.yml or the +"{prereqs}{PHASE}{requires}" key of MYMETA.json. + ## Documentation Net-HTTP documentation is available as POD. You can run `perldoc` from a shell to read the documentation: % perldoc Net::HTTP + For more information on installing Perl modules via CPAN, please see: https://www.cpan.org/modules/INSTALL.html diff -Nru libnet-http-perl-6.18/lib/Net/HTTP/Methods.pm libnet-http-perl-6.19/lib/Net/HTTP/Methods.pm --- libnet-http-perl-6.18/lib/Net/HTTP/Methods.pm 2018-05-09 14:55:47.000000000 +0000 +++ libnet-http-perl-6.19/lib/Net/HTTP/Methods.pm 2019-05-16 19:17:02.000000000 +0000 @@ -1,5 +1,5 @@ package Net::HTTP::Methods; -our $VERSION = '6.18'; +our $VERSION = '6.19'; use strict; use warnings; use URI; @@ -649,7 +649,7 @@ =head1 VERSION -version 6.18 +version 6.19 =head1 AUTHOR diff -Nru libnet-http-perl-6.18/lib/Net/HTTP/NB.pm libnet-http-perl-6.19/lib/Net/HTTP/NB.pm --- libnet-http-perl-6.18/lib/Net/HTTP/NB.pm 2018-05-09 14:55:47.000000000 +0000 +++ libnet-http-perl-6.19/lib/Net/HTTP/NB.pm 2019-05-16 19:17:02.000000000 +0000 @@ -1,5 +1,5 @@ package Net::HTTP::NB; -our $VERSION = '6.18'; +our $VERSION = '6.19'; use strict; use warnings; @@ -60,7 +60,7 @@ =head1 VERSION -version 6.18 +version 6.19 =head1 SYNOPSIS diff -Nru libnet-http-perl-6.18/lib/Net/HTTP.pm libnet-http-perl-6.19/lib/Net/HTTP.pm --- libnet-http-perl-6.18/lib/Net/HTTP.pm 2018-05-09 14:55:47.000000000 +0000 +++ libnet-http-perl-6.19/lib/Net/HTTP.pm 2019-05-16 19:17:02.000000000 +0000 @@ -1,5 +1,5 @@ package Net::HTTP; -our $VERSION = '6.18'; +our $VERSION = '6.19'; use strict; use warnings; @@ -50,7 +50,7 @@ =head1 VERSION -version 6.18 +version 6.19 =head1 SYNOPSIS diff -Nru libnet-http-perl-6.18/lib/Net/HTTPS.pm libnet-http-perl-6.19/lib/Net/HTTPS.pm --- libnet-http-perl-6.18/lib/Net/HTTPS.pm 2018-05-09 14:55:47.000000000 +0000 +++ libnet-http-perl-6.19/lib/Net/HTTPS.pm 2019-05-16 19:17:02.000000000 +0000 @@ -1,5 +1,5 @@ package Net::HTTPS; -our $VERSION = '6.18'; +our $VERSION = '6.19'; use strict; use warnings; @@ -90,7 +90,7 @@ =head1 VERSION -version 6.18 +version 6.19 =head1 DESCRIPTION diff -Nru libnet-http-perl-6.18/Makefile.PL libnet-http-perl-6.19/Makefile.PL --- libnet-http-perl-6.18/Makefile.PL 2018-05-09 14:55:47.000000000 +0000 +++ libnet-http-perl-6.19/Makefile.PL 2019-05-16 19:17:02.000000000 +0000 @@ -35,7 +35,7 @@ "Socket" => 0, "Test::More" => 0 }, - "VERSION" => "6.18", + "VERSION" => "6.19", "test" => { "TESTS" => "t/*.t" } diff -Nru libnet-http-perl-6.18/MANIFEST libnet-http-perl-6.19/MANIFEST --- libnet-http-perl-6.18/MANIFEST 2018-05-09 14:55:47.000000000 +0000 +++ libnet-http-perl-6.19/MANIFEST 2019-05-16 19:17:02.000000000 +0000 @@ -23,4 +23,5 @@ t/live-https.t t/live.t tidyall.ini +xt/author/pod-syntax.t xt/rt-112313.t diff -Nru libnet-http-perl-6.18/META.json libnet-http-perl-6.19/META.json --- libnet-http-perl-6.18/META.json 2018-05-09 14:55:47.000000000 +0000 +++ libnet-http-perl-6.19/META.json 2019-05-16 19:17:02.000000000 +0000 @@ -31,7 +31,8 @@ }, "develop" : { "requires" : { - "Test::More" : "0" + "Test::More" : "0", + "Test::Pod" : "1.41" } }, "runtime" : { @@ -83,7 +84,7 @@ "x_IRC" : "irc://irc.perl.org/#lwp", "x_MailingList" : "mailto:libwww@perl.org" }, - "version" : "6.18", + "version" : "6.19", "x_Dist_Zilla" : { "perl" : { "version" : "5.026001" @@ -140,7 +141,7 @@ { "class" : "Dist::Zilla::Plugin::MAXMIND::TidyAll", "name" : "@Author::OALDERS/MAXMIND::TidyAll", - "version" : "0.13" + "version" : "0.83" }, { "class" : "Dist::Zilla::Plugin::MakeMaker", @@ -199,8 +200,14 @@ }, { "class" : "Dist::Zilla::Plugin::InstallGuide", + "config" : { + "Dist::Zilla::Role::ModuleMetadata" : { + "Module::Metadata" : "1.000033", + "version" : "0.004" + } + }, "name" : "@Author::OALDERS/InstallGuide", - "version" : "1.200009" + "version" : "1.200013" }, { "class" : "Dist::Zilla::Plugin::ExecDir", @@ -208,6 +215,11 @@ "version" : "6.012" }, { + "class" : "Dist::Zilla::Plugin::PodSyntaxTests", + "name" : "@Author::OALDERS/PodSyntaxTests", + "version" : "6.012" + }, + { "class" : "Dist::Zilla::Plugin::TestRelease", "name" : "@Author::OALDERS/TestRelease", "version" : "6.012" @@ -335,7 +347,7 @@ { "class" : "Dist::Zilla::Plugin::GithubMeta", "name" : "@Author::OALDERS/GithubMeta", - "version" : "0.54" + "version" : "0.58" }, { "class" : "Dist::Zilla::Plugin::Git::GatherDir", @@ -361,7 +373,7 @@ } }, "name" : "@Author::OALDERS/Git::GatherDir", - "version" : "2.043" + "version" : "2.046" }, { "class" : "Dist::Zilla::Plugin::CopyFilesFromRelease", @@ -397,18 +409,18 @@ "changelog" : "Changes" }, "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.16.3", + "git_version" : "2.21.0", "repo_root" : "." } }, "name" : "@Author::OALDERS/Git::Check", - "version" : "2.043" + "version" : "2.046" }, { "class" : "Dist::Zilla::Plugin::Git::Contributors", "config" : { "Dist::Zilla::Plugin::Git::Contributors" : { - "git_version" : "2.16.3", + "git_version" : "2.21.0", "include_authors" : 0, "include_releaser" : 1, "order_by" : "name", @@ -416,7 +428,7 @@ } }, "name" : "@Author::OALDERS/Git::Contributors", - "version" : "0.034" + "version" : "0.035" }, { "class" : "Dist::Zilla::Plugin::ReadmeAnyFromPod", @@ -439,6 +451,11 @@ "version" : "0.007" }, { + "class" : "Dist::Zilla::Plugin::CheckIssues", + "name" : "@Author::OALDERS/CheckIssues", + "version" : "0.010" + }, + { "class" : "Dist::Zilla::Plugin::ConfirmRelease", "name" : "@Author::OALDERS/ConfirmRelease", "version" : "6.012" @@ -460,21 +477,7 @@ "global" : 0, "skip_version_provider" : 0 }, - "Dist::Zilla::Plugin::RewriteVersion::Transitional" : { - "_fallback_version_provider_args" : {}, - "fallback_version_provider" : "Git::NextVersion" - }, - "Git::NextVersion" : { - "Dist::Zilla::Plugin::Git::NextVersion" : { - "first_version" : "0.001", - "version_by_branch" : 0, - "version_regexp" : "(?^:^v(.+)$)" - }, - "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.16.3", - "repo_root" : "." - } - } + "Dist::Zilla::Plugin::RewriteVersion::Transitional" : {} }, "name" : "@Author::OALDERS/@Git::VersionManager/RewriteVersion::Transitional", "version" : "0.009" @@ -502,7 +505,7 @@ "config" : { "Dist::Zilla::Plugin::Git::Commit" : { "add_files_in" : [], - "commit_msg" : "v%v%n%n%c" + "commit_msg" : "v%V%n%n%c" }, "Dist::Zilla::Role::Git::DirtyFiles" : { "allow_dirty" : [ @@ -519,7 +522,7 @@ "changelog" : "Changes" }, "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.16.3", + "git_version" : "2.21.0", "repo_root" : "." }, "Dist::Zilla::Role::Git::StringFormatter" : { @@ -527,7 +530,7 @@ } }, "name" : "@Author::OALDERS/@Git::VersionManager/release snapshot", - "version" : "2.043" + "version" : "2.046" }, { "class" : "Dist::Zilla::Plugin::Git::Tag", @@ -536,12 +539,12 @@ "branch" : null, "changelog" : "Changes", "signed" : 0, - "tag" : "v6.18", - "tag_format" : "v%v", - "tag_message" : "v%v" + "tag" : "v6.19", + "tag_format" : "v%V", + "tag_message" : "v%V" }, "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.16.3", + "git_version" : "2.21.0", "repo_root" : "." }, "Dist::Zilla::Role::Git::StringFormatter" : { @@ -549,7 +552,7 @@ } }, "name" : "@Author::OALDERS/@Git::VersionManager/Git::Tag", - "version" : "2.043" + "version" : "2.046" }, { "class" : "Dist::Zilla::Plugin::BumpVersionAfterRelease::Transitional", @@ -591,7 +594,7 @@ "changelog" : "Changes" }, "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.16.3", + "git_version" : "2.21.0", "repo_root" : "." }, "Dist::Zilla::Role::Git::StringFormatter" : { @@ -599,7 +602,7 @@ } }, "name" : "@Author::OALDERS/@Git::VersionManager/post-release commit", - "version" : "2.043" + "version" : "2.046" }, { "class" : "Dist::Zilla::Plugin::Git::Push", @@ -611,12 +614,12 @@ "remotes_must_exist" : 1 }, "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.16.3", + "git_version" : "2.21.0", "repo_root" : "." } }, "name" : "@Author::OALDERS/Git::Push", - "version" : "2.043" + "version" : "2.046" }, { "class" : "Dist::Zilla::Plugin::AutoPrereqs", @@ -654,6 +657,17 @@ "version" : "0.006003" }, { + "class" : "Dist::Zilla::Plugin::StaticInstall", + "config" : { + "Dist::Zilla::Plugin::StaticInstall" : { + "dry_run" : 0, + "mode" : "on" + } + }, + "name" : "StaticInstall", + "version" : "0.012" + }, + { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":InstallModules", "version" : "6.012" @@ -784,6 +798,7 @@ "Zefram " ], "x_generated_by_perl" : "v5.26.1", - "x_serialization_backend" : "Cpanel::JSON::XS version 3.0239" + "x_serialization_backend" : "Cpanel::JSON::XS version 4.04", + "x_static_install" : 1 } diff -Nru libnet-http-perl-6.18/META.yml libnet-http-perl-6.19/META.yml --- libnet-http-perl-6.18/META.yml 2018-05-09 14:55:47.000000000 +0000 +++ libnet-http-perl-6.19/META.yml 2019-05-16 19:17:02.000000000 +0000 @@ -40,7 +40,7 @@ bugtracker: https://github.com/libwww-perl/Net-HTTP/issues homepage: https://github.com/libwww-perl/Net-HTTP repository: https://github.com/libwww-perl/Net-HTTP.git -version: '6.18' +version: '6.19' x_Dist_Zilla: perl: version: '5.026001' @@ -85,7 +85,7 @@ - class: Dist::Zilla::Plugin::MAXMIND::TidyAll name: '@Author::OALDERS/MAXMIND::TidyAll' - version: '0.13' + version: '0.83' - class: Dist::Zilla::Plugin::MakeMaker config: @@ -131,13 +131,21 @@ version: '6.012' - class: Dist::Zilla::Plugin::InstallGuide + config: + Dist::Zilla::Role::ModuleMetadata: + Module::Metadata: '1.000033' + version: '0.004' name: '@Author::OALDERS/InstallGuide' - version: '1.200009' + version: '1.200013' - class: Dist::Zilla::Plugin::ExecDir name: '@Author::OALDERS/ExecDir' version: '6.012' - + class: Dist::Zilla::Plugin::PodSyntaxTests + name: '@Author::OALDERS/PodSyntaxTests' + version: '6.012' + - class: Dist::Zilla::Plugin::TestRelease name: '@Author::OALDERS/TestRelease' version: '6.012' @@ -237,7 +245,7 @@ - class: Dist::Zilla::Plugin::GithubMeta name: '@Author::OALDERS/GithubMeta' - version: '0.54' + version: '0.58' - class: Dist::Zilla::Plugin::Git::GatherDir config: @@ -258,7 +266,7 @@ Dist::Zilla::Plugin::Git::GatherDir: include_untracked: 0 name: '@Author::OALDERS/Git::GatherDir' - version: '2.043' + version: '2.046' - class: Dist::Zilla::Plugin::CopyFilesFromRelease config: @@ -286,21 +294,21 @@ allow_dirty_match: [] changelog: Changes Dist::Zilla::Role::Git::Repo: - git_version: 2.16.3 + git_version: 2.21.0 repo_root: . name: '@Author::OALDERS/Git::Check' - version: '2.043' + version: '2.046' - class: Dist::Zilla::Plugin::Git::Contributors config: Dist::Zilla::Plugin::Git::Contributors: - git_version: 2.16.3 + git_version: 2.21.0 include_authors: 0 include_releaser: 1 order_by: name paths: [] name: '@Author::OALDERS/Git::Contributors' - version: '0.034' + version: '0.035' - class: Dist::Zilla::Plugin::ReadmeAnyFromPod config: @@ -317,6 +325,10 @@ name: '@Author::OALDERS/TravisCI::StatusBadge' version: '0.007' - + class: Dist::Zilla::Plugin::CheckIssues + name: '@Author::OALDERS/CheckIssues' + version: '0.010' + - class: Dist::Zilla::Plugin::ConfirmRelease name: '@Author::OALDERS/ConfirmRelease' version: '6.012' @@ -334,17 +346,7 @@ - ':InstallModules' global: 0 skip_version_provider: 0 - Dist::Zilla::Plugin::RewriteVersion::Transitional: - _fallback_version_provider_args: {} - fallback_version_provider: Git::NextVersion - Git::NextVersion: - Dist::Zilla::Plugin::Git::NextVersion: - first_version: '0.001' - version_by_branch: 0 - version_regexp: (?^:^v(.+)$) - Dist::Zilla::Role::Git::Repo: - git_version: 2.16.3 - repo_root: . + Dist::Zilla::Plugin::RewriteVersion::Transitional: {} name: '@Author::OALDERS/@Git::VersionManager/RewriteVersion::Transitional' version: '0.009' - @@ -365,7 +367,7 @@ config: Dist::Zilla::Plugin::Git::Commit: add_files_in: [] - commit_msg: v%v%n%n%c + commit_msg: v%V%n%n%c Dist::Zilla::Role::Git::DirtyFiles: allow_dirty: - Changes @@ -379,12 +381,12 @@ allow_dirty_match: [] changelog: Changes Dist::Zilla::Role::Git::Repo: - git_version: 2.16.3 + git_version: 2.21.0 repo_root: . Dist::Zilla::Role::Git::StringFormatter: time_zone: local name: '@Author::OALDERS/@Git::VersionManager/release snapshot' - version: '2.043' + version: '2.046' - class: Dist::Zilla::Plugin::Git::Tag config: @@ -392,16 +394,16 @@ branch: ~ changelog: Changes signed: 0 - tag: v6.18 - tag_format: v%v - tag_message: v%v + tag: v6.19 + tag_format: v%V + tag_message: v%V Dist::Zilla::Role::Git::Repo: - git_version: 2.16.3 + git_version: 2.21.0 repo_root: . Dist::Zilla::Role::Git::StringFormatter: time_zone: local name: '@Author::OALDERS/@Git::VersionManager/Git::Tag' - version: '2.043' + version: '2.046' - class: Dist::Zilla::Plugin::BumpVersionAfterRelease::Transitional config: @@ -433,12 +435,12 @@ - (?^:^lib/.*\.pm$) changelog: Changes Dist::Zilla::Role::Git::Repo: - git_version: 2.16.3 + git_version: 2.21.0 repo_root: . Dist::Zilla::Role::Git::StringFormatter: time_zone: local name: '@Author::OALDERS/@Git::VersionManager/post-release commit' - version: '2.043' + version: '2.046' - class: Dist::Zilla::Plugin::Git::Push config: @@ -447,10 +449,10 @@ - origin remotes_must_exist: 1 Dist::Zilla::Role::Git::Repo: - git_version: 2.16.3 + git_version: 2.21.0 repo_root: . name: '@Author::OALDERS/Git::Push' - version: '2.043' + version: '2.046' - class: Dist::Zilla::Plugin::AutoPrereqs name: AutoPrereqs @@ -479,6 +481,14 @@ name: Prereqs::Soften version: '0.006003' - + class: Dist::Zilla::Plugin::StaticInstall + config: + Dist::Zilla::Plugin::StaticInstall: + dry_run: 0 + mode: on + name: StaticInstall + version: '0.012' + - class: Dist::Zilla::Plugin::FinderCode name: ':InstallModules' version: '6.012' @@ -595,3 +605,4 @@ - 'Zefram ' x_generated_by_perl: v5.26.1 x_serialization_backend: 'YAML::Tiny version 1.70' +x_static_install: 1 diff -Nru libnet-http-perl-6.18/README.md libnet-http-perl-6.19/README.md --- libnet-http-perl-6.18/README.md 2018-05-09 14:55:47.000000000 +0000 +++ libnet-http-perl-6.19/README.md 2019-05-16 19:17:02.000000000 +0000 @@ -4,7 +4,7 @@ # VERSION -version 6.18 +version 6.19 # SYNOPSIS diff -Nru libnet-http-perl-6.18/t/00-report-prereqs.dd libnet-http-perl-6.19/t/00-report-prereqs.dd --- libnet-http-perl-6.18/t/00-report-prereqs.dd 2018-05-09 14:55:47.000000000 +0000 +++ libnet-http-perl-6.19/t/00-report-prereqs.dd 2019-05-16 19:17:02.000000000 +0000 @@ -9,7 +9,8 @@ }, 'develop' => { 'requires' => { - 'Test::More' => '0' + 'Test::More' => '0', + 'Test::Pod' => '1.41' } }, 'runtime' => { diff -Nru libnet-http-perl-6.18/t/live-https.t libnet-http-perl-6.19/t/live-https.t --- libnet-http-perl-6.18/t/live-https.t 2018-05-09 14:55:47.000000000 +0000 +++ libnet-http-perl-6.19/t/live-https.t 2019-05-16 19:17:02.000000000 +0000 @@ -39,7 +39,11 @@ MaxLineLength => 512 ) || die "$@"; -for ( 1 .. 2 ) { +my $connection_is_kept_alive; +SKIP: for my $pass ( 1 .. 2 ) { + skip "No keep-alive connection, cannot do another request", 3 + if $pass == 2 && !$connection_is_kept_alive; + $s->write_request( GET => "/", 'User-Agent' => 'Mozilla/5.0', @@ -52,6 +56,9 @@ print "# $code $mess\n"; for ( sort keys %h ) { print "# $_: $h{$_}\n"; + if (/^Connection$/i && $h{$_} =~ /^keep-alive$/) { + $connection_is_kept_alive = 1; + } } print "#\n"; diff -Nru libnet-http-perl-6.18/tidyall.ini libnet-http-perl-6.19/tidyall.ini --- libnet-http-perl-6.18/tidyall.ini 2018-05-09 14:55:47.000000000 +0000 +++ libnet-http-perl-6.19/tidyall.ini 2019-05-16 19:17:02.000000000 +0000 @@ -10,6 +10,10 @@ ignore = xt/**/* argv = --profile=$ROOT/perlcriticrc +[PerlCritic non-auto-generated xt] +select = xt/rt-112313.t +argv = --profile=$ROOT/perlcriticrc + [PerlTidy] select = **/*.{pl,pm,t,psgi} ignore = .build/**/* @@ -21,3 +25,7 @@ ignore = t/zzz-* ignore = xt/**/* argv = --profile=$ROOT/perltidyrc + +[PerlTidy non-auto-generated xt] +select = xt/rt-112313.t +argv = --profile=$ROOT/perltidyrc diff -Nru libnet-http-perl-6.18/xt/author/pod-syntax.t libnet-http-perl-6.19/xt/author/pod-syntax.t --- libnet-http-perl-6.18/xt/author/pod-syntax.t 1970-01-01 00:00:00.000000000 +0000 +++ libnet-http-perl-6.19/xt/author/pod-syntax.t 2019-05-16 19:17:02.000000000 +0000 @@ -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();