Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rust1.58 for openSUSE:Factory checked in at 2022-03-04 00:16:03 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rust1.58 (Old) and /work/SRC/openSUSE:Factory/.rust1.58.new.1958 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rust1.58" Fri Mar 4 00:16:03 2022 rev:3 rq:958355 version:1.58.0 Changes: -------- --- /work/SRC/openSUSE:Factory/rust1.58/rust1.58.changes 2022-01-23 12:15:43.340454178 +0100 +++ /work/SRC/openSUSE:Factory/.rust1.58.new.1958/rust1.58.changes 2022-03-04 00:16:04.748265458 +0100 @@ -1,0 +2,7 @@ +Wed Mar 2 00:55:10 UTC 2022 - William Brown <[email protected]> + +- Add recommends for GCC for installs to be able to link. +- Add suggests for lld/clang which are faster than gcc for linking to + allow users choice on what they use. + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rust1.58.spec ++++++ --- /var/tmp/diff_new_pack.kAeHpT/_old 2022-03-04 00:16:14.088267428 +0100 +++ /var/tmp/diff_new_pack.kAeHpT/_new 2022-03-04 00:16:14.092267428 +0100 @@ -232,7 +232,18 @@ # Ninja required to drive the bundled llvm build. BuildRequires: ninja %endif + +# To allow linking to occur by default. This is a recommends so it can be ignored if desired. +Recommends: gcc +# Rustc doesn't really do much without Cargo, but you know, if you wanna yolo that ... Recommends: cargo +%if !%with bundled_llvm +# Clang gives better errors than gcc during a compilation, and it keeps everything +# within llvm ecosystem. +Suggests: clang +# lld is significantly faster than gold for linking, so users may wish to preference it. +Suggests: lld +%endif %if %{with test} BuildRequires: cargo%{version_suffix} = %{version}
