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 B455D1A9239 for ; Sun, 2 Jan 2022 00:16:04 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 3EFF384E9D; Sun, 2 Jan 2022 00:16:03 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7ACBE84E9D for ; Sun, 2 Jan 2022 00:14:30 +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 1QUttMOmjN56 for ; Sun, 2 Jan 2022 00:14:30 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id E89E484CFC for ; Sun, 2 Jan 2022 00:14:29 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E4062FAEC; Sun, 2 Jan 2022 00:14:29 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1641082469146990" MIME-Version: 1.0 Date: Sun, 2 Jan 2022 00:14:29 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/www/py-nbformat To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220102001429.E4062FAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1641082469146990 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Jan 2 00:14:29 UTC 2022 Modified Files: pkgsrc/www/py-nbformat: Makefile PLIST Added Files: pkgsrc/www/py-nbformat: ALTERNATIVES Log Message: py-nbformat: convert to egg.mk Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r0 -r1.3 pkgsrc/www/py-nbformat/ALTERNATIVES cvs rdiff -u -r1.9 -r1.10 pkgsrc/www/py-nbformat/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/www/py-nbformat/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1641082469146990 Content-Disposition: inline Content-Length: 2018 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-nbformat/Makefile diff -u pkgsrc/www/py-nbformat/Makefile:1.9 pkgsrc/www/py-nbformat/Makefile:1.10 --- pkgsrc/www/py-nbformat/Makefile:1.9 Thu Dec 30 13:05:41 2021 +++ pkgsrc/www/py-nbformat/Makefile Sun Jan 2 00:14:29 2022 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.9 2021/12/30 13:05:41 adam Exp $ +# $NetBSD: Makefile,v 1.10 2022/01/02 00:14:29 wiz Exp $ DISTNAME= nbformat-5.1.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +PKGREVISION= 1 CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_PYPI:=n/nbformat/} @@ -22,8 +23,11 @@ USE_LANGUAGES= # none PYTHON_VERSIONS_INCOMPATIBLE= 27 +post-install: + cd ${DESTDIR}${PREFIX}/bin && mv jupyter-trust jupyter-trust-${PYVERSSUFFIX} || ${TRUE} + do-test: cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} -.include "../../lang/python/distutils.mk" +.include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/www/py-nbformat/PLIST diff -u pkgsrc/www/py-nbformat/PLIST:1.5 pkgsrc/www/py-nbformat/PLIST:1.6 --- pkgsrc/www/py-nbformat/PLIST:1.5 Thu Jun 10 18:57:58 2021 +++ pkgsrc/www/py-nbformat/PLIST Sun Jan 2 00:14:29 2022 @@ -1,5 +1,11 @@ -@comment $NetBSD: PLIST,v 1.5 2021/06/10 18:57:58 adam Exp $ -${PYSITELIB}/${EGG_FILE} +@comment $NetBSD: PLIST,v 1.6 2022/01/02 00:14:29 wiz Exp $ +bin/jupyter-trust-${PYVERSSUFFIX} +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt ${PYSITELIB}/nbformat/__init__.py ${PYSITELIB}/nbformat/__init__.pyc ${PYSITELIB}/nbformat/__init__.pyo Added files: Index: pkgsrc/www/py-nbformat/ALTERNATIVES diff -u /dev/null pkgsrc/www/py-nbformat/ALTERNATIVES:1.3 --- /dev/null Sun Jan 2 00:14:29 2022 +++ pkgsrc/www/py-nbformat/ALTERNATIVES Sun Jan 2 00:14:29 2022 @@ -0,0 +1 @@ +bin/jupyter-trust @PREFIX@/bin/jupyter-trust-@PYVERSSUFFIX@ --_----------=_1641082469146990--