summaryrefslogtreecommitdiff
path: root/dev-python/meson-python/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-11-22 01:05:27 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-11-22 01:05:27 +0000
commitb7819d03d7312d3d8d12b49738aa417f35f6e18a (patch)
treeddda281c46717f76e2c0d0ea4ed00da4bd58d9b5 /dev-python/meson-python/files
parent77b9f0d5906f0bd9ddf010abe155218c6629738a (diff)
gentoo auto-resync : 22:11:2022 - 01:05:27
Diffstat (limited to 'dev-python/meson-python/files')
-rw-r--r--dev-python/meson-python/files/meson-python-0.11.0-defaults.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/dev-python/meson-python/files/meson-python-0.11.0-defaults.patch b/dev-python/meson-python/files/meson-python-0.11.0-defaults.patch
new file mode 100644
index 000000000000..6bd63f6d132e
--- /dev/null
+++ b/dev-python/meson-python/files/meson-python-0.11.0-defaults.patch
@@ -0,0 +1,14 @@
+See https://github.com/mesonbuild/meson-python/blob/main/mesonpy/__init__.py#L452.
+
+(Also: https://github.com/mesonbuild/meson-python/issues/54)
+--- a/mesonpy/__init__.py
++++ b/mesonpy/__init__.py
+@@ -734,7 +734,7 @@ class Project():
+ @functools.lru_cache(maxsize=None)
+ def build(self) -> None:
+ """Trigger the Meson build."""
+- self._meson('compile', *self._meson_args['compile'],)
++ self._meson('compile', '--verbose', *self._meson_args['compile'],)
+ self._meson('install', '--destdir', os.fspath(self._install_dir), *self._meson_args['install'],)
+
+ @classmethod