Received: by mail.netbsd.org (Postfix, from userid 605) id 4F18884E6B; Tue, 17 May 2022 12:56:36 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8865484E19 for ; Tue, 17 May 2022 12:56:35 +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 ebic7duxgZFA for ; Tue, 17 May 2022 12:56:35 +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 D401784D3F for ; Tue, 17 May 2022 12:56:34 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 283B4FAEB; Tue, 17 May 2022 12:57:07 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_165279222754740" MIME-Version: 1.0 Date: Tue, 17 May 2022 12:57:07 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/www/py-nbconvert To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20220517125707.283B4FAEB@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_165279222754740 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Tue May 17 12:57:07 UTC 2022 Modified Files: pkgsrc/www/py-nbconvert: Makefile Log Message: py-nbconvert: Fix runtime error of www/py-notebook setup.py says tinycss2 is required for bleach>=5, however with bleach-3.3.1, tinycss2 is required to find python3 kernel. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 pkgsrc/www/py-nbconvert/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_165279222754740 Content-Disposition: inline Content-Length: 1065 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-nbconvert/Makefile diff -u pkgsrc/www/py-nbconvert/Makefile:1.18 pkgsrc/www/py-nbconvert/Makefile:1.19 --- pkgsrc/www/py-nbconvert/Makefile:1.18 Tue Apr 19 11:45:05 2022 +++ pkgsrc/www/py-nbconvert/Makefile Tue May 17 12:57:06 2022 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.18 2022/04/19 11:45:05 adam Exp $ +# $NetBSD: Makefile,v 1.19 2022/05/17 12:57:06 ryoon Exp $ DISTNAME= nbconvert-6.5.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +PKGREVISION= 1 CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_PYPI:=n/nbconvert/} @@ -24,6 +25,7 @@ DEPENDS+= ${PYPKGPREFIX}-nbformat>=5.1:. DEPENDS+= ${PYPKGPREFIX}-pandocfilters>=1.4.1:../../textproc/py-pandocfilters DEPENDS+= ${PYPKGPREFIX}-pygments>=2.4.1:../../textproc/py-pygments DEPENDS+= ${PYPKGPREFIX}-traitlets>=5.0:../../devel/py-traitlets +DEPENDS+= ${PYPKGPREFIX}-tinycss2-[0-9]*:../../textproc/py-tinycss2 # marked as extra, but required DEPENDS+= ${PYPKGPREFIX}-tornado>=6.1:../../www/py-tornado TEST_DEPENDS+= ${PYPKGPREFIX}-pebble-[0-9]*:../../devel/py-pebble --_----------=_165279222754740--