From: Paolo Bonzini <pbonzini@redhat.com>
To: qemu-devel@nongnu.org
Subject: [PATCH] rust: add meson_version to all subprojects
Date: Wed, 6 Nov 2024 18:45:31 +0100 [thread overview]
Message-ID: <20241106174531.558197-1-pbonzini@redhat.com> (raw)
Otherwise, newer releases of meson complain.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
subprojects/packagefiles/arbitrary-int-1-rs/meson.build | 1 +
subprojects/packagefiles/bilge-0.2-rs/meson.build | 1 +
subprojects/packagefiles/bilge-impl-0.2-rs/meson.build | 1 +
subprojects/packagefiles/either-1-rs/meson.build | 1 +
subprojects/packagefiles/itertools-0.11-rs/meson.build | 1 +
subprojects/packagefiles/proc-macro-error-1-rs/meson.build | 1 +
subprojects/packagefiles/proc-macro-error-attr-1-rs/meson.build | 1 +
subprojects/packagefiles/proc-macro2-1-rs/meson.build | 1 +
subprojects/packagefiles/quote-1-rs/meson.build | 1 +
subprojects/packagefiles/syn-2-rs/meson.build | 1 +
subprojects/packagefiles/unicode-ident-1-rs/meson.build | 1 +
11 files changed, 11 insertions(+)
diff --git a/subprojects/packagefiles/arbitrary-int-1-rs/meson.build b/subprojects/packagefiles/arbitrary-int-1-rs/meson.build
index 34a189cbaec..cff3f62ce74 100644
--- a/subprojects/packagefiles/arbitrary-int-1-rs/meson.build
+++ b/subprojects/packagefiles/arbitrary-int-1-rs/meson.build
@@ -1,4 +1,5 @@
project('arbitrary-int-1-rs', 'rust',
+ meson_version: '>=1.5.0',
version: '1.2.7',
license: 'MIT',
default_options: [])
diff --git a/subprojects/packagefiles/bilge-0.2-rs/meson.build b/subprojects/packagefiles/bilge-0.2-rs/meson.build
index a6ed4a8f0cd..e69bac91b40 100644
--- a/subprojects/packagefiles/bilge-0.2-rs/meson.build
+++ b/subprojects/packagefiles/bilge-0.2-rs/meson.build
@@ -1,6 +1,7 @@
project(
'bilge-0.2-rs',
'rust',
+ meson_version: '>=1.5.0',
version : '0.2.0',
license : 'MIT or Apache-2.0',
)
diff --git a/subprojects/packagefiles/bilge-impl-0.2-rs/meson.build b/subprojects/packagefiles/bilge-impl-0.2-rs/meson.build
index 80243c7024d..f8f3486fc08 100644
--- a/subprojects/packagefiles/bilge-impl-0.2-rs/meson.build
+++ b/subprojects/packagefiles/bilge-impl-0.2-rs/meson.build
@@ -1,4 +1,5 @@
project('bilge-impl-0.2-rs', 'rust',
+ meson_version: '>=1.5.0',
version: '0.2.0',
license: 'MIT OR Apache-2.0',
default_options: [])
diff --git a/subprojects/packagefiles/either-1-rs/meson.build b/subprojects/packagefiles/either-1-rs/meson.build
index a5842eb3a6a..608e64e31fc 100644
--- a/subprojects/packagefiles/either-1-rs/meson.build
+++ b/subprojects/packagefiles/either-1-rs/meson.build
@@ -1,4 +1,5 @@
project('either-1-rs', 'rust',
+ meson_version: '>=1.5.0',
version: '1.12.0',
license: 'MIT OR Apache-2.0',
default_options: [])
diff --git a/subprojects/packagefiles/itertools-0.11-rs/meson.build b/subprojects/packagefiles/itertools-0.11-rs/meson.build
index 13d2d27019d..30982a4ee76 100644
--- a/subprojects/packagefiles/itertools-0.11-rs/meson.build
+++ b/subprojects/packagefiles/itertools-0.11-rs/meson.build
@@ -1,4 +1,5 @@
project('itertools-0.11-rs', 'rust',
+ meson_version: '>=1.5.0',
version: '0.11.0',
license: 'MIT OR Apache-2.0',
default_options: [])
diff --git a/subprojects/packagefiles/proc-macro-error-1-rs/meson.build b/subprojects/packagefiles/proc-macro-error-1-rs/meson.build
index 38ea7b89d39..ae27a696862 100644
--- a/subprojects/packagefiles/proc-macro-error-1-rs/meson.build
+++ b/subprojects/packagefiles/proc-macro-error-1-rs/meson.build
@@ -1,4 +1,5 @@
project('proc-macro-error-1-rs', 'rust',
+ meson_version: '>=1.5.0',
version: '1.0.4',
license: 'MIT OR Apache-2.0',
default_options: [])
diff --git a/subprojects/packagefiles/proc-macro-error-attr-1-rs/meson.build b/subprojects/packagefiles/proc-macro-error-attr-1-rs/meson.build
index d900c54cfd1..3281b264333 100644
--- a/subprojects/packagefiles/proc-macro-error-attr-1-rs/meson.build
+++ b/subprojects/packagefiles/proc-macro-error-attr-1-rs/meson.build
@@ -1,4 +1,5 @@
project('proc-macro-error-attr-1-rs', 'rust',
+ meson_version: '>=1.5.0',
version: '1.12.0',
license: 'MIT OR Apache-2.0',
default_options: [])
diff --git a/subprojects/packagefiles/proc-macro2-1-rs/meson.build b/subprojects/packagefiles/proc-macro2-1-rs/meson.build
index 818ec59336b..288323eaba8 100644
--- a/subprojects/packagefiles/proc-macro2-1-rs/meson.build
+++ b/subprojects/packagefiles/proc-macro2-1-rs/meson.build
@@ -1,4 +1,5 @@
project('proc-macro2-1-rs', 'rust',
+ meson_version: '>=1.5.0',
version: '1.0.84',
license: 'MIT OR Apache-2.0',
default_options: [])
diff --git a/subprojects/packagefiles/quote-1-rs/meson.build b/subprojects/packagefiles/quote-1-rs/meson.build
index d36609bd3c8..7f7792569b9 100644
--- a/subprojects/packagefiles/quote-1-rs/meson.build
+++ b/subprojects/packagefiles/quote-1-rs/meson.build
@@ -1,4 +1,5 @@
project('quote-1-rs', 'rust',
+ meson_version: '>=1.5.0',
version: '1.12.0',
license: 'MIT OR Apache-2.0',
default_options: [])
diff --git a/subprojects/packagefiles/syn-2-rs/meson.build b/subprojects/packagefiles/syn-2-rs/meson.build
index a53335f3092..bb3c15539be 100644
--- a/subprojects/packagefiles/syn-2-rs/meson.build
+++ b/subprojects/packagefiles/syn-2-rs/meson.build
@@ -1,4 +1,5 @@
project('syn-2-rs', 'rust',
+ meson_version: '>=1.5.0',
version: '2.0.66',
license: 'MIT OR Apache-2.0',
default_options: [])
diff --git a/subprojects/packagefiles/unicode-ident-1-rs/meson.build b/subprojects/packagefiles/unicode-ident-1-rs/meson.build
index 54f23768545..9d76ebbd1ad 100644
--- a/subprojects/packagefiles/unicode-ident-1-rs/meson.build
+++ b/subprojects/packagefiles/unicode-ident-1-rs/meson.build
@@ -1,4 +1,5 @@
project('unicode-ident-1-rs', 'rust',
+ meson_version: '>=1.5.0',
version: '1.0.12',
license: '(MIT OR Apache-2.0) AND Unicode-DFS-2016',
default_options: [])
--
2.47.0
next reply other threads:[~2024-11-06 17:45 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-06 17:45 Paolo Bonzini [this message]
2024-11-06 17:49 ` [PATCH] rust: add meson_version to all subprojects Pierrick Bouvier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241106174531.558197-1-pbonzini@redhat.com \
--to=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).