pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/meson
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.
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
Home |
Main Index |
Thread Index |
Old Index