[libsub-recursive-perl] 01/04: Add patch from CPAN RT to fix "defined(%hash)" warning/error.
gregor herrmann
gregoa at debian.org
Sat Jun 20 19:59:45 UTC 2015
This is an automated email from the git hooks/post-receive script.
gregoa pushed a commit to branch master
in repository libsub-recursive-perl.
commit 4ae27cf1faa9229d906c54d382d8a9d99232e224
Author: gregor herrmann <gregoa at debian.org>
Date: Sat Jun 20 21:56:20 2015 +0200
Add patch from CPAN RT to fix "defined(%hash)" warning/error.
Closes: #789414
---
debian/patches/defined-hash.patch | 31 +++++++++++++++++++++++++++++++
debian/patches/series | 1 +
2 files changed, 32 insertions(+)
diff --git a/debian/patches/defined-hash.patch b/debian/patches/defined-hash.patch
new file mode 100644
index 0000000..7c5ce40
--- /dev/null
+++ b/debian/patches/defined-hash.patch
@@ -0,0 +1,31 @@
+Description: fix "defined(%has)" error
+Origin: CPAN RT
+Bug: https://rt.cpan.org/Public/Bug/Display.html?id=103191
+Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=103191
+Bug-Debian: https://bugs.debian.org/789414
+Author: TONYC at cpan.org
+Reviewed-by: gregor herrmann <gregoa at debian.org>
+Last-Update: 2015-06-20
+
+--- a/t/02mutually.t
++++ b/t/02mutually.t
+@@ -7,7 +7,7 @@
+
+ BEGIN { use_ok('Sub::Recursive', qw/ mutually_recursive %REC /) }
+
+-ok(defined %REC, '%REC defined');
++ok(%REC, '%REC defined');
+ ok(defined &mutually_recursive, '&mutually_recursive defined');
+
+ my ($odd, $even) = mutually_recursive(
+--- a/t/90other.t
++++ b/t/90other.t
+@@ -10,7 +10,7 @@
+ ok(defined $REC, '$REC defined');
+ ok(defined &recursive, '&recursive defined');
+
+-ok(defined %REC, '%REC defined');
++ok(%REC, '%REC defined');
+ ok(defined &mutually_recursive, '&mutually_recursive defined');
+
+
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..8520d9b
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+defined-hash.patch
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libsub-recursive-perl.git
More information about the Pkg-perl-cvs-commits
mailing list