Skip Menu |

This queue is for tickets about the Acme-Hidek CPAN distribution.

Report information
The Basics
Id: 117253
Status: open
Priority: 0/
Queue: Acme-Hidek

People
Owner: Nobody in particular
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 44.0
Fixed in: (no value)



Subject: Unescaped left brace in regex is illegal here in regex
Tests fail with perl 5.25.x. See http://matrix.cpantesters.org/?dist=Acme-Hidek%2044.0 for sample fail reports.
On Sat Aug 27 12:45:59 2016, SREZIC wrote: Show quoted text
> Tests fail with perl 5.25.x. See > http://matrix.cpantesters.org/?dist=Acme-Hidek%2044.0 for sample fail > reports.
Something like patch attached should correct the problem. Thank you very much. Jim Keenan
Subject: Acme-Hidek-unescaped-left-brace.diff
Only in blib/lib/Acme: .exists diff -u -r lib/Acme/Hidek.pm blib/lib/Acme/Hidek.pm --- lib/Acme/Hidek.pm 2014-09-02 09:54:54.000000000 -0400 +++ blib/lib/Acme/Hidek.pm 2016-12-20 10:59:50.121802633 -0500 @@ -91,18 +91,18 @@ my $a; for (1..5) { - $a = $aa[0]; $a =~ s!\${WORD}!おっ!!; + $a = $aa[0]; $a =~ s!\$\{WORD}!おっ!!; print "\e[2J$a"; sleep 0.1; - $a = $aa[1]; $a =~ s!\${WORD}!おっ!!; + $a = $aa[1]; $a =~ s!\$\{WORD}!おっ!!; print "\e[2J$a"; sleep 0.1; - $a = $aa[2]; $a =~ s!\${WORD}!おっ!!; + $a = $aa[2]; $a =~ s!\$\{WORD}!おっ!!; print "\e[2J$a"; sleep 0.5; - $a = $aa[2]; $a =~ s!\${WORD}!おっさん!!; + $a = $aa[2]; $a =~ s!\$\{WORD}!おっさん!!; print "\e[2J$a"; sleep 0.1; - $a = $aa[1]; $a =~ s!\${WORD}!おっさん!!; + $a = $aa[1]; $a =~ s!\$\{WORD}!おっさん!!; print "\e[2J$a"; sleep 0.1; - $a = $aa[0]; $a =~ s!\${WORD}!おっさん!!; + $a = $aa[0]; $a =~ s!\$\{WORD}!おっさん!!; print "\e[2J$a"; sleep 0.5; } } Only in blib/lib/: auto