Compare commits

..

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

@ -0,0 +1,3 @@
# rust-rspec
The rust-rspec package

@ -1,14 +0,0 @@
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Mon Feb 15 12:45:00 EST 2021 Sohan Kunkerkar <skunkerk@redhat.com> - 1.0.0-1
- Initial package

Binary file not shown.

@ -1,32 +0,0 @@
--- rspec-1.0.0/Cargo.toml 2021-02-06T15:09:51+00:00
+++ rspec-1.0.0/Cargo.toml 2024-10-05T21:05:59.148149+00:00
@@ -25,26 +25,18 @@
version = "2.0"
[dependencies.derive-new]
-version = "0.5"
+version = "0.6"
[dependencies.derive_builder]
-version = "0.9"
-
-[dependencies.expectest]
-version = "0.12"
-optional = true
+version = "0.20"
[dependencies.rayon]
version = "1.5"
[dependencies.time]
-version = "0.2"
-[build-dependencies.clippy]
-version = "0.0.153"
-optional = true
+version = "0.3"
[features]
default = []
-expectest_compat = ["expectest"]
[badges.maintenance]
status = "passively-maintained"

@ -1,26 +1,25 @@
# Generated by rust2rpm 26 # Generated by rust2rpm 16
%bcond_without check %bcond_without check
%global debug_package %{nil} %global debug_package %{nil}
%global crate rspec %global crate rspec
Name: rust-rspec Name: rust-%{crate}
Version: 1.0.0 Version: 1.0.0
Release: %autorelease Release: 4%{?dist}
Summary: Write Rspec-like tests with stable rust Summary: Write Rspec-like tests with stable rust
License: MPL-2.0 # Upstream license specification: MPL-2.0
License: MPLv2.0
URL: https://crates.io/crates/rspec URL: https://crates.io/crates/rspec
Source: %{crates_source} Source: %{crates_source}
# Manually created patch for downstream crate metadata changes
# * remove optional build-dependency on the obsolete clippy crate
# * remove unused optional feature for expectest compatibility
# * bump derive-new dependency from 0.5 to 0.6
# * bump derive_builder dependency from 0.9 to 0.20
# * bump time dependency from 0.2 to 0.3
Patch: rspec-fix-metadata.diff
BuildRequires: cargo-rpm-macros >= 24 ExclusiveArch: %{rust_arches}
%if %{__cargo_skip_build}
BuildArch: noarch
%endif
BuildRequires: rust-packaging
%global _description %{expand: %global _description %{expand:
Write Rspec-like tests with stable rust.} Write Rspec-like tests with stable rust.}
@ -33,13 +32,13 @@ BuildArch: noarch
%description devel %{_description} %description devel %{_description}
This package contains library source intended for building other packages which This package contains library source intended for building other packages
use the "%{crate}" crate. which use "%{crate}" crate.
%files devel %files devel
%license %{crate_instdir}/LICENSE %license LICENSE
%doc %{crate_instdir}/README.md %doc README.md
%{crate_instdir}/ %{cargo_registry}/%{crate}-%{version_no_tilde}/
%package -n %{name}+default-devel %package -n %{name}+default-devel
Summary: %{summary} Summary: %{summary}
@ -47,14 +46,14 @@ BuildArch: noarch
%description -n %{name}+default-devel %{_description} %description -n %{name}+default-devel %{_description}
This package contains library source intended for building other packages which This package contains library source intended for building other packages
use the "default" feature of the "%{crate}" crate. which use "default" feature of "%{crate}" crate.
%files -n %{name}+default-devel %files -n %{name}+default-devel
%ghost %{crate_instdir}/Cargo.toml %ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%prep %prep
%autosetup -n %{crate}-%{version} -p1 %autosetup -n %{crate}-%{version_no_tilde} -p1
%cargo_prep %cargo_prep
%generate_buildrequires %generate_buildrequires
@ -72,4 +71,14 @@ use the "default" feature of the "%{crate}" crate.
%endif %endif
%changelog %changelog
%autochangelog * Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Mon Feb 15 12:45:00 EST 2021 Sohan Kunkerkar <skunkerk@redhat.com> - 1.0.0-1
- Initial package

Loading…
Cancel
Save