commit c3c6b6d2f061a2f1b476faef1f51ae7e064bb5a2 Author: MSVSphere Packaging Team Date: Fri Dec 20 15:45:12 2024 +0300 import rust-gix-protocol-0.45.3-1.el10 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7983062 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/gix-protocol-0.45.3.crate diff --git a/.rust-gix-protocol.metadata b/.rust-gix-protocol.metadata new file mode 100644 index 0000000..d071a55 --- /dev/null +++ b/.rust-gix-protocol.metadata @@ -0,0 +1 @@ +ef8d82457436535f0f54bcfaa308890eceacc5da SOURCES/gix-protocol-0.45.3.crate diff --git a/SOURCES/rust2rpm.toml b/SOURCES/rust2rpm.toml new file mode 100644 index 0000000..4a6da8c --- /dev/null +++ b/SOURCES/rust2rpm.toml @@ -0,0 +1,9 @@ +[package] +summary = "Git protocols implementation" + +[tests] +run = ["none"] +comments = [ + "Deactivate tests because of a missing dev-dependency (gix-testtools)", + "See https://github.com/Byron/gitoxide/discussions/900 for more information" +] diff --git a/SPECS/rust-gix-protocol.spec b/SPECS/rust-gix-protocol.spec new file mode 100644 index 0000000..1ff2410 --- /dev/null +++ b/SPECS/rust-gix-protocol.spec @@ -0,0 +1,191 @@ +## START: Set by rpmautospec +## (rpmautospec version 0.7.2) +## 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 +# * Deactivate tests because of a missing dev-dependency (gix-testtools) +# * See https://github.com/Byron/gitoxide/discussions/900 for more information +%bcond_with check +%global debug_package %{nil} + +%global crate gix-protocol + +Name: rust-gix-protocol +Version: 0.45.3 +Release: %autorelease +Summary: Git protocols implementation + +License: MIT OR Apache-2.0 +URL: https://crates.io/crates/gix-protocol +Source: %{crates_source} + +BuildRequires: cargo-rpm-macros >= 24 + +%global _description %{expand: +A crate of the gitoxide project for implementing git protocols.} + +%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 +%{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-client-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+async-client-devel %{_description} + +This package contains library source intended for building other packages which +use the "async-client" feature of the "%{crate}" crate. + +%files -n %{name}+async-client-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+async-trait-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+async-trait-devel %{_description} + +This package contains library source intended for building other packages which +use the "async-trait" feature of the "%{crate}" crate. + +%files -n %{name}+async-trait-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+blocking-client-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+blocking-client-devel %{_description} + +This package contains library source intended for building other packages which +use the "blocking-client" feature of the "%{crate}" crate. + +%files -n %{name}+blocking-client-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+document-features-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+document-features-devel %{_description} + +This package contains library source intended for building other packages which +use the "document-features" feature of the "%{crate}" crate. + +%files -n %{name}+document-features-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+futures-io-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+futures-io-devel %{_description} + +This package contains library source intended for building other packages which +use the "futures-io" feature of the "%{crate}" crate. + +%files -n %{name}+futures-io-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+futures-lite-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+futures-lite-devel %{_description} + +This package contains library source intended for building other packages which +use the "futures-lite" feature of the "%{crate}" crate. + +%files -n %{name}+futures-lite-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+serde-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+serde-devel %{_description} + +This package contains library source intended for building other packages which +use the "serde" feature of the "%{crate}" crate. + +%files -n %{name}+serde-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.45.3-1 +- Rebuilt for MSVSphere 10 + +## START: Generated by rpmautospec +* Tue Sep 10 2024 blinxen - 0.45.3-1 +- Update to version 0.45.3 (rhbz#2307397) + +* Thu Jul 25 2024 blinxen - 0.45.2-1 +- Update to version 0.45.2 (rhbz#2299582) + +* Fri Jul 19 2024 Fedora Release Engineering - 0.45.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Sun Jun 23 2024 blinxen - 0.45.1-1 +- Update to version 0.45.1 (rhbz#2274903) + +* Fri Apr 05 2024 blinxen - 0.44.2-1 +- Update to version 0.44.2 (rhbz#2253275) + +* Fri Jan 26 2024 Fedora Release Engineering - 0.41.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Fri Oct 13 2023 blinxen - 0.41.1-1 +- Update to version 0.41.0 + +* Sat Sep 30 2023 blinxen - 0.39.0-1 +- Initial package (rhbz#2241217) +## END: Generated by rpmautospec