diff options
author | markd <markd@pkgsrc.org> | 2016-04-23 21:56:07 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2016-04-23 21:56:07 +0000 |
commit | 992f2dd02462e7ce47154ce09f2d0b2617ec815a (patch) | |
tree | 26c1036ec44dcbd3d182b7bfe470d8087f4eab49 /print | |
parent | 9519a461488fb46d9cab7170a2c04c310d612756 (diff) | |
download | pkgsrc-992f2dd02462e7ce47154ce09f2d0b2617ec815a.tar.gz |
Remove redundant patch.
Diffstat (limited to 'print')
-rw-r--r-- | print/p5-biblatex-biber/patches/patch-lib_Biber_LaTeX_Recode.pm | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/print/p5-biblatex-biber/patches/patch-lib_Biber_LaTeX_Recode.pm b/print/p5-biblatex-biber/patches/patch-lib_Biber_LaTeX_Recode.pm deleted file mode 100644 index 5250c7c394c..00000000000 --- a/print/p5-biblatex-biber/patches/patch-lib_Biber_LaTeX_Recode.pm +++ /dev/null @@ -1,24 +0,0 @@ -$NetBSD: patch-lib_Biber_LaTeX_Recode.pm,v 1.1 2016/03/30 05:33:00 markd Exp $ - -Work with perl 5.22 - ---- lib/Biber/LaTeX/Recode.pm.orig 2014-06-26 07:25:09.000000000 +0000 -+++ lib/Biber/LaTeX/Recode.pm -@@ -5,6 +5,8 @@ use warnings; - use base qw(Exporter); - use Biber::Config; - use Encode; -+use File::Slurp; -+use File::Spec; - use IPC::Cmd qw( can_run ); - use IPC::Run3; # This works with PAR::Packer and Windows. IPC::Run doesn't - use Unicode::Normalize; -@@ -261,7 +263,7 @@ sub latex_decode { - $text =~ s/\\textsuperscript{\\($re)}/$map->{$1}/ge if $re; - } - elsif ($type eq 'dings') { -- $text =~ s/\\ding{([2-9AF][0-9A-F])}/$map->{$1}/ge; -+ $text =~ s/\\ding\{([2-9AF][0-9A-F])\}/$map->{$1}/ge; - } - elsif ($type eq 'letters') { - $text =~ s/\\($re)(?: \{\}|\s+|\b)/$map->{$1}/gxe; |