New Upstream Snapshot - libcatalyst-dispatchtype-regex-perl

Ready changes

Summary

Merged new upstream version: 5.90035+git20150331.1.774d0a0 (was: 5.90035).

Resulting package

Built on 2022-12-20T05:46 (took 2m23s)

The resulting binary packages can be installed (if you have the apt repository enabled) by running one of:

apt install -t fresh-snapshots libcatalyst-dispatchtype-regex-perl

Lintian Result

Diff

diff --git a/MANIFEST b/MANIFEST
index cde1587..f865359 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -5,6 +5,9 @@ lib/Catalyst/DispatchType/LocalRegexp.pm
 lib/Catalyst/DispatchType/Regex.pm
 lib/Catalyst/DispatchType/Regexp.pm
 MANIFEST			This list of files
+META.json
+META.yml
+README
 t/01use.t
 t/aggregate/live_component_controller_action_regexp.t
 t/aggregate/live_priorities.t
@@ -31,6 +34,3 @@ xt/minimumversion.t
 xt/perlcriticrc
 xt/pod-coverage.t
 xt/pod.t
-README
-META.yml
-META.json
diff --git a/META.json b/META.json
index 0c49070..78b3de1 100644
--- a/META.json
+++ b/META.json
@@ -4,13 +4,13 @@
       "unknown"
    ],
    "dynamic_config" : 1,
-   "generated_by" : "Module::Build version 0.4004, CPAN::Meta::Converter version 2.130880",
+   "generated_by" : "Module::Build version 0.4232",
    "license" : [
       "perl_5"
    ],
    "meta-spec" : {
       "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
-      "version" : "2"
+      "version" : 2
    },
    "name" : "Catalyst-DispatchType-Regex",
    "prereqs" : {
@@ -26,6 +26,15 @@
             "Text::Balanced" : "0",
             "Text::SimpleTable" : "0"
          }
+      },
+      "test" : {
+         "requires" : {
+            "Data::Dumper" : "0",
+            "MRO::Compat" : "0",
+            "Scalar::Util" : "0",
+            "Test::More" : "0",
+            "namespace::autoclean" : "0"
+         }
       }
    },
    "provides" : {
@@ -56,11 +65,5 @@
       }
    },
    "version" : "5.90035",
-   "x_test_requires" : {
-      "Data::Dumper" : "0",
-      "MRO::Compat" : "0",
-      "Scalar::Util" : "0",
-      "Test::More" : "0",
-      "namespace::autoclean" : "0"
-   }
+   "x_serialization_backend" : "JSON::PP version 4.07"
 }
diff --git a/META.yml b/META.yml
index d25ffee..aeff828 100644
--- a/META.yml
+++ b/META.yml
@@ -2,15 +2,20 @@
 abstract: 'Regex DispatchType'
 author:
   - unknown
-build_requires: {}
+build_requires:
+  Data::Dumper: '0'
+  MRO::Compat: '0'
+  Scalar::Util: '0'
+  Test::More: '0'
+  namespace::autoclean: '0'
 configure_requires:
-  Module::Build: 0.4004
+  Module::Build: '0.4004'
 dynamic_config: 1
-generated_by: 'Module::Build version 0.4004, CPAN::Meta::Converter version 2.130880'
+generated_by: 'Module::Build version 0.4232, CPAN::Meta::Converter version 2.150010'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
-  version: 1.4
+  version: '1.4'
 name: Catalyst-DispatchType-Regex
 provides:
   Catalyst::DispatchType::LocalRegex:
@@ -19,22 +24,17 @@ provides:
     file: lib/Catalyst/DispatchType/LocalRegexp.pm
   Catalyst::DispatchType::Regex:
     file: lib/Catalyst/DispatchType/Regex.pm
-    version: 5.90035
+    version: '5.90035'
   Catalyst::DispatchType::Regexp:
     file: lib/Catalyst/DispatchType/Regexp.pm
 requires:
