Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_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 1BBEC1A921F for ; Wed, 6 Apr 2022 15:15:52 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 3D91C84ED3; Wed, 6 Apr 2022 15:15:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7975F84E82 for ; Wed, 6 Apr 2022 15:15:50 +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 TJRBm5I_2JmO for ; Wed, 6 Apr 2022 15:15:49 +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 DA43B84D96 for ; Wed, 6 Apr 2022 15:15:49 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D35D4FB24; Wed, 6 Apr 2022 15:15:49 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1649258149280890" MIME-Version: 1.0 Date: Wed, 6 Apr 2022 15:15:49 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-ipykernel To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20220406151549.D35D4FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1649258149280890 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Apr 6 15:15:49 UTC 2022 Modified Files: pkgsrc/devel/py-ipykernel: Makefile distinfo Log Message: py-ipykernel: updated to 6.12.1 6.12.1 Maintenance and upkeep improvements - Clean up test deps and test setup 6.12.0 Enhancements made - use packaging instead of pkg_resources to parse versions Bugs fixed - Make cell_id optional - Do not try to send on iostream if closed To generate a diff of this commit: cvs rdiff -u -r1.34 -r1.35 pkgsrc/devel/py-ipykernel/Makefile cvs rdiff -u -r1.28 -r1.29 pkgsrc/devel/py-ipykernel/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1649258149280890 Content-Disposition: inline Content-Length: 2904 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-ipykernel/Makefile diff -u pkgsrc/devel/py-ipykernel/Makefile:1.34 pkgsrc/devel/py-ipykernel/Makefile:1.35 --- pkgsrc/devel/py-ipykernel/Makefile:1.34 Thu Mar 31 18:27:24 2022 +++ pkgsrc/devel/py-ipykernel/Makefile Wed Apr 6 15:15:49 2022 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.34 2022/03/31 18:27:24 adam Exp $ +# $NetBSD: Makefile,v 1.35 2022/04/06 15:15:49 adam Exp $ -DISTNAME= ipykernel-6.11.0 +DISTNAME= ipykernel-6.12.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=i/ipykernel/} @@ -12,15 +12,18 @@ LICENSE= modified-bsd DEPENDS+= ${PYPKGPREFIX}-debugpy>=1.0.0:../../devel/py-debugpy DEPENDS+= ${PYPKGPREFIX}-ipython>=7.23.1:../../devel/py-ipython -DEPENDS+= ${PYPKGPREFIX}-jupyter_client-[0-9]*:../../devel/py-jupyter_client +DEPENDS+= ${PYPKGPREFIX}-jupyter_client>=6.1.12:../../devel/py-jupyter_client DEPENDS+= ${PYPKGPREFIX}-matplotlib-inline>=0.1.0:../../graphics/py-matplotlib-inline DEPENDS+= ${PYPKGPREFIX}-nest-asyncio-[0-9]*:../../devel/py-nest-asyncio -DEPENDS+= ${PYPKGPREFIX}-tornado>=4.2:../../www/py-tornado +DEPENDS+= ${PYPKGPREFIX}-packaging-[0-9]*:../../devel/py-packaging +DEPENDS+= ${PYPKGPREFIX}-psutil-[0-9]*:../../sysutils/py-psutil +DEPENDS+= ${PYPKGPREFIX}-tornado>=6.1:../../www/py-tornado DEPENDS+= ${PYPKGPREFIX}-traitlets>=5.1.0:../../devel/py-traitlets TEST_DEPENDS+= ${PYPKGPREFIX}-flaky-[0-9]*:../../devel/py-flaky TEST_DEPENDS+= ${PYPKGPREFIX}-ipyparallel-[0-9]*:../../parallel/py-ipyparallel -TEST_DEPENDS+= ${PYPKGPREFIX}-test>=5.3.5:../../devel/py-test +TEST_DEPENDS+= ${PYPKGPREFIX}-test>=6.0.0:../../devel/py-test TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov +TEST_DEPENDS+= ${PYPKGPREFIX}-test-timeout-[0-9]*:../../devel/py-test-timeout .include "../../mk/bsd.prefs.mk" .if ${OPSYS} == "Darwin" Index: pkgsrc/devel/py-ipykernel/distinfo diff -u pkgsrc/devel/py-ipykernel/distinfo:1.28 pkgsrc/devel/py-ipykernel/distinfo:1.29 --- pkgsrc/devel/py-ipykernel/distinfo:1.28 Thu Mar 31 18:27:24 2022 +++ pkgsrc/devel/py-ipykernel/distinfo Wed Apr 6 15:15:49 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.28 2022/03/31 18:27:24 adam Exp $ +$NetBSD: distinfo,v 1.29 2022/04/06 15:15:49 adam Exp $ -BLAKE2s (ipykernel-6.11.0.tar.gz) = b0b3aff1cd78ad02aa954df0d900b9049f48c921abdc356e03d5a46856262cbf -SHA512 (ipykernel-6.11.0.tar.gz) = 69b88e3c8b552f5277f392a004a33a5c64c2edc93aeea0d2c2d03b0d8ee649f41fc1378068c1dd8322807cce188f5579c0d92730760baeca8170a98f585f500b -Size (ipykernel-6.11.0.tar.gz) = 129429 bytes +BLAKE2s (ipykernel-6.12.1.tar.gz) = b85cdbb583b79bbba496c8f297588c53c6ae39736d91a48dcbe9f14966e2e221 +SHA512 (ipykernel-6.12.1.tar.gz) = 309701a287e8b87d0f8b07eac402e2fc163515f471f3b5b3187bc210c47714d4cfb496f40e34ebad47be5e7eca8157ef0eea7da141fb16a6fd943f4a2095f360 +Size (ipykernel-6.12.1.tar.gz) = 129979 bytes --_----------=_1649258149280890--