Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 92B6B84ED7 for ; Wed, 5 Jul 2023 12:04:14 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id Bz6tnp4X9M-t for ; Wed, 5 Jul 2023 12:04:14 +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 0C11784EBB for ; Wed, 5 Jul 2023 12:04:14 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 09D9FFA89; Wed, 5 Jul 2023 12:04:14 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1688558654262040" MIME-Version: 1.0 Date: Wed, 5 Jul 2023 12:04:14 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-prompt_toolkit To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230705120414.09D9FFA89@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1688558654262040 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Jul 5 12:04:13 UTC 2023 Modified Files: pkgsrc/devel/py-prompt_toolkit: Makefile distinfo Log Message: py-prompt_toolkit: updated to 3.0.39 3.0.39: 2023-07-04 ------------------ Fixes: - Fix `RuntimeError` when `__breakpointhook__` is called from another thread. - Fix memory leak in filters usage. - Ensure that key bindings are handled in the right context (when using contextvars). New features: - Accept `in_thread` keyword in `prompt_toolkit.shortcuts.prompt()`. - Support the `NO_COLOR` environment variable. To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 pkgsrc/devel/py-prompt_toolkit/Makefile cvs rdiff -u -r1.23 -r1.24 pkgsrc/devel/py-prompt_toolkit/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1688558654262040 Content-Disposition: inline Content-Length: 1704 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-prompt_toolkit/Makefile diff -u pkgsrc/devel/py-prompt_toolkit/Makefile:1.22 pkgsrc/devel/py-prompt_toolkit/Makefile:1.23 --- pkgsrc/devel/py-prompt_toolkit/Makefile:1.22 Wed Mar 1 11:28:34 2023 +++ pkgsrc/devel/py-prompt_toolkit/Makefile Wed Jul 5 12:04:13 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.22 2023/03/01 11:28:34 adam Exp $ +# $NetBSD: Makefile,v 1.23 2023/07/05 12:04:13 adam Exp $ -DISTNAME= prompt_toolkit-3.0.38 +DISTNAME= prompt_toolkit-3.0.39 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=p/prompt_toolkit/} Index: pkgsrc/devel/py-prompt_toolkit/distinfo diff -u pkgsrc/devel/py-prompt_toolkit/distinfo:1.23 pkgsrc/devel/py-prompt_toolkit/distinfo:1.24 --- pkgsrc/devel/py-prompt_toolkit/distinfo:1.23 Wed Mar 1 11:28:34 2023 +++ pkgsrc/devel/py-prompt_toolkit/distinfo Wed Jul 5 12:04:13 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.23 2023/03/01 11:28:34 adam Exp $ +$NetBSD: distinfo,v 1.24 2023/07/05 12:04:13 adam Exp $ -BLAKE2s (prompt_toolkit-3.0.38.tar.gz) = e44e78fbc468608ec45276850dce28420d39cd951dd8bc70db5cff6b5ea3e46c -SHA512 (prompt_toolkit-3.0.38.tar.gz) = eed2a73501d7ac413986f069564295db9eced3be4853a73c687e511ce1cf8c32c7c9bff4f851787e7910ed05818d4eb39556718c01f30e3ba8bfafe67d631a38 -Size (prompt_toolkit-3.0.38.tar.gz) = 422834 bytes +BLAKE2s (prompt_toolkit-3.0.39.tar.gz) = 8e2c549980d6527a7df5047dd58388856c0574451281b135497274140e97c6a2 +SHA512 (prompt_toolkit-3.0.39.tar.gz) = 6aaa80d515cd9731be1cc0de97f679b9dc22701dfb3e23b5434240aae0cac5eaede08437171a710492ff4041a9d46956cf8ed02750e9a78319eb61223033ba90 +Size (prompt_toolkit-3.0.39.tar.gz) = 423068 bytes --_----------=_1688558654262040--