summaryrefslogtreecommitdiff
path: root/dev-python/meson-python/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-10-02 19:13:18 +0100
committerV3n3RiX <venerix@koprulu.sector>2022-10-02 19:13:18 +0100
commiteb2235d914984bff74c625de4fa4887d4f86f971 (patch)
treeec2a404a3e934f61b39cb264645bd763ece11503 /dev-python/meson-python/files
parentb0378783c1929d283116fe183089c123dba5869c (diff)
gentoo auto-resync : 02:10:2022 - 19:13:17
Diffstat (limited to 'dev-python/meson-python/files')
-rw-r--r--dev-python/meson-python/files/meson-python-0.5.0-defaults.patch23
1 files changed, 0 insertions, 23 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
deleted file mode 100644
index 07077ba4fdc2..000000000000
--- a/dev-python/meson-python/files/meson-python-0.5.0-defaults.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-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