Received: by mail.netbsd.org (Postfix, from userid 605) id BD99D84F1D; Mon, 15 May 2023 22:20:08 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5505484DBF for ; Mon, 15 May 2023 22:04:55 +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 9K6QbstHru0j for ; Mon, 15 May 2023 22:04:54 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B641884D8C for ; Mon, 15 May 2023 22:04:54 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 26E18FA88; Mon, 15 May 2023 22:04:36 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1684188276235260" MIME-Version: 1.0 Date: Mon, 15 May 2023 22:04:36 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/py-guppy3 To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230515220436.26E18FA88@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1684188276235260 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon May 15 22:04:36 UTC 2023 Modified Files: pkgsrc/devel/py-guppy3: Makefile distinfo Log Message: py-guppy3: update to 3.1.3. This release adds support for Python 3.11. However, please note that the profiling process will materialize a few optimizations of Python 3.11, including lazily-created frame objects and object managed dicts. This means that the profiler may cause a lot more additional memory to be allocated and as a result overestimate the memory usage. This release also fixes a few bug fixes, including: o Fix profile browser initialization on Python 3.10+ o Fix crash doing path calculation when a path component is non-comparable o Fix crash when a type doesn't have __module__ To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/devel/py-guppy3/Makefile \ pkgsrc/devel/py-guppy3/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1684188276235260 Content-Disposition: inline Content-Length: 1871 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-guppy3/Makefile diff -u pkgsrc/devel/py-guppy3/Makefile:1.10 pkgsrc/devel/py-guppy3/Makefile:1.11 --- pkgsrc/devel/py-guppy3/Makefile:1.10 Mon Nov 14 22:06:02 2022 +++ pkgsrc/devel/py-guppy3/Makefile Mon May 15 22:04:35 2023 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.10 2022/11/14 22:06:02 wiz Exp $ +# $NetBSD: Makefile,v 1.11 2023/05/15 22:04:35 wiz Exp $ -DISTNAME= guppy3-3.1.2 +DISTNAME= guppy3-3.1.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 1 CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=g/guppy3/} @@ -13,9 +12,7 @@ LICENSE= mit DEPENDS+= ${PYPKGPREFIX}-Tk-[0-9]*:../../x11/py-Tk -# no 3.11 support as of 3.1.2 -# https://github.com/zhuyifei1999/guppy3/issues/41 -PYTHON_VERSIONS_INCOMPATIBLE= 27 311 +PYTHON_VERSIONS_INCOMPATIBLE= 27 .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-guppy3/distinfo diff -u pkgsrc/devel/py-guppy3/distinfo:1.10 pkgsrc/devel/py-guppy3/distinfo:1.11 --- pkgsrc/devel/py-guppy3/distinfo:1.10 Tue Oct 26 17:20:47 2021 +++ pkgsrc/devel/py-guppy3/distinfo Mon May 15 22:04:35 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.10 2021/10/26 17:20:47 adam Exp $ +$NetBSD: distinfo,v 1.11 2023/05/15 22:04:35 wiz Exp $ -BLAKE2s (guppy3-3.1.2.tar.gz) = 3997e8b19c105be1fdfcb4afeda8c67d832d6fc2d0d11306eb5fc0a0a7e2bacf -SHA512 (guppy3-3.1.2.tar.gz) = f449311b08353870de25bf1856ea69aa7d4f31d175b3c90e6f6fa88f99f2a35d94ac3b7464af2e8c6b9ee3e66535cc9d4316b2069ee707b9bea2cf9c3e896c99 -Size (guppy3-3.1.2.tar.gz) = 335083 bytes +BLAKE2s (guppy3-3.1.3.tar.gz) = fdb656c72381054fc964af2c8a01d33f82fb439dc5d180730ef21c90e96980ea +SHA512 (guppy3-3.1.3.tar.gz) = f35219ecea5fa20edf3f064109b16ea3b022fea666415751000329fb35726759a697b79efe6a93c29d1a422a57c6dbb881bb313e267a569b621fef6cb0971c68 +Size (guppy3-3.1.3.tar.gz) = 343281 bytes --_----------=_1684188276235260--