diff -Nru libcgi-compile-perl-0.24/Changes libcgi-compile-perl-0.25/Changes --- libcgi-compile-perl-0.24/Changes 2020-01-30 14:00:00.000000000 +0000 +++ libcgi-compile-perl-0.25/Changes 2020-08-03 18:39:43.000000000 +0000 @@ -1,5 +1,8 @@ Revision history for Perl extension CGI::Compile +0.25 2020-08-03 18:39:36 UTC + - add file name to package name #25 + 0.24 2020-01-30 13:59:56 UTC - use better packages/subnames for coderefs - add all CONTRIBUTORS to POD diff -Nru libcgi-compile-perl-0.24/debian/changelog libcgi-compile-perl-0.25/debian/changelog --- libcgi-compile-perl-0.24/debian/changelog 2020-02-03 13:32:20.000000000 +0000 +++ libcgi-compile-perl-0.25/debian/changelog 2020-08-04 00:50:36.000000000 +0000 @@ -1,3 +1,11 @@ +libcgi-compile-perl (0.25-1) unstable; urgency=medium + + * Import upstream version 0.25. + * Set Rules-Requires-Root: no. + * Bump debhelper-compat to 13. + + -- gregor herrmann Tue, 04 Aug 2020 02:50:36 +0200 + libcgi-compile-perl (0.24-1) unstable; urgency=medium * Import upstream version 0.24. diff -Nru libcgi-compile-perl-0.24/debian/control libcgi-compile-perl-0.25/debian/control --- libcgi-compile-perl-0.24/debian/control 2020-02-03 13:32:20.000000000 +0000 +++ libcgi-compile-perl-0.25/debian/control 2020-08-04 00:50:36.000000000 +0000 @@ -5,7 +5,7 @@ Section: perl Testsuite: autopkgtest-pkg-perl Priority: optional -Build-Depends: debhelper-compat (= 12), +Build-Depends: debhelper-compat (= 13), libmodule-build-tiny-perl, perl Build-Depends-Indep: libcapture-tiny-perl , @@ -24,6 +24,7 @@ Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libcgi-compile-perl Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libcgi-compile-perl.git Homepage: https://metacpan.org/release/CGI-Compile +Rules-Requires-Root: no Package: libcgi-compile-perl Architecture: all diff -Nru libcgi-compile-perl-0.24/lib/CGI/Compile.pm libcgi-compile-perl-0.25/lib/CGI/Compile.pm --- libcgi-compile-perl-0.24/lib/CGI/Compile.pm 2020-01-30 14:00:00.000000000 +0000 +++ libcgi-compile-perl-0.25/lib/CGI/Compile.pm 2020-08-03 18:39:43.000000000 +0000 @@ -3,7 +3,7 @@ use strict; use 5.008_001; -our $VERSION = '0.24'; +our $VERSION = '0.25'; use Cwd; use File::Basename; @@ -168,8 +168,8 @@ my ($volume, $dirs, $file) = File::Spec::Functions::splitpath($path); my @dirs = File::Spec::Functions::splitdir($dirs); - my $package = join '_', grep { defined && length } $volume, @dirs; my $name = $file; + my $package = join '_', grep { defined && length } $volume, @dirs, $name; # Escape everything into valid perl identifiers s/([^A-Za-z0-9_])/sprintf("_%2x", unpack("C", $1))/eg for $package, $name; diff -Nru libcgi-compile-perl-0.24/MANIFEST libcgi-compile-perl-0.25/MANIFEST --- libcgi-compile-perl-0.24/MANIFEST 2020-01-30 14:00:00.000000000 +0000 +++ libcgi-compile-perl-0.25/MANIFEST 2020-08-03 18:39:43.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.015. Build.PL Changes LICENSE diff -Nru libcgi-compile-perl-0.24/META.json libcgi-compile-perl-0.25/META.json --- libcgi-compile-perl-0.24/META.json 2020-01-30 14:00:00.000000000 +0000 +++ libcgi-compile-perl-0.25/META.json 2020-08-03 18:39:43.000000000 +0000 @@ -4,7 +4,7 @@ "Tatsuhiko Miyagawa " ], "dynamic_config" : 0, - "generated_by" : "Dist::Milla version v1.0.20, Dist::Zilla version 6.012, CPAN::Meta::Converter version 2.150010", + "generated_by" : "Dist::Milla version v1.0.20, Dist::Zilla version 6.015, CPAN::Meta::Converter version 2.150010", "license" : [ "perl_5" ], @@ -74,7 +74,7 @@ "web" : "https://github.com/miyagawa/CGI-Compile" } }, - "version" : "0.24", + "version" : "0.25", "x_contributors" : [ "Hans Dieter Pearcey ", "J\u00f6rn Reder ", @@ -85,8 +85,9 @@ "Rafael Kitover ", "Torsten F\u00f6rtsch " ], - "x_generated_by_perl" : "v5.30.1", - "x_serialization_backend" : "Cpanel::JSON::XS version 4.18", + "x_generated_by_perl" : "v5.30.3", + "x_serialization_backend" : "Cpanel::JSON::XS version 4.19", + "x_spdx_expression" : "Artistic-1.0-Perl OR GPL-1.0-or-later", "x_static_install" : 1 } diff -Nru libcgi-compile-perl-0.24/META.yml libcgi-compile-perl-0.25/META.yml --- libcgi-compile-perl-0.24/META.yml 2020-01-30 14:00:00.000000000 +0000 +++ libcgi-compile-perl-0.25/META.yml 2020-08-03 18:39:43.000000000 +0000 @@ -14,7 +14,7 @@ configure_requires: Module::Build::Tiny: '0.034' dynamic_config: 0 -generated_by: 'Dist::Milla version v1.0.20, Dist::Zilla version 6.012, CPAN::Meta::Converter version 2.150010' +generated_by: 'Dist::Milla version v1.0.20, Dist::Zilla version 6.015, CPAN::Meta::Converter version 2.150010' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -36,7 +36,7 @@ bugtracker: https://github.com/miyagawa/CGI-Compile/issues homepage: https://github.com/miyagawa/CGI-Compile repository: https://github.com/miyagawa/CGI-Compile.git -version: '0.24' +version: '0.25' x_contributors: - 'Hans Dieter Pearcey ' - 'Jörn Reder ' @@ -46,6 +46,7 @@ - 'Rafael Kitover ' - 'Rafael Kitover ' - 'Torsten Förtsch ' -x_generated_by_perl: v5.30.1 +x_generated_by_perl: v5.30.3 x_serialization_backend: 'YAML::Tiny version 1.73' +x_spdx_expression: 'Artistic-1.0-Perl OR GPL-1.0-or-later' x_static_install: 1 diff -Nru libcgi-compile-perl-0.24/t/symbols.t libcgi-compile-perl-0.25/t/symbols.t --- libcgi-compile-perl-0.24/t/symbols.t 2020-01-30 14:00:00.000000000 +0000 +++ libcgi-compile-perl-0.25/t/symbols.t 2020-08-03 18:39:43.000000000 +0000 @@ -28,7 +28,7 @@ is sub_name($sub), 'hello_2ecgi'; -like stash_name($sub), qr/^CGI::Compile::ROOT::[A-Za-z0-9_]*t\z/; +like stash_name($sub), qr/^CGI::Compile::ROOT::[A-Za-z0-9_]*t_hello_2ecgi\z/; $sub = CGI::Compile->compile(\$cgi);