Received: by mail.netbsd.org (Postfix, from userid 605) id 13A5384E69; Sun, 4 Sep 2022 05:48:07 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4A8B384E66 for ; Sun, 4 Sep 2022 05:48:06 +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 ZobaBYfsdVAY for ; Sun, 4 Sep 2022 05:48:05 +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 9A4CA84CD8 for ; Sun, 4 Sep 2022 05:48:05 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8E399FA8D; Sun, 4 Sep 2022 05:48:05 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1662270485221920" MIME-Version: 1.0 Date: Sun, 4 Sep 2022 05:48:05 +0000 From: "Martin Husemann" Subject: CVS commit: pkgsrc/textproc/py-pygments To: pkgsrc-changes@NetBSD.org Reply-To: martin@netbsd.org X-Mailer: log_accum Message-Id: <20220904054805.8E399FA8D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1662270485221920 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: martin Date: Sun Sep 4 05:48:05 UTC 2022 Modified Files: pkgsrc/textproc/py-pygments: Makefile Log Message: Comment out broken comparision .if ${_PYTHON_VERSION} < 38 make[7]: "/usr/pkgsrc/textproc/py-pygments/Makefile" line 22: String comparison operator must be either == or != To generate a diff of this commit: cvs rdiff -u -r1.41 -r1.42 pkgsrc/textproc/py-pygments/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1662270485221920 Content-Disposition: inline Content-Length: 985 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-pygments/Makefile diff -u pkgsrc/textproc/py-pygments/Makefile:1.41 pkgsrc/textproc/py-pygments/Makefile:1.42 --- pkgsrc/textproc/py-pygments/Makefile:1.41 Tue Aug 16 14:01:18 2022 +++ pkgsrc/textproc/py-pygments/Makefile Sun Sep 4 05:48:05 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.41 2022/08/16 14:01:18 adam Exp $ +# $NetBSD: Makefile,v 1.42 2022/09/04 05:48:05 martin Exp $ DISTNAME= Pygments-2.13.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl} @@ -18,10 +18,11 @@ USE_LANGUAGES= # none PYTHON_VERSIONS_INCOMPATIBLE= 27 -.include "../../lang/python/pyversion.mk" -.if ${_PYTHON_VERSION} < 38 -DEPENDS+= ${PYPKGPREFIX}-importlib-metadata-[0-9]*:../../devel/py-importlib-metadata -.endif +# XXXX the < comparision does not work! +# .include "../../lang/python/pyversion.mk" +# .if ${_PYTHON_VERSION} < 38 +# DEPENDS+= ${PYPKGPREFIX}-importlib-metadata-[0-9]*:../../devel/py-importlib-metadata +# .endif USE_PKG_RESOURCES= yes --_----------=_1662270485221920--