Update to 14.2.0

Signed-off-by: Igor Raits <ignatenkobrain@fedoraproject.org>
epel9
Igor Raits 5 years ago
parent cce724d7f7
commit 91f262a9f2
No known key found for this signature in database
GPG Key ID: 695714BD1BBC5F4C

1
.gitignore vendored

@ -1 +1,2 @@
/im-rc-13.0.0.crate /im-rc-13.0.0.crate
/im-rc-14.2.0.crate

@ -1,11 +0,0 @@
--- im-rc-13.0.0/Cargo.toml 1970-01-01T00:00:00+00:00
+++ im-rc-13.0.0/Cargo.toml 2019-09-13T18:38:23.481997+00:00
@@ -32,7 +32,7 @@
optional = true
[dependencies.quickcheck]
-version = "0.8"
+version = "0.9"
optional = true
[dependencies.rayon]

@ -1,4 +1,4 @@
# Generated by rust2rpm 10 # Generated by rust2rpm 13
# * metrohash and proptest-derive are not packaged # * metrohash and proptest-derive are not packaged
%bcond_with check %bcond_with check
%global debug_package %{nil} %global debug_package %{nil}
@ -6,17 +6,14 @@
%global crate im-rc %global crate im-rc
Name: rust-%{crate} Name: rust-%{crate}
Version: 13.0.0 Version: 14.2.0
Release: 4%{?dist} Release: 1%{?dist}
Summary: Immutable collection datatypes (the fast but not thread safe version) Summary: Immutable collection datatypes (the fast but not thread safe version)
# Upstream license specification: MPL-2.0+ # Upstream license specification: MPL-2.0+
License: MPLv2.0 License: MPLv2.0
URL: https://crates.io/crates/im-rc URL: https://crates.io/crates/im-rc
Source: %{crates_source} Source: %{crates_source}
# Initial patched metadata
# - Bump quickcheck to 0.9 (upstreamed)
Patch0: im-rc-fix-metadata.diff
ExclusiveArch: %{rust_arches} ExclusiveArch: %{rust_arches}
%if %{__cargo_skip_build} %if %{__cargo_skip_build}
@ -42,7 +39,7 @@ which use "%{crate}" crate.
%files devel %files devel
%license LICENCE.md %license LICENCE.md
%doc README.md CHANGELOG.md %doc README.md CHANGELOG.md
%{cargo_registry}/%{crate}-%{version}/ %{cargo_registry}/%{crate}-%{version_no_tilde}/
%package -n %{name}+default-devel %package -n %{name}+default-devel
Summary: %{summary} Summary: %{summary}
@ -54,7 +51,19 @@ This package contains library source intended for building other packages
which use "default" feature of "%{crate}" crate. which use "default" feature of "%{crate}" crate.
%files -n %{name}+default-devel %files -n %{name}+default-devel
%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml %ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+arbitrary-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+arbitrary-devel %{_description}
This package contains library source intended for building other packages
which use "arbitrary" feature of "%{crate}" crate.
%files -n %{name}+arbitrary-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+proptest-devel %package -n %{name}+proptest-devel
Summary: %{summary} Summary: %{summary}
@ -66,7 +75,7 @@ This package contains library source intended for building other packages
which use "proptest" feature of "%{crate}" crate. which use "proptest" feature of "%{crate}" crate.
%files -n %{name}+proptest-devel %files -n %{name}+proptest-devel
%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml %ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+quickcheck-devel %package -n %{name}+quickcheck-devel
Summary: %{summary} Summary: %{summary}
@ -78,7 +87,7 @@ This package contains library source intended for building other packages
which use "quickcheck" feature of "%{crate}" crate. which use "quickcheck" feature of "%{crate}" crate.
%files -n %{name}+quickcheck-devel %files -n %{name}+quickcheck-devel
%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml %ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+rayon-devel %package -n %{name}+rayon-devel
Summary: %{summary} Summary: %{summary}
@ -90,7 +99,19 @@ This package contains library source intended for building other packages
which use "rayon" feature of "%{crate}" crate. which use "rayon" feature of "%{crate}" crate.
%files -n %{name}+rayon-devel %files -n %{name}+rayon-devel
%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml %ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+refpool-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+refpool-devel %{_description}
This package contains library source intended for building other packages
which use "refpool" feature of "%{crate}" crate.
%files -n %{name}+refpool-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+serde-devel %package -n %{name}+serde-devel
Summary: %{summary} Summary: %{summary}
@ -102,7 +123,7 @@ This package contains library source intended for building other packages
which use "serde" feature of "%{crate}" crate. which use "serde" feature of "%{crate}" crate.
%files -n %{name}+serde-devel %files -n %{name}+serde-devel
%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml %ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%prep %prep
%autosetup -n %{crate}-%{version_no_tilde} -p1 %autosetup -n %{crate}-%{version_no_tilde} -p1
@ -123,6 +144,9 @@ which use "serde" feature of "%{crate}" crate.
%endif %endif
%changelog %changelog
* Sat Feb 15 12:41:52 CET 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 14.2.0-1
- Update to 14.2.0
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 13.0.0-4 * Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 13.0.0-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild

@ -1 +1 @@
SHA512 (im-rc-13.0.0.crate) = 9ec49a8902a6392de1dd9216f13f84575e36af8e1b454a2ed9774dd9c4309b2efb14807a34ab4dad5d5b5e641f9da208d2278eb057e63d3b767f996c6cb6bf5c SHA512 (im-rc-14.2.0.crate) = ec8bc18b623c3e47c51361fa471eb02fa2d963baeda099bd0670ff445ddf6e93fa2c2fa6ffc632b31bc51c068469d6bdbe44eac52ccc6de7cb5e1aabc376c493

Loading…
Cancel
Save