[SCM] libmagpie-perl Debian packaging branch, master, updated. debian/1.131250-1-12-g2aa5938

Kip Hampton khampton at totalcinema.com
Thu May 9 12:24:21 UTC 2013


The following commit has been merged in the master branch:
commit 9d082412e88270ba518ebcfefc198fb8288b3877
Author: Kip Hampton <khampton at totalcinema.com>
Date:   Wed May 8 20:03:06 2013 -0700

    Switch to Data::Printer, add the missing dep.

diff --git a/dist.ini b/dist.ini
index d4f4758..c596efa 100644
--- a/dist.ini
+++ b/dist.ini
@@ -28,7 +28,6 @@ match = ^temp*
 ;skip = ^XML::LibXSLT
 ;skip = ^Template
 ;skip = ^XML::XSP
-;skip = ^Data::Dumper::Concise
 ;skip = ^Bread::Board::
 ;skip = parent*$
 ;skip = ^Devel::
@@ -46,6 +45,7 @@ Scalar::Util = 1.23
 Try::Tiny = 0.11
 URI = 1.59
 MooseX::Role::Parameterized = 0
+Data::Printer = 0
 
 
 [Prereqs / RuntimeRecommends]
@@ -79,5 +79,6 @@ tag_format  = %v
 tag_message = %v
 push_to     = origin
 
+
 [PodWeaver]
 
diff --git a/lib/Plack/Middleware/Magpie.pm b/lib/Plack/Middleware/Magpie.pm
index b4c5324..864102e 100644
--- a/lib/Plack/Middleware/Magpie.pm
+++ b/lib/Plack/Middleware/Magpie.pm
@@ -181,9 +181,8 @@ sub call {
     $pipeline = $matcher->construct_pipeline($pipeline);
 
     if ($self->debug) {
-        Plack::Util::load_class('Data::Dumper::Concise');
-        my $message = 'PIPELINE: ' . Data::Dumper::Concise::Dumper($pipeline);
-        #warn 'STACK ' . Data::Dumper::Concise::Dumper(\@STACK);
+        Plack::Util::load_class('Data::Printer');
+        my $message = 'PIPELINE: ' . Data::Printer::p($pipeline);
         warn $message . "\n";
         $req->logger({ level => 'debug', message => $message, });
     }

-- 
libmagpie-perl Debian packaging



More information about the Pkg-perl-cvs-commits mailing list