Received: by mail.netbsd.org (Postfix, from userid 605) id 7429084D67; Wed, 15 Jul 2020 07:44:03 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id EF7F484D66 for ; Wed, 15 Jul 2020 07:44: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 F_OxfgKVzVJv for ; Wed, 15 Jul 2020 07:44:02 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 719C684CF7 for ; Wed, 15 Jul 2020 07:44:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 970FBFB28; Wed, 15 Jul 2020 07:43:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1594799039227380" MIME-Version: 1.0 Date: Wed, 15 Jul 2020 07:43:59 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/print/py-latexcodec To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20200715074359.970FBFB28@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. --_----------=_1594799039227380 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Jul 15 07:43:59 UTC 2020 Modified Files: pkgsrc/print/py-latexcodec: Makefile distinfo Log Message: py-latexcodec: updated to 2.0.1 2.0.1: Drop Python 3.3 support. Added a few more translations. 2.0.0: Lexer now processes unicode directly, to fix various issues with multibyte encodings. This also simplifies the implementation. Many thanks to davidweichiang for reporting and implementing. New detailed description of the package for the readme, to clarify the behaviour and design choices. Many thanks to tschantzmc for contributing this description. Minor fix in decoding of LaTeX comments. Support Python 3.9 To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/print/py-latexcodec/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/print/py-latexcodec/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1594799039227380 Content-Disposition: inline Content-Length: 1958 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/print/py-latexcodec/Makefile diff -u pkgsrc/print/py-latexcodec/Makefile:1.3 pkgsrc/print/py-latexcodec/Makefile:1.4 --- pkgsrc/print/py-latexcodec/Makefile:1.3 Mon Nov 4 19:58:01 2019 +++ pkgsrc/print/py-latexcodec/Makefile Wed Jul 15 07:43:59 2020 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.3 2019/11/04 19:58:01 rillig Exp $ +# $NetBSD: Makefile,v 1.4 2020/07/15 07:43:59 adam Exp $ -DISTNAME= latexcodec-1.0.7 +DISTNAME= latexcodec-2.0.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= print python MASTER_SITES= ${MASTER_SITE_PYPI:=l/latexcodec/} @@ -10,7 +10,7 @@ HOMEPAGE= https://github.com/mcmtroffaes COMMENT= Lexer and codec for LaTeX LICENSE= mit -DEPENDS+= ${PYPKGPREFIX}-six>=1.5.2:../../lang/py-six +DEPENDS+= ${PYPKGPREFIX}-six>=1.4.1:../../lang/py-six USE_LANGUAGES= # none Index: pkgsrc/print/py-latexcodec/distinfo diff -u pkgsrc/print/py-latexcodec/distinfo:1.2 pkgsrc/print/py-latexcodec/distinfo:1.3 --- pkgsrc/print/py-latexcodec/distinfo:1.2 Thu Jun 6 21:11:52 2019 +++ pkgsrc/print/py-latexcodec/distinfo Wed Jul 15 07:43:59 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.2 2019/06/06 21:11:52 adam Exp $ +$NetBSD: distinfo,v 1.3 2020/07/15 07:43:59 adam Exp $ -SHA1 (latexcodec-1.0.7.tar.gz) = 5a9392d29753ef867517e599e4ce23d1aff03d84 -RMD160 (latexcodec-1.0.7.tar.gz) = aa0b198ab44f1988760b2920f713455e699ed430 -SHA512 (latexcodec-1.0.7.tar.gz) = 1308acf343cab43471566b12c70299225dad323e1ea8563b42b95cafaa1aaa9d4437c9b1031c15a788436e8ffdfa924653a455c8e5d8042ed44c5e854d9a3cba -Size (latexcodec-1.0.7.tar.gz) = 27127 bytes +SHA1 (latexcodec-2.0.1.tar.gz) = ffe1124614cebac89635687d4a5b4d1e26c8f847 +RMD160 (latexcodec-2.0.1.tar.gz) = 1377a011dec78d845135ca83f2444e8ffb2fcc0b +SHA512 (latexcodec-2.0.1.tar.gz) = e7f23b91904e0bd4a3f052f5f201b125e84c1f94a247b869e14c8f45ee8bc2c478e8887a792efa8c9b6d2b7fefed43fc66e797206b6e40aedaedc68ce7865cab +Size (latexcodec-2.0.1.tar.gz) = 30131 bytes --_----------=_1594799039227380--