Received: by mail.netbsd.org (Postfix, from userid 605) id 93E2384D84; Sat, 16 May 2020 14:00:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1C70884D59 for ; Sat, 16 May 2020 14:00:49 +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 ijxBgIo0qlYo for ; Sat, 16 May 2020 14:00:48 +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 9053184D20 for ; Sat, 16 May 2020 14:00:48 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8802BFB27; Sat, 16 May 2020 14:00:48 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1589637648195270" MIME-Version: 1.0 Date: Sat, 16 May 2020 14:00:48 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-test-asyncio To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20200516140048.8802BFB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1589637648195270 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sat May 16 14:00:48 UTC 2020 Modified Files: pkgsrc/devel/py-test-asyncio: Makefile distinfo Log Message: py-test-asyncio: updated to 0.12.0 0.12.0: Run the event loop fixture as soon as possible. This helps with fixtures that have an implicit dependency on the event loop. 0.11.0: Test on 3.8, drop 3.3 and 3.4. Stick to 0.10 for these versions. Use the new Pytest 5.4.0 Function API. We therefore depend on pytest >= 5.4.0. Better pytest.skip support. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/py-test-asyncio/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/py-test-asyncio/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1589637648195270 Content-Disposition: inline Content-Length: 2051 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-test-asyncio/Makefile diff -u pkgsrc/devel/py-test-asyncio/Makefile:1.5 pkgsrc/devel/py-test-asyncio/Makefile:1.6 --- pkgsrc/devel/py-test-asyncio/Makefile:1.5 Thu May 2 09:18:28 2019 +++ pkgsrc/devel/py-test-asyncio/Makefile Sat May 16 14:00:48 2020 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.5 2019/05/02 09:18:28 adam Exp $ +# $NetBSD: Makefile,v 1.6 2020/05/16 14:00:48 adam Exp $ -DISTNAME= pytest-asyncio-0.10.0 +DISTNAME= pytest-asyncio-0.12.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=p/pytest-asyncio/} @@ -10,7 +10,7 @@ HOMEPAGE= https://github.com/pytest-dev/ COMMENT= Pytest support for asyncio LICENSE= apache-2.0 -DEPENDS+= ${PYPKGPREFIX}-test>=3.0.6:../../devel/py-test +DEPENDS+= ${PYPKGPREFIX}-test>=5.4.0:../../devel/py-test USE_LANGUAGES= # none Index: pkgsrc/devel/py-test-asyncio/distinfo diff -u pkgsrc/devel/py-test-asyncio/distinfo:1.3 pkgsrc/devel/py-test-asyncio/distinfo:1.4 --- pkgsrc/devel/py-test-asyncio/distinfo:1.3 Tue Jan 8 09:10:11 2019 +++ pkgsrc/devel/py-test-asyncio/distinfo Sat May 16 14:00:48 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2019/01/08 09:10:11 adam Exp $ +$NetBSD: distinfo,v 1.4 2020/05/16 14:00:48 adam Exp $ -SHA1 (pytest-asyncio-0.10.0.tar.gz) = 197a54291aed1460c5732139e933370558d84196 -RMD160 (pytest-asyncio-0.10.0.tar.gz) = c51eb6e2dc641508a4731b9930cc1076d15280cb -SHA512 (pytest-asyncio-0.10.0.tar.gz) = 189b8756d4b90a5dce678e41bc285f391fc47fca4250feebf3bcf8d0d617c2d6f4d43455b7876a7fb376a0c0b45f6343e9070b1796aab4b6a3b337df462dc831 -Size (pytest-asyncio-0.10.0.tar.gz) = 11765 bytes +SHA1 (pytest-asyncio-0.12.0.tar.gz) = 4ba63bc2f83e34378f9e34b72fefc81b851a9d87 +RMD160 (pytest-asyncio-0.12.0.tar.gz) = ba334a6474893df3b88c316e4362c24bb69b961d +SHA512 (pytest-asyncio-0.12.0.tar.gz) = 6fbb91f6935ecfac78567f92b0bb45b947e336d6c4d6c8da3dad9a43694f090bb23f89b0a6725c835e3aaf17d87b3b786e159998300594f13a8e894f28076089 +Size (pytest-asyncio-0.12.0.tar.gz) = 13224 bytes --_----------=_1589637648195270--