[SCM] Debian packaging of libmoosex-multiinitarg-perl branch, master, updated. 208c5a90ca498d7586812ce5612fcab3ad30d9f2
gregor herrmann
gregoa at debian.org
Sat Jun 8 21:56:48 UTC 2013
The following commit has been merged in the master branch:
commit f211404346808bed372695054c14ae5f946cda23
Author: gregor herrmann <gregoa at debian.org>
Date: Sat Jun 8 23:51:30 2013 +0200
Add patch to fix test failure caused by using qw() in list context.
Closes: #711608
diff --git a/debian/patches/qw-list.patch b/debian/patches/qw-list.patch
new file mode 100644
index 0000000..32b111a
--- /dev/null
+++ b/debian/patches/qw-list.patch
@@ -0,0 +1,19 @@
+Description: qw() in list context is an error now
+Origin: vendor
+Bug-Debian: http://bugs.debian.org/711608
+Bug: https://rt.cpan.org/Ticket/Display.html?id=86001
+Forwarded: https://rt.cpan.org/Ticket/Display.html?id=86001
+Author: gregor herrmann <gregoa at debian.org>
+Last-Update: 2013-06-08
+
+--- a/t/01-main.t
++++ b/t/01-main.t
+@@ -28,7 +28,7 @@
+ package main;
+ use Test::More tests => 10;
+
+-foreach my $class qw(WithTrait WithMeta)
++foreach my $class (qw(WithTrait WithMeta))
+ {
+ my $foo = $class->new(x => 'x');
+ is($foo->x, 'x', "$class x works");
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..c419c74
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+qw-list.patch
--
Debian packaging of libmoosex-multiinitarg-perl
More information about the Pkg-perl-cvs-commits
mailing list