[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v7 1/7] Require meson version 1.5.0
From: |
Manos Pitsidianakis |
Subject: |
[PATCH v7 1/7] Require meson version 1.5.0 |
Date: |
Thu, 15 Aug 2024 14:42:18 +0300 |
From: Paolo Bonzini <pbonzini@redhat.com>
This is needed for Rust support.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
meson.build | 2 +-
python/scripts/vendor.py | 4 ++--
python/wheels/meson-1.2.3-py3-none-any.whl | Bin 964928 -> 0 bytes
python/wheels/meson-1.5.0-py3-none-any.whl | Bin 0 -> 959846 bytes
pythondeps.toml | 2 +-
tests/lcitool/mappings.yml | 2 +-
6 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/meson.build b/meson.build
index 81ecd4bae7..7eb4b8a41c 100644
--- a/meson.build
+++ b/meson.build
@@ -1,4 +1,4 @@
-project('qemu', ['c'], meson_version: '>=1.1.0',
+project('qemu', ['c'], meson_version: '>=1.5.0',
default_options: ['warning_level=1', 'c_std=gnu11', 'cpp_std=gnu++11',
'b_colorout=auto',
'b_staticpic=false', 'stdsplit=false',
'optimization=2', 'b_pie=true'],
version: files('VERSION'))
diff --git a/python/scripts/vendor.py b/python/scripts/vendor.py
index 07aff97cca..0405e910b4 100755
--- a/python/scripts/vendor.py
+++ b/python/scripts/vendor.py
@@ -41,8 +41,8 @@ def main() -> int:
parser.parse_args()
packages = {
- "meson==1.2.3":
- "4533a43c34548edd1f63a276a42690fce15bde9409bcf20c4b8fa3d7e4d7cac1",
+ "meson==1.5.0":
+ "52b34f4903b882df52ad0d533146d4b992c018ea77399f825579737672ae7b20",
}
vendor_dir = Path(__file__, "..", "..", "wheels").resolve()
diff --git a/python/wheels/meson-1.2.3-py3-none-any.whl
b/python/wheels/meson-1.2.3-py3-none-any.whl
deleted file mode 100644
index a8b84e5f11..0000000000
Binary files a/python/wheels/meson-1.2.3-py3-none-any.whl and /dev/null differ
diff --git a/python/wheels/meson-1.5.0-py3-none-any.whl
b/python/wheels/meson-1.5.0-py3-none-any.whl
new file mode 100644
index 0000000000..c7edeb37ad
Binary files /dev/null and b/python/wheels/meson-1.5.0-py3-none-any.whl differ
diff --git a/pythondeps.toml b/pythondeps.toml
index f6e590fdd8..a1c6ca9662 100644
--- a/pythondeps.toml
+++ b/pythondeps.toml
@@ -19,7 +19,7 @@
[meson]
# The install key should match the version in python/wheels/
-meson = { accepted = ">=1.1.0", installed = "1.2.3", canary = "meson" }
+meson = { accepted = ">=1.5.0", installed = "1.5.0", canary = "meson" }
[docs]
# Please keep the installed versions in sync with docs/requirements.txt
diff --git a/tests/lcitool/mappings.yml b/tests/lcitool/mappings.yml
index 03b974ad02..9721016e0d 100644
--- a/tests/lcitool/mappings.yml
+++ b/tests/lcitool/mappings.yml
@@ -63,7 +63,7 @@ mappings:
pypi_mappings:
# Request more recent version
meson:
- default: meson==0.63.2
+ default: meson==1.5.0
# Drop packages that need devel headers
python3-numpy:
--
2.44.0
- [PATCH v7 0/7] Add Rust build support, ARM PL011 device impl, Manos Pitsidianakis, 2024/08/15
- [PATCH v7 1/7] Require meson version 1.5.0,
Manos Pitsidianakis <=
- [PATCH v7 2/7] build-sys: Add rust feature option, Manos Pitsidianakis, 2024/08/15
- [PATCH v7 3/7] configure, meson: detect Rust toolchain, Manos Pitsidianakis, 2024/08/15
- [PATCH v7 4/7] rust: add bindgen step as a meson dependency, Manos Pitsidianakis, 2024/08/15
- [PATCH v7 5/7] .gitattributes: add Rust diff and merge attributes, Manos Pitsidianakis, 2024/08/15
- [PATCH v7 6/7] rust: add crate to expose bindings and interfaces, Manos Pitsidianakis, 2024/08/15