Received: by mail.netbsd.org (Postfix, from userid 605) id 5B25F84F1B; Sat, 3 Feb 2024 22:49:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 87CE884EC2 for ; Sat, 3 Feb 2024 22:49:15 +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 g_s8HTTUMV7F for ; Sat, 3 Feb 2024 22:49:15 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D5E6E84E5F for ; Sat, 3 Feb 2024 22:49:14 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C25EAFA42; Sat, 3 Feb 2024 22:49:14 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1707000554116200" MIME-Version: 1.0 Date: Sat, 3 Feb 2024 22:49:14 +0000 From: "Niclas Rosenvik" Subject: CVS commit: pkgsrc/devel/meson To: pkgsrc-changes@NetBSD.org Reply-To: nros@netbsd.org X-Mailer: log_accum Message-Id: <20240203224914.C25EAFA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1707000554116200 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nros Date: Sat Feb 3 22:49:14 UTC 2024 Modified Files: pkgsrc/devel/meson: build.mk Log Message: devel/meson: stop meson from downloading dependencies As mentioned in PR pkg/57902 meson can download deps using git if the project is configured for it. Use the meson argument --wrap-mode=nodownload to disable this since the pkgsrc policy is that packages should not download things during the build. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 pkgsrc/devel/meson/build.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1707000554116200 Content-Disposition: inline Content-Length: 666 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/meson/build.mk diff -u pkgsrc/devel/meson/build.mk:1.25 pkgsrc/devel/meson/build.mk:1.26 --- pkgsrc/devel/meson/build.mk:1.25 Sat Jan 13 04:17:55 2024 +++ pkgsrc/devel/meson/build.mk Sat Feb 3 22:49:14 2024 @@ -1,4 +1,4 @@ -# $NetBSD: build.mk,v 1.25 2024/01/13 04:17:55 riastradh Exp $ +# $NetBSD: build.mk,v 1.26 2024/02/03 22:49:14 nros Exp $ MESON_REQD?= 0 .for version in ${MESON_REQD} @@ -137,6 +137,7 @@ meson-configure: --libexecdir libexec \ --mandir ${PKGMANDIR} \ --sysconfdir ${PKG_SYSCONFDIR} \ + --wrap-mode=nodownload \ ${MESON_CROSS_ARGS} \ --buildtype=plain ${MESON_ARGS} . output .endfor --_----------=_1707000554116200--