summaryrefslogtreecommitdiff
path: root/dev-perl/Class-MakeMethods/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 21:03:06 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 21:03:06 +0100
commit8376ef56580626e9c0f796d5b85b53a0a1c7d5f5 (patch)
tree7681bbd4e8b05407772df40a4bf04cbbc8afc3fa /dev-perl/Class-MakeMethods/files
parent30a9caf154332f12ca60756e1b75d2f0e3e1822d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-perl/Class-MakeMethods/files')
-rw-r--r--dev-perl/Class-MakeMethods/files/Class-MakeMethods-1.10.0-perl526.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/dev-perl/Class-MakeMethods/files/Class-MakeMethods-1.10.0-perl526.patch b/dev-perl/Class-MakeMethods/files/Class-MakeMethods-1.10.0-perl526.patch
new file mode 100644
index 000000000000..90d6954e854f
--- /dev/null
+++ b/dev-perl/Class-MakeMethods/files/Class-MakeMethods-1.10.0-perl526.patch
@@ -0,0 +1,27 @@
+From e9ca634f9d11894aec3236a8166b48b5bd25e582 Mon Sep 17 00:00:00 2001
+From: Slaven Rezic <slaven@rezic.de>
+Date: Wed, 8 Jun 2016 22:47:42 +0200
+Subject: fix for "Unescaped left brace in regex is deprecated" (RT #115108)
+
+Bug: https://rt.cpan.org/Ticket/Display.html?id=115108
+Bug: https://bugs.gentoo.org/615120
+---
+ tests/xemulator/class_methodmaker/Test.pm | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/tests/xemulator/class_methodmaker/Test.pm b/tests/xemulator/class_methodmaker/Test.pm
+index fc37552..4ab84ad 100644
+--- a/tests/xemulator/class_methodmaker/Test.pm
++++ b/tests/xemulator/class_methodmaker/Test.pm
+@@ -48,7 +48,7 @@ sub COUNT_TESTS {
+ open(IN, $file) or die "Can't open $file: $!";
+ while (<IN>) {
+ /^\s*#/ and next;
+- $c += s/(TEST\s{)/$1/g;
++ $c += s/(TEST\s\{)/$1/g;
+ }
+ $c;
+ }
+--
+2.14.1
+