From: Dylan William Hardison Date: Tue, 26 Apr 2016 15:02:49 +0000 (-0400) Subject: fix module metadata X-Git-Tag: release-5.1.1~25 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c44470a368465adfe329fcfc32492829a21878da;p=thirdparty%2Fbugzilla.git fix module metadata --- diff --git a/META.json b/META.json index cfb9e0e964..e09eded534 100644 --- a/META.json +++ b/META.json @@ -4,7 +4,7 @@ "Bugzilla Developers " ], "dynamic_config" : 1, - "generated_by" : "ExtUtils::MakeMaker version 7.0401, CPAN::Meta::Converter version 2.150005", + "generated_by" : "ExtUtils::MakeMaker version 7.1, CPAN::Meta::Converter version 2.150005", "license" : [ "unknown" ], @@ -348,7 +348,7 @@ }, "runtime" : { "requires" : { - "CGI" : "3.51", + "CGI" : "4.09", "DBI" : "1.614", "Date::Format" : "2.23", "DateTime" : "0.75", @@ -362,11 +362,12 @@ "Math::Random::ISAAC" : "v1.0.1", "Template" : "2.24", "URI" : "1.55", - "perl" : "5.010001" + "perl" : "5.014000" } }, "test" : { "requires" : { + "Pod::Checker" : "0", "Pod::Coverage" : "0", "Test::More" : "0", "Test::Perl::Critic" : "0" @@ -375,5 +376,5 @@ }, "release_status" : "stable", "version" : "5.1", - "x_serialization_backend" : "JSON::PP version 2.27300" + "x_serialization_backend" : "JSON::PP version 2.27203" } diff --git a/META.yml b/META.yml index 907d969cef..e42d4a6025 100644 --- a/META.yml +++ b/META.yml @@ -4,13 +4,14 @@ author: - 'Bugzilla Developers ' build_requires: ExtUtils::MakeMaker: '0' + Pod::Checker: '0' Pod::Coverage: '0' Test::More: '0' Test::Perl::Critic: '0' configure_requires: ExtUtils::MakeMaker: '6.55' dynamic_config: 1 -generated_by: 'ExtUtils::MakeMaker version 7.0401, CPAN::Meta::Converter version 2.150005' +generated_by: 'ExtUtils::MakeMaker version 7.1, CPAN::Meta::Converter version 2.150005' license: unknown meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -162,7 +163,7 @@ optional_features: Test::Taint: '1.06' XMLRPC::Lite: '0.712' requires: - CGI: '3.51' + CGI: '4.09' DBI: '1.614' Date::Format: '2.23' DateTime: '0.75' @@ -176,6 +177,6 @@ requires: Math::Random::ISAAC: v1.0.1 Template: '2.24' URI: '1.55' - perl: '5.010001' + perl: '5.014000' version: '5.1' -x_serialization_backend: 'CPAN::Meta::YAML version 0.012' +x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff --git a/Makefile.PL b/Makefile.PL index 5742f8429a..63e7a23b42 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -118,7 +118,7 @@ my %optional_features = ( description => 'Documentation', }, xmlrpc => { - description => 'XML-RPC Interfaze', + description => 'XML-RPC Interface', prereqs => { runtime => { requires => { 'XMLRPC::Lite' => '0.712', 'SOAP::Lite' => '0.712', 'Test::Taint' => '1.06' } } diff --git a/t/critic-core.ini b/t/critic-core.ini index 258913d1cd..308af6c698 100644 --- a/t/critic-core.ini +++ b/t/critic-core.ini @@ -26,11 +26,18 @@ severity = 5 [-Variables::ProhibitConditionalDeclarations] [-Subroutines::ProhibitReturnSort] [-TestingAndDebugging::ProhibitNoStrict] -[Subroutines::ProhibitSubroutinePrototypes] + +# we can deal with this later. +[-Subroutines::ProhibitSubroutinePrototypes] + [-Subroutines::ProhibitNestedSubs] [-ControlStructures::ProhibitMutatingListFunctions] [-InputOutput::ProhibitInteractiveTest] +[BuiltinFunctions::ProhibitBooleanGrep] +severity = 5 +[InputOutput::RequireEncodingWithUTF8Layer] +severity = 3 ######################################################################