]> git.ipfire.org Git - thirdparty/qemu.git/commit
scripts: add script to help distros use global Rust packages
authorPaolo Bonzini <pbonzini@redhat.com>
Tue, 22 Jul 2025 07:50:01 +0000 (09:50 +0200)
committerPaolo Bonzini <pbonzini@redhat.com>
Fri, 25 Jul 2025 12:51:05 +0000 (14:51 +0200)
commitfbc8fb36e3636854195705cba13278befb94158d
treee5015ef6f796f21b1cf8bc57d68803e637ce4dfe
parentf63000d943bd7db60b338f12546a96efaa6058aa
scripts: add script to help distros use global Rust packages

Some distros prefer to avoid vendored crate sources, and instead use
local sources from e.g. ``/usr/share/cargo/registry``.  Add a
script, inspired by the Mesa spec file(*), that automatically
performs this task.  The script is meant to be invoked after unpacking
the QEMU tarball.

(*) This is the hack that Mesa uses:

    export MESON_PACKAGE_CACHE_DIR="%{cargo_registry}/"
    %define inst_crate_nameversion() %(basename %{cargo_registry}/%{1}-*)
    %define rewrite_wrap_file() sed -e "/source.*/d" -e "s/%{1}-.*/%{inst_crate_nameversion %{1}}/" -i subprojects/%{1}.wrap
    %rewrite_wrap_file proc-macro2
    ... more %rewrite_wrap_file invocations follow ...

Reviewed-by: Neal Gompa <ngompa@fedoraproject.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
MAINTAINERS
docs/about/build-platforms.rst
scripts/get-wraps-from-cargo-registry.py [new file with mode: 0755]