Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C25ED84FD8 for ; Tue, 10 Oct 2023 16:05:37 +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 rJi-mrS6LKnW for ; Tue, 10 Oct 2023 16:05:37 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 337CB84E9E for ; Tue, 10 Oct 2023 16:05:37 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 30E01FADC; Tue, 10 Oct 2023 16:05:37 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1696953937105980" MIME-Version: 1.0 Date: Tue, 10 Oct 2023 16:05:37 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/textproc/py-markdown To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20231010160537.30E01FADC@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1696953937105980 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Oct 10 16:05:37 UTC 2023 Modified Files: pkgsrc/textproc/py-markdown: Makefile distinfo Log Message: py-markdown: updated to 3.5 3.5 Added Add permalink_leading configuration option to the toc extension A new boolean option permalink_leading controls the position of the permanent link anchors generated with permalink. Setting permalink_leading to True will cause the links to be inserted at the start of the header, before any other header content. The default behavior for permalink is to append permanent links to the header, placing them after all other header content. Changed Add support for cPython version 3.12 (and PyPy 3.10) and drop support for Python version 3.7 Refactor changelog to use the format defined at https://keepachangelog.com/. Update the list of empty HTML tags Add customizable TOC title class to TOC extension Add API documentation of the code base which is generated by mkdocstrings To generate a diff of this commit: cvs rdiff -u -r1.30 -r1.31 pkgsrc/textproc/py-markdown/Makefile cvs rdiff -u -r1.20 -r1.21 pkgsrc/textproc/py-markdown/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1696953937105980 Content-Disposition: inline Content-Length: 1610 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-markdown/Makefile diff -u pkgsrc/textproc/py-markdown/Makefile:1.30 pkgsrc/textproc/py-markdown/Makefile:1.31 --- pkgsrc/textproc/py-markdown/Makefile:1.30 Tue Aug 1 12:27:47 2023 +++ pkgsrc/textproc/py-markdown/Makefile Tue Oct 10 16:05:37 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.30 2023/08/01 12:27:47 adam Exp $ +# $NetBSD: Makefile,v 1.31 2023/10/10 16:05:37 adam Exp $ -DISTNAME= Markdown-3.4.4 +DISTNAME= Markdown-3.5 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl} CATEGORIES= textproc python MASTER_SITES= ${MASTER_SITE_PYPI:=M/Markdown/} Index: pkgsrc/textproc/py-markdown/distinfo diff -u pkgsrc/textproc/py-markdown/distinfo:1.20 pkgsrc/textproc/py-markdown/distinfo:1.21 --- pkgsrc/textproc/py-markdown/distinfo:1.20 Tue Aug 1 12:27:47 2023 +++ pkgsrc/textproc/py-markdown/distinfo Tue Oct 10 16:05:37 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.20 2023/08/01 12:27:47 adam Exp $ +$NetBSD: distinfo,v 1.21 2023/10/10 16:05:37 adam Exp $ -BLAKE2s (Markdown-3.4.4.tar.gz) = aba87b254fb8864a65dae2b3ca0d9ea78c2d845a340fb2c434d85908b8eb3155 -SHA512 (Markdown-3.4.4.tar.gz) = 39e808d5a4a07b57e931a844c3d8f6fe564849f8b5922eef6708e5a600cf7e742d92617d9d9649cab0eab34a6ffc7bc97e9ea960ffef75e9062aa375769e6a28 -Size (Markdown-3.4.4.tar.gz) = 324459 bytes +BLAKE2s (Markdown-3.5.tar.gz) = c8568ad00d34a31610d95b4c8b5324acddd954b2125491e71703f02d7b5dd08b +SHA512 (Markdown-3.5.tar.gz) = 309b6161bbfdc71a8e62b2ea299febb765bafe2e4123198a72038ae587cbba0ca00cdb3b514ecb5cd8117425f2031fa0260bd52fac7de158e12253edbc185422 +Size (Markdown-3.5.tar.gz) = 348161 bytes --_----------=_1696953937105980--