Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=pWIWa/aL; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=eMXbE6jN Received: by mail.netbsd.org (Postfix, from userid 605) id 4DA7184E71; Wed, 3 Apr 2024 19:40:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1712173211; bh=4VUh4IADGvVewU/4Ybr+82zj01fPydUu15DCFOrPwu4=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=pWIWa/aLVrF4DRR1g12Ct7+nkytjhpWGxW/Deq1NeEWXXkMCFu2p9idRlVKly1oMs w0tPxWM0hM4LK/nxuD2XYhjDcKHpXzW0DgB1NFjLKvAxyOlwvKadpuo6zj/O1tmma4 s8/dNfYZDkD3AAZviCDhyiL7LZqKTsyZ3rKR0lCU= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3C33C84CD7 for ; Wed, 3 Apr 2024 19:40:10 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id z8986DU161QF for ; Wed, 3 Apr 2024 19:40:09 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8228A84CD0 for ; Wed, 3 Apr 2024 19:40:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1712173209; bh=4VUh4IADGvVewU/4Ybr+82zj01fPydUu15DCFOrPwu4=; h=Date:From:Subject:To:Reply-To; b=eMXbE6jNEPFN3kX0plhcmJfI1ZfL4DP21X40OwUSyins6geQ7J/OedoXszVjP5iYs esThLgjv3bZ+ChOTs0gxGtEzdzy0xgCNlpB6dBAsdCDKJStFxQ0zyvEuMx7cjiTljq yVgTfUWgD17U6yV3TbyJ6MjJWldhZZhWAlLfH+1I= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7393BFA2C; Wed, 3 Apr 2024 19:40:09 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1712173209155360" MIME-Version: 1.0 Date: Wed, 3 Apr 2024 19:40:09 +0000 From: "Dr. Thomas Orgis" Subject: CVS commit: pkgsrc/math/py-numpy To: pkgsrc-changes@NetBSD.org Reply-To: thor@netbsd.org X-Mailer: log_accum Message-Id: <20240403194009.7393BFA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1712173209155360 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: thor Date: Wed Apr 3 19:40:09 UTC 2024 Modified Files: pkgsrc/math/py-numpy: Makefile Log Message: math/py-numpy: pass -j$MAKE_JOBS to ninja This avoids hogging all (virtual) CPU cores during build. This should be set generically in wheel.mk or such, though. To generate a diff of this commit: cvs rdiff -u -r1.120 -r1.121 pkgsrc/math/py-numpy/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1712173209155360 Content-Disposition: inline Content-Length: 750 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.120 pkgsrc/math/py-numpy/Makefile:1.121 --- pkgsrc/math/py-numpy/Makefile:1.120 Tue Feb 6 18:14:57 2024 +++ pkgsrc/math/py-numpy/Makefile Wed Apr 3 19:40:09 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.120 2024/02/06 18:14:57 adam Exp $ +# $NetBSD: Makefile,v 1.121 2024/04/03 19:40:09 thor Exp $ DISTNAME= numpy-1.26.4 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -73,6 +73,7 @@ BLAS_C_INTERFACE= yes # all APIs. WHEEL_ARGS+= -Csetup-args=-Dblas=${BLAS_PC} WHEEL_ARGS+= -Csetup-args=-Dlapack=${LAPACK_PC} +WHEEL_ARGS+= -Ccompile-args=-j${MAKE_JOBS} # Remove invalid __STDC_VERSION__ setting BUILDLINK_TRANSFORM.SunOS+= rm:-D__STDC_VERSION__=0 --_----------=_1712173209155360--