[SCM] Debian packaging of Catalyst-ActionRole-ACL CPAN distribution branch, master, updated. debian/0.06-1-2-gb817d20

Jotam Jr. Trejo jotamjr at debian.org.sv
Thu Jul 12 21:56:26 UTC 2012


The following commit has been merged in the master branch:
commit 4cfe31d0c2ddedc5a17c9b2ed9c990ed34820270
Author: Jotam Jr. Trejo <jotamjr at debian.org.sv>
Date:   Thu Jul 12 15:43:38 2012 -0600

    Added patch to fix FTFBS related with the merge of Catalyst::Controller::ActionRole into Catalyst::Controller in libcatalyst-perl that caused tests that relayed on Catalyst::Controller::ActionRole to fail (Close: #680819)

diff --git a/debian/changelog b/debian/changelog
index 411233c..dde32cb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,15 @@
+libcatalyst-actionrole-acl-perl (0.06-2) UNRELEASED; urgency=low
+
+  * Added patch to fix FTFBS related with the merge of
+    Catalyst::Controller::ActionRole into Catalyst::Controller in
+    libcatalyst-perl that caused tests that relayed on
+    Catalyst::Controller::ActionRole to fail (Close: #680819)
+
+ -- Jotam Jr. Trejo <jotamjr at debian.org.sv>  Thu, 12 Jul 2012 15:40:15 -0600
+
 libcatalyst-actionrole-acl-perl (0.06-1) unstable; urgency=low
 
+  [ gregor herrmann ]
   * Initial release (closes: #667822).
 
  -- gregor herrmann <gregoa at debian.org>  Fri, 06 Apr 2012 22:36:42 +0200
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..99ae5a8
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+use_new_catalyst_controller.patch
diff --git a/debian/patches/use_new_catalyst_controller.patch b/debian/patches/use_new_catalyst_controller.patch
new file mode 100644
index 0000000..d1a5d7f
--- /dev/null
+++ b/debian/patches/use_new_catalyst_controller.patch
@@ -0,0 +1,39 @@
+From: Jotam Jr. Trejo <jotamjr at debian.org.sv>
+Subject: Fix FTBFS that happens when we attempt to extend a class that doesn't exist anymore
+Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=680819
+Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=78334
+Last-Update: 2012-07-12
+
+--- a/t/lib/TestCanVisit/Controller/Root.pm
++++ b/t/lib/TestCanVisit/Controller/Root.pm
+@@ -2,7 +2,7 @@
+ use Moose;
+ use namespace::autoclean;
+ 
+-BEGIN { extends 'Catalyst::Controller::ActionRole' };
++BEGIN { extends 'Catalyst::Controller' };
+ 
+ __PACKAGE__->config(namespace => q{});
+ 
+--- a/t/lib/TestApp/Controller/Root.pm
++++ b/t/lib/TestApp/Controller/Root.pm
+@@ -2,7 +2,7 @@
+ use Moose;
+ use namespace::autoclean;
+ 
+-BEGIN { extends 'Catalyst::Controller::ActionRole' };
++BEGIN { extends 'Catalyst::Controller' };
+ 
+ __PACKAGE__->config(namespace => q{});
+ 
+--- a/t/lib/TestChained/Controller/Root.pm
++++ b/t/lib/TestChained/Controller/Root.pm
+@@ -2,7 +2,7 @@
+ use Moose;
+ use namespace::autoclean;
+ 
+-BEGIN { extends 'Catalyst::Controller::ActionRole' };
++BEGIN { extends 'Catalyst::Controller' };
+ 
+ my $msg = '';
+ 

-- 
Debian packaging of Catalyst-ActionRole-ACL CPAN distribution



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