Received: by mail.netbsd.org (Postfix, from userid 605) id 2680E84D69; Fri, 5 May 2023 10:37:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 57C8784D67 for ; Fri, 5 May 2023 10:37:13 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id bOY99gNU8vyi for ; Fri, 5 May 2023 10:37:12 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 6FEAD84D28 for ; Fri, 5 May 2023 10:37:12 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 69653FA87; Fri, 5 May 2023 10:37:12 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1683283032180360" MIME-Version: 1.0 Date: Fri, 5 May 2023 10:37:12 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230505103712.69653FA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1683283032180360 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Fri May 5 10:37:12 UTC 2023 Modified Files: pkgsrc/devel: Makefile Added Files: pkgsrc/devel/py-hatch-jupyter-builder: DESCR Makefile PLIST distinfo Log Message: py-hatch-jupyter-builder: added version 0.8.3 This provides a build hook plugin for Hatch that adds a build step for use with Jupyter packages. To generate a diff of this commit: cvs rdiff -u -r1.3981 -r1.3982 pkgsrc/devel/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/devel/py-hatch-jupyter-builder/DESCR \ pkgsrc/devel/py-hatch-jupyter-builder/Makefile \ pkgsrc/devel/py-hatch-jupyter-builder/PLIST \ pkgsrc/devel/py-hatch-jupyter-builder/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1683283032180360 Content-Disposition: inline Content-Length: 5140 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/Makefile diff -u pkgsrc/devel/Makefile:1.3981 pkgsrc/devel/Makefile:1.3982 --- pkgsrc/devel/Makefile:1.3981 Fri May 5 10:10:53 2023 +++ pkgsrc/devel/Makefile Fri May 5 10:37:12 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3981 2023/05/05 10:10:53 adam Exp $ +# $NetBSD: Makefile,v 1.3982 2023/05/05 10:37:12 adam Exp $ # COMMENT= Development utilities @@ -2566,6 +2566,7 @@ SUBDIR+= py-guppy3 SUBDIR+= py-h5py SUBDIR+= py-hamcrest SUBDIR+= py-hatch-fancy-pypi-readme +SUBDIR+= py-hatch-jupyter-builder SUBDIR+= py-hatch-nodejs-version SUBDIR+= py-hatch-vcs SUBDIR+= py-hatchling Added files: Index: pkgsrc/devel/py-hatch-jupyter-builder/DESCR diff -u /dev/null pkgsrc/devel/py-hatch-jupyter-builder/DESCR:1.1 --- /dev/null Fri May 5 10:37:12 2023 +++ pkgsrc/devel/py-hatch-jupyter-builder/DESCR Fri May 5 10:37:12 2023 @@ -0,0 +1,2 @@ +This provides a build hook plugin for Hatch that adds a build step for use with +Jupyter packages. Index: pkgsrc/devel/py-hatch-jupyter-builder/Makefile diff -u /dev/null pkgsrc/devel/py-hatch-jupyter-builder/Makefile:1.1 --- /dev/null Fri May 5 10:37:12 2023 +++ pkgsrc/devel/py-hatch-jupyter-builder/Makefile Fri May 5 10:37:12 2023 @@ -0,0 +1,30 @@ +# $NetBSD: Makefile,v 1.1 2023/05/05 10:37:12 adam Exp $ + +DISTNAME= hatch_jupyter_builder-0.8.3 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/_/-/g} +CATEGORIES= devel python +MASTER_SITES= ${MASTER_SITE_PYPI:=h/hatch-jupyter-builder/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/jupyterlab/hatch-jupyter-builder +COMMENT= Hatch plugin to help build Jupyter packages +LICENSE= modified-bsd + +DEPENDS+= ${PYPKGPREFIX}-hatchling>=1.5:../../devel/py-hatchling +TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test +TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov +TEST_DEPENDS+= ${PYPKGPREFIX}-test-mock-[0-9]*:../../devel/py-test-mock + +USE_LANGUAGES= # none + +PYTHON_VERSIONS_INCOMPATIBLE= 27 + +post-install: + cd ${DESTDIR}${PREFIX}/bin && \ + ${MV} hatch-jupyter-builder hatch-jupyter-builder-${PYVERSSUFFIX} || ${TRUE} + +do-test: + cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests + +.include "../../lang/python/wheel.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-hatch-jupyter-builder/PLIST diff -u /dev/null pkgsrc/devel/py-hatch-jupyter-builder/PLIST:1.1 --- /dev/null Fri May 5 10:37:12 2023 +++ pkgsrc/devel/py-hatch-jupyter-builder/PLIST Fri May 5 10:37:12 2023 @@ -0,0 +1,38 @@ +@comment $NetBSD: PLIST,v 1.1 2023/05/05 10:37:12 adam Exp $ +bin/hatch-jupyter-builder-${PYVERSSUFFIX} +${PYSITELIB}/${WHEEL_INFODIR}/INSTALLER +${PYSITELIB}/${WHEEL_INFODIR}/METADATA +${PYSITELIB}/${WHEEL_INFODIR}/RECORD +${PYSITELIB}/${WHEEL_INFODIR}/REQUESTED +${PYSITELIB}/${WHEEL_INFODIR}/WHEEL +${PYSITELIB}/${WHEEL_INFODIR}/direct_url.json +${PYSITELIB}/${WHEEL_INFODIR}/entry_points.txt +${PYSITELIB}/${WHEEL_INFODIR}/licenses/LICENSE.txt +${PYSITELIB}/hatch_jupyter_builder/__init__.py +${PYSITELIB}/hatch_jupyter_builder/__init__.pyc +${PYSITELIB}/hatch_jupyter_builder/__main__.py +${PYSITELIB}/hatch_jupyter_builder/__main__.pyc +${PYSITELIB}/hatch_jupyter_builder/cli.py +${PYSITELIB}/hatch_jupyter_builder/cli.pyc +${PYSITELIB}/hatch_jupyter_builder/compare_migrated/__init__.py +${PYSITELIB}/hatch_jupyter_builder/compare_migrated/__init__.pyc +${PYSITELIB}/hatch_jupyter_builder/compare_migrated/__main__.py +${PYSITELIB}/hatch_jupyter_builder/compare_migrated/__main__.pyc +${PYSITELIB}/hatch_jupyter_builder/compare_migrated/cli.py +${PYSITELIB}/hatch_jupyter_builder/compare_migrated/cli.pyc +${PYSITELIB}/hatch_jupyter_builder/hooks.py +${PYSITELIB}/hatch_jupyter_builder/hooks.pyc +${PYSITELIB}/hatch_jupyter_builder/migrate/__init__.py +${PYSITELIB}/hatch_jupyter_builder/migrate/__init__.pyc +${PYSITELIB}/hatch_jupyter_builder/migrate/__main__.py +${PYSITELIB}/hatch_jupyter_builder/migrate/__main__.pyc +${PYSITELIB}/hatch_jupyter_builder/migrate/_migrate.py +${PYSITELIB}/hatch_jupyter_builder/migrate/_migrate.pyc +${PYSITELIB}/hatch_jupyter_builder/migrate/cli.py +${PYSITELIB}/hatch_jupyter_builder/migrate/cli.pyc +${PYSITELIB}/hatch_jupyter_builder/migrate/jupyter_packaging.py +${PYSITELIB}/hatch_jupyter_builder/migrate/jupyter_packaging.pyc +${PYSITELIB}/hatch_jupyter_builder/plugin.py +${PYSITELIB}/hatch_jupyter_builder/plugin.pyc +${PYSITELIB}/hatch_jupyter_builder/utils.py +${PYSITELIB}/hatch_jupyter_builder/utils.pyc Index: pkgsrc/devel/py-hatch-jupyter-builder/distinfo diff -u /dev/null pkgsrc/devel/py-hatch-jupyter-builder/distinfo:1.1 --- /dev/null Fri May 5 10:37:12 2023 +++ pkgsrc/devel/py-hatch-jupyter-builder/distinfo Fri May 5 10:37:12 2023 @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2023/05/05 10:37:12 adam Exp $ + +BLAKE2s (hatch_jupyter_builder-0.8.3.tar.gz) = add45671366b77559dbe68931da0bda91cdefd8323aa88581969603e229e7cb1 +SHA512 (hatch_jupyter_builder-0.8.3.tar.gz) = c4dc0605338bafeeba21cc7260005815654d3e4646296d91af6fb3199be8645a06b2226608e6b0558ee01c7eed682162eefcf686a7e20636031b95c3a11ae265 +Size (hatch_jupyter_builder-0.8.3.tar.gz) = 54754 bytes --_----------=_1683283032180360--