summaryrefslogtreecommitdiff
path: root/dev-python/meson-python/files/meson-python-0.11.0-defaults.patch
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2023-05-27 17:45:20 +0200
committerMichał Górny <mgorny@gentoo.org>2023-05-27 17:53:53 +0200
commit6bdb9d0d2536883edcf829691b1aaa81d71c2274 (patch)
treefc2ef5db0bf1835ff8cd795126ddf7c9d3297c59 /dev-python/meson-python/files/meson-python-0.11.0-defaults.patch
parentdfbaca69b81799d6fa59dfa951cfb608aa1671a9 (diff)
downloadgentoo-6bdb9d0d2536883edcf829691b1aaa81d71c2274.tar.gz
gentoo-6bdb9d0d2536883edcf829691b1aaa81d71c2274.tar.bz2
gentoo-6bdb9d0d2536883edcf829691b1aaa81d71c2274.zip
dev-python/meson-python: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/meson-python/files/meson-python-0.11.0-defaults.patch')
-rw-r--r--dev-python/meson-python/files/meson-python-0.11.0-defaults.patch14
1 files changed, 0 insertions, 14 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
deleted file mode 100644
index 6bd63f6d132e..000000000000
--- a/dev-python/meson-python/files/meson-python-0.11.0-defaults.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-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