Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 533051A9217 for ; Wed, 9 Dec 2020 09:44:06 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 98D7C84DE9; Wed, 9 Dec 2020 09:44:05 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D339484DE8 for ; Wed, 9 Dec 2020 09:44:04 +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 BDqKNrao2D5r for ; Wed, 9 Dec 2020 09:44:04 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 4382484CD8 for ; Wed, 9 Dec 2020 09:44:04 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3CFEEFA9D; Wed, 9 Dec 2020 09:44:04 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_160750704410420" MIME-Version: 1.0 Date: Wed, 9 Dec 2020 09:44:04 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/www/py-uvicorn To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20201209094404.3CFEEFA9D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_160750704410420 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Dec 9 09:44:04 UTC 2020 Modified Files: pkgsrc/www/py-uvicorn: Makefile PLIST distinfo Log Message: py-uvicorn: updated to 0.13.0 0.13.0: Added Add --factory flag to support factory-style application imports. Skip installation of signal handlers when not in the main thread. Allows using Server in multithreaded contexts without having to override .install_signal_handlers(). To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 pkgsrc/www/py-uvicorn/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/www/py-uvicorn/PLIST cvs rdiff -u -r1.12 -r1.13 pkgsrc/www/py-uvicorn/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_160750704410420 Content-Disposition: inline Content-Length: 3060 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-uvicorn/Makefile diff -u pkgsrc/www/py-uvicorn/Makefile:1.13 pkgsrc/www/py-uvicorn/Makefile:1.14 --- pkgsrc/www/py-uvicorn/Makefile:1.13 Tue Nov 24 09:23:53 2020 +++ pkgsrc/www/py-uvicorn/Makefile Wed Dec 9 09:44:04 2020 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.13 2020/11/24 09:23:53 adam Exp $ +# $NetBSD: Makefile,v 1.14 2020/12/09 09:44:04 adam Exp $ -DISTNAME= uvicorn-0.12.3 +DISTNAME= uvicorn-0.13.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_PYPI:=u/uvicorn/} Index: pkgsrc/www/py-uvicorn/PLIST diff -u pkgsrc/www/py-uvicorn/PLIST:1.4 pkgsrc/www/py-uvicorn/PLIST:1.5 --- pkgsrc/www/py-uvicorn/PLIST:1.4 Tue Nov 24 09:23:53 2020 +++ pkgsrc/www/py-uvicorn/PLIST Wed Dec 9 09:44:04 2020 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 2020/11/24 09:23:53 adam Exp $ +@comment $NetBSD: PLIST,v 1.5 2020/12/09 09:44:04 adam Exp $ bin/uvicorn-${PYVERSSUFFIX} ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt @@ -12,12 +12,6 @@ ${PYSITELIB}/uvicorn/__init__.pyo ${PYSITELIB}/uvicorn/__main__.py ${PYSITELIB}/uvicorn/__main__.pyc ${PYSITELIB}/uvicorn/__main__.pyo -${PYSITELIB}/uvicorn/_impl/__init__.py -${PYSITELIB}/uvicorn/_impl/__init__.pyc -${PYSITELIB}/uvicorn/_impl/__init__.pyo -${PYSITELIB}/uvicorn/_impl/asyncio.py -${PYSITELIB}/uvicorn/_impl/asyncio.pyc -${PYSITELIB}/uvicorn/_impl/asyncio.pyo ${PYSITELIB}/uvicorn/_types.py ${PYSITELIB}/uvicorn/_types.pyc ${PYSITELIB}/uvicorn/_types.pyo @@ -102,6 +96,9 @@ ${PYSITELIB}/uvicorn/protocols/websocket ${PYSITELIB}/uvicorn/protocols/websockets/wsproto_impl.py ${PYSITELIB}/uvicorn/protocols/websockets/wsproto_impl.pyc ${PYSITELIB}/uvicorn/protocols/websockets/wsproto_impl.pyo +${PYSITELIB}/uvicorn/server.py +${PYSITELIB}/uvicorn/server.pyc +${PYSITELIB}/uvicorn/server.pyo ${PYSITELIB}/uvicorn/subprocess.py ${PYSITELIB}/uvicorn/subprocess.pyc ${PYSITELIB}/uvicorn/subprocess.pyo Index: pkgsrc/www/py-uvicorn/distinfo diff -u pkgsrc/www/py-uvicorn/distinfo:1.12 pkgsrc/www/py-uvicorn/distinfo:1.13 --- pkgsrc/www/py-uvicorn/distinfo:1.12 Tue Nov 24 09:23:53 2020 +++ pkgsrc/www/py-uvicorn/distinfo Wed Dec 9 09:44:04 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.12 2020/11/24 09:23:53 adam Exp $ +$NetBSD: distinfo,v 1.13 2020/12/09 09:44:04 adam Exp $ -SHA1 (uvicorn-0.12.3.tar.gz) = 9c037f6724202f2c8a2e8307de581a57faaaddb0 -RMD160 (uvicorn-0.12.3.tar.gz) = 8ccf76e7447f79b9f02cae18e192a92b513b7e88 -SHA512 (uvicorn-0.12.3.tar.gz) = a7a589c305d45fea4242c0ad05bd272183dc81d949e286d148c76ef0f80e7c1b114a9d66696a5e055947d9e303b156a8cf952f6618b385f3cd908795ab23524e -Size (uvicorn-0.12.3.tar.gz) = 32062 bytes +SHA1 (uvicorn-0.13.0.tar.gz) = 1b088caad74569e16fc40b83f85e9055ee2ee2fc +RMD160 (uvicorn-0.13.0.tar.gz) = 77942876b72cd0518a07c9d34d8bce10ec154b16 +SHA512 (uvicorn-0.13.0.tar.gz) = ed88c577b135c0ce8bad999c5da793491e069e34fd9d530d24ae09f3fef3ffd244091c4ceca978c294e79b3a8038e94c48c61cc270ec91735ee636af7f3b6acc +Size (uvicorn-0.13.0.tar.gz) = 32209 bytes --_----------=_160750704410420--