|
|
|
@ -1,14 +1,11 @@
|
|
|
|
|
# Generated by rust2rpm 17
|
|
|
|
|
# * temporarily disable test suite to work around LLVM 11 codegen issues
|
|
|
|
|
# since Rust 1.50.0:
|
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1920403#c1
|
|
|
|
|
%bcond_with check
|
|
|
|
|
%bcond_without check
|
|
|
|
|
%global debug_package %{nil}
|
|
|
|
|
|
|
|
|
|
%global crate rand
|
|
|
|
|
|
|
|
|
|
Name: rust-%{crate}
|
|
|
|
|
Version: 0.8.3
|
|
|
|
|
Version: 0.8.4
|
|
|
|
|
Release: 1%{?dist}
|
|
|
|
|
Summary: Random number generators and other randomness functionality
|
|
|
|
|
|
|
|
|
@ -17,7 +14,7 @@ License: MIT or ASL 2.0
|
|
|
|
|
URL: https://crates.io/crates/rand
|
|
|
|
|
Source: %{crates_source}
|
|
|
|
|
# Initial patched metadata
|
|
|
|
|
# * Remove non-unix dependencies
|
|
|
|
|
# * drop emscripten-specific dependencies and features
|
|
|
|
|
Patch0: rand-fix-metadata.diff
|
|
|
|
|
|
|
|
|
|
ExclusiveArch: %{rust_arches}
|
|
|
|
@ -106,6 +103,18 @@ which use "log" feature of "%{crate}" crate.
|
|
|
|
|
%files -n %{name}+log-devel
|
|
|
|
|
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
|
|
|
|
|
|
|
|
|
|
%package -n %{name}+min_const_gen-devel
|
|
|
|
|
Summary: %{summary}
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
|
|
%description -n %{name}+min_const_gen-devel %{_description}
|
|
|
|
|
|
|
|
|
|
This package contains library source intended for building other packages
|
|
|
|
|
which use "min_const_gen" feature of "%{crate}" crate.
|
|
|
|
|
|
|
|
|
|
%files -n %{name}+min_const_gen-devel
|
|
|
|
|
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
|
|
|
|
|
|
|
|
|
|
%package -n %{name}+rand_chacha-devel
|
|
|
|
|
Summary: %{summary}
|
|
|
|
|
BuildArch: noarch
|
|
|
|
@ -197,6 +206,10 @@ which use "std_rng" feature of "%{crate}" crate.
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Thu Jun 17 2021 Fabio Valentini <decathorpe@gmail.com> - 0.8.4-1
|
|
|
|
|
- Update to version 0.8.4.
|
|
|
|
|
- Fixes RHBZ#1972295
|
|
|
|
|
|
|
|
|
|
* Sun Mar 28 2021 Fabio Valentini <decathorpe@gmail.com> - 0.8.3-1
|
|
|
|
|
- Update to version 0.8.3.
|
|
|
|
|
- Fixes RHBZ#1920403
|
|
|
|
|