Received: by mail.netbsd.org (Postfix, from userid 605) id A1CE684EB3; Fri, 5 May 2023 09:02:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C547084EC1 for ; Fri, 5 May 2023 09:02:15 +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 mU5LZ1FnZYet for ; Fri, 5 May 2023 09:02:15 +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 1E29284EBE for ; Fri, 5 May 2023 09:02:15 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1B1DAFA87; Fri, 5 May 2023 09:02:15 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168327733539470" MIME-Version: 1.0 Date: Fri, 5 May 2023 09:02:15 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/textproc/py-mistune To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230505090215.1B1DAFA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_168327733539470 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Fri May 5 09:02:15 UTC 2023 Modified Files: pkgsrc/textproc/py-mistune: Makefile Log Message: py-mistune: no need for pytest To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 pkgsrc/textproc/py-mistune/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_168327733539470 Content-Disposition: inline Content-Length: 978 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-mistune/Makefile diff -u pkgsrc/textproc/py-mistune/Makefile:1.9 pkgsrc/textproc/py-mistune/Makefile:1.10 --- pkgsrc/textproc/py-mistune/Makefile:1.9 Fri May 5 08:48:35 2023 +++ pkgsrc/textproc/py-mistune/Makefile Fri May 5 09:02:14 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2023/05/05 08:48:35 wiz Exp $ +# $NetBSD: Makefile,v 1.10 2023/05/05 09:02:14 adam Exp $ DISTNAME= mistune-2.0.5 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -10,14 +10,12 @@ HOMEPAGE= https://github.com/lepture/mis COMMENT= Sane Markdown parser with useful plugins and renderers LICENSE= modified-bsd -TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test - USE_LANGUAGES= # none PYTHON_VERSIONS_INCOMPATIBLE= 27 do-test: - cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} + cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHONBIN} -m unittest discover -v .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" --_----------=_168327733539470--