All of lore.kernel.org
 help / color / mirror / Atom feed
From: Scott Murray <scott.murray@konsulko.com>
To: yocto-patches@lists.yoctoproject.org
Subject: [meta-lts-mixins][kirkstone/rust][PATCH 00/10] Update to Rust 1.81.0
Date: Tue, 11 Feb 2025 14:17:13 -0500	[thread overview]
Message-ID: <cover.1739300779.git.scott.murray@konsulko.com> (raw)

This patch series for the kirkstone/rust mixin layer backports the
various Rust toolchain changes in oe-core master to to pull in the
1.80.0 -> 1.80.1 updates that have landed in the last few months in
oe-core.  There are a couple of notable policy changes coming with
this set:

- Since librsvg 2.59.x is not buildable on kirksone due to its
  meson 1.2.0 requirement, I am for now freezing librsvg to the
  latest (and likely last) 2.58.x release, 2.58.5.  If that stops
  building with newer versions of Rust, this will be re-evaluated.
- I had included a backport of cargo-c since it is required for
  librsvg 2.59.x, and have decided to keep it even though that
  librsvg bump has been dropped.  The reasoning for this is to
  simplify future backporting, and to provide some consistency
  with the availabile version.

I intend to push this series to kirkstone/rust within 24 hours
unless a serious showstopper is pointed out.

Changes:

Adrian Freihofer (1):
  rust: increase test timeout again

Alexander Kanavin (3):
  cargo.bbclass: do not install libraries by default
  cargo-c-native: update 0.10.3 -> 0.10.5
  cargo-c: convert to target recipe

Deepesh Varatharajan (3):
  rust-target-config: Update the data layout for x86 , ppc , riscv64 ,
    aarch64 and loongaarch64 targets.
  rust: Fix for duplicate libstd.so
  rust: Upgrade 1.80.1->1.81.0

Enrico Scholz (1):
  rust-common: add LDFLAGS to 'build-rust-cc' wrapper

Scott Murray (2):
  Add cargo-c backport
  librsvg: upgrade to 2.58.5

 README.md                                     |   4 +
 classes/cargo.bbclass                         |   8 +-
 classes/cargo_c.bbclass                       |  41 ++
 classes/rust-common.bbclass                   |   2 +-
 classes/rust-target-config.bbclass            |  18 +-
 conf/layer.conf                               |   2 +-
 recipes-devtools/rust/cargo-c-crates.inc      | 682 ++++++++++++++++++
 .../rust/cargo-c_0.10.5+cargo-0.83.0.bb       |  17 +
 .../rust/{cargo_1.80.1.bb => cargo_1.81.0.bb} |   0
 ...te-host-information-into-compilation.patch |  51 --
 .../rust/files/hardcodepaths.patch            |  46 --
 ...crease-timeout-in-process-sigpipe-ru.patch |   2 +-
 ...epro-issue-fix-with-cc-crate-hashmap.patch |  53 +-
 .../rust/files/zlib-off64_t.patch             |  14 +-
 ...ibstd-rs_1.80.1.bb => libstd-rs_1.81.0.bb} |   0
 ....80.1.bb => rust-cross-canadian_1.81.0.bb} |   0
 ...ust-llvm_1.80.1.bb => rust-llvm_1.81.0.bb} |   0
 recipes-devtools/rust/rust-snapshot.inc       |  78 +-
 recipes-devtools/rust/rust-source.inc         |   4 +-
 .../rust/{rust_1.80.1.bb => rust_1.81.0.bb}   |   2 +
 recipes-gnome/librsvg/librsvg-crates.inc      |  10 +-
 .../{librsvg_2.58.2.bb => librsvg_2.58.5.bb}  |   2 +-
 22 files changed, 866 insertions(+), 170 deletions(-)
 create mode 100644 classes/cargo_c.bbclass
 create mode 100644 recipes-devtools/rust/cargo-c-crates.inc
 create mode 100644 recipes-devtools/rust/cargo-c_0.10.5+cargo-0.83.0.bb
 rename recipes-devtools/rust/{cargo_1.80.1.bb => cargo_1.81.0.bb} (100%)
 delete mode 100644 recipes-devtools/rust/files/0001-cargo-do-not-write-host-information-into-compilation.patch
 delete mode 100644 recipes-devtools/rust/files/hardcodepaths.patch
 rename recipes-devtools/rust/{libstd-rs_1.80.1.bb => libstd-rs_1.81.0.bb} (100%)
 rename recipes-devtools/rust/{rust-cross-canadian_1.80.1.bb => rust-cross-canadian_1.81.0.bb} (100%)
 rename recipes-devtools/rust/{rust-llvm_1.80.1.bb => rust-llvm_1.81.0.bb} (100%)
 rename recipes-devtools/rust/{rust_1.80.1.bb => rust_1.81.0.bb} (99%)
 rename recipes-gnome/librsvg/{librsvg_2.58.2.bb => librsvg_2.58.5.bb} (96%)

-- 
2.48.1



             reply	other threads:[~2025-02-11 19:17 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-02-11 19:17 Scott Murray [this message]
2025-02-11 19:17 ` [meta-lts-mixins][kirkstone/rust][PATCH 01/10] Add cargo-c backport Scott Murray
2025-02-11 19:17 ` [meta-lts-mixins][kirkstone/rust][PATCH 02/10] cargo.bbclass: do not install libraries by default Scott Murray
2025-02-11 19:17 ` [meta-lts-mixins][kirkstone/rust][PATCH 03/10] cargo-c-native: update 0.10.3 -> 0.10.5 Scott Murray
2025-02-11 19:17 ` [meta-lts-mixins][kirkstone/rust][PATCH 04/10] cargo-c: convert to target recipe Scott Murray
2025-02-11 19:17 ` [meta-lts-mixins][kirkstone/rust][PATCH 05/10] rust-target-config: Update the data layout for x86 , ppc , riscv64 , aarch64 and loongaarch64 targets Scott Murray
2025-02-11 19:17 ` [meta-lts-mixins][kirkstone/rust][PATCH 06/10] rust: Fix for duplicate libstd.so Scott Murray
2025-02-11 19:17 ` [meta-lts-mixins][kirkstone/rust][PATCH 07/10] rust: Upgrade 1.80.1->1.81.0 Scott Murray
2025-02-11 19:17 ` [meta-lts-mixins][kirkstone/rust][PATCH 08/10] rust: increase test timeout again Scott Murray
2025-02-11 19:17 ` [meta-lts-mixins][kirkstone/rust][PATCH 09/10] rust-common: add LDFLAGS to 'build-rust-cc' wrapper Scott Murray

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=cover.1739300779.git.scott.murray@konsulko.com \
    --to=scott.murray@konsulko.com \
    --cc=yocto-patches@lists.yoctoproject.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 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.