From b65c4f939c87aafbee615d1f368a61b30ecfaefd Mon Sep 17 00:00:00 2001 From: "Liguros - Gitlab CI/CD [develop]" Date: Sun, 12 Jun 2022 12:41:51 +0000 Subject: Adding metadata --- .../files/meson-python-0.5.0-defaults.patch | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 dev-python/meson-python/files/meson-python-0.5.0-defaults.patch (limited to 'dev-python/meson-python/files/meson-python-0.5.0-defaults.patch') 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 -- cgit v1.3.1