Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1627B84E6B for ; Tue, 26 Dec 2023 07:38:31 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 4jIWWbvIJy5Q for ; Tue, 26 Dec 2023 07:38:30 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 6BB5084E5A for ; Tue, 26 Dec 2023 07:38:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 62967FA42; Tue, 26 Dec 2023 07:38:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_170357631018430" MIME-Version: 1.0 Date: Tue, 26 Dec 2023 07:38:30 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/textproc/py-diff-match-patch To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20231226073830.62967FA42@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_170357631018430 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Dec 26 07:38:30 UTC 2023 Modified Files: pkgsrc/textproc/py-diff-match-patch: Makefile Log Message: py-diff-match-patch: fix interpreter in speedtest.py To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/textproc/py-diff-match-patch/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_170357631018430 Content-Disposition: inline Content-Length: 830 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-diff-match-patch/Makefile diff -u pkgsrc/textproc/py-diff-match-patch/Makefile:1.7 pkgsrc/textproc/py-diff-match-patch/Makefile:1.8 --- pkgsrc/textproc/py-diff-match-patch/Makefile:1.7 Mon Dec 18 09:38:55 2023 +++ pkgsrc/textproc/py-diff-match-patch/Makefile Tue Dec 26 07:38:30 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2023/12/18 09:38:55 adam Exp $ +# $NetBSD: Makefile,v 1.8 2023/12/26 07:38:30 adam Exp $ DISTNAME= diff-match-patch-20230430 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -14,7 +14,10 @@ TOOL_DEPENDS+= ${PYPKGPREFIX}-flit_core> USE_LANGUAGES= # none +REPLACE_PYTHON= diff_match_patch/tests/speedtest.py + PYTHON_VERSIONS_INCOMPATIBLE= 27 +.include "../../lang/python/application.mk" .include "../../lang/python/wheel.mk" .include "../../mk/bsd.pkg.mk" --_----------=_170357631018430--