Received: by mail.netbsd.org (Postfix, from userid 605) id DB4D884DCB; Thu, 19 Dec 2019 22:24:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6279084D4E for ; Thu, 19 Dec 2019 22:24:02 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id dcFmjjswqiEP for ; Thu, 19 Dec 2019 22:24:01 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D41FA84C2B for ; Thu, 19 Dec 2019 22:24:01 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CBF66FA97; Thu, 19 Dec 2019 22:24:01 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1576794241289260" MIME-Version: 1.0 Date: Thu, 19 Dec 2019 22:24:01 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/textproc/latex2html To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20191219222401.CBF66FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1576794241289260 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" 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. --_----------=_1576794241289260 Content-Disposition: inline Content-Length: 2329 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii 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) { --_----------=_1576794241289260--