Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BA24784D50 for ; Mon, 11 Dec 2023 12:22:06 +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 hi57A63vWQVv for ; Mon, 11 Dec 2023 12:22:06 +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 2910685016 for ; Mon, 11 Dec 2023 12:22:06 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1DC5DFA42; Mon, 11 Dec 2023 12:22:06 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1702297326258450" MIME-Version: 1.0 Date: Mon, 11 Dec 2023 12:22:06 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-greenlet To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20231211122206.1DC5DFA42@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1702297326258450 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Dec 11 12:22:06 UTC 2023 Modified Files: pkgsrc/devel/py-greenlet: Makefile distinfo Log Message: py-greenlet: updated to 3.0.2 3.0.2 (2023-12-08) - Packaging: Add a minimal ``pyproject.toml`` to sdists. - Packaging: Various updates to macOS wheels. - Fix a test case on Arm32. Note that this is not a supported platform (there is no CI for it) and support is best effort; there may be other issues lurking. To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 pkgsrc/devel/py-greenlet/Makefile cvs rdiff -u -r1.20 -r1.21 pkgsrc/devel/py-greenlet/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1702297326258450 Content-Disposition: inline Content-Length: 2374 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-greenlet/Makefile diff -u pkgsrc/devel/py-greenlet/Makefile:1.21 pkgsrc/devel/py-greenlet/Makefile:1.22 --- pkgsrc/devel/py-greenlet/Makefile:1.21 Sun Oct 29 16:56:42 2023 +++ pkgsrc/devel/py-greenlet/Makefile Mon Dec 11 12:22:05 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.21 2023/10/29 16:56:42 wiz Exp $ +# $NetBSD: Makefile,v 1.22 2023/12/11 12:22:05 adam Exp $ -DISTNAME= greenlet-3.0.1 +DISTNAME= greenlet-3.0.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=g/greenlet/} @@ -10,9 +10,10 @@ HOMEPAGE= https://github.com/python-gree COMMENT= Lightweight in-process concurrent programming LICENSE= mit -TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools +TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=40.8.0:../../devel/py-setuptools TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel TEST_DEPENDS+= ${PYPKGPREFIX}-objgraph-[0-9]*:../../graphics/py-objgraph +TEST_DEPENDS+= ${PYPKGPREFIX}-psutil-[0-9]*:../../sysutils/py-psutil USE_LANGUAGES= c c++ @@ -24,9 +25,5 @@ USE_CXX_FEATURES+= c++11 PYTHON_VERSIONS_INCOMPATIBLE= 27 -# no tests included -#do-test: -# cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHONBIN} -m unittest discover greenlet.tests - .include "../../lang/python/wheel.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-greenlet/distinfo diff -u pkgsrc/devel/py-greenlet/distinfo:1.20 pkgsrc/devel/py-greenlet/distinfo:1.21 --- pkgsrc/devel/py-greenlet/distinfo:1.20 Sun Oct 29 16:56:42 2023 +++ pkgsrc/devel/py-greenlet/distinfo Mon Dec 11 12:22:05 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.20 2023/10/29 16:56:42 wiz Exp $ +$NetBSD: distinfo,v 1.21 2023/12/11 12:22:05 adam Exp $ -BLAKE2s (greenlet-3.0.1.tar.gz) = 9370ae981e0dabf949ac8a32bac1e0b6f44b6212cbba608fc1c7f0b1a30c88ad -SHA512 (greenlet-3.0.1.tar.gz) = 67d74352802331642eba0917550a75e9bc2a7d223bc0ce4ee7993d05197b4d0650813439e7c495baf2309303740cd21e60a157e634aafff470332a685603ffec -Size (greenlet-3.0.1.tar.gz) = 174825 bytes +BLAKE2s (greenlet-3.0.2.tar.gz) = 8e4ffee8d831d428a7ec0fec818f2f0fda6028ba2327a2a5eb4507921cfa4d3e +SHA512 (greenlet-3.0.2.tar.gz) = 901e1a918017878b150c845a180ed366f35dbb9d89b155df1dad4e2ee581c4a327ffad9d17ab221172ca151cd460521a7dca48b3ee64a33bf2e442949a30ecb3 +Size (greenlet-3.0.2.tar.gz) = 175506 bytes --_----------=_1702297326258450--