summaryrefslogtreecommitdiff
path: root/dev-python/meson-python/files/meson-python-0.5.0-defaults.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-06-29 12:04:12 +0100
committerV3n3RiX <venerix@koprulu.sector>2022-06-29 12:04:12 +0100
commit0f558761aa2dee1017b4751e4017205e015a9560 (patch)
tree037df795519468a25d9362b4e95cdaeb84eb1cf9 /dev-python/meson-python/files/meson-python-0.5.0-defaults.patch
parent752d6256e5204b958b0ef7905675a940b5e9172f (diff)
gentoo resync : 29.12.2022
Diffstat (limited to 'dev-python/meson-python/files/meson-python-0.5.0-defaults.patch')
-rw-r--r--dev-python/meson-python/files/meson-python-0.5.0-defaults.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/dev-python/meson-python/files/meson-python-0.5.0-defaults.patch b/dev-python/meson-python/files/meson-python-0.5.0-defaults.patch
new file mode 100644
index 000000000000..07077ba4fdc2
--- /dev/null
+++ b/dev-python/meson-python/files/meson-python-0.5.0-defaults.patch
@@ -0,0 +1,23 @@
+See https://github.com/FFY00/meson-python/blob/main/mesonpy/__init__.py#L452.
+
+(Also: https://github.com/FFY00/meson-python/issues/54)
+--- a/mesonpy/__init__.py
++++ b/mesonpy/__init__.py
+@@ -452,7 +452,7 @@ class Project():
+ f'--native-file={os.fspath(self._meson_native_file)}',
+ # TODO: Allow configuring these arguments
+ '-Ddebug=false',
+- '-Dstrip=true',
++ '-Dstrip=false',
+ '-Doptimization=2',
+ *setup_args,
+ )
+@@ -464,7 +464,7 @@ class Project():
+
+ @functools.lru_cache(maxsize=None)
+ def build(self) -> None:
+- self._meson('compile')
++ self._meson('compile', '--verbose')
+ self._meson('install', '--destdir', os.fspath(self._install_dir))
+
+ @classmethod