summarylogtreecommitdiffstats
path: root/perl5.29.9.patch
diff options
context:
space:
mode:
authorJakob Gahde2021-09-16 06:35:54 +0200
committerJakob Gahde2021-09-16 06:35:54 +0200
commite79ccbf375b96e4dc5ccb5c69e1a1cfb36caa993 (patch)
treea24d384377483085cc4804d776c4659af5f6b78d /perl5.29.9.patch
parentfc5cd420ae7b25290ef6ced5a902d85c64315dfe (diff)
downloadaur-e79ccbf375b96e4dc5ccb5c69e1a1cfb36caa993.tar.gz
perl-re-engine-re2 0.14-1: Update to new version
Diffstat (limited to 'perl5.29.9.patch')
-rw-r--r--perl5.29.9.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/perl5.29.9.patch b/perl5.29.9.patch
deleted file mode 100644
index 3445e10b1e7e..000000000000
--- a/perl5.29.9.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Based on https://github.com/rurban/re-engine-PCRE2/commit/6b5cc9b4e686910e25fa411c62711fdf44383285
---- package.pristine/t/01.basic.t 2014-08-09 12:11:06.000000000 +0200
-+++ package.new/t/01.basic.t 2020-05-12 20:44:30.693250260 +0200
-@@ -3,13 +3,13 @@
- use re::engine::RE2;
-
- ok("Hello, world" !~ /Goodbye, world/);
--is($1, undef);
-+ok(!$1);
-
- ok("Hello, world" =~ /Hello, (world)/);
- is($1, 'world');
-
- no re::engine::RE2;
--is(eval '"Hello, world" =~ /(?<=Moose|Mo), (world)/', undef);
-+ok(!eval '"Hello, world" =~ /(?<=Moose|Mo), (world)/');
-
- if (fork) {
- ok(1);