From f6f8899737a1156f3b7108673b7de67d65ed95cf Mon Sep 17 00:00:00 2001 From: Zakariyya Mughal Date: Sun, 3 Mar 2024 13:04:24 -0500 Subject: Unset `x_static_install` Because there are non-`*.pm` files that need to be installed under `lib/`. Otherwise installers that use that setting will not install `lib/Test/HTTP/log-server`. Work around is to force those installers to not use the setting: ```sh $ cpanm --no-static-install Test::HTTP::LocalServer ``` --- META.json | 2 +- META.yml | 2 +- Makefile.PL | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/META.json b/META.json index 9551826..2685bd5 100644 --- a/META.json +++ b/META.json @@ -78,5 +78,5 @@ }, "version" : "0.75", "x_serialization_backend" : "JSON::PP version 4.11", - "x_static_install" : 1 + "x_static_install" : 0 } diff --git a/META.yml b/META.yml index cb72cec..1880293 100644 --- a/META.yml +++ b/META.yml @@ -47,4 +47,4 @@ resources: repository: git://github.com/Corion/Test-HTTP-LocalServer.git version: '0.75' x_serialization_backend: 'CPAN::Meta::YAML version 0.018' -x_static_install: 1 +x_static_install: 0 diff --git a/Makefile.PL b/Makefile.PL index e88a40a..0e0af18 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -38,7 +38,7 @@ my %module = ( license => "https://dev.perl.org/licenses/", }, dynamic_config => 0, # we promise to keep META.* up-to-date - x_static_install => 1, # we are pure Perl and don't do anything fancy + x_static_install => 0, }, 'LICENSE'=> 'perl', -- cgit v1.2.3 From 982f84777acab2e4a1ac7218c8e8c23b753b6829 Mon Sep 17 00:00:00 2001 From: Max Maischein Date: Sun, 3 Mar 2024 19:43:29 +0100 Subject: Update Changes, bump version --- Changes | 4 ++++ META.json | 6 +++--- META.yml | 4 ++-- README | 2 +- README.mkdn | 2 +- lib/Test/HTTP/LocalServer.pm | 4 ++-- 6 files changed, 13 insertions(+), 9 deletions(-) diff --git a/Changes b/Changes index 16c4c44..9ef0489 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,7 @@ +0.76 2024-03-02 + * Unset x_static_install , which means that some installers will actually + install the log_server script. Provided by zmughal. + 0.75 2023-07-21 * Various build and test upgrades, no code changes, no need to upgrade diff --git a/META.json b/META.json index 2685bd5..3f6a821 100644 --- a/META.json +++ b/META.json @@ -4,7 +4,7 @@ "Max Maischein " ], "dynamic_config" : 0, - "generated_by" : "ExtUtils::MakeMaker version 7.44, CPAN::Meta::Converter version 2.150010", + "generated_by" : "ExtUtils::MakeMaker version 7.64, CPAN::Meta::Converter version 2.150010", "license" : [ "perl_5" ], @@ -76,7 +76,7 @@ "web" : "https://github.com/Corion/Test-HTTP-LocalServer" } }, - "version" : "0.75", - "x_serialization_backend" : "JSON::PP version 4.11", + "version" : "0.76", + "x_serialization_backend" : "JSON::PP version 4.07", "x_static_install" : 0 } diff --git a/META.yml b/META.yml index 1880293..153bc2f 100644 --- a/META.yml +++ b/META.yml @@ -12,7 +12,7 @@ build_requires: configure_requires: ExtUtils::MakeMaker: '0' dynamic_config: 0 -generated_by: 'ExtUtils::MakeMaker version 7.44, CPAN::Meta::Converter version 2.150010' +generated_by: 'ExtUtils::MakeMaker version 7.64, CPAN::Meta::Converter version 2.150010' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -45,6 +45,6 @@ resources: bugtracker: https://github.com/Corion/Test-HTTP-LocalServer/issues license: https://dev.perl.org/licenses/ repository: git://github.com/Corion/Test-HTTP-LocalServer.git -version: '0.75' +version: '0.76' x_serialization_backend: 'CPAN::Meta::YAML version 0.018' x_static_install: 0 diff --git a/README b/README index a142cbf..0193614 100644 --- a/README +++ b/README @@ -51,4 +51,4 @@ COPYRIGHT AND LICENSE This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. -Copyright (C) 2003-2023 Max Maischein +Copyright (C) 2003-2024 Max Maischein diff --git a/README.mkdn b/README.mkdn index 7856d69..938a4d3 100644 --- a/README.mkdn +++ b/README.mkdn @@ -207,7 +207,7 @@ None by default. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. -Copyright (C) 2003-2023 Max Maischein +Copyright (C) 2003-2024 Max Maischein # AUTHOR diff --git a/lib/Test/HTTP/LocalServer.pm b/lib/Test/HTTP/LocalServer.pm index ac19796..9de2908 100644 --- a/lib/Test/HTTP/LocalServer.pm +++ b/lib/Test/HTTP/LocalServer.pm @@ -12,7 +12,7 @@ use Time::HiRes qw ( time sleep ); use HTTP::Tiny; use HTTP::Daemon 6.05; # Our log server needs this, but we load it here to find its version -our $VERSION = '0.75'; +our $VERSION = '0.76'; =head1 NAME @@ -468,7 +468,7 @@ None by default. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. -Copyright (C) 2003-2023 Max Maischein +Copyright (C) 2003-2024 Max Maischein =head1 AUTHOR -- cgit v1.2.3