[SCM] Debian packaging of Mojolicious-Plugin-Authorization CPAN distribution branch, master, updated. debian/1.0301-1-6-gb1b68c4

gregor herrmann gregoa at debian.org
Sun Jun 9 13:28:54 UTC 2013


The following commit has been merged in the master branch:
commit c1d1e1452feb0bbc0339a97fb2826381fe728ac0
Author: gregor herrmann <gregoa at debian.org>
Date:   Sun Jun 9 15:23:48 2013 +0200

    Add patch to fix test failure caused by hash randomization.
    
    Thanks: CSILLAG Tamas for coming up with the patch.
    Closes: #711607

diff --git a/debian/patches/series b/debian/patches/series
index 29472fb..9d30b31 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1,2 @@
 fix_spelling_error_in_manpage
+test-failure-hash-randomization.patch
diff --git a/debian/patches/test-failure-hash-randomization.patch b/debian/patches/test-failure-hash-randomization.patch
new file mode 100644
index 0000000..f3b070e
--- /dev/null
+++ b/debian/patches/test-failure-hash-randomization.patch
@@ -0,0 +1,20 @@
+Description: fix test failure due to hash randomization in perl 5.18
+Origin: vendor
+Bug-Debian: http://bugs.debian.org/711607
+Bug: https://rt.cpan.org/Ticket/Display.html?id=86010
+Forwarded: https://rt.cpan.org/Ticket/Display.html?id=86010
+Author: CSILLAG Tamas <cstamas at cstamas.hu>
+Reviewed-by: gregor herrmann <gregoa at debian.org>
+Last-Update: 2013-06-09
+
+--- a/t/01-functional.t
++++ b/t/01-functional.t
+@@ -90,7 +90,7 @@
+ get '/myprivs' =>  sub {
+     my $self = shift;
+     my @privs = $self->privileges();
+-    my $priv = join(':', at privs);
++    my $priv = join(':', sort @privs);
+     $self->render(text=>$priv);
+ };
+ my $t = Test::Mojo->new;

-- 
Debian packaging of Mojolicious-Plugin-Authorization CPAN distribution



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