Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=CwCuCPN8; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=29D7QO4E Received: by mail.netbsd.org (Postfix, from userid 605) id 81A4184F4F; Mon, 8 Apr 2024 05:54:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1712555654; bh=fq7nvHlitYoBX+Vk03kyOh2j3LvnAcy9d4B1inNKiug=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=CwCuCPN86D71zGG2Y8lxcptEVFbUiPw6GFrFOGlQI1fqk250SHVbu3A/j/uDn2eCf 3VcCJLYDlVPbre0QReJQcnuyzdlyITJtgMY/n9zvjqkDcZz/ZU8euJsC9+N8AJNZRf XxBH+6rkgz/YB0LKikD2JeOHSqq+EEfe5hjTqi5k= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7200F84F2F for ; Mon, 8 Apr 2024 05:54:13 +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 FLAOsrLGO0pD for ; Mon, 8 Apr 2024 05:54:12 +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 960FA84D2D for ; Mon, 8 Apr 2024 05:54:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1712555652; bh=fq7nvHlitYoBX+Vk03kyOh2j3LvnAcy9d4B1inNKiug=; h=Date:From:Subject:To:Reply-To; b=29D7QO4E9fdxU6zET3Qa0q5N94LPBOQfm4wx1dBg7FUHE89Q0GXzT0TUafiDBfXYv WDiNCv3IFESz0HoUbmRIUMqQ1mEk/wbyx9PmDo0106knTCaCBtAdPw8CT1YmxaEHTq 8wZ4xHUP7jrnzKnCKJSahKUG2fMQcwZhkBvTIYGo= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 80FD5FA2C; Mon, 8 Apr 2024 05:54:12 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_171255565239050" MIME-Version: 1.0 Date: Mon, 8 Apr 2024 05:54:12 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/parallel/py-ipyparallel To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20240408055412.80FD5FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_171255565239050 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Apr 8 05:54:12 UTC 2024 Modified Files: pkgsrc/parallel/py-ipyparallel: Makefile PLIST distinfo Log Message: py-ipyparallel: updated to 8.8.0 8.8.0 - 2024-04-02 New: - `BroadcastView.map` is defined for API compatibility, but is not particularly efficient or recommended. Fixed: - `AsyncResult.join` is fixed. Improved: - Performance optimization disabling timestamp parsing in `jupyter_client` is not applied until ipyparallel classes are instantiated, rather than at import time. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 pkgsrc/parallel/py-ipyparallel/Makefile cvs rdiff -u -r1.9 -r1.10 pkgsrc/parallel/py-ipyparallel/PLIST cvs rdiff -u -r1.7 -r1.8 pkgsrc/parallel/py-ipyparallel/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_171255565239050 Content-Disposition: inline Content-Length: 3851 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/parallel/py-ipyparallel/Makefile diff -u pkgsrc/parallel/py-ipyparallel/Makefile:1.12 pkgsrc/parallel/py-ipyparallel/Makefile:1.13 --- pkgsrc/parallel/py-ipyparallel/Makefile:1.12 Tue Mar 5 16:55:53 2024 +++ pkgsrc/parallel/py-ipyparallel/Makefile Mon Apr 8 05:54:12 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.12 2024/03/05 16:55:53 adam Exp $ +# $NetBSD: Makefile,v 1.13 2024/04/08 05:54:12 adam Exp $ -DISTNAME= ipyparallel-8.7.0 +DISTNAME= ipyparallel-8.8.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/_/-/} CATEGORIES= parallel python MASTER_SITES= ${MASTER_SITE_PYPI:=i/ipyparallel/} Index: pkgsrc/parallel/py-ipyparallel/PLIST diff -u pkgsrc/parallel/py-ipyparallel/PLIST:1.9 pkgsrc/parallel/py-ipyparallel/PLIST:1.10 --- pkgsrc/parallel/py-ipyparallel/PLIST:1.9 Tue Mar 5 16:55:53 2024 +++ pkgsrc/parallel/py-ipyparallel/PLIST Mon Apr 8 05:54:12 2024 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.9 2024/03/05 16:55:53 adam Exp $ +@comment $NetBSD: PLIST,v 1.10 2024/04/08 05:54:12 adam Exp $ bin/ipcluster-${PYVERSSUFFIX} bin/ipcontroller-${PYVERSSUFFIX} bin/ipengine-${PYVERSSUFFIX} @@ -157,8 +157,8 @@ ${PYSITELIB}/ipyparallel/joblib.pyo ${PYSITELIB}/ipyparallel/labextension/package.json ${PYSITELIB}/ipyparallel/labextension/schemas/ipyparallel-labextension/package.json.orig ${PYSITELIB}/ipyparallel/labextension/schemas/ipyparallel-labextension/plugin.json -${PYSITELIB}/ipyparallel/labextension/static/998.d38d80ac3e2fa7501089.js -${PYSITELIB}/ipyparallel/labextension/static/remoteEntry.ccf2bfedaae5f1da1a90.js +${PYSITELIB}/ipyparallel/labextension/static/296.40eb9377b3b40662f1d8.js +${PYSITELIB}/ipyparallel/labextension/static/remoteEntry.b3a636e043643255cf30.js ${PYSITELIB}/ipyparallel/labextension/static/style.js ${PYSITELIB}/ipyparallel/labextension/static/third-party-licenses.json ${PYSITELIB}/ipyparallel/logger.py @@ -278,8 +278,8 @@ ${PYSITELIB}/ipyparallel/util.pyo share/jupyter/labextensions/ipyparallel-labextension/package.json share/jupyter/labextensions/ipyparallel-labextension/schemas/ipyparallel-labextension/package.json.orig share/jupyter/labextensions/ipyparallel-labextension/schemas/ipyparallel-labextension/plugin.json -share/jupyter/labextensions/ipyparallel-labextension/static/998.d38d80ac3e2fa7501089.js -share/jupyter/labextensions/ipyparallel-labextension/static/remoteEntry.ccf2bfedaae5f1da1a90.js +share/jupyter/labextensions/ipyparallel-labextension/static/296.40eb9377b3b40662f1d8.js +share/jupyter/labextensions/ipyparallel-labextension/static/remoteEntry.b3a636e043643255cf30.js share/jupyter/labextensions/ipyparallel-labextension/static/style.js share/jupyter/labextensions/ipyparallel-labextension/static/third-party-licenses.json share/jupyter/nbextensions/ipyparallel/clusterlist.css Index: pkgsrc/parallel/py-ipyparallel/distinfo diff -u pkgsrc/parallel/py-ipyparallel/distinfo:1.7 pkgsrc/parallel/py-ipyparallel/distinfo:1.8 --- pkgsrc/parallel/py-ipyparallel/distinfo:1.7 Tue Mar 5 16:55:54 2024 +++ pkgsrc/parallel/py-ipyparallel/distinfo Mon Apr 8 05:54:12 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.7 2024/03/05 16:55:54 adam Exp $ +$NetBSD: distinfo,v 1.8 2024/04/08 05:54:12 adam Exp $ -BLAKE2s (ipyparallel-8.7.0.tar.gz) = 23d54520ce42eb1ac920925243ff2d97d4bcec4d37900e34b15dd2e3759d200c -SHA512 (ipyparallel-8.7.0.tar.gz) = 96b9a3c1435dcb609c81856e5fc2763265a14610483e9d6c1a0b1fe5f7d6981d42d8f0d7b0c245cdf1fec10d4a832854dc745ca02ce90623734216dc858bb322 -Size (ipyparallel-8.7.0.tar.gz) = 6798726 bytes +BLAKE2s (ipyparallel-8.8.0.tar.gz) = 49a0e124a168c88d17b76a7fb34512d0df97960bc64c49e09c8c66121cd9f7bb +SHA512 (ipyparallel-8.8.0.tar.gz) = 9b0a03e1f581acbe56e3b51331d9fb97c422469e1d93348e6403d7c95a985f1f5a2a390645222fc4b60c0027ba168933679662561adb618d19ae7d680a2bb680 +Size (ipyparallel-8.8.0.tar.gz) = 6800541 bytes --_----------=_171255565239050--