Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6569984D25 for ; Fri, 4 Aug 2023 09:49:47 +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 4-YqHwEUkSsj for ; Fri, 4 Aug 2023 09:49:47 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B0C7284D1B for ; Fri, 4 Aug 2023 09:49:46 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D9CAFFBDB; Fri, 4 Aug 2023 09:49:45 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1691142585226360" MIME-Version: 1.0 Date: Fri, 4 Aug 2023 09:49:45 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-test-mypy-plugins To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230804094945.D9CAFFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1691142585226360 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Fri Aug 4 09:49:45 UTC 2023 Modified Files: pkgsrc/devel/py-test-mypy-plugins: Makefile Log Message: py-test-mypy-plugins: substiture mypy command name To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-test-mypy-plugins/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1691142585226360 Content-Disposition: inline Content-Length: 1239 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-test-mypy-plugins/Makefile diff -u pkgsrc/devel/py-test-mypy-plugins/Makefile:1.1 pkgsrc/devel/py-test-mypy-plugins/Makefile:1.2 --- pkgsrc/devel/py-test-mypy-plugins/Makefile:1.1 Fri Aug 4 09:33:44 2023 +++ pkgsrc/devel/py-test-mypy-plugins/Makefile Fri Aug 4 09:49:45 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2023/08/04 09:33:44 adam Exp $ +# $NetBSD: Makefile,v 1.2 2023/08/04 09:49:45 adam Exp $ DISTNAME= pytest-mypy-plugins-3.0.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/^py//} @@ -7,7 +7,7 @@ MASTER_SITES= ${MASTER_SITE_PYPI:=p/pyte MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= https://github.com/TypedDjango/pytest-mypy-plugins -COMMENT= Pytest plugin for writing tests for mypy plugins +COMMENT= Pytest plugin for writing cmd for mypy plugins LICENSE= mit DEPENDS+= ${PYPKGPREFIX}-decorator-[0-9]*:../../devel/py-decorator @@ -23,5 +23,11 @@ USE_LANGUAGES= # none PYTHON_VERSIONS_INCOMPATIBLE= 27 +SUBST_CLASSES+= cmd +SUBST_STAGE.cmd= pre-configure +SUBST_MESSAGE.cmd= Fixing command name. +SUBST_FILES.cmd= pytest_mypy_plugins/item.py +SUBST_SED.cmd= -e 's,"mypy","mypy-${PYVERSSUFFIX}",g' + .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1691142585226360--