diff -Nru libcgi-fast-perl-2.12/Changes libcgi-fast-perl-2.13/Changes --- libcgi-fast-perl-2.12/Changes 2016-11-22 13:16:06.000000000 +0000 +++ libcgi-fast-perl-2.13/Changes 2017-11-17 07:16:52.000000000 +0000 @@ -1,5 +1,9 @@ Revision history for CGI::Fast +2.13 2017-11-17 + [TESTING] + remove use of Test::Deep completely (GH #17) + 2.12 2016-11-22 [DOCUMENTATION] - tweak docs about overriding STDIN due to interference with POST diff -Nru libcgi-fast-perl-2.12/debian/changelog libcgi-fast-perl-2.13/debian/changelog --- libcgi-fast-perl-2.12/debian/changelog 2016-11-29 12:49:57.000000000 +0000 +++ libcgi-fast-perl-2.13/debian/changelog 2017-11-18 20:20:30.000000000 +0000 @@ -1,3 +1,12 @@ +libcgi-fast-perl (1:2.13-1) unstable; urgency=medium + + * Team upload + + * New upstream version 2.13 + * declare conformance with Policy 4.1.1 (no changes needed) + + -- Damyan Ivanov Sat, 18 Nov 2017 20:20:30 +0000 + libcgi-fast-perl (1:2.12-1) unstable; urgency=medium * Team upload. diff -Nru libcgi-fast-perl-2.12/debian/control libcgi-fast-perl-2.13/debian/control --- libcgi-fast-perl-2.12/debian/control 2016-11-29 12:49:57.000000000 +0000 +++ libcgi-fast-perl-2.13/debian/control 2017-11-18 20:19:56.000000000 +0000 @@ -9,7 +9,7 @@ libfcgi-perl, libtest-deep-perl, perl -Standards-Version: 3.9.8 +Standards-Version: 4.1.1 Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libcgi-fast-perl.git Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libcgi-fast-perl.git Homepage: https://metacpan.org/release/CGI-Fast diff -Nru libcgi-fast-perl-2.12/lib/CGI/Fast.pm libcgi-fast-perl-2.13/lib/CGI/Fast.pm --- libcgi-fast-perl-2.12/lib/CGI/Fast.pm 2016-11-22 13:16:13.000000000 +0000 +++ libcgi-fast-perl-2.13/lib/CGI/Fast.pm 2017-11-17 07:17:04.000000000 +0000 @@ -3,7 +3,7 @@ use warnings; use if $] >= 5.019, 'deprecate'; -$CGI::Fast::VERSION='2.12'; +$CGI::Fast::VERSION='2.13'; use CGI; use CGI::Carp; diff -Nru libcgi-fast-perl-2.12/Makefile.PL libcgi-fast-perl-2.13/Makefile.PL --- libcgi-fast-perl-2.12/Makefile.PL 2016-11-22 13:15:07.000000000 +0000 +++ libcgi-fast-perl-2.13/Makefile.PL 2017-11-17 07:15:17.000000000 +0000 @@ -18,7 +18,6 @@ }, TEST_REQUIRES => { 'Test::More' => 0, - 'Test::Deep' => 0.11, 'File::Temp' => 0, }, test => { TESTS => 't/*.t' }, diff -Nru libcgi-fast-perl-2.12/MANIFEST libcgi-fast-perl-2.13/MANIFEST --- libcgi-fast-perl-2.12/MANIFEST 2016-11-22 13:19:05.000000000 +0000 +++ libcgi-fast-perl-2.13/MANIFEST 2017-11-17 07:19:18.000000000 +0000 @@ -1,7 +1,7 @@ Changes lib/CGI/Fast.pm Makefile.PL -MANIFEST This list of files +MANIFEST README README.md t/001_basic.t diff -Nru libcgi-fast-perl-2.12/META.json libcgi-fast-perl-2.13/META.json --- libcgi-fast-perl-2.12/META.json 2016-11-22 13:19:05.000000000 +0000 +++ libcgi-fast-perl-2.13/META.json 2017-11-17 07:19:18.000000000 +0000 @@ -4,7 +4,7 @@ "unknown" ], "dynamic_config" : 1, - "generated_by" : "ExtUtils::MakeMaker version 7.1001, CPAN::Meta::Converter version 2.150005", + "generated_by" : "ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter version 2.150010", "license" : [ "perl_5" ], @@ -35,6 +35,12 @@ "if" : "0", "perl" : "5.008001" } + }, + "test" : { + "requires" : { + "File::Temp" : "0", + "Test::More" : "0" + } } }, "release_status" : "stable", @@ -50,6 +56,6 @@ "url" : "https://github.com/leejo/cgi-fast" } }, - "version" : "2.12", - "x_serialization_backend" : "JSON::PP version 2.27300" + "version" : "2.13", + "x_serialization_backend" : "JSON::PP version 2.27400_02" } diff -Nru libcgi-fast-perl-2.12/META.yml libcgi-fast-perl-2.13/META.yml --- libcgi-fast-perl-2.12/META.yml 2016-11-22 13:19:05.000000000 +0000 +++ libcgi-fast-perl-2.13/META.yml 2017-11-17 07:19:18.000000000 +0000 @@ -2,10 +2,12 @@ abstract: unknown author: - unknown -build_requires: {} +build_requires: + File::Temp: '0' + Test::More: '0' configure_requires: {} dynamic_config: 1 -generated_by: 'ExtUtils::MakeMaker version 7.1001, CPAN::Meta::Converter version 2.150005' +generated_by: 'ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter version 2.150010' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -27,5 +29,5 @@ homepage: https://metacpan.org/module/CGI::Fast license: http://dev.perl.org/licenses/ repository: https://github.com/leejo/cgi-fast -version: '2.12' +version: '2.13' x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff -Nru libcgi-fast-perl-2.12/t/003_env_pollution.t libcgi-fast-perl-2.13/t/003_env_pollution.t --- libcgi-fast-perl-2.12/t/003_env_pollution.t 2016-11-22 13:15:07.000000000 +0000 +++ libcgi-fast-perl-2.13/t/003_env_pollution.t 2017-11-17 07:14:02.000000000 +0000 @@ -3,8 +3,7 @@ use strict; use warnings; -use Test::More tests => 5; -use Test::Deep; +use Test::More tests => 18; use CGI::Fast socket_path => ":7070"; @@ -42,26 +41,12 @@ }; if ( $i % 2 == 0 ) { - cmp_deeply( - $cgi_vars, - { - remote_addr => ignore(), - raw_cookie => '', - path_info => '', - query_string => '', - }, - 'ENV variables not reused from last request' - ); + is( $cgi_vars->{$_},'','ENV variables not reused from last request' ) + for qw/ raw_cookie path_info query_string /; } else { - cmp_deeply( - $cgi_vars, - { - remote_addr => 'REMOTE_ADDR', - raw_cookie => 'HTTP_COOKIE', - path_info => 'PATH_INFO', - query_string => '', - }, - 'ENV variables set from current environment' - ); + is( $cgi_vars->{remote_addr},'REMOTE_ADDR','ENV variables set from current environment' ); + is( $cgi_vars->{raw_cookie},'HTTP_COOKIE','ENV variables set from current environment' ); + is( $cgi_vars->{path_info},'PATH_INFO','ENV variables set from current environment' ); + is( $cgi_vars->{query_string},'','ENV variables set from current environment' ); } }