rust/rust.spec

1180 lines
38 KiB
RPMSpec
Raw Permalink Normal View History

Name: rust
2024-05-02 17:01:52 +00:00
Version: 1.78.0
Release: %autorelease -e 0.riscv64
Summary: The Rust Programming Language
License: (Apache-2.0 OR MIT) AND (Artistic-2.0 AND BSD-3-Clause AND ISC AND MIT AND MPL-2.0 AND Unicode-DFS-2016)
# ^ written as: (rust itself) and (bundled libraries)
URL: https://www.rust-lang.org
2023-03-09 16:52:34 +00:00
# Only x86_64, i686, and aarch64 are Tier 1 platforms at this time.
2020-11-19 18:47:24 +00:00
# https://doc.rust-lang.org/nightly/rustc/platform-support.html
%global rust_arches x86_64 i686 armv7hl aarch64 ppc64le s390x riscv64
ExclusiveArch: %{rust_arches}
2016-08-12 04:54:53 +00:00
2022-01-13 19:41:45 +00:00
# To bootstrap from scratch, set the channel and date from src/stage0.json
2022-03-18 00:36:25 +00:00
# e.g. 1.59.0 wants rustc: 1.58.0-2022-01-13
2016-08-12 04:54:53 +00:00
# or nightly wants some beta-YYYY-MM-DD
2024-05-02 17:01:52 +00:00
%global bootstrap_version 1.77.0
%global bootstrap_channel 1.77.0
%global bootstrap_date 2024-03-21
# Only the specified arches will use bootstrap binaries.
2022-03-18 00:36:25 +00:00
# NOTE: Those binaries used to be uploaded with every new release, but that was
# a waste of lookaside cache space when they're most often unused.
# Run "spectool -g rust.spec" after changing this and then "fedpkg upload" to
# add them to sources. Remember to remove them again after the bootstrap build!
#global bootstrap_arches %%{rust_arches}
2016-08-12 04:54:53 +00:00
# Define a space-separated list of targets to ship rust-std-static-$triple for
# cross-compilation. The packages are noarch, but they're not fully
# reproducible between hosts, so only x86_64 actually builds it.
%ifarch x86_64
%if 0%{?fedora}
%global mingw_targets i686-pc-windows-gnu x86_64-pc-windows-gnu
2022-01-13 19:41:45 +00:00
%endif
2024-05-02 17:01:52 +00:00
# NB: wasm32-wasi is being gradually replaced by wasm32-wasip1
# https://blog.rust-lang.org/2024/04/09/updates-to-rusts-wasi-targets.html
%global wasm_targets wasm32-unknown-unknown wasm32-wasi wasm32-wasip1
%if 0%{?fedora} || 0%{?rhel} >= 10
%global extra_targets x86_64-unknown-none x86_64-unknown-uefi
%endif
%endif
%ifarch aarch64
%global extra_targets aarch64-unknown-none-softfloat
%endif
2023-09-27 00:08:10 +00:00
%global all_targets %{?mingw_targets} %{?wasm_targets} %{?extra_targets}
%define target_enabled() %{lua:
print(string.find(rpm.expand(" %{all_targets} "), rpm.expand(" %1 "), 1, true) or 0)
}
# We need CRT files for *-wasi targets, at least as new as the commit in
# src/ci/docker/host-x86_64/dist-various-2/build-wasi-toolchain.sh
2022-01-13 19:41:45 +00:00
%global wasi_libc_url https://github.com/WebAssembly/wasi-libc
2024-02-08 17:36:10 +00:00
#global wasi_libc_ref wasi-sdk-21
%global wasi_libc_ref 03b228e46bb02fcc5927253e1b8ad715072b1ae4
%global wasi_libc_name wasi-libc-%{wasi_libc_ref}
%global wasi_libc_source %{wasi_libc_url}/archive/%{wasi_libc_ref}/%{wasi_libc_name}.tar.gz
2022-01-13 19:41:45 +00:00
%global wasi_libc_dir %{_builddir}/%{wasi_libc_name}
%if 0%{?fedora}
%bcond_with bundled_wasi_libc
%else
%bcond_without bundled_wasi_libc
%endif
2018-03-29 18:04:58 +00:00
# Using llvm-static may be helpful as an opt-in, e.g. to aid LLVM rebases.
2016-10-14 07:40:50 +00:00
%bcond_with llvm_static
# We can also choose to just use Rust's bundled LLVM, in case the system LLVM
2024-05-02 17:01:52 +00:00
# is insufficient. Rust currently requires LLVM 16.0+.
%global min_llvm_version 16.0.0
%global bundled_llvm_version 18.1.2
#global llvm_compat_version 17
%global llvm llvm%{?llvm_compat_version}
%bcond_with bundled_llvm
2023-11-16 16:50:29 +00:00
# Requires stable libgit2 1.7, and not the next minor soname change.
# This needs to be consistent with the bindings in vendor/libgit2-sys.
2024-02-14 11:31:06 +00:00
%global min_libgit2_version 1.7.2
2023-11-16 16:50:29 +00:00
%global next_libgit2_version 1.8.0~
2024-02-14 11:31:06 +00:00
%global bundled_libgit2_version 1.7.2
2023-11-16 16:50:29 +00:00
%if 0%{?fedora} >= 39
%bcond_with bundled_libgit2
%else
2018-04-18 20:14:57 +00:00
%bcond_without bundled_libgit2
%endif
2018-04-18 20:14:57 +00:00
# Cargo uses UPSERTs with omitted conflict targets
%global min_sqlite3_version 3.35
2024-05-02 17:01:52 +00:00
%global bundled_sqlite3_version 3.45.0
%if 0%{?rhel} && 0%{?rhel} < 10
%bcond_without bundled_sqlite3
%else
%bcond_with bundled_sqlite3
%endif
%if 0%{?rhel}
# Disable cargo->libgit2->libssh2 on RHEL, as it's not approved for FIPS (rhbz1732949)
%bcond_without disabled_libssh2
%else
%bcond_with disabled_libssh2
%endif
2024-01-09 21:46:24 +00:00
# Reduce rustc's own debuginfo and optimizations to conserve 32-bit memory.
# e.g. https://github.com/rust-lang/rust/issues/45854
%global reduced_debuginfo 0
%if 0%{?__isa_bits} == 32
%global reduced_debuginfo 1
%endif
# Also on current riscv64 hardware, although future hardware will be
# able to handle it.
# e.g. http://fedora.riscv.rocks/koji/buildinfo?buildID=249870
%ifarch riscv64
%global reduced_debuginfo 1
%endif
%if 0%{?reduced_debuginfo}
2024-01-09 21:46:24 +00:00
%global enable_debuginfo --debuginfo-level=0 --debuginfo-level-std=2
%global enable_rust_opts --set rust.codegen-units-std=1
2023-10-26 16:01:56 +00:00
%bcond_with rustc_pgo
%else
2024-01-09 21:46:24 +00:00
# Build rustc with full debuginfo, CGU=1, ThinLTO, and PGO.
%global enable_debuginfo --debuginfo-level=2
%global enable_rust_opts --set rust.codegen-units=1 --set rust.lto=thin
2023-10-26 16:01:56 +00:00
%bcond_without rustc_pgo
%endif
# Detect non-stable channels from the version, like 1.74.0~beta.1
%{lua: do
local version = rpm.expand("%{version}")
local version_channel, subs = string.gsub(version, "^.*~(%w+).*$", "%1", 1)
rpm.define("channel " .. (subs ~= 0 and version_channel or "stable"))
rpm.define("rustc_package rustc-" .. version_channel .. "-src")
end}
2017-07-21 17:21:44 +00:00
Source0: https://static.rust-lang.org/dist/%{rustc_package}.tar.xz
Source1: %{wasi_libc_source}
# Sources for bootstrap_arches are inserted by lua below
2016-08-12 04:54:53 +00:00
# By default, rust tries to use "rust-lld" as a linker for some targets.
Patch1: 0001-Use-lld-provided-by-system.patch
# Set a substitute-path in rust-gdb for standard library sources.
2023-06-01 19:46:43 +00:00
Patch2: rustc-1.70.0-rust-gdb-substitute-path.patch
2023-05-05 20:28:08 +00:00
# Override default target CPUs to match distro settings
# TODO: upstream this ability into the actual build configuration
Patch3: 0001-Let-environment-variables-override-some-default-CPUs.patch
# Override the default self-contained system libraries
# TODO: the first can probably be upstreamed, but the second is hard-coded,
# and we're only applying that if not with bundled_wasi_libc.
Patch4: 0001-bootstrap-allow-disabling-target-self-contained.patch
Patch5: 0002-set-an-external-library-path-for-wasm32-wasi.patch
2024-02-08 17:36:10 +00:00
# We don't want to use the bundled library in libsqlite3-sys
2024-05-02 17:01:52 +00:00
Patch6: rustc-1.78.0-unbundle-sqlite.patch
2024-03-06 16:56:41 +00:00
# https://github.com/rust-lang/rust/pull/123520
2024-05-02 17:01:52 +00:00
Patch7: 0001-bootstrap-move-all-of-rustc-s-flags-to-rustc_cargo.patch
2024-04-17 00:15:17 +00:00
# https://github.com/rust-lang/rust/pull/123652
2024-05-02 17:01:52 +00:00
Patch8: 0001-Fix-UI-tests-with-dist-vendored-dependencies.patch
# https://github.com/rust-lang/rust/pull/122270
Patch9: 0001-fix-long-linker-command-lines-failure-caused-by-rust.patch
# https://github.com/rust-lang/rust/pull/123763
Patch10: 0001-Set-the-host-library-path-in-run-make-v2.patch
Patch11: 0002-Use-env-split_paths-join_paths-in-runtest.patch
2024-04-17 00:15:17 +00:00
2024-05-02 17:01:52 +00:00
# https://github.com/rust-lang/rust/pull/124597
Patch12: 0001-Use-an-explicit-x86-64-cpu-in-tests-that-are-sensiti.patch
2024-04-17 00:15:17 +00:00
# https://github.com/rust-lang/cargo/pull/13744
2024-05-02 17:01:52 +00:00
Patch20: 0001-test-don-t-compress-test-registry-crates.patch
# https://github.com/rust-lang/cargo/pull/13789
Patch21: 0001-Fix-2-tests-for-offline-execution.patch
2024-04-17 00:15:17 +00:00
# https://github.com/rust-lang/rust-clippy/pull/12682
2024-05-02 17:01:52 +00:00
Patch30: 0001-The-multiple_unsafe_ops_per_block-test-needs-asm.patch
2024-04-17 00:15:17 +00:00
### RHEL-specific patches below ###
# Simple rpm macros for rust-toolset (as opposed to full rust-packaging)
Source100: macros.rust-toolset
Source101: macros.rust-srpm
Source102: cargo_vendor.attr
Source103: cargo_vendor.prov
# Disable cargo->libgit2->libssh2 on RHEL, as it's not approved for FIPS (rhbz1732949)
2024-05-02 17:01:52 +00:00
Patch100: rustc-1.78.0-disable-libssh2.patch
# Get the Rust triple for any arch.
%{lua: function rust_triple(arch)
local abi = "gnu"
if arch == "armv7hl" then
arch = "armv7"
abi = "gnueabihf"
elseif arch == "ppc64" then
arch = "powerpc64"
elseif arch == "ppc64le" then
arch = "powerpc64le"
elseif arch == "riscv64" then
arch = "riscv64gc"
end
return arch.."-unknown-linux-"..abi
end}
%global rust_triple %{lua: print(rust_triple(rpm.expand("%{_target_cpu}")))}
2023-09-27 00:08:10 +00:00
# Get the environment form of the Rust triple
%global rust_triple_env %{lua:
print(string.upper(string.gsub(rpm.expand("%{rust_triple}"), "-", "_")))
}
%if %defined bootstrap_arches
# For each bootstrap arch, add an additional binary Source.
# Also define bootstrap_source just for the current target.
%{lua: do
local bootstrap_arches = {}
for arch in string.gmatch(rpm.expand("%{bootstrap_arches}"), "%S+") do
table.insert(bootstrap_arches, arch)
end
2022-03-18 00:36:25 +00:00
local base = rpm.expand("https://static.rust-lang.org/dist/%{bootstrap_date}")
local channel = rpm.expand("%{bootstrap_channel}")
local target_arch = rpm.expand("%{_target_cpu}")
for i, arch in ipairs(bootstrap_arches) do
i = 1000 + i * 3
2022-03-18 00:36:25 +00:00
local suffix = channel.."-"..rust_triple(arch)
print(string.format("Source%d: %s/cargo-%s.tar.xz\n", i, base, suffix))
print(string.format("Source%d: %s/rustc-%s.tar.xz\n", i+1, base, suffix))
print(string.format("Source%d: %s/rust-std-%s.tar.xz\n", i+2, base, suffix))
if arch == target_arch then
2022-03-18 00:36:25 +00:00
rpm.define("bootstrap_source_cargo "..i)
rpm.define("bootstrap_source_rustc "..i+1)
rpm.define("bootstrap_source_std "..i+2)
rpm.define("bootstrap_suffix "..suffix)
end
end
end}
2016-08-12 04:54:53 +00:00
%endif
%ifarch %{bootstrap_arches}
2022-03-18 00:36:25 +00:00
%global local_rust_root %{_builddir}/rust-%{bootstrap_suffix}
Provides: bundled(%{name}-bootstrap) = %{bootstrap_version}
2016-08-12 04:54:53 +00:00
%else
2022-03-18 00:36:25 +00:00
BuildRequires: cargo >= %{bootstrap_version}
BuildRequires: (%{name} >= %{bootstrap_version} with %{name} <= %{version})
%global local_rust_root %{_prefix}
2016-08-12 04:54:53 +00:00
%endif
BuildRequires: make
BuildRequires: gcc
BuildRequires: gcc-c++
BuildRequires: ncurses-devel
# explicit curl-devel to avoid httpd24-curl (rhbz1540167)
BuildRequires: curl-devel
2018-04-16 03:47:49 +00:00
BuildRequires: pkgconfig(libcurl)
BuildRequires: pkgconfig(liblzma)
BuildRequires: pkgconfig(openssl)
BuildRequires: pkgconfig(zlib)
2016-08-12 04:54:53 +00:00
%if %{without bundled_libgit2}
BuildRequires: (pkgconfig(libgit2) >= %{min_libgit2_version} with pkgconfig(libgit2) < %{next_libgit2_version})
%endif
%if %{without bundled_sqlite3}
BuildRequires: pkgconfig(sqlite3) >= %{min_sqlite3_version}
%endif
2020-12-02 01:28:02 +00:00
%if %{without disabled_libssh2}
2023-11-16 16:50:29 +00:00
BuildRequires: pkgconfig(libssh2)
%endif
2022-01-13 19:41:45 +00:00
%if 0%{?rhel} == 8
BuildRequires: platform-python
%else
BuildRequires: python3
%endif
BuildRequires: python3-rpm-macros
2018-02-15 23:38:13 +00:00
2017-03-22 20:18:56 +00:00
%if %with bundled_llvm
2023-11-16 16:50:29 +00:00
BuildRequires: cmake >= 3.20.0
2021-10-21 19:29:34 +00:00
BuildRequires: ninja-build
2022-01-13 19:41:45 +00:00
Provides: bundled(llvm) = %{bundled_llvm_version}
%else
2023-11-16 16:50:29 +00:00
BuildRequires: cmake >= 3.5.1
%if %defined llvm_compat_version
%global llvm_root %{_libdir}/%{llvm}
%else
%global llvm_root %{_prefix}
%endif
2022-01-13 19:41:45 +00:00
BuildRequires: %{llvm}-devel >= %{min_llvm_version}
%if %with llvm_static
BuildRequires: %{llvm}-static
BuildRequires: libffi-devel
%endif
%endif
2022-01-13 19:41:45 +00:00
# make check needs "ps" for src/test/ui/wait-forked-but-failed-child.rs
BuildRequires: procps-ng
# debuginfo-gdb tests need gdb
BuildRequires: gdb
2022-07-19 16:10:30 +00:00
# For src/test/run-make/static-pie
BuildRequires: glibc-static
# Virtual provides for folks who attempt "dnf install rustc"
2019-01-17 20:23:33 +00:00
Provides: rustc = %{version}-%{release}
Provides: rustc%{?_isa} = %{version}-%{release}
# Always require our exact standard library
2019-01-17 20:23:33 +00:00
Requires: %{name}-std-static%{?_isa} = %{version}-%{release}
2016-08-12 04:54:53 +00:00
# The C compiler is needed at runtime just for linking. Someday rustc might
# invoke the linker directly, and then we'll only need binutils.
# https://github.com/rust-lang/rust/issues/11937
Requires: /usr/bin/cc
2016-08-12 04:54:53 +00:00
%global __ranlib %{_bindir}/ranlib
2021-06-18 16:41:37 +00:00
2016-08-12 04:54:53 +00:00
# ALL Rust libraries are private, because they don't keep an ABI.
%global _privatelibs lib(.*-[[:xdigit:]]{16}*|rustc.*)[.]so.*
2016-08-12 04:54:53 +00:00
%global __provides_exclude ^(%{_privatelibs})$
%global __requires_exclude ^(%{_privatelibs})$
2018-08-08 00:00:34 +00:00
%global __provides_exclude_from ^(%{_docdir}|%{rustlibdir}/src)/.*$
%global __requires_exclude_from ^(%{_docdir}|%{rustlibdir}/src)/.*$
2016-08-12 04:54:53 +00:00
# While we don't want to encourage dynamic linking to Rust shared libraries, as
# there's no stable ABI, we still need the unallocated metadata (.rustc) to
# support custom-derive plugins like #[proc_macro_derive(Foo)].
%global _find_debuginfo_opts --keep-section .rustc
# The standard library rlibs are essentially static archives, but we don't want
# to strip them because that impairs the debuginfo of all Rust programs.
# It also had a tendency to break the cross-compiled libraries:
# - wasm targets lost the archive index, which we were repairing with llvm-ranlib
# - uefi targets couldn't link builtins like memcpy, possibly due to lost COMDAT flags
%global __brp_strip_static_archive %{nil}
%if %{without bundled_llvm}
2019-02-28 19:53:56 +00:00
%if "%{llvm_root}" == "%{_prefix}" || 0%{?scl:1}
%global llvm_has_filecheck 1
%endif
%endif
# We're going to override --libdir when configuring to get rustlib into a
# common path, but we'll fix the shared libraries during install.
%global common_libdir %{_prefix}/lib
%global rustlibdir %{common_libdir}/rustlib
%if %defined mingw_targets
BuildRequires: mingw32-filesystem >= 95
BuildRequires: mingw64-filesystem >= 95
BuildRequires: mingw32-crt
BuildRequires: mingw64-crt
BuildRequires: mingw32-gcc
BuildRequires: mingw64-gcc
BuildRequires: mingw32-winpthreads-static
BuildRequires: mingw64-winpthreads-static
%endif
%if %defined wasm_targets
%if %with bundled_wasi_libc
BuildRequires: clang
%else
BuildRequires: wasi-libc-static
%endif
BuildRequires: lld
%endif
# For profiler_builtins
BuildRequires: compiler-rt%{?llvm_compat_version}
# This component was removed as of Rust 1.69.0.
# https://github.com/rust-lang/rust/pull/101841
Obsoletes: %{name}-analysis < 1.69.0~
2016-08-12 04:54:53 +00:00
%description
Rust is a systems programming language that runs blazingly fast, prevents
segfaults, and guarantees thread safety.
This package includes the Rust compiler and documentation generator.
%package std-static
Summary: Standard library for Rust
Provides: %{name}-std-static-%{rust_triple} = %{version}-%{release}
Requires: %{name} = %{version}-%{release}
2023-03-09 16:52:34 +00:00
Requires: glibc-devel%{?_isa} >= 2.17
%description std-static
This package includes the standard libraries for building applications
written in Rust.
2016-08-12 04:54:53 +00:00
2023-09-27 00:08:10 +00:00
%global target_package() \
%package std-static-%1 \
Summary: Standard library for Rust %1 \
Requires: %{name} = %{version}-%{release}
2023-09-27 00:08:10 +00:00
%global target_description() \
%description std-static-%1 \
This package includes the standard libraries for building applications \
written in Rust for the %2 target %1.
%if %target_enabled i686-pc-windows-gnu
%target_package i686-pc-windows-gnu
Requires: mingw32-crt
Requires: mingw32-gcc
Requires: mingw32-winpthreads-static
Provides: mingw32-rust = %{version}-%{release}
Provides: mingw32-rustc = %{version}-%{release}
BuildArch: noarch
%target_description i686-pc-windows-gnu MinGW
%endif
2023-09-27 00:08:10 +00:00
%if %target_enabled x86_64-pc-windows-gnu
%target_package x86_64-pc-windows-gnu
Requires: mingw64-crt
Requires: mingw64-gcc
Requires: mingw64-winpthreads-static
Provides: mingw64-rust = %{version}-%{release}
Provides: mingw64-rustc = %{version}-%{release}
BuildArch: noarch
2023-09-27 00:08:10 +00:00
%target_description x86_64-pc-windows-gnu MinGW
%endif
2023-09-27 00:08:10 +00:00
%if %target_enabled wasm32-unknown-unknown
%target_package wasm32-unknown-unknown
Requires: lld >= 8.0
BuildArch: noarch
%target_description wasm32-unknown-unknown WebAssembly
%endif
2023-09-27 00:08:10 +00:00
%if %target_enabled wasm32-wasi
%target_package wasm32-wasi
Requires: lld >= 8.0
%if %with bundled_wasi_libc
2023-09-27 00:08:10 +00:00
Provides: bundled(wasi-libc)
%else
Requires: wasi-libc-static
%endif
2023-09-27 00:08:10 +00:00
BuildArch: noarch
%target_description wasm32-wasi WebAssembly
%endif
2024-05-02 17:01:52 +00:00
%if %target_enabled wasm32-wasip1
%target_package wasm32-wasip1
Requires: lld >= 8.0
%if %with bundled_wasi_libc
Provides: bundled(wasi-libc)
%else
Requires: wasi-libc-static
%endif
BuildArch: noarch
%target_description wasm32-wasip1 WebAssembly
%endif
2023-09-27 00:08:10 +00:00
%if %target_enabled x86_64-unknown-none
%target_package x86_64-unknown-none
Requires: lld
%target_description x86_64-unknown-none embedded
%endif
2023-09-27 00:08:10 +00:00
%if %target_enabled x86_64-unknown-uefi
%target_package x86_64-unknown-uefi
Requires: lld
%target_description x86_64-unknown-uefi embedded
%endif
%if %target_enabled aarch64-unknown-none-softfloat
%target_package aarch64-unknown-none-softfloat
Requires: lld
%target_description aarch64-unknown-none-softfloat embedded
%endif
2017-04-27 22:49:04 +00:00
%package debugger-common
Summary: Common debugger pretty printers for Rust
BuildArch: noarch
%description debugger-common
This package includes the common functionality for %{name}-gdb and %{name}-lldb.
2016-08-12 04:54:53 +00:00
%package gdb
Summary: GDB pretty printers for Rust
BuildArch: noarch
Requires: gdb
2019-01-17 20:23:33 +00:00
Requires: %{name}-debugger-common = %{version}-%{release}
2016-08-12 04:54:53 +00:00
%description gdb
This package includes the rust-gdb script, which allows easier debugging of Rust
programs.
%package lldb
Summary: LLDB pretty printers for Rust
2019-05-23 21:44:22 +00:00
BuildArch: noarch
Requires: lldb
2022-01-13 19:41:45 +00:00
Requires: python3-lldb
2019-01-17 20:23:33 +00:00
Requires: %{name}-debugger-common = %{version}-%{release}
%description lldb
This package includes the rust-lldb script, which allows easier debugging of Rust
programs.
2016-08-12 04:54:53 +00:00
%package doc
Summary: Documentation for Rust
# NOT BuildArch: noarch
2016-08-12 04:54:53 +00:00
# Note, while docs are mostly noarch, some things do vary by target_arch.
# Koji will fail the build in rpmdiff if two architectures build a noarch
# subpackage differently, so instead we have to keep its arch.
2016-08-12 04:54:53 +00:00
# Cargo no longer builds its own documentation
# https://github.com/rust-lang/cargo/pull/4904
# We used to keep a shim cargo-doc package, but now that's merged too.
Obsoletes: cargo-doc < 1.65.0~
Provides: cargo-doc = %{version}-%{release}
2016-08-12 04:54:53 +00:00
%description doc
This package includes HTML documentation for the Rust programming language and
its standard library.
2018-04-16 03:47:49 +00:00
%package -n cargo
Summary: Rust's package manager and build tool
%if %with bundled_libgit2
2022-01-13 19:41:45 +00:00
Provides: bundled(libgit2) = %{bundled_libgit2_version}
%endif
%if %with bundled_sqlite3
Provides: bundled(sqlite) = %{bundled_sqlite3_version}
%endif
2018-04-16 03:47:49 +00:00
# For tests:
2022-01-13 19:41:45 +00:00
BuildRequires: git-core
2018-04-16 03:47:49 +00:00
# Cargo is not much use without Rust
2022-01-13 19:41:45 +00:00
Requires: %{name}
2018-04-16 03:47:49 +00:00
2019-08-15 17:58:04 +00:00
# "cargo vendor" is a builtin command starting with 1.37. The Obsoletes and
# Provides are mostly relevant to RHEL, but harmless to have on Fedora/etc. too
Obsoletes: cargo-vendor <= 0.1.23
Provides: cargo-vendor = %{version}-%{release}
2018-04-16 03:47:49 +00:00
%description -n cargo
Cargo is a tool that allows Rust projects to declare their various dependencies
and ensure that you'll always get a repeatable build.
%package -n rustfmt
2018-03-29 18:04:58 +00:00
Summary: Tool to find and fix Rust formatting issues
Requires: cargo
# /usr/bin/rustfmt is dynamically linked against internal rustc libs
Requires: %{name}%{?_isa} = %{version}-%{release}
# The component/package was rustfmt-preview until Rust 1.31.
Obsoletes: rustfmt-preview < 1.0.0
2019-01-17 20:23:33 +00:00
Provides: rustfmt-preview = %{version}-%{release}
2018-03-29 18:04:58 +00:00
%description -n rustfmt
2018-03-29 18:04:58 +00:00
A tool for formatting Rust code according to style guidelines.
%package analyzer
Summary: Rust implementation of the Language Server Protocol
# The standard library sources are needed for most functionality.
Recommends: %{name}-src
2018-04-16 03:47:49 +00:00
# RLS is no longer available as of Rust 1.65, but we're including the stub
# binary that implements LSP just enough to recommend rust-analyzer.
Obsoletes: rls < 1.65.0~
# The component/package was rls-preview until Rust 1.31.
Obsoletes: rls-preview < 1.31.6
2022-09-22 20:06:42 +00:00
%description analyzer
rust-analyzer is an implementation of Language Server Protocol for the Rust
programming language. It provides features like completion and goto definition
for many code editors, including VS Code, Emacs and Vim.
2018-04-16 03:47:49 +00:00
%package -n clippy
Summary: Lints to catch common mistakes and improve your Rust code
Requires: cargo
# /usr/bin/clippy-driver is dynamically linked against internal rustc libs
2019-01-17 20:23:33 +00:00
Requires: %{name}%{?_isa} = %{version}-%{release}
# The component/package was clippy-preview until Rust 1.31.
Obsoletes: clippy-preview <= 0.0.212
2019-01-17 20:23:33 +00:00
Provides: clippy-preview = %{version}-%{release}
%description -n clippy
A collection of lints to catch common mistakes and improve your Rust code.
%package src
Summary: Sources for the Rust standard library
BuildArch: noarch
2022-12-15 17:12:22 +00:00
Recommends: %{name}-std-static = %{version}-%{release}
%description src
This package includes source files for the Rust standard library. It may be
useful as a reference for code completion tools in various editors.
2023-02-20 18:43:19 +00:00
%if 0%{?rhel}
%package toolset-srpm-macros
Summary: RPM macros for building Rust source packages
BuildArch: noarch
# This used to be from its own source package, versioned like rust2rpm.
Obsoletes: rust-srpm-macros < 18~
Provides: rust-srpm-macros = 25.2
%description toolset-srpm-macros
RPM macros for building source packages for Rust projects.
%package toolset
Summary: Rust Toolset
2023-02-20 22:30:35 +00:00
BuildArch: noarch
Requires: rust = %{version}-%{release}
Requires: cargo = %{version}-%{release}
%description toolset
This is the metapackage for Rust Toolset, bringing in the Rust compiler,
the Cargo package manager, and a few convenience macros for rpm builds.
%endif
2016-08-12 04:54:53 +00:00
%prep
%ifarch %{bootstrap_arches}
2022-03-18 00:36:25 +00:00
rm -rf %{local_rust_root}
%setup -q -n cargo-%{bootstrap_suffix} -T -b %{bootstrap_source_cargo}
./install.sh --prefix=%{local_rust_root} --disable-ldconfig
%setup -q -n rustc-%{bootstrap_suffix} -T -b %{bootstrap_source_rustc}
./install.sh --prefix=%{local_rust_root} --disable-ldconfig
%setup -q -n rust-std-%{bootstrap_suffix} -T -b %{bootstrap_source_std}
./install.sh --prefix=%{local_rust_root} --disable-ldconfig
test -f '%{local_rust_root}/bin/cargo'
test -f '%{local_rust_root}/bin/rustc'
%endif
%if %{defined wasm_targets} && %{with bundled_wasi_libc}
2022-01-13 19:41:45 +00:00
%setup -q -n %{wasi_libc_name} -T -b 1
rm -rf %{wasi_libc_dir}/dlmalloc/
%endif
%setup -q -n %{rustc_package}
2016-08-12 04:54:53 +00:00
%patch -P1 -p1
%patch -P2 -p1
%patch -P3 -p1
%patch -P4 -p1
%if %without bundled_wasi_libc
%patch -P5 -p1
%endif
%if %without bundled_sqlite3
2023-12-31 19:00:36 +00:00
%patch -P6 -p1
%endif
2024-03-06 16:56:41 +00:00
%patch -P7 -p1
%patch -P8 -p1
%patch -P9 -p1
2024-04-17 00:15:17 +00:00
%patch -P10 -p1
%patch -P11 -p1
2024-05-02 17:01:52 +00:00
%patch -P12 -p1
%patch -P20 -p1 -d src/tools/cargo
%patch -P21 -p1 -d src/tools/cargo
%patch -P30 -p1 -d src/tools/clippy
2024-03-06 16:56:41 +00:00
%if %with disabled_libssh2
%patch -P100 -p1
%endif
2022-01-13 19:41:45 +00:00
# Use our explicit python3 first
sed -i.try-python -e '/^try python3 /i try "%{__python3}" "$@"' ./configure
2018-02-15 23:38:13 +00:00
# Set a substitute-path in rust-gdb for standard library sources.
sed -i.rust-src -e "s#@BUILDDIR@#$PWD#" ./src/etc/rust-gdb
%if %without bundled_llvm
2019-04-11 17:55:26 +00:00
rm -rf src/llvm-project/
2020-11-19 18:47:24 +00:00
mkdir -p src/llvm-project/libunwind/
%endif
2016-08-12 04:54:53 +00:00
2023-11-16 16:50:29 +00:00
# Remove other unused vendored libraries. This leaves the directory in place,
# because some build scripts watch them, e.g. "cargo:rerun-if-changed=curl".
%define clear_dir() find ./%1 -mindepth 1 -delete
%clear_dir vendor/curl-sys*/curl/
%clear_dir vendor/*jemalloc-sys*/jemalloc/
%clear_dir vendor/libffi-sys*/libffi/
%clear_dir vendor/libmimalloc-sys*/c_src/mimalloc/
%clear_dir vendor/libsqlite3-sys*/sqlcipher/
2023-11-16 16:50:29 +00:00
%clear_dir vendor/libssh2-sys*/libssh2/
%clear_dir vendor/libz-sys*/src/zlib{,-ng}/
%clear_dir vendor/lzma-sys*/xz-*/
%clear_dir vendor/openssl-src*/openssl/
2019-08-15 17:58:04 +00:00
%if %without bundled_libgit2
2023-11-16 16:50:29 +00:00
%clear_dir vendor/libgit2-sys*/libgit2/
2019-08-15 17:58:04 +00:00
%endif
%if %without bundled_sqlite3
%clear_dir vendor/libsqlite3-sys*/sqlite3/
%endif
%if %with disabled_libssh2
2023-06-01 19:46:43 +00:00
rm -rf vendor/libssh2-sys*/
%endif
2019-08-15 17:58:04 +00:00
# This only affects the transient rust-installer, but let it use our dynamic xz-libs
2023-12-31 19:00:36 +00:00
sed -i.lzma -e '/LZMA_API_STATIC/d' src/bootstrap/src/core/build_steps/tool.rs
2019-08-15 17:58:04 +00:00
%if %{without bundled_llvm} && %{with llvm_static}
# Static linking to distro LLVM needs to add -lffi
# https://github.com/rust-lang/rust/issues/34486
sed -i.ffi -e '$a #[link(name = "ffi")] extern {}' \
2022-08-11 16:00:53 +00:00
compiler/rustc_llvm/src/lib.rs
%endif
2017-07-21 17:21:44 +00:00
# The configure macro will modify some autoconf-related files, which upsets
# cargo when it tries to verify checksums in those files. If we just truncate
# that file list, cargo won't have anything to complain about.
2019-01-17 20:23:33 +00:00
find vendor -name .cargo-checksum.json \
2017-07-21 17:21:44 +00:00
-exec sed -i.uncheck -e 's/"files":{[^}]*}/"files":{ }/' '{}' '+'
2019-09-26 19:33:47 +00:00
# Sometimes Rust sources start with #![...] attributes, and "smart" editors think
# it's a shebang and make them executable. Then brp-mangle-shebangs gets upset...
find -name '*.rs' -type f -perm /111 -exec chmod -v -x '{}' '+'
2023-03-09 16:52:34 +00:00
# The distro flags are only appropriate for the host, not our cross-targets,
# and they're not as fine-grained as the settings we choose for std vs rustc.
%if %defined build_rustflags
%global build_rustflags %{nil}
%endif
# These are similar to __cflags_arch_* in /usr/lib/rpm/redhat/macros
2023-09-27 00:08:10 +00:00
%global rustc_target_cpus %{lua: do
local fedora = tonumber(rpm.expand("0%{?fedora}"))
local rhel = tonumber(rpm.expand("0%{?rhel}"))
local env =
" RUSTC_TARGET_CPU_X86_64=x86-64" .. ((rhel >= 10) and "-v3" or (rhel == 9) and "-v2" or "")
.. " RUSTC_TARGET_CPU_PPC64LE=" .. ((rhel >= 9) and "pwr9" or "pwr8")
.. " RUSTC_TARGET_CPU_S390X=" ..
((rhel >= 9) and "z14" or (rhel == 8 or fedora >= 38) and "z13" or
(fedora >= 26) and "zEC12" or (rhel == 7) and "z196" or "z10")
2023-09-27 00:08:10 +00:00
print(env)
end}
2024-02-08 17:36:10 +00:00
# Set up shared environment variables for build/install/check.
# *_USE_PKG_CONFIG=1 convinces *-sys crates to use the system library.
%global rust_env %{shrink:
%{?rustflags:RUSTFLAGS="%{rustflags}"}
%{rustc_target_cpus}
%{!?with_bundled_sqlite3:LIBSQLITE3_SYS_USE_PKG_CONFIG=1}
2024-02-08 17:36:10 +00:00
%{!?with_disabled_libssh2:LIBSSH2_SYS_USE_PKG_CONFIG=1}
}
%global export_rust_env export %{rust_env}
2020-10-09 23:13:53 +00:00
2016-08-12 04:54:53 +00:00
%build
%{export_rust_env}
# Some builders have relatively little memory for their CPU count.
# At least 2GB per CPU is a good rule of thumb for building rustc.
ncpus=$(/usr/bin/getconf _NPROCESSORS_ONLN)
max_cpus=$(( ($(free -g | awk '/^Mem:/{print $2}') + 1) / 2 ))
if [ "$max_cpus" -ge 1 -a "$max_cpus" -lt "$ncpus" ]; then
ncpus="$max_cpus"
fi
%if %defined mingw_targets
2023-09-27 00:08:10 +00:00
%define mingw_target_config %{shrink:
--set target.i686-pc-windows-gnu.linker=%{mingw32_cc}
--set target.i686-pc-windows-gnu.cc=%{mingw32_cc}
--set target.i686-pc-windows-gnu.ar=%{mingw32_ar}
--set target.i686-pc-windows-gnu.ranlib=%{mingw32_ranlib}
--set target.i686-pc-windows-gnu.self-contained=false
2023-09-27 00:08:10 +00:00
--set target.x86_64-pc-windows-gnu.linker=%{mingw64_cc}
--set target.x86_64-pc-windows-gnu.cc=%{mingw64_cc}
--set target.x86_64-pc-windows-gnu.ar=%{mingw64_ar}
--set target.x86_64-pc-windows-gnu.ranlib=%{mingw64_ranlib}
--set target.x86_64-pc-windows-gnu.self-contained=false
2023-09-27 00:08:10 +00:00
}
%endif
%if %defined wasm_targets
%if %with bundled_wasi_libc
%make_build --quiet -C %{wasi_libc_dir} MALLOC_IMPL=emmalloc CC=clang AR=llvm-ar NM=llvm-nm
2024-05-02 17:01:52 +00:00
%define wasm_target_config %{shrink:
--set target.wasm32-wasi.wasi-root=%{wasi_libc_dir}/sysroot
--set target.wasm32-wasip1.wasi-root=%{wasi_libc_dir}/sysroot
}
%else
%define wasm_target_config %{shrink:
--set target.wasm32-wasi.wasi-root=%{_prefix}/wasm32-wasi
--set target.wasm32-wasi.self-contained=false
2024-05-02 17:01:52 +00:00
--set target.wasm32-wasip1.wasi-root=%{_prefix}/wasm32-wasi
--set target.wasm32-wasip1.self-contained=false
}
%endif
%endif
# Find the compiler-rt library for the Rust profiler_builtins crate.
%if %defined llvm_compat_version
# clang_resource_dir is not defined for compat builds.
%define profiler /usr/lib/clang/%{llvm_compat_version}/lib/%{_arch}-redhat-linux-gnu/libclang_rt.profile.a
%else
%if 0%{?clang_major_version} >= 17
%define profiler %{clang_resource_dir}/lib/%{_arch}-redhat-linux-gnu/libclang_rt.profile.a
%else
# The exact profiler path is version dependent..
%define profiler %(echo %{_libdir}/clang/??/lib/libclang_rt.profile-*.a)
%endif
%endif
test -r "%{profiler}"
2016-08-12 04:54:53 +00:00
%configure --disable-option-checking \
2024-05-02 17:01:52 +00:00
--docdir=%{_pkgdocdir} \
--libdir=%{common_libdir} \
2016-08-12 04:54:53 +00:00
--build=%{rust_triple} --host=%{rust_triple} --target=%{rust_triple} \
2022-04-07 17:16:05 +00:00
--set target.%{rust_triple}.linker=%{__cc} \
--set target.%{rust_triple}.cc=%{__cc} \
--set target.%{rust_triple}.cxx=%{__cxx} \
--set target.%{rust_triple}.ar=%{__ar} \
--set target.%{rust_triple}.ranlib=%{__ranlib} \
--set target.%{rust_triple}.profiler="%{profiler}" \
%{?mingw_target_config} \
%{?wasm_target_config} \
2022-01-13 19:41:45 +00:00
--python=%{__python3} \
2018-03-29 18:04:58 +00:00
--local-rust-root=%{local_rust_root} \
2022-04-07 17:16:05 +00:00
--set build.rustfmt=/bin/true \
%{!?with_bundled_llvm: --llvm-root=%{llvm_root} \
%{!?llvm_has_filecheck: --disable-codegen-tests} \
%{!?with_llvm_static: --enable-llvm-link-shared } } \
--disable-llvm-static-stdcpp \
2016-08-12 04:54:53 +00:00
--disable-rpath \
2017-11-23 22:41:32 +00:00
%{enable_debuginfo} \
2024-01-09 21:46:24 +00:00
%{enable_rust_opts} \
--set build.build-stage=2 \
--set build.doc-stage=2 \
--set build.install-stage=2 \
--set build.test-stage=2 \
2024-02-14 11:31:06 +00:00
--set build.optimized-compiler-builtins=false \
2018-04-16 03:47:49 +00:00
--enable-extended \
--tools=cargo,clippy,rls,rust-analyzer,rustfmt,src \
--enable-vendor \
2018-08-02 21:25:13 +00:00
--enable-verbose-tests \
2021-02-19 18:25:21 +00:00
--release-channel=%{channel} \
--release-description="%{?fedora:Fedora }%{?rhel:Red Hat }%{version}-%{release}"
%global __x %{__python3} ./x.py
2023-10-26 16:01:56 +00:00
%if %with rustc_pgo
# Build the compiler with profile instrumentation
%define profraw $PWD/build/profiles
%define profdata $PWD/build/rustc.profdata
mkdir -p "%{profraw}"
%{__x} build -j "$ncpus" sysroot --rust-profile-generate="%{profraw}"
2023-10-26 16:01:56 +00:00
# Build cargo as a workload to generate compiler profiles
env LLVM_PROFILE_FILE="%{profraw}/default_%%m_%%p.profraw" \
%{__x} --keep-stage=0 --keep-stage=1 build cargo
# Finalize the profile data and clean up the raw files
%{llvm_root}/bin/llvm-profdata merge -o "%{profdata}" "%{profraw}"
rm -r "%{profraw}" build/%{rust_triple}/stage2*/
# Redefine the macro to use that profile data from now on
%global __x %{__x} --rust-profile-use="%{profdata}"
2023-10-26 16:01:56 +00:00
%endif
# Build the compiler normally (with or without PGO)
%{__x} build -j "$ncpus" sysroot
2023-10-26 16:01:56 +00:00
# Build everything else normally
%{__x} build
%{__x} doc
2016-08-12 04:54:53 +00:00
2023-09-27 00:08:10 +00:00
for triple in %{?all_targets} ; do
%{__x} build --target=$triple std
done
2016-08-12 04:54:53 +00:00
%install
2023-05-10 03:02:43 +00:00
%if 0%{?rhel} && 0%{?rhel} <= 9
%{?set_build_flags}
%endif
%{export_rust_env}
DESTDIR=%{buildroot} %{__x} install
2023-09-27 00:08:10 +00:00
for triple in %{?all_targets} ; do
DESTDIR=%{buildroot} %{__x} install --target=$triple std
done
# The rls stub doesn't have an install target, but we can just copy it.
%{__install} -t %{buildroot}%{_bindir} build/%{rust_triple}/stage2-tools-bin/rls
# These are transient files used by x.py dist and install
rm -rf ./build/dist/ ./build/tmp/
2023-07-17 16:24:25 +00:00
# Some of the components duplicate-install binaries, leaving backups we don't want
rm -f %{buildroot}%{_bindir}/*.old
# Make sure the shared libraries are in the proper libdir
%if "%{_libdir}" != "%{common_libdir}"
mkdir -p %{buildroot}%{_libdir}
find %{buildroot}%{common_libdir} -maxdepth 1 -type f -name '*.so' \
-exec mv -v -t %{buildroot}%{_libdir} '{}' '+'
%endif
2016-08-12 04:54:53 +00:00
# The shared libraries should be executable for debuginfo extraction.
find %{buildroot}%{_libdir} -maxdepth 1 -type f -name '*.so' \
-exec chmod -v +x '{}' '+'
# The libdir libraries are identical to those under rustlib/. It's easier on
# library loading if we keep them in libdir, but we do need them in rustlib/
# to support dynamic linking for compiler plugins, so we'll symlink.
2022-09-22 20:06:42 +00:00
find %{buildroot}%{rustlibdir}/%{rust_triple}/lib/ -maxdepth 1 -type f -name '*.so' |
while read lib; do
lib2="%{buildroot}%{_libdir}/${lib##*/}"
if [ -f "$lib2" ]; then
# make sure they're actually identical!
cmp "$lib" "$lib2"
ln -v -f -r -s -T "$lib2" "$lib"
fi
done
# Remove installer artifacts (manifests, uninstall scripts, etc.)
find %{buildroot}%{rustlibdir} -maxdepth 1 -type f -exec rm -v '{}' '+'
# Remove backup files from %%configure munging
find %{buildroot}%{rustlibdir} -type f -name '*.orig' -exec rm -v '{}' '+'
# https://fedoraproject.org/wiki/Changes/Make_ambiguous_python_shebangs_error
# We don't actually need to ship any of those python scripts in rust-src anyway.
find %{buildroot}%{rustlibdir}/src -type f -name '*.py' -exec rm -v '{}' '+'
2016-08-12 04:54:53 +00:00
# Remove unwanted documentation files (we already package them)
2024-05-02 17:01:52 +00:00
rm -f %{buildroot}%{_pkgdocdir}/README.md
rm -f %{buildroot}%{_pkgdocdir}/COPYRIGHT
rm -f %{buildroot}%{_pkgdocdir}/LICENSE
rm -f %{buildroot}%{_pkgdocdir}/LICENSE-APACHE
rm -f %{buildroot}%{_pkgdocdir}/LICENSE-MIT
rm -f %{buildroot}%{_pkgdocdir}/LICENSE-THIRD-PARTY
rm -f %{buildroot}%{_pkgdocdir}/*.old
2016-08-12 04:54:53 +00:00
# Sanitize the HTML documentation
2024-05-02 17:01:52 +00:00
find %{buildroot}%{_pkgdocdir}/html -empty -delete
find %{buildroot}%{_pkgdocdir}/html -type f -exec chmod -x '{}' '+'
2016-08-12 04:54:53 +00:00
2018-04-16 03:47:49 +00:00
# Create the path for crate-devel packages
mkdir -p %{buildroot}%{_datadir}/cargo/registry
# Cargo no longer builds its own documentation
# https://github.com/rust-lang/cargo/pull/4904
mkdir -p %{buildroot}%{_docdir}/cargo
ln -sT ../rust/html/cargo/ %{buildroot}%{_docdir}/cargo/html
2018-04-16 03:47:49 +00:00
2021-02-19 18:25:21 +00:00
# We don't want Rust copies of LLVM tools (rust-lld, rust-llvm-dwp)
rm -f %{buildroot}%{rustlibdir}/%{rust_triple}/bin/rust-ll*
2023-02-20 18:43:19 +00:00
%if 0%{?rhel}
# This allows users to build packages using Rust Toolset.
%{__install} -D -m 644 %{S:100} %{buildroot}%{rpmmacrodir}/macros.rust-toolset
%{__install} -D -m 644 %{S:101} %{buildroot}%{rpmmacrodir}/macros.rust-srpm
%{__install} -D -m 644 %{S:102} %{buildroot}%{_fileattrsdir}/cargo_vendor.attr
%{__install} -D -m 755 %{S:103} %{buildroot}%{_rpmconfigdir}/cargo_vendor.prov
%endif
2016-08-12 04:54:53 +00:00
%check
2023-05-10 03:02:43 +00:00
%if 0%{?rhel} && 0%{?rhel} <= 9
%{?set_build_flags}
%endif
%{export_rust_env}
# Sanity-check the installed binaries, debuginfo-stripped and all.
2023-12-31 19:00:36 +00:00
TMP_HELLO=$(mktemp -d)
(
2023-12-31 19:00:36 +00:00
cd "$TMP_HELLO"
export RUSTC=%{buildroot}%{_bindir}/rustc \
LD_LIBRARY_PATH="%{buildroot}%{_libdir}:$LD_LIBRARY_PATH"
2023-12-31 19:00:36 +00:00
%{buildroot}%{_bindir}/cargo init --name hello-world
%{buildroot}%{_bindir}/cargo run --verbose
# Sanity-check that code-coverage builds and runs
env RUSTFLAGS="-Cinstrument-coverage" %{buildroot}%{_bindir}/cargo run --verbose
test -r default_*.profraw
# Try a build sanity-check for other std-enabled targets
for triple in %{?mingw_targets} %{?wasm_targets}; do
%{buildroot}%{_bindir}/cargo build --verbose --target=$triple
done
)
2023-12-31 19:00:36 +00:00
rm -rf "$TMP_HELLO"
2016-08-13 04:52:36 +00:00
# The results are not stable on koji, so mask errors and just log it.
# Some of the larger test artifacts are manually cleaned to save space.
# Bootstrap is excluded because it's not something we ship, and a lot of its
# tests are geared toward the upstream CI environment.
%{__x} test --no-fail-fast --skip src/bootstrap || :
rm -rf "./build/%{rust_triple}/test/"
%ifarch aarch64 riscv64
2024-05-02 17:01:52 +00:00
# https://github.com/rust-lang/rust/issues/123733
%define cargo_test_skip --test-args "--skip panic_abort_doc_tests"
%endif
%{__x} test --no-fail-fast cargo %{?cargo_test_skip} || :
rm -rf "./build/%{rust_triple}/stage2-tools/%{rust_triple}/cit/"
%{__x} test --no-fail-fast clippy || :
2021-08-24 18:33:19 +00:00
%{__x} test --no-fail-fast rust-analyzer || :
2022-09-22 20:06:42 +00:00
%{__x} test --no-fail-fast rustfmt || :
2016-08-12 04:54:53 +00:00
%ldconfig_scriptlets
2016-08-12 04:54:53 +00:00
%files
%license COPYRIGHT LICENSE-APACHE LICENSE-MIT
%doc README.md
%{_bindir}/rustc
%{_bindir}/rustdoc
%{_libdir}/*.so
2022-09-22 20:06:42 +00:00
%{_libexecdir}/rust-analyzer-proc-macro-srv
2016-08-12 04:54:53 +00:00
%{_mandir}/man1/rustc.1*
%{_mandir}/man1/rustdoc.1*
%dir %{rustlibdir}
%dir %{rustlibdir}/%{rust_triple}
%dir %{rustlibdir}/%{rust_triple}/lib
%{rustlibdir}/%{rust_triple}/lib/*.so
%files std-static
%dir %{rustlibdir}
%dir %{rustlibdir}/%{rust_triple}
%dir %{rustlibdir}/%{rust_triple}/lib
%{rustlibdir}/%{rust_triple}/lib/*.rlib
2016-08-12 04:54:53 +00:00
2023-09-27 00:08:10 +00:00
%global target_files() \
%files std-static-%1 \
%dir %{rustlibdir} \
%dir %{rustlibdir}/%1 \
%dir %{rustlibdir}/%1/lib \
%{rustlibdir}/%1/lib/*.rlib
%if %target_enabled i686-pc-windows-gnu
%target_files i686-pc-windows-gnu
%{rustlibdir}/i686-pc-windows-gnu/lib/rs*.o
%exclude %{rustlibdir}/i686-pc-windows-gnu/lib/*.dll
%exclude %{rustlibdir}/i686-pc-windows-gnu/lib/*.dll.a
%endif
2016-08-12 04:54:53 +00:00
2023-09-27 00:08:10 +00:00
%if %target_enabled x86_64-pc-windows-gnu
%target_files x86_64-pc-windows-gnu
%{rustlibdir}/x86_64-pc-windows-gnu/lib/rs*.o
%exclude %{rustlibdir}/x86_64-pc-windows-gnu/lib/*.dll
%exclude %{rustlibdir}/x86_64-pc-windows-gnu/lib/*.dll.a
%endif
2023-09-27 00:08:10 +00:00
%if %target_enabled wasm32-unknown-unknown
%target_files wasm32-unknown-unknown
%endif
2023-09-27 00:08:10 +00:00
%if %target_enabled wasm32-wasi
%target_files wasm32-wasi
%if %with bundled_wasi_libc
2023-09-27 00:08:10 +00:00
%dir %{rustlibdir}/wasm32-wasi/lib/self-contained
%{rustlibdir}/wasm32-wasi/lib/self-contained/crt*.o
%{rustlibdir}/wasm32-wasi/lib/self-contained/libc.a
%endif
%endif
2024-05-02 17:01:52 +00:00
%if %target_enabled wasm32-wasip1
%target_files wasm32-wasip1
%if %with bundled_wasi_libc
%dir %{rustlibdir}/wasm32-wasip1/lib/self-contained
%{rustlibdir}/wasm32-wasip1/lib/self-contained/crt*.o
%{rustlibdir}/wasm32-wasip1/lib/self-contained/libc.a
%endif
%endif
2023-09-27 00:08:10 +00:00
%if %target_enabled x86_64-unknown-none
%target_files x86_64-unknown-none
%endif
%if %target_enabled x86_64-unknown-uefi
%target_files x86_64-unknown-uefi
%endif
%if %target_enabled aarch64-unknown-none-softfloat
%target_files aarch64-unknown-none-softfloat
%endif
2017-04-27 22:49:04 +00:00
%files debugger-common
%dir %{rustlibdir}
%dir %{rustlibdir}/etc
%{rustlibdir}/etc/rust_*.py*
2017-04-27 22:49:04 +00:00
%files gdb
%{_bindir}/rust-gdb
2020-10-09 23:13:53 +00:00
%{rustlibdir}/etc/gdb_*
2019-04-11 17:55:26 +00:00
%exclude %{_bindir}/rust-gdbgui
%files lldb
%{_bindir}/rust-lldb
2020-10-09 23:13:53 +00:00
%{rustlibdir}/etc/lldb_*
2016-08-12 04:54:53 +00:00
%files doc
2024-05-02 17:01:52 +00:00
%docdir %{_pkgdocdir}
%dir %{_pkgdocdir}
%{_pkgdocdir}/html
# former cargo-doc
%docdir %{_docdir}/cargo
%dir %{_docdir}/cargo
%{_docdir}/cargo/html
2016-08-12 04:54:53 +00:00
2018-04-16 03:47:49 +00:00
%files -n cargo
%license src/tools/cargo/LICENSE-{APACHE,MIT,THIRD-PARTY}
2018-04-16 03:47:49 +00:00
%doc src/tools/cargo/README.md
%{_bindir}/cargo
%{_mandir}/man1/cargo*.1*
%{_sysconfdir}/bash_completion.d/cargo
%{_datadir}/zsh/site-functions/_cargo
%dir %{_datadir}/cargo
%dir %{_datadir}/cargo/registry
%files -n rustfmt
2018-03-29 18:04:58 +00:00
%{_bindir}/rustfmt
%{_bindir}/cargo-fmt
%doc src/tools/rustfmt/{README,CHANGELOG,Configurations}.md
%license src/tools/rustfmt/LICENSE-{APACHE,MIT}
2022-09-22 20:06:42 +00:00
%files analyzer
%{_bindir}/rls
2022-09-22 20:06:42 +00:00
%{_bindir}/rust-analyzer
%doc src/tools/rust-analyzer/README.md
%license src/tools/rust-analyzer/LICENSE-{APACHE,MIT}
%files -n clippy
%{_bindir}/cargo-clippy
%{_bindir}/clippy-driver
%doc src/tools/clippy/{README.md,CHANGELOG.md}
%license src/tools/clippy/LICENSE-{APACHE,MIT}
%files src
%dir %{rustlibdir}
%{rustlibdir}/src
2023-02-20 18:43:19 +00:00
%if 0%{?rhel}
%files toolset-srpm-macros
%{rpmmacrodir}/macros.rust-srpm
%files toolset
%{rpmmacrodir}/macros.rust-toolset
%{_fileattrsdir}/cargo_vendor.attr
%{_rpmconfigdir}/cargo_vendor.prov
%endif
2016-08-12 04:54:53 +00:00
%changelog
%autochangelog