Compare commits

...

8 Commits

Author SHA1 Message Date
Fabio Valentini 9036aa1b7f
Bump time dependency from 0.2 to 0.3
3 months ago
Fabio Valentini c408bcd444
Bump derive-new from 0.5 to 0.6 and derive_builder from 0.9 to 0.20
4 months ago
Fedora Release Engineering 0c0fac656b Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
6 months ago
Fedora Release Engineering b81a677825 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
12 months ago
Fedora Release Engineering f2d599100d Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
2 years ago
Fabio Valentini 7c34a76731
Regenerate with rust2rpm v24
2 years ago
Fabio Valentini 0de52f635d Convert to %autorelease and %autochangelog
2 years ago
Fedora Release Engineering 49a9221e03 Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
2 years ago

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

@ -0,0 +1,14 @@
* 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.

@ -0,0 +1,32 @@
--- 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,25 +1,26 @@
# Generated by rust2rpm 16
# Generated by rust2rpm 26
%bcond_without check
%global debug_package %{nil}
%global crate rspec
Name: rust-%{crate}
Name: rust-rspec
Version: 1.0.0
Release: 4%{?dist}
Release: %autorelease
Summary: Write Rspec-like tests with stable rust
# Upstream license specification: MPL-2.0
License: MPLv2.0
License: MPL-2.0
URL: https://crates.io/crates/rspec
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
ExclusiveArch: %{rust_arches}
%if %{__cargo_skip_build}
BuildArch: noarch
%endif
BuildRequires: rust-packaging
BuildRequires: cargo-rpm-macros >= 24
%global _description %{expand:
Write Rspec-like tests with stable rust.}
@ -32,13 +33,13 @@ BuildArch: noarch
%description devel %{_description}
This package contains library source intended for building other packages
which use "%{crate}" crate.
This package contains library source intended for building other packages which
use the "%{crate}" crate.
%files devel
%license LICENSE
%doc README.md
%{cargo_registry}/%{crate}-%{version_no_tilde}/
%license %{crate_instdir}/LICENSE
%doc %{crate_instdir}/README.md
%{crate_instdir}/
%package -n %{name}+default-devel
Summary: %{summary}
@ -46,14 +47,14 @@ BuildArch: noarch
%description -n %{name}+default-devel %{_description}
This package contains library source intended for building other packages
which use "default" feature of "%{crate}" crate.
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 %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%ghost %{crate_instdir}/Cargo.toml
%prep
%autosetup -n %{crate}-%{version_no_tilde} -p1
%autosetup -n %{crate}-%{version} -p1
%cargo_prep
%generate_buildrequires
@ -71,14 +72,4 @@ which use "default" feature of "%{crate}" crate.
%endif
%changelog
* 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
%autochangelog

Loading…
Cancel
Save