Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id BA3671A923A for ; Mon, 6 Dec 2021 15:31:30 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id C10DA8504E; Mon, 6 Dec 2021 15:31:29 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 084BD8504D for ; Mon, 6 Dec 2021 15:31:29 +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 sCnuXpEiQWRo for ; Mon, 6 Dec 2021 15:31:28 +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 5B17C84CE3 for ; Mon, 6 Dec 2021 15:31:28 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 545FEFAEC; Mon, 6 Dec 2021 15:31:28 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_163880468825690" MIME-Version: 1.0 Date: Mon, 6 Dec 2021 15:31:28 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/math/py-netCDF4 To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20211206153128.545FEFAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_163880468825690 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Dec 6 15:31:28 UTC 2021 Modified Files: pkgsrc/math/py-netCDF4: Makefile Log Message: py-netCDF4: mark as not for python 2.x This depends on numpy which does not support python 2.x. Not sure why this doesn't break bulk builds. To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 pkgsrc/math/py-netCDF4/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_163880468825690 Content-Disposition: inline Content-Length: 780 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/py-netCDF4/Makefile diff -u pkgsrc/math/py-netCDF4/Makefile:1.13 pkgsrc/math/py-netCDF4/Makefile:1.14 --- pkgsrc/math/py-netCDF4/Makefile:1.13 Wed Sep 29 19:00:58 2021 +++ pkgsrc/math/py-netCDF4/Makefile Mon Dec 6 15:31:28 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2021/09/29 19:00:58 adam Exp $ +# $NetBSD: Makefile,v 1.14 2021/12/06 15:31:28 wiz Exp $ DISTNAME= netCDF4-1.5.6 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -21,7 +21,7 @@ SUBST_SED.paths+= -e 's,/usr/local,${PRE SUBST_FILES.paths+= setup.py SUBST_MESSAGE.paths= Fixing header search paths. -PYTHON_VERSIONS_INCOMPATIBLE+= 36 # py-numpy +PYTHON_VERSIONS_INCOMPATIBLE+= 27 36 # py-numpy do-test: cd ${WRKSRC}/test && ${SETENV} ${TEST_ENV} ${PYTHONBIN} run_all.py --_----------=_163880468825690--