commit 86c00f69d242050d7277f26d270c8329d3706e8b Author: tigro Date: Mon Jan 15 13:44:59 2024 +0300 import rust-im-rc-15.1.0-2.el9 diff --git a/.rust-im-rc.metadata b/.rust-im-rc.metadata new file mode 100644 index 0000000..e69de29 diff --git a/SOURCES/im-rc-15.1.0.crate b/SOURCES/im-rc-15.1.0.crate new file mode 100644 index 0000000..ab30fd9 Binary files /dev/null and b/SOURCES/im-rc-15.1.0.crate differ diff --git a/SOURCES/im-rc-fix-metadata.diff b/SOURCES/im-rc-fix-metadata.diff new file mode 100644 index 0000000..cd90550 --- /dev/null +++ b/SOURCES/im-rc-fix-metadata.diff @@ -0,0 +1,24 @@ +--- im-rc-15.1.0/Cargo.toml 1970-01-01T00:00:01+00:00 ++++ im-rc-15.1.0/Cargo.toml 2022-05-12T13:33:00.506027+00:00 +@@ -62,10 +62,6 @@ + version = "1" + optional = true + +-[dependencies.refpool] +-version = "0.4" +-optional = true +- + [dependencies.serde] + version = "1" + optional = true +@@ -106,10 +102,6 @@ + + [features] + debug = [] +-pool = [ +- "refpool", +- "sized-chunks/refpool", +-] + + [badges.travis-ci] + repository = "bodil/im-rs" diff --git a/SPECS/rust-im-rc.spec b/SPECS/rust-im-rc.spec new file mode 100644 index 0000000..48d7610 --- /dev/null +++ b/SPECS/rust-im-rc.spec @@ -0,0 +1,209 @@ +## START: Set by rpmautospec +## (rpmautospec version 0.3.0) +%define autorelease(e:s:pb:n) %{?-p:0.}%{lua: + release_number = 2; + base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}")); + print(release_number + base_release_number - 1); +}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}} +## END: Set by rpmautospec + +# Generated by rust2rpm 21 +# * missing dev-dependencies: metrohash +%bcond_with check +%global debug_package %{nil} + +%global crate im-rc + +Name: rust-%{crate} +Version: 15.1.0 +Release: %autorelease +Summary: Immutable collection datatypes (the fast but not thread safe version) + +# Upstream license specification: MPL-2.0+ +License: MPLv2.0 +URL: https://crates.io/crates/im-rc +Source: %{crates_source} +# Initial patched metadata +# * drop optional "pool" feature with missing "refpool" dependency +Patch0: im-rc-fix-metadata.diff + +ExclusiveArch: %{rust_arches} + +BuildRequires: rust-packaging >= 21 + +%global _description %{expand: +Immutable collection datatypes (the fast but not thread safe version).} + +%description %{_description} + +%package devel +Summary: %{summary} +BuildArch: noarch + +%description devel %{_description} + +This package contains library source intended for building other packages which +use the "%{crate}" crate. + +%files devel +%license %{crate_instdir}/LICENCE.md +%doc %{crate_instdir}/CHANGELOG.md +%doc %{crate_instdir}/CODE_OF_CONDUCT.md +%doc %{crate_instdir}/README.md +%{crate_instdir}/ + +%package -n %{name}+default-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+default-devel %{_description} + +This package contains library source intended for building other packages which +use the "default" feature of the "%{crate}" crate. + +%files -n %{name}+default-devel +%ghost %{crate_instdir}/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 the "arbitrary" feature of the "%{crate}" crate. + +%files -n %{name}+arbitrary-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+debug-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+debug-devel %{_description} + +This package contains library source intended for building other packages which +use the "debug" feature of the "%{crate}" crate. + +%files -n %{name}+debug-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+proptest-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+proptest-devel %{_description} + +This package contains library source intended for building other packages which +use the "proptest" feature of the "%{crate}" crate. + +%files -n %{name}+proptest-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+quickcheck-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+quickcheck-devel %{_description} + +This package contains library source intended for building other packages which +use the "quickcheck" feature of the "%{crate}" crate. + +%files -n %{name}+quickcheck-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+rayon-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+rayon-devel %{_description} + +This package contains library source intended for building other packages which +use the "rayon" feature of the "%{crate}" crate. + +%files -n %{name}+rayon-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+serde-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+serde-devel %{_description} + +This package contains library source intended for building other packages which +use the "serde" feature of the "%{crate}" crate. + +%files -n %{name}+serde-devel +%ghost %{crate_instdir}/Cargo.toml + +%prep +%autosetup -n %{crate}-%{version_no_tilde} -p1 +%cargo_prep + +%generate_buildrequires +%cargo_generate_buildrequires + +%build +%cargo_build + +%install +%cargo_install + +%if %{with check} +%check +%cargo_test +%endif + +%changelog +* Mon Jan 15 2024 Arkady L. Shane - 15.1.0-2 +- Rebuilt for MSVSphere 9.3 + +* Sat Jul 23 2022 Fedora Release Engineering 15.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Thu May 12 2022 Fabio Valentini 15.1.0-1 +- Update to version 15.1.0; Fixes RHBZ#2080370 + +* Fri Jan 21 2022 Fedora Release Engineering 15.0.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Wed Aug 04 2021 Fabio Valentini 15.0.0-8 +- Bump dependencies to latest versions and drop unused / obsolete features + +* Tue Jul 27 2021 Fedora Release Engineering - 15.0.0-6 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Wed Jan 27 2021 Fedora Release Engineering - 15.0.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Sat Nov 28 2020 Fabio Valentini - 15.0.0-4 +- Remove features with missing dependencies (refpool). + +* Fri Sep 25 2020 Fabio Valentini - 15.0.0-3 +- Bump proptest to 0.10 and proptest-derive to 0.2. + +* Wed Jul 29 2020 Fedora Release Engineering - 15.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Sat May 16 19:44:35 CEST 2020 Igor Raits - 15.0.0-1 +- Update to 15.0.0 + +* Tue Mar 03 2020 Josh Stone - 14.3.0-1 +- Update to 14.3.0 + +* Sat Feb 15 12:41:52 CET 2020 Igor Raits - 14.2.0-1 +- Update to 14.2.0 + +* Thu Jan 30 2020 Fedora Release Engineering - 13.0.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Fri Sep 13 20:38:23 CEST 2019 Robert-André Mauchin - 13.0.0-3 +- Bump quickcheck to 0.9 + +* Fri Jul 26 2019 Fedora Release Engineering - 13.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sun Jun 09 18:38:02 CEST 2019 Igor Gnatenko - 13.0.0-1 +- Initial package +