pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/textproc/latex2html
Module Name: pkgsrc
Committed By: joerg
Date: Thu Dec 19 22:24:01 UTC 2019
Modified Files:
pkgsrc/textproc/latex2html: Makefile distinfo
Added Files:
pkgsrc/textproc/latex2html/patches: patch-latex2html.pin
Log Message:
Fix compatability with regex restrictions in current Perl. Bump
revision.
To generate a diff of this commit:
cvs rdiff -u -r1.50 -r1.51 pkgsrc/textproc/latex2html/Makefile
cvs rdiff -u -r1.17 -r1.18 pkgsrc/textproc/latex2html/distinfo
cvs rdiff -u -r0 -r1.1 \
pkgsrc/textproc/latex2html/patches/patch-latex2html.pin
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/textproc/latex2html/Makefile
diff -u pkgsrc/textproc/latex2html/Makefile:1.50 pkgsrc/textproc/latex2html/Makefile:1.51
--- pkgsrc/textproc/latex2html/Makefile:1.50 Sun Aug 11 13:23:25 2019
+++ pkgsrc/textproc/latex2html/Makefile Thu Dec 19 22:24:01 2019
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.50 2019/08/11 13:23:25 wiz Exp $
+# $NetBSD: Makefile,v 1.51 2019/12/19 22:24:01 joerg Exp $
DISTNAME= latex2html-2016
-PKGREVISION= 3
+PKGREVISION= 4
CATEGORIES= textproc converters
MASTER_SITES= ${MASTER_SITE_TEX_CTAN:=support/latex2html/}
Index: pkgsrc/textproc/latex2html/distinfo
diff -u pkgsrc/textproc/latex2html/distinfo:1.17 pkgsrc/textproc/latex2html/distinfo:1.18
--- pkgsrc/textproc/latex2html/distinfo:1.17 Sun Aug 19 18:03:29 2018
+++ pkgsrc/textproc/latex2html/distinfo Thu Dec 19 22:24:01 2019
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.17 2018/08/19 18:03:29 dholland Exp $
+$NetBSD: distinfo,v 1.18 2019/12/19 22:24:01 joerg Exp $
SHA1 (latex2html-2016.tar.gz) = 667308a050a071106acc573f4b88f919bb0809c9
RMD160 (latex2html-2016.tar.gz) = 1e400a65753ee8520acf1d3c4f9356d1e58fa033
@@ -7,3 +7,4 @@ Size (latex2html-2016.tar.gz) = 1149971
SHA1 (patch-Makefile.in) = b9b94d3a0f561c67fd0f644c8632bfb540b749ec
SHA1 (patch-ab) = 53ad611dec3cd301c907b0285020272da29ab8ef
SHA1 (patch-configure) = a3b2d77020045b2b8f732f03d0d4d8045311efb9
+SHA1 (patch-latex2html.pin) = 70fda72edbca509a94c93a2acb270a37a83e113c
Added files:
Index: pkgsrc/textproc/latex2html/patches/patch-latex2html.pin
diff -u /dev/null pkgsrc/textproc/latex2html/patches/patch-latex2html.pin:1.1
--- /dev/null Thu Dec 19 22:24:01 2019
+++ pkgsrc/textproc/latex2html/patches/patch-latex2html.pin Thu Dec 19 22:24:01 2019
@@ -0,0 +1,16 @@
+$NetBSD: patch-latex2html.pin,v 1.1 2019/12/19 22:24:01 joerg Exp $
+
+Newer Perl complains about:
+Unescaped left brace in regex is illegal here in regex
+
+--- latex2html.pin.orig 2019-12-19 18:41:23.595437753 +0000
++++ latex2html.pin
+@@ -6507,7 +6507,7 @@ sub parse_keyvalues {
+ print "\nATTRIBS: $saved\n" if ($VERBOSITY > 6);
+
+ $saved =~ s/$percent_mark/%/g;
+- $saved =~ s/((^|[\s,=])')\\\W{(\w)}/$1$3/g
++ $saved =~ s/((^|[\s,=])')\\\W\{(\w)}/$1$3/g
+ if $is_german; #unwanted accents, from active "
+ if (@tags) {
+ foreach $tag (@tags) {
Home |
Main Index |
Thread Index |
Old Index