From 77cb78c4582d467a29f89538ea67522f029dc919 Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Fri, 20 Dec 2024 16:58:32 +0300 Subject: [PATCH] import rust-rstest_macros-0.23.0-1.el10 --- .gitignore | 1 + .rust-rstest_macros.metadata | 1 + SOURCES/rust2rpm.toml | 3 + SPECS/rust-rstest_macros.spec | 126 ++++++++++++++++++++++++++++++++++ 4 files changed, 131 insertions(+) create mode 100644 .gitignore create mode 100644 .rust-rstest_macros.metadata create mode 100644 SOURCES/rust2rpm.toml create mode 100644 SPECS/rust-rstest_macros.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c7f1f10 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/rstest_macros-0.23.0.crate diff --git a/.rust-rstest_macros.metadata b/.rust-rstest_macros.metadata new file mode 100644 index 0000000..279e99e --- /dev/null +++ b/.rust-rstest_macros.metadata @@ -0,0 +1 @@ +2bf3d3394d1e5eb1187a3d498b8ad043ce6f4efa SOURCES/rstest_macros-0.23.0.crate diff --git a/SOURCES/rust2rpm.toml b/SOURCES/rust2rpm.toml new file mode 100644 index 0000000..1e32ab1 --- /dev/null +++ b/SOURCES/rust2rpm.toml @@ -0,0 +1,3 @@ +[tests] +run = ["none"] +comments = ["Tests require the previous version of rstest."] diff --git a/SPECS/rust-rstest_macros.spec b/SPECS/rust-rstest_macros.spec new file mode 100644 index 0000000..3302b71 --- /dev/null +++ b/SPECS/rust-rstest_macros.spec @@ -0,0 +1,126 @@ +## START: Set by rpmautospec +## (rpmautospec version 0.7.3) +## 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 26 +# * Tests require the previous version of rstest. +%bcond_with check +%global debug_package %{nil} + +%global crate rstest_macros + +Name: rust-rstest_macros +Version: 0.23.0 +Release: %autorelease +Summary: Rust fixture based test framework + +License: MIT OR Apache-2.0 +URL: https://crates.io/crates/rstest_macros +Source: %{crates_source} + +BuildRequires: cargo-rpm-macros >= 24 + +%global _description %{expand: +Rust fixture based test framework. It use procedural macro to implement +fixtures and table based tests.} + +%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}/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}+async-timeout-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+async-timeout-devel %{_description} + +This package contains library source intended for building other packages which +use the "async-timeout" feature of the "%{crate}" crate. + +%files -n %{name}+async-timeout-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+crate-name-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+crate-name-devel %{_description} + +This package contains library source intended for building other packages which +use the "crate-name" feature of the "%{crate}" crate. + +%files -n %{name}+crate-name-devel +%ghost %{crate_instdir}/Cargo.toml + +%prep +%autosetup -n %{crate}-%{version} -p1 +%cargo_prep + +%generate_buildrequires +%cargo_generate_buildrequires + +%build +%cargo_build + +%install +%cargo_install + +%if %{with check} +%check +%cargo_test +%endif + +%changelog +* Fri Dec 20 2024 MSVSphere Packaging Team - 0.23.0-1 +- Rebuilt for MSVSphere 10 + +## START: Generated by rpmautospec +* Mon Nov 11 2024 Benjamin A. Beasley - 0.23.0-1 +- Update to version 0.23.0; Fixes RHBZ#2274162 + +* Sat Jul 20 2024 Fedora Release Engineering - 0.18.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Fri Jan 26 2024 Fedora Release Engineering - 0.18.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Mon Sep 25 2023 Fabio Valentini - 0.18.2-1 +- Update to version 0.18.2; Fixes RHBZ#2219709 + +* Fri Jul 21 2023 Fedora Release Engineering - 0.17.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Sun May 21 2023 Michel Alexandre Salim - 0.17.0-1 +- Initial Fedora package +## END: Generated by rpmautospec