Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E215A84EFC for ; Thu, 24 Aug 2023 20:44:15 +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 opq2EZkUJ5JC for ; Thu, 24 Aug 2023 20:44: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 3851F84D0E for ; Thu, 24 Aug 2023 20:44:15 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 260D2FBDB; Thu, 24 Aug 2023 20:44:15 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_169290985532030" MIME-Version: 1.0 Date: Thu, 24 Aug 2023 20:44:15 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/py-cython To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230824204415.260D2FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_169290985532030 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Aug 24 20:44:15 UTC 2023 Modified Files: pkgsrc/devel/py-cython: tool.mk Log Message: py-cython: pkglint fix To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/py-cython/tool.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_169290985532030 Content-Disposition: inline Content-Length: 981 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-cython/tool.mk diff -u pkgsrc/devel/py-cython/tool.mk:1.2 pkgsrc/devel/py-cython/tool.mk:1.3 --- pkgsrc/devel/py-cython/tool.mk:1.2 Tue Oct 23 18:04:52 2018 +++ pkgsrc/devel/py-cython/tool.mk Thu Aug 24 20:44:14 2023 @@ -1,4 +1,4 @@ -# $NetBSD: tool.mk,v 1.2 2018/10/23 18:04:52 jperkin Exp $ +# $NetBSD: tool.mk,v 1.3 2023/08/24 20:44:14 wiz Exp $ # # This mk fragment can be included in all packages that uses `cython' # and `cythonize' as tools without version suffix. @@ -17,10 +17,10 @@ BUILDLINK_TARGETS+= buildlink-bin-cython .PHONY: buildlink-bin-cython buildlink-bin-cython: -.for CYTHONTOOL in cython cythonize +.for cythontool in cython cythonize ${RUN} \ - f="${PREFIX}/bin/${CYTHONTOOL}-${PYVERSSUFFIX}"; \ - t="${BUILDLINK_DIR}/bin/${CYTHONTOOL}"; \ + f="${PREFIX}/bin/${cythontool}-${PYVERSSUFFIX}"; \ + t="${BUILDLINK_DIR}/bin/${cythontool}"; \ if ${TEST} -f $$f -a ! -f $$t ; then \ ${LN} -sf $$f $$t; \ fi --_----------=_169290985532030--