From 6841f7a3feff7c19c6fc658d301adf5a2ef0c54c Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Fri, 20 Dec 2024 16:19:26 +0300 Subject: [PATCH] import rust-maybe-async-0.2.10-2.el10 --- .gitignore | 1 + .rust-maybe-async.metadata | 1 + SOURCES/rust2rpm.toml | 10 ++++ SPECS/rust-maybe-async.spec | 114 ++++++++++++++++++++++++++++++++++++ 4 files changed, 126 insertions(+) create mode 100644 .gitignore create mode 100644 .rust-maybe-async.metadata create mode 100644 SOURCES/rust2rpm.toml create mode 100644 SPECS/rust-maybe-async.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3abf8aa --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/maybe-async-0.2.10.crate diff --git a/.rust-maybe-async.metadata b/.rust-maybe-async.metadata new file mode 100644 index 0000000..031391a --- /dev/null +++ b/.rust-maybe-async.metadata @@ -0,0 +1 @@ +800c7573e3dd1b641df04a9a85a7670b0b451962 SOURCES/maybe-async-0.2.10.crate diff --git a/SOURCES/rust2rpm.toml b/SOURCES/rust2rpm.toml new file mode 100644 index 0000000..b6582f5 --- /dev/null +++ b/SOURCES/rust2rpm.toml @@ -0,0 +1,10 @@ +[package] +summary = "Procedural macro to unify SYNC and ASYNC implementation" +description = "A procedural macro to unify SYNC and ASYNC implementation." + +[scripts] +check.pre = [ + "# * temporarily ignore brittle snapshot tests", + "export TRYBUILD=overwrite", +] + diff --git a/SPECS/rust-maybe-async.spec b/SPECS/rust-maybe-async.spec new file mode 100644 index 0000000..7c3e7fb --- /dev/null +++ b/SPECS/rust-maybe-async.spec @@ -0,0 +1,114 @@ +## START: Set by rpmautospec +## (rpmautospec version 0.7.2) +## RPMAUTOSPEC: autorelease, autochangelog +%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 26 +%bcond_without check +%global debug_package %{nil} + +%global crate maybe-async + +Name: rust-maybe-async +Version: 0.2.10 +Release: %autorelease +Summary: Procedural macro to unify SYNC and ASYNC implementation + +License: MIT +URL: https://crates.io/crates/maybe-async +Source: %{crates_source} + +BuildRequires: cargo-rpm-macros >= 24 + +%global _description %{expand: +A procedural macro to unify SYNC and ASYNC implementation.} + +%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 +%doc %{crate_instdir}/CHANGELOG.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}+is_sync-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+is_sync-devel %{_description} + +This package contains library source intended for building other packages which +use the "is_sync" feature of the "%{crate}" crate. + +%files -n %{name}+is_sync-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 +# * temporarily ignore brittle snapshot tests +export TRYBUILD=overwrite +%cargo_test +%endif + +%changelog +* Fri Dec 20 2024 MSVSphere Packaging Team - 0.2.10-2 +- Rebuilt for MSVSphere 10 + +## START: Generated by rpmautospec +* Sat Jul 20 2024 Fedora Release Engineering - 0.2.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Thu Apr 25 2024 Fabio Valentini - 0.2.10-1 +- Update to version 0.2.10; Fixes RHBZ#2265455 + +* Sat Feb 03 2024 blinxen - 0.2.9-1 +- Update to version 0.2.9 (rhbz#2261874) + +* Tue Jan 23 2024 Fabio Valentini - 0.2.7-3 +- Temporarily ignore brittle snapshot tests + +* Fri Jul 21 2023 Fedora Release Engineering - 0.2.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Wed Jul 05 2023 blinxen - 0.2.7-1 +- Initial package +## END: Generated by rpmautospec