Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CC08C84EC4 for ; Sun, 2 Jul 2023 13:01:08 +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 PL_s_9m7sJnJ for ; Sun, 2 Jul 2023 13:01:08 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 293A484D00 for ; Sun, 2 Jul 2023 13:01:08 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2287BFA89; Sun, 2 Jul 2023 13:01:08 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168830286876000" MIME-Version: 1.0 Date: Sun, 2 Jul 2023 13:01:08 +0000 From: "Taylor R Campbell" Subject: CVS commit: pkgsrc/devel/boost-jam To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: riastradh@netbsd.org X-Mailer: log_accum Message-Id: <20230702130108.2287BFA89@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_168830286876000 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: riastradh Date: Sun Jul 2 13:01:08 UTC 2023 Modified Files: pkgsrc/devel/boost-jam: bjam.mk Removed Files: pkgsrc/devel/boost-jam: buildlink3.mk Log Message: devel/boost-jam: Use just TOOL_DEPENDS, not buildlink3. This is a build-time tool used to build things, not a library or header file for the target system used as an input to a build-time tool. To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 pkgsrc/devel/boost-jam/bjam.mk cvs rdiff -u -r1.46 -r0 pkgsrc/devel/boost-jam/buildlink3.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_168830286876000 Content-Disposition: inline Content-Length: 755 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/boost-jam/bjam.mk diff -u pkgsrc/devel/boost-jam/bjam.mk:1.23 pkgsrc/devel/boost-jam/bjam.mk:1.24 --- pkgsrc/devel/boost-jam/bjam.mk:1.23 Tue Jun 27 10:43:43 2023 +++ pkgsrc/devel/boost-jam/bjam.mk Sun Jul 2 13:01:07 2023 @@ -1,11 +1,8 @@ -# $NetBSD: bjam.mk,v 1.23 2023/06/27 10:43:43 riastradh Exp $ +# $NetBSD: bjam.mk,v 1.24 2023/07/02 13:01:07 riastradh Exp $ -.include "../../devel/boost-jam/buildlink3.mk" .include "../../devel/boost-build/toolset.mk" -# XXX Unclear why this needs a buildlink dependency at all -- isn't it -# just a tool that runs at build-time? -TOOL_DEPENDS+= boost-jam>=0:../../devel/boost-jam +TOOL_DEPENDS+= boost-jam-1.82.*:../../devel/boost-jam BJAM= ${TOOLBASE}/bin/b2 --_----------=_168830286876000--