Skip to content

Commit 07f0d32

Browse files
committed
Require meson version 1.5.0
This is needed for Rust support. Signed-off-by: Paolo Bonzini <[email protected]> Signed-off-by: Manos Pitsidianakis <[email protected]> Link: https://lore.kernel.org/r/74e1eb4b13717d061c5ad9c198bf56951fbfc14f.1727961605.git.manos.pitsidianakis@linaro.org Signed-off-by: Paolo Bonzini <[email protected]>
1 parent b5ab62b commit 07f0d32

File tree

7 files changed

+6
-6
lines changed

7 files changed

+6
-6
lines changed

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
project('qemu', ['c'], meson_version: '>=1.1.0',
1+
project('qemu', ['c'], meson_version: '>=1.5.0',
22
default_options: ['warning_level=1', 'c_std=gnu11', 'cpp_std=gnu++11', 'b_colorout=auto',
33
'b_staticpic=false', 'stdsplit=false', 'optimization=2', 'b_pie=true'],
44
version: files('VERSION'))

python/scripts/vendor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ def main() -> int:
4141
parser.parse_args()
4242

4343
packages = {
44-
"meson==1.2.3":
45-
"4533a43c34548edd1f63a276a42690fce15bde9409bcf20c4b8fa3d7e4d7cac1",
44+
"meson==1.5.0":
45+
"52b34f4903b882df52ad0d533146d4b992c018ea77399f825579737672ae7b20",
4646
}
4747

4848
vendor_dir = Path(__file__, "..", "..", "wheels").resolve()
-942 KB
Binary file not shown.
937 KB
Binary file not shown.

pythondeps.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
[meson]
2121
# The install key should match the version in python/wheels/
22-
meson = { accepted = ">=1.1.0", installed = "1.2.3", canary = "meson" }
22+
meson = { accepted = ">=1.5.0", installed = "1.5.0", canary = "meson" }
2323
pycotap = { accepted = ">=1.1.0", installed = "1.3.1" }
2424

2525
[docs]

tests/docker/dockerfiles/opensuse-leap.docker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ RUN zypper update -y && \
127127

128128
RUN /usr/bin/pip3.11 install \
129129
PyYAML \
130-
meson==0.63.2 \
130+
meson==1.5.0 \
131131
pillow \
132132
sphinx \
133133
sphinx-rtd-theme

tests/lcitool/mappings.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ mappings:
8989
pypi_mappings:
9090
# Request more recent version
9191
meson:
92-
default: meson==0.63.2
92+
default: meson==1.5.0
9393

9494
# Drop packages that need devel headers
9595
python3-numpy:

0 commit comments

Comments
 (0)