Update to version 3.0.0; Fixes RHBZ#2080683

epel9
Fabio Valentini 2 years ago
parent 740fc26d7d
commit 80ae5dd66b
No known key found for this signature in database
GPG Key ID: 5AC5F572E5D410AF

1
.gitignore vendored

@ -10,3 +10,4 @@
/ordered-float-2.7.0.crate /ordered-float-2.7.0.crate
/ordered-float-2.8.0.crate /ordered-float-2.8.0.crate
/ordered-float-2.10.0.crate /ordered-float-2.10.0.crate
/ordered-float-3.0.0.crate

@ -1,22 +1,21 @@
# Generated by rust2rpm 20 # Generated by rust2rpm 22
%bcond_without check %bcond_without check
%global debug_package %{nil} %global debug_package %{nil}
%global crate ordered-float %global crate ordered-float
Name: rust-%{crate} Name: rust-ordered-float
Version: 2.10.0 Version: 3.0.0
Release: %autorelease Release: %autorelease
Summary: Wrappers for total ordering on floats Summary: Wrappers for total ordering on floats
# Upstream license specification: MIT
License: MIT License: MIT
URL: https://crates.io/crates/ordered-float URL: https://crates.io/crates/ordered-float
Source: %{crates_source} Source: %{crates_source}
ExclusiveArch: %{rust_arches} ExclusiveArch: %{rust_arches}
BuildRequires: rust-packaging BuildRequires: rust-packaging >= 21
%global _description %{expand: %global _description %{expand:
Wrappers for total ordering on floats.} Wrappers for total ordering on floats.}
@ -33,9 +32,9 @@ This package contains library source intended for building other packages which
use the "%{crate}" crate. use the "%{crate}" crate.
%files devel %files devel
%license LICENSE-MIT %license %{crate_instdir}/LICENSE-MIT
%doc README.md %doc %{crate_instdir}/README.md
%{cargo_registry}/%{crate}-%{version_no_tilde}/ %{crate_instdir}/
%package -n %{name}+default-devel %package -n %{name}+default-devel
Summary: %{summary} Summary: %{summary}
@ -47,7 +46,7 @@ This package contains library source intended for building other packages which
use the "default" feature of the "%{crate}" crate. use the "default" feature of the "%{crate}" crate.
%files -n %{name}+default-devel %files -n %{name}+default-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml %ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+arbitrary-devel %package -n %{name}+arbitrary-devel
Summary: %{summary} Summary: %{summary}
@ -59,7 +58,7 @@ This package contains library source intended for building other packages which
use the "arbitrary" feature of the "%{crate}" crate. use the "arbitrary" feature of the "%{crate}" crate.
%files -n %{name}+arbitrary-devel %files -n %{name}+arbitrary-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml %ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+proptest-devel %package -n %{name}+proptest-devel
Summary: %{summary} Summary: %{summary}
@ -71,7 +70,7 @@ This package contains library source intended for building other packages which
use the "proptest" feature of the "%{crate}" crate. use the "proptest" feature of the "%{crate}" crate.
%files -n %{name}+proptest-devel %files -n %{name}+proptest-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml %ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+rand-devel %package -n %{name}+rand-devel
Summary: %{summary} Summary: %{summary}
@ -83,7 +82,7 @@ This package contains library source intended for building other packages which
use the "rand" feature of the "%{crate}" crate. use the "rand" feature of the "%{crate}" crate.
%files -n %{name}+rand-devel %files -n %{name}+rand-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml %ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+randtest-devel %package -n %{name}+randtest-devel
Summary: %{summary} Summary: %{summary}
@ -95,7 +94,7 @@ This package contains library source intended for building other packages which
use the "randtest" feature of the "%{crate}" crate. use the "randtest" feature of the "%{crate}" crate.
%files -n %{name}+randtest-devel %files -n %{name}+randtest-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml %ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+rkyv-devel %package -n %{name}+rkyv-devel
Summary: %{summary} Summary: %{summary}
@ -107,7 +106,7 @@ This package contains library source intended for building other packages which
use the "rkyv" feature of the "%{crate}" crate. use the "rkyv" feature of the "%{crate}" crate.
%files -n %{name}+rkyv-devel %files -n %{name}+rkyv-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml %ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+serde-devel %package -n %{name}+serde-devel
Summary: %{summary} Summary: %{summary}
@ -119,7 +118,7 @@ This package contains library source intended for building other packages which
use the "serde" feature of the "%{crate}" crate. use the "serde" feature of the "%{crate}" crate.
%files -n %{name}+serde-devel %files -n %{name}+serde-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml %ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+std-devel %package -n %{name}+std-devel
Summary: %{summary} Summary: %{summary}
@ -131,7 +130,7 @@ This package contains library source intended for building other packages which
use the "std" feature of the "%{crate}" crate. use the "std" feature of the "%{crate}" crate.
%files -n %{name}+std-devel %files -n %{name}+std-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml %ghost %{crate_instdir}/Cargo.toml
%prep %prep
%autosetup -n %{crate}-%{version_no_tilde} -p1 %autosetup -n %{crate}-%{version_no_tilde} -p1

@ -1 +1 @@
SHA512 (ordered-float-2.10.0.crate) = cb883ddd723d1bedfe13d16c9546dcb84d17d4fb1c6dc6d632a0c385d80b0b881694b3364a406e5d7f073c5a7e9e80810f343dd1d6f22df6188322b3e89cf77f SHA512 (ordered-float-3.0.0.crate) = 831c641b34513c93408d948d23a6e120bd32a27a29531906cab3a26e8836e38771ad7e4f95c0a150984618785fb6f5aaa6f2de5aa6214a3b4b9fbed9a89e49c4

Loading…
Cancel
Save