Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 33F5784F1B for ; Thu, 23 Nov 2023 08:54:24 +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 82OmfwVPMvkK for ; Thu, 23 Nov 2023 08:54:23 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id BE91084ED5 for ; Thu, 23 Nov 2023 08:54:23 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BC2D3FA3F; Thu, 23 Nov 2023 08:54:23 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_170072966399490" MIME-Version: 1.0 Date: Thu, 23 Nov 2023 08:54:23 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/math/py-numpy To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20231123085423.BC2D3FA3F@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_170072966399490 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Nov 23 08:54:23 UTC 2023 Modified Files: pkgsrc/math/py-numpy: Makefile Log Message: py-numpy: checks for gcc 8.4+, set GCC_REQD To generate a diff of this commit: cvs rdiff -u -r1.114 -r1.115 pkgsrc/math/py-numpy/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_170072966399490 Content-Disposition: inline Content-Length: 634 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/py-numpy/Makefile diff -u pkgsrc/math/py-numpy/Makefile:1.114 pkgsrc/math/py-numpy/Makefile:1.115 --- pkgsrc/math/py-numpy/Makefile:1.114 Tue Nov 21 21:58:01 2023 +++ pkgsrc/math/py-numpy/Makefile Thu Nov 23 08:54:23 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.114 2023/11/21 21:58:01 ryoon Exp $ +# $NetBSD: Makefile,v 1.115 2023/11/23 08:54:23 wiz Exp $ DISTNAME= numpy-1.26.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -25,6 +25,9 @@ FORCE_C_STD= c99 USE_CXX_FEATURES+= c++17 +# checks for gcc 8.4 +GCC_REQD+= 8 + USE_TOOLS+= pkg-config .include "../../math/py-numpy/make_env.mk" --_----------=_170072966399490--