Received: by mail.netbsd.org (Postfix, from userid 605) id 98A3884D32; Thu, 2 Feb 2023 13:16:03 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C9D5784D31 for ; Thu, 2 Feb 2023 13:16: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 lOMa2ImKCNYt for ; Thu, 2 Feb 2023 13:16:02 +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 3879284C71 for ; Thu, 2 Feb 2023 13:16:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 31395FA90; Thu, 2 Feb 2023 13:16:02 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1675343762196180" MIME-Version: 1.0 Date: Thu, 2 Feb 2023 13:16:02 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/bpython To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230202131602.31395FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1675343762196180 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Feb 2 13:16:02 UTC 2023 Modified Files: pkgsrc/devel/bpython: Makefile distinfo Log Message: bpython: updated to 0.24 0.24 ---- General information: * This release is focused on Python 3.11 support. New features: * Add more keywords to trigger auto-deindent. Thanks to Eric Burgess Fixes: * Improve inspection of builtin functions. Changes to dependencies: * wheel is no required as part of pyproject.toml's build dependencies Support for Python 3.11 has been added. To generate a diff of this commit: cvs rdiff -u -r1.35 -r1.36 pkgsrc/devel/bpython/Makefile cvs rdiff -u -r1.11 -r1.12 pkgsrc/devel/bpython/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1675343762196180 Content-Disposition: inline Content-Length: 2111 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/bpython/Makefile diff -u pkgsrc/devel/bpython/Makefile:1.35 pkgsrc/devel/bpython/Makefile:1.36 --- pkgsrc/devel/bpython/Makefile:1.35 Thu Sep 15 17:55:32 2022 +++ pkgsrc/devel/bpython/Makefile Thu Feb 2 13:16:02 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.35 2022/09/15 17:55:32 adam Exp $ +# $NetBSD: Makefile,v 1.36 2023/02/02 13:16:02 adam Exp $ -DISTNAME= bpython-0.23 +DISTNAME= bpython-0.24 CATEGORIES= devel python MASTER_SITES= https://bpython-interpreter.org/releases/ @@ -23,15 +23,9 @@ DEPENDS+= ${PYPKGPREFIX}-xdg-[0-9]*:../. USE_LANGUAGES= # none -PYTHON_VERSIONS_INCOMPATIBLE= 27 - USE_PKG_RESOURCES= yes -.include "../../lang/python/pyversion.mk" -.if ${_PYTHON_VERSION} < 38 -DEPENDS+= ${PYPKGPREFIX}-backports.cached-property-[0-9]*:../../devel/py-backports.cached-property -DEPENDS+= ${PYPKGPREFIX}-typing-extensions-[0-9]*:../../devel/py-typing-extensions -.endif +PYTHON_VERSIONS_INCOMPATIBLE= 27 .include "../../lang/python/egg.mk" .include "../../sysutils/desktop-file-utils/desktopdb.mk" Index: pkgsrc/devel/bpython/distinfo diff -u pkgsrc/devel/bpython/distinfo:1.11 pkgsrc/devel/bpython/distinfo:1.12 --- pkgsrc/devel/bpython/distinfo:1.11 Thu Sep 15 17:55:32 2022 +++ pkgsrc/devel/bpython/distinfo Thu Feb 2 13:16:02 2023 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.11 2022/09/15 17:55:32 adam Exp $ +$NetBSD: distinfo,v 1.12 2023/02/02 13:16:02 adam Exp $ -BLAKE2s (bpython-0.23.tar.gz) = 0fa5d47f2bcd131c6428dc15e5a117211195c1b44fddce27c8410dfc3385e818 -SHA512 (bpython-0.23.tar.gz) = b25b68a690b838fef0c5dbb05565db4373ebb3611278b9f94db792ef25a43f59e3e9b7ac1ad0f571ae442948748b6c5e28888c6aa0f592cdf8499223cfded217 -Size (bpython-0.23.tar.gz) = 222241 bytes +BLAKE2s (bpython-0.24.tar.gz) = 1b136f02bbd24284968f157bd4348ccf4dc4d51a4e9e308f6b8c9b75a5903c06 +SHA512 (bpython-0.24.tar.gz) = f95e853ad5aaba476cf0bcc197ae1d322af4a458637f8445372b54b75d315d3caae7a3f8b7d8c6d1bd2c4307c36b21cf320b22c367990bd0b9bfbf42a5e02267 +Size (bpython-0.24.tar.gz) = 222879 bytes SHA1 (patch-setup.py) = 9caba0004771928676c7d0d4f7c0594f8ba6934a --_----------=_1675343762196180--