-  Catalyst::Runtime: 5.90060
-  Moose: 0
-  Text::Balanced: 0
-  Text::SimpleTable: 0
+  Catalyst::Runtime: '5.90060'
+  Moose: '0'
+  Text::Balanced: '0'
+  Text::SimpleTable: '0'
 resources:
   bugtracker: http://rt.cpan.org/NoAuth/Bugs.html?Dist=Catalyst-DispatchType-Regex
   license: http://dev.perl.org/licenses/
   repository: http://github.com/mvgrimes/catalyst-dispatch-regex
-version: 5.90035
-x_test_requires:
-  Data::Dumper: 0
-  MRO::Compat: 0
-  Scalar::Util: 0
-  Test::More: 0
-  namespace::autoclean: 0
+version: '5.90035'
+x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff --git a/README b/README
index 246c651..9c49109 100644
--- a/README
+++ b/README
@@ -1,16 +1,19 @@
 NAME
+
     Catalyst::DispatchType::Regex - Regex DispatchType
 
 SYNOPSIS
+
     See Catalyst::DispatchType.
 
 DESCRIPTION
+
     Status: Deprecated. Regex dispatch types have been deprecated and
-    removed from Catalyst core. It is recommend that you use Chained methods
-    or other techniques instead. As part of the refactoring, the dispatch
-    priority of Regex vs Regexp vs LocalRegex vs LocalRegexp may have
-    changed. Priority is now influenced by when the dispatch type is first
-    seen in your application.
+    removed from Catalyst core. It is recommend that you use Chained
+    methods or other techniques instead. As part of the refactoring, the
+    dispatch priority of Regex vs Regexp vs LocalRegex vs LocalRegexp may
+    have changed. Priority is now influenced by when the dispatch type is
+    first seen in your application.
 
     When loaded, a warning about the deprecation will be printed to STDERR.
     To suppress the warning set the CATALYST_NOWARN_DEPRECATE environment
@@ -19,40 +22,48 @@ DESCRIPTION
     Dispatch type managing path-matching behaviour using regexes. For more
     information on dispatch types, see:
 
-    *   Catalyst::Manual::Intro for how they affect application authors
+      * Catalyst::Manual::Intro for how they affect application authors
 
-    *   Catalyst::DispatchType for implementation information.
+      * Catalyst::DispatchType for implementation information.
 
 METHODS
-  $self->list($c)
+
+ $self->list($c)
+
     Output a table of all regex actions, and their private equivalent.
 
-  $self->match( $c, $path )
+ $self->match( $c, $path )
+
     Checks path against every compiled regex, and offers the action for any
     regex which matches a chance to match the request. If it succeeds, sets
     action, match and captures on $c->req and returns 1. If not, returns 0
     without altering $c.
 
-  $self->register( $c, $action )
-    Registers one or more regex actions for an action object. Also registers
-    them as literal paths.
+ $self->register( $c, $action )
+
+    Registers one or more regex actions for an action object. Also
+    registers them as literal paths.
 
     Returns 1 if any regexps were registered.
 
-  $self->register_regex($c, $re, $action)
+ $self->register_regex($c, $re, $action)
+
     Register an individual regex on the action. Usually called from the
     register method.
 
-  $self->uri_for_action($action, $captures)
+ $self->uri_for_action($action, $captures)
+
     returns a URI for this action if it can find a regex attributes that
     contains the correct number of () captures. Note that this may function
     incorrectly in the case of nested captures - if your regex does
     (...(..))..(..) you'll need to pass the first and third captures only.
 
 AUTHORS
+
     Catalyst Contributors, see Catalyst.pm
 
 COPYRIGHT
+
     This library is free software. You can redistribute it and/or modify it
     under the same terms as Perl itself.
 
diff --git a/debian/changelog b/debian/changelog
index 67c1a0f..92d6238 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libcatalyst-dispatchtype-regex-perl (5.90035+git20150331.1.774d0a0-1) UNRELEASED; urgency=low
+
+  * New upstream snapshot.
+
+ -- Debian Janitor <janitor@jelmer.uk>  Tue, 20 Dec 2022 05:44:57 -0000
+
 libcatalyst-dispatchtype-regex-perl (5.90035-2) unstable; urgency=medium
 
   [ Salvatore Bonaccorso ]

Debdiff

File lists identical (after any substitutions)

No differences were encountered in the control files

More details

Full run details