Received: by mail.netbsd.org (Postfix, from userid 605) id 6393984EA4; Mon, 28 Nov 2022 18:06:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 92C7084E9A for ; Mon, 28 Nov 2022 18:06:56 +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 2VafjCptGcbe for ; Mon, 28 Nov 2022 18:06:56 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id E4F9884C2C for ; Mon, 28 Nov 2022 18:06:55 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DDFB6FA90; Mon, 28 Nov 2022 18:06:55 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1669658815201470" MIME-Version: 1.0 Date: Mon, 28 Nov 2022 18:06:55 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-jupyter_core To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20221128180655.DDFB6FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1669658815201470 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Nov 28 18:06:55 UTC 2022 Modified Files: pkgsrc/devel/py-jupyter_core: Makefile PLIST distinfo Log Message: py-jupyter_core: updated to 5.1.0 5.1.0 Enhancements made - Add run_sync and ensure_async functions Maintenance and upkeep improvements - Add more path tests - Clean up workflows and add badges - CI Cleanup Documentation improvements - Clean up workflows and add badges To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 pkgsrc/devel/py-jupyter_core/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/py-jupyter_core/PLIST cvs rdiff -u -r1.15 -r1.16 pkgsrc/devel/py-jupyter_core/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1669658815201470 Content-Disposition: inline Content-Length: 3472 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-jupyter_core/Makefile diff -u pkgsrc/devel/py-jupyter_core/Makefile:1.21 pkgsrc/devel/py-jupyter_core/Makefile:1.22 --- pkgsrc/devel/py-jupyter_core/Makefile:1.21 Tue Nov 22 10:25:01 2022 +++ pkgsrc/devel/py-jupyter_core/Makefile Mon Nov 28 18:06:55 2022 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.21 2022/11/22 10:25:01 adam Exp $ +# $NetBSD: Makefile,v 1.22 2022/11/28 18:06:55 adam Exp $ -DISTNAME= jupyter_core-5.0.0 +DISTNAME= jupyter_core-5.1.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=j/jupyter_core/} @@ -11,16 +11,14 @@ COMMENT= Jupyter core package LICENSE= modified-bsd TOOL_DEPENDS+= ${PYPKGPREFIX}-hatchling>=1.4:../../devel/py-hatchling -DEPENDS+= ${PYPKGPREFIX}-platformdirs-[0-9]*:../../misc/py-platformdirs -DEPENDS+= ${PYPKGPREFIX}-traitlets-[0-9]*:../../devel/py-traitlets +DEPENDS+= ${PYPKGPREFIX}-platformdirs>=2.5:../../misc/py-platformdirs +DEPENDS+= ${PYPKGPREFIX}-traitlets>=5.3:../../devel/py-traitlets TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../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 USE_LANGUAGES= # none -USE_PKG_RESOURCES= yes - PYTHON_VERSIONS_INCOMPATIBLE= 27 REPLACE_PYTHON+= jupyter_core/troubleshoot.py Index: pkgsrc/devel/py-jupyter_core/PLIST diff -u pkgsrc/devel/py-jupyter_core/PLIST:1.5 pkgsrc/devel/py-jupyter_core/PLIST:1.6 --- pkgsrc/devel/py-jupyter_core/PLIST:1.5 Tue Nov 22 10:18:06 2022 +++ pkgsrc/devel/py-jupyter_core/PLIST Mon Nov 28 18:06:55 2022 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.5 2022/11/22 10:18:06 adam Exp $ +@comment $NetBSD: PLIST,v 1.6 2022/11/28 18:06:55 adam Exp $ bin/jupyter-${PYVERSSUFFIX} bin/jupyter-migrate-${PYVERSSUFFIX} bin/jupyter-troubleshoot-${PYVERSSUFFIX} @@ -56,6 +56,8 @@ ${PYSITELIB}/jupyter_core/tests/mocking. ${PYSITELIB}/jupyter_core/tests/mocking.pyc ${PYSITELIB}/jupyter_core/tests/test_application.py ${PYSITELIB}/jupyter_core/tests/test_application.pyc +${PYSITELIB}/jupyter_core/tests/test_async.py +${PYSITELIB}/jupyter_core/tests/test_async.pyc ${PYSITELIB}/jupyter_core/tests/test_command.py ${PYSITELIB}/jupyter_core/tests/test_command.pyc ${PYSITELIB}/jupyter_core/tests/test_migrate.py Index: pkgsrc/devel/py-jupyter_core/distinfo diff -u pkgsrc/devel/py-jupyter_core/distinfo:1.15 pkgsrc/devel/py-jupyter_core/distinfo:1.16 --- pkgsrc/devel/py-jupyter_core/distinfo:1.15 Tue Nov 22 10:18:06 2022 +++ pkgsrc/devel/py-jupyter_core/distinfo Mon Nov 28 18:06:55 2022 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.15 2022/11/22 10:18:06 adam Exp $ +$NetBSD: distinfo,v 1.16 2022/11/28 18:06:55 adam Exp $ -BLAKE2s (jupyter_core-5.0.0.tar.gz) = 90cf8d0ec8c648035f08413ef2950e4ddf672aacb30af33ad0fbb5e99bd8c775 -SHA512 (jupyter_core-5.0.0.tar.gz) = a587b5a0e6ceb85a842670121fe78f93a232dbdc56412c7b32b415054cf06b6028a8f4669b7e7c8a702ebbbf4873962ae4cbff2b3636f8abb75ec0ae6bdeb64d -Size (jupyter_core-5.0.0.tar.gz) = 78285 bytes +BLAKE2s (jupyter_core-5.1.0.tar.gz) = 7ec9dcf9f66774fb5a85cd2d853034ca96373bfbc66ab0fdb8b1897bb28b0e2e +SHA512 (jupyter_core-5.1.0.tar.gz) = 75ad0aaee5cf464d080a9dc679b5aa4b58e6d483ba53620c5a819a41fc149054ea47579d7b2903eed3de203a33a582383a384fa445a7aac7bb801029508bd914 +Size (jupyter_core-5.1.0.tar.gz) = 80224 bytes SHA1 (patch-jupyter__core_paths.py) = 77720329c9613abde9576244ac17b101bfded070 --_----------=_1669658815201470--