All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-lts-mixins][scarthgap/rust][PATCH 00/11] Update to Rust 1.92.0
@ 2026-01-26 23:51 Scott Murray
  2026-01-26 23:51 ` [meta-lts-mixins][scarthgap/rust][PATCH 01/11] cargo-c: update 0.10.16 -> 0.10.18 Scott Murray
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: Scott Murray @ 2026-01-26 23:51 UTC (permalink / raw)
  To: yocto-patches

This patch series for the scarthgap/rust mixin layer backports the
recent Rust toolchain changes in oe-core master branch to pull in
the 1.90.0 -> 1.91.0 -> 1.91.1 -> 1.92.0 updates and other fixes.

I intend to push this series to scarthgap/rust by end of day tomorrow
(January 26, EST) unless a serious showstopper is pointed out.

Changes:

Alexander Kanavin (3):
  rust-target-config.bbclass: add RUST_TARGET_ABI to sstate signature
    exclusions
  rust-target-config.bbclass: apply signature exclusions only to
    native/nativesdk
  librsvg: upgrade 2.61.0 -> 2.61.3

Deepesh Varatharajan (2):
  cargo-c: update 0.10.16 -> 0.10.18
  cargo-c: update 0.10.18 -> 0.10.19

Hemanth Kumar M D (2):
  rust: Upgrade 1.91.1 -> 1.92.0
  rust: enable default uwtable and ignore arm no_std test

Yash Shinde (4):
  oeqa/selftest/rust: Exclude tier-check and fix openssl-sys build error
  rust: Upgrade 1.90.0 -> 1.91.0
  rust: remove passing tests from excluded and ignored list.
  rust: Upgrade 1.91.0 -> 1.91.1

 classes-recipe/rust-target-config.bbclass     |   9 +-
 conf/layer.conf                               |   2 +-
 lib/oeqa/selftest/cases/rust_mixin.py         |   9 +-
 recipes-devtools/rust/cargo-c-crates.inc      | 658 +++++++++---------
 ...Use-libc-SYS_futex_time64-on-riscv32.patch |  36 -
 ...1.0.bb => cargo-c_0.10.19+cargo-0.93.0.bb} |   5 +-
 .../rust/{cargo_1.90.0.bb => cargo_1.92.0.bb} |   0
 ...-gcs-instead-of-gcs-target-attribute.patch |  66 --
 ...teps-tool.rs-switch-off-lto-for-rust.patch |  20 +-
 .../rust/files/rust-oe-selftest.patch         | 163 +----
 ...ibstd-rs_1.90.0.bb => libstd-rs_1.92.0.bb} |   0
 ....90.0.bb => rust-cross-canadian_1.92.0.bb} |   0
 ...ust-llvm_1.90.0.bb => rust-llvm_1.92.0.bb} |   2 +-
 recipes-devtools/rust/rust-snapshot.inc       |  78 +--
 recipes-devtools/rust/rust-source.inc         |   3 +-
 .../rust/{rust_1.90.0.bb => rust_1.92.0.bb}   |   4 +-
 recipes-gnome/librsvg/librsvg-crates.inc      | 624 ++++++++---------
 ...ld-do-not-force-disable-gdk-pixbuf-l.patch |   2 +-
 ...append-RUSTFLAGS-to-rustc-executable.patch |   2 +-
 ...e-care-of-deprecated-assert_cmd-Comm.patch |  42 ++
 .../{librsvg_2.61.0.bb => librsvg_2.61.3.bb}  |   4 +-
 21 files changed, 790 insertions(+), 939 deletions(-)
 delete mode 100644 recipes-devtools/rust/cargo-c/0001-getrandom-Use-libc-SYS_futex_time64-on-riscv32.patch
 rename recipes-devtools/rust/{cargo-c_0.10.16+cargo-0.91.0.bb => cargo-c_0.10.19+cargo-0.93.0.bb} (70%)
 rename recipes-devtools/rust/{cargo_1.90.0.bb => cargo_1.92.0.bb} (100%)
 delete mode 100644 recipes-devtools/rust/files/0001-libunwind-Use-gcs-instead-of-gcs-target-attribute.patch
 rename recipes-devtools/rust/{libstd-rs_1.90.0.bb => libstd-rs_1.92.0.bb} (100%)
 rename recipes-devtools/rust/{rust-cross-canadian_1.90.0.bb => rust-cross-canadian_1.92.0.bb} (100%)
 rename recipes-devtools/rust/{rust-llvm_1.90.0.bb => rust-llvm_1.92.0.bb} (99%)
 rename recipes-devtools/rust/{rust_1.90.0.bb => rust_1.92.0.bb} (99%)
 create mode 100644 recipes-gnome/librsvg/librsvg/0001-tests-revert-Take-care-of-deprecated-assert_cmd-Comm.patch
 rename recipes-gnome/librsvg/{librsvg_2.61.0.bb => librsvg_2.61.3.bb} (95%)

-- 
2.51.0



^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2026-01-26 23:51 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-26 23:51 [meta-lts-mixins][scarthgap/rust][PATCH 00/11] Update to Rust 1.92.0 Scott Murray
2026-01-26 23:51 ` [meta-lts-mixins][scarthgap/rust][PATCH 01/11] cargo-c: update 0.10.16 -> 0.10.18 Scott Murray
2026-01-26 23:51 ` [meta-lts-mixins][scarthgap/rust][PATCH 02/11] oeqa/selftest/rust: Exclude tier-check and fix openssl-sys build error Scott Murray
2026-01-26 23:51 ` [meta-lts-mixins][scarthgap/rust][PATCH 03/11] rust: Upgrade 1.90.0 -> 1.91.0 Scott Murray
2026-01-26 23:51 ` [meta-lts-mixins][scarthgap/rust][PATCH 04/11] rust: remove passing tests from excluded and ignored list Scott Murray
2026-01-26 23:51 ` [meta-lts-mixins][scarthgap/rust][PATCH 05/11] rust: Upgrade 1.91.0 -> 1.91.1 Scott Murray
2026-01-26 23:51 ` [meta-lts-mixins][scarthgap/rust][PATCH 06/11] cargo-c: update 0.10.18 -> 0.10.19 Scott Murray
2026-01-26 23:51 ` [meta-lts-mixins][scarthgap/rust][PATCH 07/11] rust: Upgrade 1.91.1 -> 1.92.0 Scott Murray
2026-01-26 23:51 ` [meta-lts-mixins][scarthgap/rust][PATCH 08/11] rust: enable default uwtable and ignore arm no_std test Scott Murray
2026-01-26 23:51 ` [meta-lts-mixins][scarthgap/rust][PATCH 09/11] rust-target-config.bbclass: add RUST_TARGET_ABI to sstate signature exclusions Scott Murray
2026-01-26 23:51 ` [meta-lts-mixins][scarthgap/rust][PATCH 10/11] rust-target-config.bbclass: apply signature exclusions only to native/nativesdk Scott Murray
2026-01-26 23:51 ` [meta-lts-mixins][scarthgap/rust][PATCH 11/11] librsvg: upgrade 2.61.0 -> 2.61.3 Scott Murray

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.