# (akien) This package is synced with Fedora / Josh Stone's spec. # The aim is to work with them on a rust packaging policy we could share, # so that we can ensure a good packaging and share the workload. Name: rust Version: 1.76.0 Release: %mkrel 1.1 Summary: The Rust Programming Language %if 0%{?mageia} Group: Development/Other %endif 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 # Only x86_64, i686, and aarch64 are Tier 1 platforms at this time. # https://doc.rust-lang.org/nightly/rustc/platform-support.html %global rust_arches x86_64 i686 armv7hl aarch64 ppc64le s390x riscv64 #ExclusiveArch: %%{rust_arches} i586 # Temporary workaround for testing llvm17-suite, which for now is x86 only. #ExclusiveArch: x86_64 %ix86 %if 0%{?mageia} # (akien) Added by tv in mga8/rust 1.37.0. %global _python_bytecompile_extra 0 %endif # To bootstrap from scratch, set the channel and date from src/stage0.json # e.g. 1.59.0 wants rustc: 1.58.0-2022-01-13 # or nightly wants some beta-YYYY-MM-DD %global bootstrap_version 1.75.0 %global bootstrap_channel 1.75.0 %global bootstrap_date 2023-12-28 # Only the specified arches will use bootstrap binaries. # 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} # 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} || 0%{?mageia} %global mingw_targets i686-pc-windows-gnu x86_64-pc-windows-gnu %endif %global wasm_targets wasm32-unknown-unknown wasm32-wasi %if 0%{?fedora} || 0%{?rhel} >= 10 || 0%{?mageia} %global extra_targets x86_64-unknown-none x86_64-unknown-uefi %endif %endif %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 # (updated per https://github.com/rust-lang/rust/pull/96907) %global wasi_libc_url https://github.com/WebAssembly/wasi-libc #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 %global wasi_libc_dir %{_builddir}/%{wasi_libc_name} %if 0%{?fedora} %bcond_with bundled_wasi_libc %else %bcond_without bundled_wasi_libc %endif # Using llvm-static may be helpful as an opt-in, e.g. to aid LLVM rebases. %bcond_without llvm_static # We can also choose to just use Rust's bundled LLVM, in case the system LLVM # is insufficient. Rust currently requires LLVM 16.0+. %global min_llvm_version 16.0.0 %global bundled_llvm_version 17.0.6 %bcond_with bundled_llvm # (akien) Hacks below are needed on mga's buildsystem when we have to rebootstrap llvm. # Bundled LLVM has underlinking issues: #%%global _disable_ld_no_undefined 1 #%%ifarch %%{arm} %%ix86 # Decrease debuginfo verbosity to reduce memory consumption during final library linking #%%global optflags %%(echo %%{optflags} | sed 's/-g /-g1 /') #%%endif # Requires stable libgit2 1.7, and not the next minor soname change. # This needs to be consistent with the bindings in vendor/libgit2-sys. %global min_libgit2_version 1.7.1 %global next_libgit2_version 1.8.0~ %global bundled_libgit2_version 1.7.1 %if 0%{?fedora} >= 39 || 0%{?mageia} >= 99 %bcond_with bundled_libgit2 %else %bcond_without bundled_libgit2 %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 # On Mageia, we also need to use the "32-bit" path below. %if 0%{?mageia} %ifarch aarch64 %global mga_aarch64 1 %endif %endif # 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 # (akien) Also on aarch64 for Mageia. %ifarch riscv64 aarch64 %global reduced_debuginfo 1 %endif %if 0%{?reduced_debuginfo} %global enable_debuginfo --debuginfo-level=0 --debuginfo-level-std=2 %global enable_rust_opts --set rust.codegen-units-std=1 %bcond_with rustc_pgo %else # 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 %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} Source0: https://static.rust-lang.org/dist/%{rustc_package}.tar.xz Source1: %{wasi_libc_source} # Sources for bootstrap_arches are inserted by lua below # 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. Patch2: rustc-1.70.0-rust-gdb-substitute-path.patch # 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 # We don't want to use the bundled library in libsqlite3-sys Patch6: rustc-1.76.0-unbundle-sqlite.patch # (akien) Those tests fail on armv7 - on Fedora too, and jistone ignores them # https://github.com/rust-lang/rust/issues/83453 Patch11: rustc-1.50.0-allow_fail-armv7-instruction_set.patch ### 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) Patch100: rustc-1.76.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}")))} # 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 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 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 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} %endif %ifarch %{bootstrap_arches} %global local_rust_root %{_builddir}/rust-%{bootstrap_suffix} Provides: bundled(%{name}-bootstrap) = %{bootstrap_version} %else BuildRequires: cargo >= %{bootstrap_version} %if 0%{?mageia} BuildRequires: %{name} >= %{bootstrap_version} BuildConflicts: %{name} > %{version} %else BuildRequires: (%{name} >= %{bootstrap_version} with %{name} <= %{version}) %endif %global local_rust_root %{_prefix} %endif BuildRequires: make BuildRequires: gcc BuildRequires: gcc-c++ BuildRequires: ncurses-devel # explicit curl-devel to avoid httpd24-curl (rhbz1540167) BuildRequires: curl-devel BuildRequires: pkgconfig(libcurl) BuildRequires: pkgconfig(liblzma) BuildRequires: pkgconfig(openssl) BuildRequires: pkgconfig(sqlite3) BuildRequires: pkgconfig(zlib) %if %{without bundled_libgit2} %if 0%{?mageia} BuildRequires: pkgconfig(libgit2) >= %{min_libgit2_version} BuildRequires: pkgconfig(libgit2) < %{next_libgit2_version} %else BuildRequires: (pkgconfig(libgit2) >= %{min_libgit2_version} with pkgconfig(libgit2) < %{next_libgit2_version}) %endif %endif %if %{without disabled_libssh2} BuildRequires: pkgconfig(libssh2) %endif %if 0%{?rhel} == 8 BuildRequires: platform-python %else BuildRequires: python3 %endif BuildRequires: python3-rpm-macros %if %with bundled_llvm BuildRequires: cmake >= 3.20.0 BuildRequires: ninja-build Provides: bundled(llvm) = %{bundled_llvm_version} %else BuildRequires: cmake >= 3.5.1 %define llvm llvm17 %if %defined llvm %global llvm_root %{_libdir}/%{llvm} %else %global llvm llvm %global llvm_root %{_prefix} %endif %if 0%{?mageia} BuildRequires: %{llvm}-suite-devel >= %{min_llvm_version} %else BuildRequires: %{llvm}-devel >= %{min_llvm_version} %endif %if %with llvm_static %if 0%{?mageia} BuildRequires: %{llvm}-suite-static BuildRequires: %{llvm}-suite-polly-devel BuildRequires: pkgconfig(libxml-2.0) %else BuildRequires: %{llvm}-static %endif BuildRequires: libffi-devel %endif %endif # LLVM seems to need libatomic on armv7hl only. May be fixed in future releases? %ifarch %{arm} BuildRequires: libatomic-devel %endif # make check needs "ps" for src/test/ui/wait-forked-but-failed-child.rs BuildRequires: procps-ng # debuginfo-gdb tests need gdb BuildRequires: gdb # For src/test/run-make/static-pie %if 0%{?mageia} BuildRequires: glibc-static-devel %else BuildRequires: glibc-static %endif # Virtual provides for folks who attempt "dnf install rustc" Provides: rustc = %{version}-%{release} Provides: rustc%{?_isa} = %{version}-%{release} # Always require our exact standard library Requires: %{name}-std-static%{?_isa} = %{version}-%{release} # 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 %if 0%{?mageia} Requires: gcc %else Requires: /usr/bin/cc %endif %global __ranlib %{_bindir}/ranlib # ALL Rust libraries are private, because they don't keep an ABI. %global _privatelibs lib(.*-[[:xdigit:]]{16}*|rustc.*)[.]so.* %global __provides_exclude ^(%{_privatelibs})$ %global __requires_exclude ^(%{_privatelibs})$ %global __provides_exclude_from ^(%{_docdir}|%{rustlibdir}/src)/.*$ %global __requires_exclude_from ^(%{_docdir}|%{rustlibdir}/src)/.*$ # 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 %if %{without bundled_llvm} %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 # brp-strip-static-archive breaks the archive index for wasm %global __os_install_post \ %__os_install_post \ find '%{buildroot}%{rustlibdir}'/wasm*/lib -type f -regex '.*\\.\\(a\\|rlib\\)' -print -exec '%{llvm_root}/bin/llvm-ranlib' '{}' ';' \ %{nil} %endif # For profiler_builtins BuildRequires: compiler-rt %if 0%{?mageia} BuildRequires: rpm_macro(clang_major_version) %endif # This component was removed as of Rust 1.69.0. # https://github.com/rust-lang/rust/pull/101841 Obsoletes: %{name}-analysis < 1.69.0~ %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} Requires: glibc-devel%{?_isa} >= 2.17 %description std-static This package includes the standard libraries for building applications written in Rust. %global target_package() \ %package std-static-%1 \ Summary: Standard library for Rust %1 \ Requires: %{name} = %{version}-%{release} %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 %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 %target_description x86_64-pc-windows-gnu MinGW %endif %if %target_enabled wasm32-unknown-unknown %target_package wasm32-unknown-unknown Requires: lld >= 8.0 BuildArch: noarch %target_description wasm32-unknown-unknown WebAssembly %endif %if %target_enabled wasm32-wasi %target_package wasm32-wasi Requires: lld >= 8.0 %if %with bundled_wasi_libc Provides: bundled(wasi-libc) %else Requires: wasi-libc-static %endif BuildArch: noarch %target_description wasm32-wasi WebAssembly %endif %if %target_enabled x86_64-unknown-none %target_package x86_64-unknown-none Requires: lld %target_description x86_64-unknown-none embedded %endif %if %target_enabled x86_64-unknown-uefi %target_package x86_64-unknown-uefi Requires: lld %target_description x86_64-unknown-uefi embedded %endif %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. %package gdb Summary: GDB pretty printers for Rust BuildArch: noarch Requires: gdb Requires: %{name}-debugger-common = %{version}-%{release} %description gdb This package includes the rust-gdb script, which allows easier debugging of Rust programs. %package lldb Summary: LLDB pretty printers for Rust BuildArch: noarch Requires: lldb Requires: python3-lldb Requires: %{name}-debugger-common = %{version}-%{release} %description lldb This package includes the rust-lldb script, which allows easier debugging of Rust programs. %package doc Summary: Documentation for Rust # NOT BuildArch: noarch # 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. # 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} %description doc This package includes HTML documentation for the Rust programming language and its standard library. %package -n cargo Summary: Rust's package manager and build tool %if %with bundled_libgit2 Provides: bundled(libgit2) = %{bundled_libgit2_version} %endif # For tests: BuildRequires: git-core # Cargo is not much use without Rust Requires: %{name} # "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} %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 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 Provides: rustfmt-preview = %{version}-%{release} %description -n rustfmt 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 # 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 %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. %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 Requires: %{name}%{?_isa} = %{version}-%{release} # The component/package was clippy-preview until Rust 1.31. Obsoletes: clippy-preview <= 0.0.212 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 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. %if 0%{?rhel} %package srpm-macros Summary: RPM macros for building Rust source packages BuildArch: noarch %description srpm-macros RPM macros for building source packages for Rust projects. %package toolset Summary: Rust Toolset 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 %prep %ifarch %{bootstrap_arches} 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} %setup -q -n %{wasi_libc_name} -T -b 1 rm -rf %{wasi_libc_dir}/dlmalloc/ %endif %setup -q -n %{rustc_package} %patch -P1 -p1 %patch -P2 -p1 %patch -P3 -p1 %patch -P4 -p1 %if %without bundled_wasi_libc %patch -P5 -p1 %endif %patch -P6 -p1 %patch -P11 -p1 %if %with disabled_libssh2 %patch -P100 -p1 %endif # Use our explicit python3 first sed -i.try-python -e '/^try python3 /i try "%{__python3}" "$@"' ./configure # 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 rm -rf src/llvm-project/ mkdir -p src/llvm-project/libunwind/ %endif # 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*/{sqlite3,sqlcipher}/ %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/ %if %without bundled_libgit2 %clear_dir vendor/libgit2-sys*/libgit2/ %endif %if %with disabled_libssh2 rm -rf vendor/libssh2-sys*/ %endif # This only affects the transient rust-installer, but let it use our dynamic xz-libs sed -i.lzma -e '/LZMA_API_STATIC/d' src/bootstrap/src/core/build_steps/tool.rs %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 {}' \ compiler/rustc_llvm/src/lib.rs %endif # 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. find vendor -name .cargo-checksum.json \ -exec sed -i.uncheck -e 's/"files":{[^}]*}/"files":{ }/' '{}' '+' # 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 '{}' '+' # 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 %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") print(env) end} # 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} LIBSQLITE3_SYS_USE_PKG_CONFIG=1 %{!?with_disabled_libssh2:LIBSSH2_SYS_USE_PKG_CONFIG=1} } %global export_rust_env export %{rust_env} %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 %ifarch aarch64 %{arm} ncpus="2" %endif %if %defined mingw_targets %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 --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 } %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 %define wasm_target_config --set target.wasm32-wasi.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 } %endif %endif # Find the compiler-rt library for the Rust profiler_builtins crate. %if 0%{?clang_major_version} >= 17 %if 0%{?mageia} %ifarch %{arm32} %define _gnu -gnueabihf %endif %define profiler %{clang_resource_dir}/lib/%{_arch}-%{_real_vendor}-linux%{?_gnu}/libclang_rt.profile.a %else %define profiler %{clang_resource_dir}/lib/%{_arch}-redhat-linux-gnu/libclang_rt.profile.a %endif %else # The exact profiler path is version dependent.. %if 0%{?mageia} clang_arch=%{_arch} %ifarch armv7hl clang_arch=armhf %endif %define profiler %{_libdir}/clang/%{clang_major_version}/lib/libclang_rt.profile-$clang_arch.a %else %define profiler %(echo %{_libdir}/clang/??/lib/libclang_rt.profile-*.a) %endif %endif test -r "%{profiler}" %configure --disable-option-checking \ --libdir=%{common_libdir} \ --build=%{rust_triple} --host=%{rust_triple} --target=%{rust_triple} \ --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} \ --python=%{__python3} \ --local-rust-root=%{local_rust_root} \ --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 \ --disable-rpath \ %{enable_debuginfo} \ %{enable_rust_opts} \ --set build.build-stage=2 \ --set build.doc-stage=2 \ --set build.install-stage=2 \ --set build.test-stage=2 \ --enable-extended \ --tools=cargo,clippy,rls,rust-analyzer,rustfmt,src \ --enable-vendor \ --enable-verbose-tests \ --dist-compression-formats=gz \ --release-channel=%{channel} \ --release-description="%{?mageia:Mageia }%{?fedora:Fedora }%{?rhel:Red Hat }%{version}-%{release}" %global __x %{__python3} ./x.py %global __xk %{__x} --keep-stage=0 --keep-stage=1 %if %with rustc_pgo # Build the compiler with profile instrumentation PROFRAW="$PWD/build/profiles" PROFDATA="$PWD/build/rustc.profdata" mkdir -p "$PROFRAW" %{__x} build -j "$ncpus" sysroot --rust-profile-generate="$PROFRAW" # Build cargo as a workload to generate compiler profiles env LLVM_PROFILE_FILE="$PROFRAW/default_%%m_%%p.profraw" %{__xk} build cargo llvm-profdata merge -o "$PROFDATA" "$PROFRAW" rm -r "$PROFRAW" build/%{rust_triple}/stage2*/ # Rebuild the compiler using the profile data %{__x} build -j "$ncpus" sysroot --rust-profile-use="$PROFDATA" %else # Build the compiler without PGO %{__x} build -j "$ncpus" sysroot %endif # Build everything else normally %{__xk} build %{__xk} doc for triple in %{?all_targets} ; do %{__xk} build --target=$triple std done %install %if 0%{?rhel} && 0%{?rhel} <= 9 %{?set_build_flags} %endif %{export_rust_env} DESTDIR=%{buildroot} %{__xk} install for triple in %{?all_targets} ; do DESTDIR=%{buildroot} %{__xk} 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/ # 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 # 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. 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 '{}' '+' # FIXME: __os_install_post will strip the rlibs # -- should we find a way to preserve debuginfo? # Remove unwanted documentation files (we already package them) rm -f %{buildroot}%{_docdir}/%{name}/README.md rm -f %{buildroot}%{_docdir}/%{name}/COPYRIGHT rm -f %{buildroot}%{_docdir}/%{name}/LICENSE rm -f %{buildroot}%{_docdir}/%{name}/LICENSE-APACHE rm -f %{buildroot}%{_docdir}/%{name}/LICENSE-MIT rm -f %{buildroot}%{_docdir}/%{name}/LICENSE-THIRD-PARTY rm -f %{buildroot}%{_docdir}/%{name}/*.old # Sanitize the HTML documentation find %{buildroot}%{_docdir}/%{name}/html -empty -delete find %{buildroot}%{_docdir}/%{name}/html -type f -exec chmod -x '{}' '+' # 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 # We don't want Rust copies of LLVM tools (rust-lld, rust-llvm-dwp) rm -f %{buildroot}%{rustlibdir}/%{rust_triple}/bin/rust-ll* %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 %check %if 0%{?rhel} && 0%{?rhel} <= 9 %{?set_build_flags} %endif %{export_rust_env} # Sanity-check the installed binaries, debuginfo-stripped and all. TMP_HELLO=$(mktemp -d) ( cd "$TMP_HELLO" export RUSTC=%{buildroot}%{_bindir}/rustc \ LD_LIBRARY_PATH="%{buildroot}%{_libdir}:$LD_LIBRARY_PATH" %{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 ) rm -rf "$TMP_HELLO" # 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. %{__xk} test --no-fail-fast --skip src/bootstrap || : rm -rf "./build/%{rust_triple}/test/" %{__xk} test --no-fail-fast cargo || : rm -rf "./build/%{rust_triple}/stage2-tools/%{rust_triple}/cit/" %{__xk} test --no-fail-fast clippy || : %{__xk} test --no-fail-fast rust-analyzer || : %{__xk} test --no-fail-fast rustfmt || : %{?ldconfig_scriptlets} %files %license COPYRIGHT LICENSE-APACHE LICENSE-MIT %doc README.md %{_bindir}/rustc %{_bindir}/rustdoc %{_libdir}/*.so %{_libexecdir}/rust-analyzer-proc-macro-srv %{_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 %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 %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 %if %target_enabled wasm32-unknown-unknown %target_files wasm32-unknown-unknown %endif %if %target_enabled wasm32-wasi %target_files wasm32-wasi %if %with bundled_wasi_libc %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 %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 %files debugger-common %dir %{rustlibdir} %dir %{rustlibdir}/etc %{rustlibdir}/etc/rust_*.py* %files gdb %{_bindir}/rust-gdb %{rustlibdir}/etc/gdb_* %exclude %{_bindir}/rust-gdbgui %files lldb %{_bindir}/rust-lldb %{rustlibdir}/etc/lldb_* %files doc %docdir %{_docdir}/%{name} %dir %{_docdir}/%{name} %{_docdir}/%{name}/html # former cargo-doc %docdir %{_docdir}/cargo %dir %{_docdir}/cargo %{_docdir}/cargo/html %files -n cargo %license src/tools/cargo/LICENSE-{APACHE,MIT,THIRD-PARTY} %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 %{_bindir}/rustfmt %{_bindir}/cargo-fmt %doc src/tools/rustfmt/{README,CHANGELOG,Configurations}.md %license src/tools/rustfmt/LICENSE-{APACHE,MIT} %files analyzer %{_bindir}/rls %{_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 %if 0%{?rhel} %files srpm-macros %{rpmmacrodir}/macros.rust-srpm %{_fileattrsdir}/cargo_vendor.attr %{_rpmconfigdir}/cargo_vendor.prov %files toolset %{rpmmacrodir}/macros.rust-toolset %endif %changelog * Fri Jun 14 2024 akien 1.76.0-1.1.mga9 + Revision: 2073578 - Try build with llvm17-suite (x86 only) - Use bundled LLVM 17, our version 15 is too low - Thu Feb 08 2024 Josh Stone - 1.76.0-1 o Update to 1.76.0. - Sync with Fedora: Tue Jan 30 2024 Josh Stone - 1.75.0-3 o Update to 1.75.0. o Consolidate 32-bit build compromises. o Update rust-toolset and add rust-srpm-macros for ELN. - Sync with Fedora: Thu Nov 16 2023 Josh Stone - 1.74.0-1 o Update to 1.74.0. o Detect non-stable channels from the version. o Sync rust-toolset macros from rust-packaging. o Use thin-LTO and PGO for rustc itself. - Sync with Fedora: Thu Oct 05 2023 Josh Stone - 1.73.0-1 o Update to 1.73.0. o Drop el7 conditionals from the spec. o Fix the profiler runtime with compiler-rt-17 o Switch to unbundled wasi-libc on Fedora o Use emmalloc instead of CC0 dlmalloc when bundling wasi-libc o Add build target for x86_64-unknown-none o Add build target for x86_64-unknown-uefi o Migrated to SPDX license - Remove Mageia logic for bootstrap_build_arch, untested in a long time and too hard to maintain. i586 should now have proper bootstrap binaries upstream IIRC so it might not be needed anymore anyway. - Sync with Fedora: Thu Aug 24 2023 Josh Stone - 1.72.0-1 o Update to 1.72.0. - Sync with Fedora: Mon Aug 07 2023 Josh Stone - 1.71.1-1 o Update to 1.71.1 o Security fix for CVE-2023-38497. o Enable the profiler runtime for native hosts. * Mon Jun 05 2023 akien 1.70.0-1.mga9 + Revision: 1960998 - Sync with Fedora: Thu Jun 01 2023 Josh Stone - 1.70.0-1 o Update to 1.70.0. * Fri Apr 28 2023 akien 1.69.0-1.mga9 + Revision: 1955257 - Sync with Fedora: Thu Apr 20 2023 Josh Stone - 1.69.0-1 o Update to 1.69.0. o Obsolete rust-analysis. * Sat Mar 18 2023 akien 1.68.0-1.mga9 + Revision: 1949621 - Sync with Fedora: Thu Mar 09 2023 Josh Stone - 1.68.0-1 o Update to 1.68.0. o Add a virtual Provides to rust-std-static containing the target triple. o Ship rust-toolset for EPEL. * Mon Feb 27 2023 akien 1.67.1-1.mga9 + Revision: 1945597 - Sync with Fedora: Thu Feb 09 2023 Josh Stone - 1.67.1-1 o Update to 1.67.1. * Tue Feb 07 2023 akien 1.67.0-2.mga9 + Revision: 1939205 - BR libatomic-devel for armv7hl, seems needed for LLVM (possibly upstream bug?) * Tue Feb 07 2023 akien 1.67.0-1.mga9 + Revision: 1939065 - Sync with Fedora: Fri Feb 03 2023 Josh Stone - 1.67.0-3 o Update to 1.67.0. o Backport PR #107360 to fix build of mesa o Backport 675fa0b3 to fix bootstrapping failure * Wed Jan 18 2023 akien 1.66.1-1.mga9 + Revision: 1934267 - Sync with Fedora: Tue Jan 10 2023 Josh Stone - 1.66.1-1 o Update to 1.66.1. o Security fix for CVE-2022-46176 * Sat Dec 17 2022 akien 1.66.0-1.mga9 + Revision: 1924237 - Sync with Fedora: Thu Dec 15 2022 Josh Stone - 1.66.0-1 o Update to 1.66.0. * Fri Nov 04 2022 akien 1.65.0-1.mga9 + Revision: 1902455 - Sync with Fedora: Thu Nov 03 2022 Josh Stone - 1.65.0-1 o Update to 1.65.0. o rust-analyzer now obsoletes rls. * Fri Sep 23 2022 akien 1.64.0-1.mga9 + Revision: 1891745 - Sync with Fedora: Thu Sep 22 2022 Josh Stone - 1.64.0-1 o Update to 1.64.0. o Add rust-analyzer. + tv - Rebuild for llvm-15 + ns80 - rebuild for LLVM/clang 15 * Tue Sep 06 2022 akien 1.63.0-1.mga9 + Revision: 1884616 - Sync with Fedora: Thu Aug 11 2022 Josh Stone - 1.63.0-1 o Update to 1.63.0. * Fri Sep 02 2022 akien 1.62.1-1.mga9 + Revision: 1883518 - Sync with Fedora: Tue Jul 19 2022 Josh Stone - 1.62.1-1 o Update to 1.62.1. * Mon Jun 06 2022 akien 1.61.0-1.mga9 + Revision: 1861388 - Sync with Fedora: Mon May 23 2022 Josh Stone - 1.61.0-2 o Update to 1.61.0. o Add rust-toolset for ELN. o Add missing target_feature to the list of well known cfg names * Mon Apr 11 2022 akien 1.60.0-2.mga9 + Revision: 1848902 - Rebuild with re-bootstrapped aarch64 * Mon Apr 11 2022 akien 1.60.0-1.mga9 + Revision: 1848768 - Boostrap aarch64, the previous build got borked in llvm13 -> 14 transition - Attempt force build with llvm13 to prevent llvm 13 and 14 mixup - Sync with Fedora: Thu Apr 07 2022 Josh Stone - 1.60.0-1 o Update to 1.60.0. - Sync with Fedora: Fri Mar 25 2022 Josh Stone - 1.59.0-4 o Fix the archive index for wasm32-wasi's libc.a - Disable bootstrap, we'll re-add libllvm13.0. Also add i586 to ExclusiveArch. + tv - Boostrap as clang-14 cannot cohabite with libclang13... - Fix bootstraping arches - Rebuild for llvm-14 + umeabot - Mageia 9 Mass Rebuild * Mon Mar 07 2022 akien 1.59.0-1.mga9 + Revision: 1789601 - Tue Mar 01 2022 Josh Stone - 1.59.0-2 o Update to 1.59.0. * Tue Jan 25 2022 akien 1.58.1-1.mga9 + Revision: 1769757 - Sync with Fedora: Thu Jan 20 2022 Josh Stone - 1.58.1-1 o Update to 1.58.1. o Add rust-std-static-i686-pc-windows-gnu o Add rust-std-static-x86_64-pc-windows-gnu * Sun Jan 02 2022 akien 1.57.0-1.mga9 + Revision: 1766230 - Sync with Fedora: Thu Dec 02 2021 Josh Stone - 1.57.0-1 o Update to 1.57.0, fixes rhbz#2028675. o Backport rust#91070, fixes rhbz#1990657 o Add rust-std-static-wasm32-wasi - Mageia: Use bundled libgit2 until we have 1.3.0. * Mon Nov 01 2021 akien 1.56.1-1.mga9 + Revision: 1753622 - Sync with Fedora: Mon Nov 01 2021 Josh Stone - 1.56.1-1 o Update to 1.56.1. * Mon Nov 01 2021 akien 1.55.0-1.mga9 + Revision: 1753612 - Sync with Fedora: Thu Sep 09 2021 Josh Stone - 1.55.0-1 o Update to 1.55.0. o Use llvm-ranlib for wasm rlibs; Fixes rhbz#2002612 + wally - rebuild for openssl 3.0.0 * Tue Aug 10 2021 akien 1.54.0-1.mga9 + Revision: 1740984 - Sync with Fedora: Thu Jul 29 2021 Josh Stone - 1.54.0-1 o Update to 1.54.0. * Wed Jun 23 2021 akien 1.53.0-1.mga9 + Revision: 1732055 - Sync with Fedora: Thu Jun 17 2021 Josh Stone - 1.53.0-1 o Update to 1.53.0. o Set rust.codegen-units-std=1 for all targets again. o Add rust-std-static-wasm32-unknown-unknown. * Sun May 16 2021 akien 1.52.1-1.mga9 + Revision: 1724502 - Sync with Fedora: Mon May 10 2021 Josh Stone - 1.52.1-1 o Update to 1.52.1. - Build against LLVM 12, now supported. * Thu Mar 25 2021 akien 1.51.0-1.mga9 + Revision: 1710263 - Sync with Fedora: Thu Mar 25 2021 Josh Stone - 1.51.0-1 o Update to 1.51.0. * Thu Mar 25 2021 akien 1.50.0-3.mga9 + Revision: 1709688 - Add patch to disable failing doc tests on armv7 * Tue Mar 23 2021 akien 1.50.0-2.mga9 + Revision: 1708248 - Backport upstream patch to fix cargo metadata test on ~x86_64 - Remove previous hacks, retry build against system llvm11.0 + tv - "fix" underlinking with bundled llvm - BR ninja - try building with bundled llvm for now - fix llvm-config path with llvm11 - 1.50 - rebuild for llvm-12 + neoclust - Build rust with llvm 11.0 * Mon Jan 11 2021 akien 1.49.0-1.mga8 + Revision: 1671021 - Sync with Fedora: Tue Jan 05 2021 Josh Stone - 1.49.0-1 o Update to 1.49.0. * Thu Dec 31 2020 neoclust 1.48.0-5.mga8 + Revision: 1667130 - Rebuild against broken deps for libgit2.so.1.0 * Fri Dec 04 2020 tv 1.48.0-4.mga8 + Revision: 1652435 - build w/o llvm-static bootstrap - fix llvm-static bootstrap - bootstrap with llvm-static - rebuild for llvm-11 again due to PPC drop: $ rustc -vV rustc: symbol lookup error: /lib64/librustc_driver-a9c6a289fdb4f309.so: undefined symbol: LLVMInitializePowerPCAsmParser, version LLVM_11 * Thu Nov 26 2020 tv 1.48.0-2.mga8 + Revision: 1649429 - rebuild for llvm-11 * Mon Nov 23 2020 akien 1.48.0-1.mga8 + Revision: 1648840 - Sync with Fedora: Thu Nov 19 2020 Josh Stone - 1.48.0-1 o Update to 1.48.0. * Mon Oct 12 2020 akien 1.47.0-1.mga8 + Revision: 1633704 - Sync with Fedora: Sat Oct 10 2020 Jeff Law - 1.47.0-2 o Update to 1.47.0. * Wed Sep 09 2020 akien 1.46.0-1.mga8 + Revision: 1623992 - Sync with Fedora: Fri Aug 28 2020 Fabio Valentini - 1.46.0-2 o Update to 1.46.0. o Fix LTO with doctests (backported cargo PR#8657). * Mon Sep 07 2020 akien 1.45.2-1.mga8 + Revision: 1623405 - Sync with Fedora: Mon Aug 03 2020 Josh Stone - 1.45.2-1 o Update to 1.45.2. * Sat Jul 11 2020 akien 1.44.1-2.mga8 + Revision: 1605269 - Rebuild as armv7hl failed due to BS issue (disk full) * Thu Jul 09 2020 akien 1.44.1-1.mga8 + Revision: 1603779 - Sync with Fedora: Wed Jul 01 2020 Josh Stone - 1.44.1-2 o Update to 1.44.0. o Update to 1.44.1. o Disable LTO * Thu Jul 09 2020 akien 1.43.1-1.mga8 + Revision: 1603572 - Sync with Fedora: Thu May 07 2020 Josh Stone - 1.43.1-1 o Update to 1.43.0. o Update to 1.43.1. * Sun Mar 22 2020 tv 1.42.0-2.mga8 + Revision: 1558784 - rebuild with llvm 10 * Fri Mar 13 2020 akien 1.42.0-1.mga8 + Revision: 1556084 - Sync with Fedora: Thu Mar 12 2020 Josh Stone - 1.42.0-1 o Update to 1.42.0. * Wed Feb 19 2020 akien 1.41.0-1.mga8 + Revision: 1544256 - Sync with Fedora: Thu Jan 30 2020 Josh Stone - 1.41.0-1 o Update to 1.41.0. o Build compiletest with in-tree libtest o Fix ARM EHABI unwinding o Reintroduce the workaround for LLVM library path * Tue Feb 18 2020 umeabot 1.40.0-2.mga8 + Revision: 1541724 - Mageia 8 Mass Rebuild + wally - replace deprecated %%configure2_5x * Tue Dec 31 2019 akien 1.40.0-1.mga8 + Revision: 1475078 - Sync with Fedora: Thu Dec 19 2019 Josh Stone - 1.40.0-1 o Update to 1.40.0. * Wed Nov 27 2019 akien 1.39.0-1.mga8 + Revision: 1463214 - Reduce debuginfo on aarch64 to try to workaround memory issue - Sync with Fedora: Thu Nov 07 2019 Josh Stone - 1.39.0-1 o Update to 1.39.0. * Fri Oct 04 2019 akien 1.38.0-1.mga8 + Revision: 1449358 - Update again to 1.38.0, partial revert to r1448688 - Keep some Mageia-specific additions for bundled llvm builds - Build against system llvm9 * Thu Oct 03 2019 tv 1.37.0-2.mga8 + Revision: 1449125 - disable %%_python_bytecompile_extra - Decrease debuginfo verbosity to reduce memory consumption during final library linking - Update to 1.37.0 - switch to %%configure2_5x - rebuild for new llvm + akien - Add patch to fix logic around building bundled LLVM, plus limit link jobs on non-x86_64 to avoid OOM - Set _disable_ld_no_undefined to fix bundled llvm build - Temporarily revert to r1443439 to build 1.37.0 with bundled llvm - Sync with Fedora: Fri Sep 27 2019 Josh Stone - 1.38.0-2 o Update to 1.38.0. o Filter the libraries included in rust-std (rhbz1756487) * Sun Jul 07 2019 akien 1.36.0-1.mga8 + Revision: 1419248 - Sync with Fedora: Thu Jul 04 2019 Josh Stone - 1.36.0-1 o Update to 1.36.0. * Fri May 24 2019 akien 1.35.0-1.mga7 + Revision: 1399021 - Sync with Fedora: Thu May 23 2019 Josh Stone - 1.35.0-1 o Update to 1.35.0. * Wed May 15 2019 akien 1.34.2-1.mga7 + Revision: 1397810 - Sync with Fedora: Tue May 14 2019 Josh Stone - 1.34.2-1 o Update to 1.34.2 -- fixes CVE-2019-12083. * Fri May 10 2019 akien 1.34.1-2.mga7 + Revision: 1397010 - Rebuild with bootstrapped i586 host - Remove the ThinLTO workaround. * Thu May 09 2019 akien 1.34.1-1.mga7 + Revision: 1396907 - Bootstrap real i586 target, patch by Martin Whitaker - Sync with Fedora: Tue Apr 30 2019 Josh Stone - 1.34.1-3 o Update to 1.34.1. o Add a ThinLTO fix for rhbz1701339. o Set rust.codegen-units-std=1 * Mon Apr 15 2019 akien 1.34.0-2.mga7 + Revision: 1390801 - Rebuild for llvm 8.0.0 * Thu Apr 11 2019 akien 1.34.0-1.mga7 + Revision: 1388944 - Sync with Fedora: Thu Apr 11 2019 Josh Stone - 1.34.0-1 o Update to 1.34.0. * Sat Mar 02 2019 akien 1.33.0-1.mga7 + Revision: 1370979 - Sync with Fedora: Fri Mar 01 2019 Josh Stone - 1.33.0-2 o Update to 1.33.0. o Fix deprecations for self-rebuild - Remove unneeded obsoletes to reduce diff with Fedora (upstream) * Fri Jan 18 2019 akien 1.32.0-1.mga7 + Revision: 1357862 - Sync with Fedora: Thu Jan 17 2019 Josh Stone - 1.32.0-1 o Update to 1.32.0. * Thu Dec 06 2018 akien 1.31.0-5.mga7 + Revision: 1338691 - Sync with Fedora: Thu Dec 06 2018 Josh Stone - 1.31.0-8 o Update to 1.31.0 -- Rust 2018! o clippy/rls/rustfmt are no longer -preview * Fri Nov 09 2018 akien 1.30.1-4.mga7 + Revision: 1329111 - Sync with Fedora: Thu Nov 08 2018 Josh Stone - 1.30.1-7 o Update to 1.30.1. * Thu Oct 25 2018 akien 1.30.0-3.mga7 + Revision: 1325525 - Sync with Fedora: Thu Oct 25 2018 Josh Stone - 1.30.0-6 * Update to 1.30.0. * Mon Oct 15 2018 akien 1.29.2-2.mga7 + Revision: 1320577 - Sync with Fedora: Fri Oct 12 2018 Josh Stone - 1.29.2-3 o Update to 1.29.2. * Thu Sep 27 2018 akien 1.29.1-1.mga7 + Revision: 1308362 - Sync with Fedora: Tue Sep 25 2018 Josh Stone - 1.29.1-2 o Update to 1.29.1. o Security fix for str::repeat (pending CVE). o Update to 1.29.0. o Add a clippy-preview subpackage + tv - rebuild for llvm 7.0 + umeabot - Mageia 7 Mass Rebuild * Sun Aug 12 2018 akien 1.28.0-1.mga7 + Revision: 1251114 - Sync with Fedora: Thu Aug 02 2018 Josh Stone - 1.28.0-1 o Update to 1.28.0. o Exclude rust-src from auto-requires. o Remove backup files from %%configure munging. * Wed Jul 18 2018 akien 1.27.1-2.mga7 + Revision: 1244157 - Sync with Fedora: Tue Jul 10 2018 Josh Stone - 1.27.1-2 o Update to 1.27.1. o Security fix for CVE-2018-1000622 * Tue Jun 26 2018 akien 1.27.0-1.mga7 + Revision: 1239841 - Sync with Fedora: Thu Jun 21 2018 Josh Stone - 1.27.0-1 o Update to 1.27.0. o Reduce debuginfo on i686 (LLVM ERROR: out of memory) * Mon Jun 18 2018 pterjan 1.26.0-2.mga7 + Revision: 1237705 - Add upstream patch to allow rebuild with 1.26.0 * Fri May 11 2018 akien 1.26.0-1.mga7 + Revision: 1228276 - Obsolete cargo packages from previous split SRPM - Sync with Fedora: Thu May 10 2018 Josh Stone - 1.26.0-1 o Update to 1.26.0. o Add cargo, rls, and analysis o Filter codegen-backends from Provides too. * Thu Apr 05 2018 tv 1.25.0-2.mga7 + Revision: 1215423 - rebuild with llvm-6.0 * Wed Apr 04 2018 akien 1.25.0-1.mga7 + Revision: 1215099 - Sync with Fedora: Thu Mar 29 2018 Josh Stone - 1.25.0-1 o Update to 1.25.0. + tv - rebuild with llvm 6.0 * Wed Mar 21 2018 tmb 1.24.1-3.mga7 + Revision: 1211125 - rebuild for arm * Wed Mar 14 2018 akien 1.24.1-2.mga7 + Revision: 1209449 - Rebuild against llvm-5.0.1-2 with rust-related fixes * Mon Mar 12 2018 akien 1.24.1-1.mga7 + Revision: 1208625 - Sync with Fedora: Thu Mar 01 2018 Josh Stone - 1.24.1-1 o Update to 1.24.1. o Backport a rebuild fix for rust#48308. o rhbz1546541: drop full-bootstrap; cmp libs before symlinking. o Backport pr46592 to fix local_rebuild bootstrapping. o Backport pr48362 to fix relative/absolute libdir. o Patch binaryen for GCC 8 * Wed Jan 17 2018 akien 1.23.0-1.mga7 + Revision: 1193979 - Sync with Fedora: Mon Jan 08 2018 Josh Stone - 1.23.0-1 o Update to 1.23.0. * Sun Jan 14 2018 akien 1.22.1-4.mga7 + Revision: 1193017 - Set --enable-full-bootstrap to fix FTBFS on same-version rebuild (rhbz#1533848) - Revert r1192547, firefox wants i686-unknown-linux so let's continue pretending we're that on i586 * Sat Jan 13 2018 akien 1.22.1-2.mga7 + Revision: 1192549 - Workaround capacity overflow on ix86 during tarballing by reverting problematic rust-installer commit - Remove s/i586/i686/ hack, i586 is also a supported (albeit non Tier-1) arch - Temporarily disable underlinking check against bundled llvm - Build against bundled LLVM, our version 5.0 is too new for rust - Sync with Fedora: Thu Nov 23 2017 Josh Stone - 1.22.1-1 o Update to 1.22.1. * Thu Nov 09 2017 tv 1.21.0-2.mga7 + Revision: 1176653 - rebuild for llvm-5 * Sun Oct 15 2017 akien 1.21.0-1.mga7 + Revision: 1172054 - Sync with Fedora: Thu Oct 12 2017 Josh Stone - 1.21.0-1 o Update to 1.21.0. - Enable usage of --keep-section in find-debuginfo.sh, now supported. * Thu Sep 21 2017 tv 1.20.0-2.mga7 + Revision: 1156934 - rebuild with llvm-4.0 in core/release * Wed Sep 20 2017 akien 1.20.0-1.mga7 + Revision: 1156490 - Remove obsolete workaround for missing _find_debuginfo_opts (mga#21747) - Sync with Fedora: Mon Sep 11 2017 Josh Stone - 1.20.0-2 o ABI fixes for ppc64 and s390x. - Sync with Fedora: Thu Aug 31 2017 Josh Stone - 1.20.0-1 o Update to 1.20.0. o Add a rust-src subpackage. - Sync with Fedora: Mon Jul 24 2017 Josh Stone - 1.19.0-2 o Use find-debuginfo.sh --keep-section .rustc - Revert r1146570 to reduce diff with upstream * Mon Jul 24 2017 akien 1.19.0-1.mga7 + Revision: 1130315 - Sync with Fedora: Thu Jul 20 2017 Josh Stone - 1.19.0-1 o Update to 1.19.0. * Fri Jun 09 2017 akien 1.18.0-1.mga6 + Revision: 1107392 - Sync with Fedora: Thu Jun 08 2017 Josh Stone - 1.18.0-1 o Update to 1.18.0. - Sync with Fedora: do not require rust-rpm-macros - Sync with Fedora: Mon May 08 2017 Josh Stone - 1.17.0-2 o Move shared libraries back to libdir and symlink in rustlib * Fri May 05 2017 akien 1.17.0-3.mga6 + Revision: 1099173 - Fix stripping of .rustc due to unsupported _find_debuginfo_opts option, workaround with _find_debuginfo_dwz_opts * Thu May 04 2017 akien 1.17.0-2.mga6 + Revision: 1099022 - Rebuild against fixed llvm for armv7hl - Fix rust-gdb conflicts * Tue May 02 2017 akien 1.17.0-1.mga6 + Revision: 1098716 - Sync with Fedora: Thu Apr 27 2017 Josh Stone - 1.17.0-1 o Update to 1.17.0. * Sun Mar 19 2017 akien 1.16.0-1.mga6 + Revision: 1093562 - Sync with Fedora: Fri Mar 17 2017 Josh Stone - 1.16.0-2 o Limit rust-lldb arches - Sync with Fedora: Thu Mar 16 2017 Josh Stone - 1.16.0-1 o Update to 1.16.0. o Use rustbuild instead of the old makefiles. o Update bootstrapping to include rust-std and cargo. o Add a rust-lldb subpackage. * Sat Feb 11 2017 akien 1.15.1-2.mga6 + Revision: 1085711 - Sync with Fedora: Thu Feb 09 2017 Josh Stone - 1.15.1-1 o Update to 1.15.1. o Require rust-rpm-macros for new crate packaging. o Keep shared libraries under rustlib/, only debug-stripped. * Sat Jan 07 2017 tmb 1.14.0-2.mga6 + Revision: 1080475 - rebuild with new llvm * Fri Dec 23 2016 akien 1.14.0-1.mga6 + Revision: 1076533 - Sync with Fedora: Thu Dec 22 2016 Josh Stone - 1.14.0-1 o Update to 1.14.0. o Rewrite bootstrap logic to target specific arches. * Sat Nov 12 2016 akien 1.13.0-1.mga6 + Revision: 1066912 - Sync with Fedora: Thu Nov 10 2016 Josh Stone - 1.13.0-1 o Update to 1.13.0. o Use hardening flags for linking. o Split the standard library into its own package o Centralize rustlib/ under /usr/lib/ for multilib integration. * Fri Oct 21 2016 akien 1.12.1-1.mga6 + Revision: 1062906 - Sync with Fedora: Thu Oct 20 2016 Josh Stone - 1.12.1-1 o Update to 1.12.1. o Allow building against llvm-static. o Add ncurses-devel for llvm-config's -ltinfo. * Mon Oct 10 2016 akien 1.12.0-5.mga6 + Revision: 1060082 - Sync with Fedora: Fri Oct 07 2016 Josh Stone - 1.12.0-5 o Rebuild with fixed eu-strip (rhbz1380961) - Sync with Fedora: Thu Oct 06 2016 Josh Stone - 1.12.0-3 o Bootstrap aarch64. (Not used on Mageia yet, but kept to reduce diff) o Use jemalloc's MALLOC_CONF to work around #36944. o Apply pr36933 to really disable armv7hl NEON. - Relax the self requirement to just version * Mon Oct 03 2016 akien 1.12.0-4.mga6 + Revision: 1058194 - Rebuild with system rustc * Sun Oct 02 2016 pterjan 1.12.0-3.mga6 + Revision: 1058164 - Switch to armv6, currently v7 uses neon - make rustc load libpthread.so.0 in bootstrap mode on armv7hl, it needs it * Sun Oct 02 2016 akien 1.12.0-2.mga6 + Revision: 1058156 - Use a hack to pass -g to eu-strip and workaround rhbz#1380961 The _find_debuginfo_opts macro used by Fedora seems not supported on Mageia. * Sun Oct 02 2016 akien 1.12.0-1.mga6 + Revision: 1058129 - Bootstrap again (we still do not have a system rust for armv7hl) - Sync with Fedora: Sat Oct 01 2016 Josh Stone - 1.12.0-2 o Protect .rustc from rpm stripping. - Sync with Fedora: Fri Sep 30 2016 Josh Stone - 1.12.0-1 o Update to 1.12.0. o Always use --local-rust-root, even for bootstrap binaries. o Remove the rebuild conditional - the build system now figures it out. o Let minidebuginfo do its thing, since metadata is no longer a note. o Let rust build its own compiler-rt builtins again. * Sat Oct 01 2016 akien 1.11.0-5.mga6 + Revision: 1058049 - Ensure build with glibc 6:2.22-21 * Sat Oct 01 2016 akien 1.11.0-4.mga6 + Revision: 1058040 - Rebuild (still with bootstrap) for fixed glibc on armv7hl * Fri Sep 30 2016 akien 1.11.0-3.mga6 + Revision: 1057903 - RPM group is still mandatory for Mageia - Handle conflict with previous package due to moved rust-gdb - Enable bootstrap and add 1.10.0 compiler binaries for all arches - Adjust spec file to Mageia's specifities: o 32-bit x86 arch is i586 and not i686, use %%ix86 macro in the logic o No provides on /usr/bin/ps, require procps-ng instead o compiler-rt version is 3.8.1 o ldconfig is automatically called by filetriggers - Sync package with Fedora's, effectively rewriting the whole spec o Rationale: our package was broken as it did not handle bootstrapping properly, and let the buildsystem download the rust compiler binaries from the Internet. Fedora has started a sane work on rust and we want to create synergies™. - Changelog from the package imported from Fedora (1.11.0-3), MIT licensed o Sat Sep 03 2016 Josh Stone - 1.11.0-3 * Rebuild without bootstrap binaries. o Fri Sep 02 2016 Josh Stone - 1.11.0-2 * Bootstrap armv7hl, with backported no-neon patch. o Wed Aug 24 2016 Josh Stone - 1.11.0-1 * Update to 1.11.0. * Drop the backported patches. * Patch get-stage0.py to trust existing bootstrap binaries. * Use libclang_rt.builtins from compiler-rt, dodging llvm-static issues. * Use --local-rust-root to make sure the right bootstrap is used. o Sat Aug 13 2016 Josh Stone 1.10.0-4 o Fri Aug 12 2016 Josh Stone - 1.10.0-3 * Initial import into Fedora (#1356907), bootstrapped * Format license text as suggested in review. * Note how the tests already run in parallel. * Undefine _include_minidebuginfo, because it duplicates ".note.rustc". * Don't let checks fail the whole build. * Note that -doc can't be noarch, as rpmdiff doesn't allow variations. o Tue Jul 26 2016 Josh Stone - 1.10.0-2 * Update -doc directory ownership, and mark its licenses. * Package and declare licenses for libbacktrace and hoedown. * Set bootstrap_base as a global. * Explicitly require python2. o Thu Jul 14 2016 Josh Stone - 1.10.0-1 * Initial package, bootstrapped * Fri Sep 30 2016 shlomif 1.11.0-2.mga6 + Revision: 1057836 - Rebuild to see if there's a downloading-from-the-inet bug. * Thu Sep 08 2016 shlomif 1.11.0-1.mga6 + Revision: 1050860 - Add a missing cmake BuildReq. - New version 1.11.0. ( MGA#19282 ) * Tue Mar 15 2016 shlomif 1.7.0-2.mga6 + Revision: 991033 - Remove trailing dot in summary - New version 1.7.0 * Fri Feb 05 2016 umeabot 0.10-5.mga6 + Revision: 939308 - Mageia 6 Mass Rebuild * Wed Oct 15 2014 umeabot 0.10-4.mga5 + Revision: 747079 - Second Mageia 5 Mass Rebuild * Tue Sep 16 2014 umeabot 0.10-3.mga5 + Revision: 689010 - Mageia 5 Mass Rebuild + tv - use %%global for req/prov exclude - autoconvert to new prov/req excludes * Fri Apr 25 2014 thatsamguy 0.10-2.mga5 + Revision: 617730 - fix libpthread.so.0 dependency issues * Fri Apr 25 2014 thatsamguy 0.10-1.mga5 + Revision: 617721 - update to latest release v0.10 * Sat Feb 15 2014 thatsamguy 0.9-1.mga5 + Revision: 591692 - update to latest stable release v0.9 * Mon Oct 21 2013 umeabot 0.8-2.mga4 + Revision: 541162 - Mageia 4 Mass Rebuild * Thu Oct 10 2013 thatsamguy 0.8-1.mga4 + Revision: 494701 - fix build error from macro in comments - imported package rust