Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=b/gVGgsA; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=btjXeFmm Received: by mail.netbsd.org (Postfix, from userid 605) id 94FF984F23; Fri, 22 Mar 2024 18:48:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1711133287; bh=In4VqELxsDaMS3b4BHHOkbp7pNDVtKWWQFu0gs4uTZc=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=b/gVGgsApPM8Yf3JL8RwjMQXixZ3tMFWKTIaxu5KjrrTOjhTtXcR37/t+5VNQbc3l mXHS7TsUpgGvdfPRPyouzBZaC8wk5yyb194WG3zTC4M827ol9qqJq3x9qIr1hHJlNB LE6wIg+5KyCr7LNGZXSxfcoEyfWT7j2mlt1OdKj8= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8681B84F21 for ; Fri, 22 Mar 2024 18:48:06 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=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 d3sBYhazLL2K for ; Fri, 22 Mar 2024 18:48:05 +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 C8B2784CCA for ; Fri, 22 Mar 2024 18:48:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1711133285; bh=In4VqELxsDaMS3b4BHHOkbp7pNDVtKWWQFu0gs4uTZc=; h=Date:From:Subject:To:Reply-To; b=btjXeFmmOCDRDTaIwBUMhGI0cRhod3mmK0OOr3m1iy0cK6HbdWGlGfvgt39351WH/ F9AGbG6maOUTRAlFMMJjVCckUkvFBIp7Ey2r1rMcUazcfV1FLb8YEwvdLLR5eEG04E fy2BLQz2Rtd7NXjxp8RyYGIazznhsAVHO877oru4= Received: by cvs.NetBSD.org (Postfix, from userid 500) id BA4B8FA2C; Fri, 22 Mar 2024 18:48:05 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1711133285157660" MIME-Version: 1.0 Date: Fri, 22 Mar 2024 18:48:05 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/www/py-asgiref To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20240322184805.BA4B8FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1711133285157660 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Fri Mar 22 18:48:05 UTC 2024 Modified Files: pkgsrc/www/py-asgiref: Makefile PLIST distinfo Log Message: py-asgiref: updated to 3.8.1 3.8.1 (2024-03-22) ------------------ * Fixes a regression in 3.8.0 affecting nested task cancellation inside sync_to_async. 3.8.0 (2024-03-20) ------------------ * Adds support for Python 3.12. * Drops support for (end-of-life) Python 3.7. * Fixes task cancellation propagation to subtasks when using synchronous Django middleware. * Allows nesting ``sync_to_async`` via ``asyncio.wait_for``. * Corrects WSGI adapter handling of root path. * Handles case where `"client"` is ``None`` in WsgiToAsgi adapter. To generate a diff of this commit: cvs rdiff -u -r1.33 -r1.34 pkgsrc/www/py-asgiref/Makefile cvs rdiff -u -r1.9 -r1.10 pkgsrc/www/py-asgiref/PLIST cvs rdiff -u -r1.32 -r1.33 pkgsrc/www/py-asgiref/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1711133285157660 Content-Disposition: inline Content-Length: 3308 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-asgiref/Makefile diff -u pkgsrc/www/py-asgiref/Makefile:1.33 pkgsrc/www/py-asgiref/Makefile:1.34 --- pkgsrc/www/py-asgiref/Makefile:1.33 Sun Jul 30 15:09:22 2023 +++ pkgsrc/www/py-asgiref/Makefile Fri Mar 22 18:48:05 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.33 2023/07/30 15:09:22 adam Exp $ +# $NetBSD: Makefile,v 1.34 2024/03/22 18:48:05 adam Exp $ -DISTNAME= asgiref-3.7.2 +DISTNAME= asgiref-3.8.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_PYPI:=a/asgiref/} @@ -10,8 +10,9 @@ HOMEPAGE= https://github.com/django/asgi COMMENT= Contains various reference ASGI implementations LICENSE= modified-bsd +TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools +TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel TEST_DEPENDS+= ${PYPKGPREFIX}-mypy>=0.800:../../lang/py-mypy -TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test TEST_DEPENDS+= ${PYPKGPREFIX}-test-asyncio-[0-9]*:../../devel/py-test-asyncio USE_LANGUAGES= # none @@ -23,8 +24,5 @@ PYTHON_VERSIONS_INCOMPATIBLE= 27 DEPENDS+= ${PYPKGPREFIX}-typing-extensions>=4:../../devel/py-typing-extensions .endif -do-test: - cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests - -.include "../../lang/python/egg.mk" +.include "../../lang/python/wheel.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/www/py-asgiref/PLIST diff -u pkgsrc/www/py-asgiref/PLIST:1.9 pkgsrc/www/py-asgiref/PLIST:1.10 --- pkgsrc/www/py-asgiref/PLIST:1.9 Wed Apr 20 12:25:25 2022 +++ pkgsrc/www/py-asgiref/PLIST Fri Mar 22 18:48:05 2024 @@ -1,10 +1,9 @@ -@comment $NetBSD: PLIST,v 1.9 2022/04/20 12:25:25 adam Exp $ -${PYSITELIB}/${EGG_INFODIR}/PKG-INFO -${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt -${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt -${PYSITELIB}/${EGG_INFODIR}/not-zip-safe -${PYSITELIB}/${EGG_INFODIR}/requires.txt -${PYSITELIB}/${EGG_INFODIR}/top_level.txt +@comment $NetBSD: PLIST,v 1.10 2024/03/22 18:48:05 adam Exp $ +${PYSITELIB}/${WHEEL_INFODIR}/LICENSE +${PYSITELIB}/${WHEEL_INFODIR}/METADATA +${PYSITELIB}/${WHEEL_INFODIR}/RECORD +${PYSITELIB}/${WHEEL_INFODIR}/WHEEL +${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt ${PYSITELIB}/asgiref/__init__.py ${PYSITELIB}/asgiref/__init__.pyc ${PYSITELIB}/asgiref/__init__.pyo Index: pkgsrc/www/py-asgiref/distinfo diff -u pkgsrc/www/py-asgiref/distinfo:1.32 pkgsrc/www/py-asgiref/distinfo:1.33 --- pkgsrc/www/py-asgiref/distinfo:1.32 Sun Jul 30 15:09:22 2023 +++ pkgsrc/www/py-asgiref/distinfo Fri Mar 22 18:48:05 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.32 2023/07/30 15:09:22 adam Exp $ +$NetBSD: distinfo,v 1.33 2024/03/22 18:48:05 adam Exp $ -BLAKE2s (asgiref-3.7.2.tar.gz) = 89b37a9cd7af46767de71c4cab972d155e7d9ec3cff3d1faac23bb71afc6eef6 -SHA512 (asgiref-3.7.2.tar.gz) = 578ccb54e25869ac9bc7bcd59819d4fc056fdb89a27ec3d7c5b74608984c9d18b41f0b281a3a67bf6b56ad85a7009e336bbdd4a76e2b4a0c8a26c0dfef2687a8 -Size (asgiref-3.7.2.tar.gz) = 33393 bytes +BLAKE2s (asgiref-3.8.1.tar.gz) = 9abc5a6df005963824f4266fb5526a0064c022d7aeffd567fa745235c6695cab +SHA512 (asgiref-3.8.1.tar.gz) = 3ef9ac2fcdce069cde96467abaa4a820c4eac19d40ce72e1afd0ca08279c00053a7e107966d766651def33a72a19c11559849b1032e89d62f544156590ef801d +Size (asgiref-3.8.1.tar.gz) = 35186 bytes --_----------=_1711133285157660--