Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D0CE084EB3 for ; Thu, 8 Jun 2023 12:19:16 +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 AqAXzahj8Vf1 for ; Thu, 8 Jun 2023 12:19:16 +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 27D1F84E9B for ; Thu, 8 Jun 2023 12:19:16 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 21466FA89; Thu, 8 Jun 2023 12:19:16 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1686226756213600" MIME-Version: 1.0 Date: Thu, 8 Jun 2023 12:19:16 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/devel/scons4 To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20230608121916.21466FA89@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1686226756213600 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Thu Jun 8 12:19:16 UTC 2023 Modified Files: pkgsrc/devel/scons4: build.mk Log Message: devel/scons4: Require a version with working rpath 4.5.2 does not handle rpath correctly, and e.g. gpsd fails to build; this is fixed in 4.5.2nb1. In build.mk, require a working version. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/scons4/build.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1686226756213600 Content-Disposition: inline Content-Length: 712 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/scons4/build.mk diff -u pkgsrc/devel/scons4/build.mk:1.3 pkgsrc/devel/scons4/build.mk:1.4 --- pkgsrc/devel/scons4/build.mk:1.3 Thu Jun 8 05:29:39 2023 +++ pkgsrc/devel/scons4/build.mk Thu Jun 8 12:19:15 2023 @@ -1,4 +1,4 @@ -# $NetBSD: build.mk,v 1.3 2023/06/08 05:29:39 wiz Exp $ +# $NetBSD: build.mk,v 1.4 2023/06/08 12:19:15 gdt Exp $ # # This Makefile fragment supports building using the SCons build tool. # @@ -18,7 +18,7 @@ PYTHON_FOR_BUILD_ONLY?= tool .include "../../lang/python/pyversion.mk" -TOOL_DEPENDS+= ${PYPKGPREFIX}-scons>=4:../../devel/scons4 +TOOL_DEPENDS+= ${PYPKGPREFIX}-scons>=4.5.2nb1:../../devel/scons4 SCONSBIN= scons-${PYVERSSUFFIX} --_----------=_1686226756213600--