Compare commits

...

No commits in common. 'epel9' and 'i9ce' have entirely different histories.
epel9 ... i9ce

19
.gitignore vendored

@ -1,18 +1 @@
/rayon-0.9.0.crate
/rayon-1.0.0.crate
/rayon-1.0.1.crate
/rayon-1.0.2.crate
/rayon-1.0.3.crate
/rayon-1.1.0.crate
/rayon-1.2.0.crate
/rayon-1.2.1.crate
/rayon-1.3.0.crate
/rayon-1.3.1.crate
/rayon-1.4.0.crate
/rayon-1.4.1.crate
/rayon-1.5.0.crate
/rayon-1.5.1.crate
/rayon-1.5.3.crate
/rayon-1.6.1.crate
/rayon-1.7.0.crate
/rayon-1.8.0.crate
SOURCES/rayon-1.8.0.crate

@ -0,0 +1 @@
2a3e5a630547c91d79667ccdaaed3edcab42a6a8 SOURCES/rayon-1.8.0.crate

@ -1,3 +1,104 @@
## START: Set by rpmautospec
## (rpmautospec version 0.3.5)
## RPMAUTOSPEC: autorelease, autochangelog
%define autorelease(e:s:pb:n) %{?-p:0.}%{lua:
release_number = 1;
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 24
%bcond_without check
%global debug_package %{nil}
%global crate rayon
Name: rust-rayon
Version: 1.8.0
Release: %autorelease
Summary: Simple work-stealing parallelism for Rust
License: MIT OR Apache-2.0
URL: https://crates.io/crates/rayon
Source: %{crates_source}
BuildRequires: rust-packaging >= 21
%global _description %{expand:
Simple work-stealing parallelism for Rust.}
%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}/LICENSE-APACHE
%license %{crate_instdir}/LICENSE-MIT
%doc %{crate_instdir}/FAQ.md
%doc %{crate_instdir}/README.md
%doc %{crate_instdir}/RELEASES.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
%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
* Sun Nov 19 2023 Arkady L. Shane <tigro@msvsphere-os.ru> - 1.8.0-1
- Rebuilt for MSVSphere 9.2
* Mon Sep 25 2023 Fabio Valentini <decathorpe@gmail.com> - 1.8.0-1
- Update to version 1.8.0; Fixes RHBZ#2239945
* Tue Mar 07 2023 Fabio Valentini <decathorpe@gmail.com> - 1.7.0-1
- Update to version 1.7.0; Fixes RHBZ#2175353
* Sun Dec 11 2022 Fabio Valentini <decathorpe@gmail.com> - 1.6.1-1
- Update to version 1.6.1; Fixes RHBZ#2144085
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.3-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
* Wed May 25 2022 Fabio Valentini <decathorpe@gmail.com> - 1.5.3-1
- Update to version 1.5.3; Fixes RHBZ#2075357
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.1-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
@ -98,3 +199,4 @@
* Sun Feb 26 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.0-1
- Initial package

@ -1,71 +0,0 @@
# Generated by rust2rpm 24
%bcond_without check
%global debug_package %{nil}
%global crate rayon
Name: rust-rayon
Version: 1.8.0
Release: %autorelease
Summary: Simple work-stealing parallelism for Rust
License: MIT OR Apache-2.0
URL: https://crates.io/crates/rayon
Source: %{crates_source}
BuildRequires: rust-packaging >= 21
%global _description %{expand:
Simple work-stealing parallelism for Rust.}
%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}/LICENSE-APACHE
%license %{crate_instdir}/LICENSE-MIT
%doc %{crate_instdir}/FAQ.md
%doc %{crate_instdir}/README.md
%doc %{crate_instdir}/RELEASES.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
%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
%autochangelog

@ -1 +0,0 @@
SHA512 (rayon-1.8.0.crate) = ab1cef238530d81c255b6631ecfed9cc4f3f8d7cb6a74701d29c1dcb022cc5b859db1d246cf8247d47702fdadcedfe64a6749e24cf6c7258e8c9411af7e4524a
Loading…
Cancel
Save