From 5ce5e4dd56a6bf68c632087718868318be5ea081 Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Fri, 20 Dec 2024 16:06:05 +0300 Subject: [PATCH] import rust-ipnet-2.10.1-1.el10 --- .gitignore | 1 + .rust-ipnet.metadata | 1 + SOURCES/rust2rpm.toml | 6 ++ SPECS/rust-ipnet.spec | 209 ++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 217 insertions(+) create mode 100644 .gitignore create mode 100644 .rust-ipnet.metadata create mode 100644 SOURCES/rust2rpm.toml create mode 100644 SPECS/rust-ipnet.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a5e8707 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/ipnet-2.10.1.crate diff --git a/.rust-ipnet.metadata b/.rust-ipnet.metadata new file mode 100644 index 0000000..4e6eb8d --- /dev/null +++ b/.rust-ipnet.metadata @@ -0,0 +1 @@ +31ea4f923515c7c47d8e4aac08d308c71881441a SOURCES/ipnet-2.10.1.crate diff --git a/SOURCES/rust2rpm.toml b/SOURCES/rust2rpm.toml new file mode 100644 index 0000000..794fbbe --- /dev/null +++ b/SOURCES/rust2rpm.toml @@ -0,0 +1,6 @@ +[package] +summary = "Types and useful methods for working with IP prefixes" + +[features] +hide = ["json", "schemars"] + diff --git a/SPECS/rust-ipnet.spec b/SPECS/rust-ipnet.spec new file mode 100644 index 0000000..4d881d9 --- /dev/null +++ b/SPECS/rust-ipnet.spec @@ -0,0 +1,209 @@ +## 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 +%bcond_without check +%global debug_package %{nil} + +%global crate ipnet + +Name: rust-ipnet +Version: 2.10.1 +Release: %autorelease +Summary: Types and useful methods for working with IP prefixes + +License: MIT OR Apache-2.0 +URL: https://crates.io/crates/ipnet +Source: %{crates_source} + +BuildRequires: cargo-rpm-macros >= 24 + +%global _description %{expand: +Provides types and useful methods for working with IPv4 and IPv6 network +addresses, commonly called IP prefixes. The new `IpNet`, `Ipv4Net`, and +`Ipv6Net` types build on the existing `IpAddr`, `Ipv4Addr`, and +`Ipv6Addr` types already provided in Rust's standard library and align +to their design to stay consistent. The module also provides useful +traits that extend `Ipv4Addr` and `Ipv6Addr` with methods for `Add`, +`Sub`, `BitAnd`, and `BitOr` operations. The module only uses stable +feature so it is guaranteed to compile using the stable toolchain.} + +%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 +%doc %{crate_instdir}/RELEASES.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}+heapless-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+heapless-devel %{_description} + +This package contains library source intended for building other packages which +use the "heapless" feature of the "%{crate}" crate. + +%files -n %{name}+heapless-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+ser_as_str-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+ser_as_str-devel %{_description} + +This package contains library source intended for building other packages which +use the "ser_as_str" feature of the "%{crate}" crate. + +%files -n %{name}+ser_as_str-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 + +%package -n %{name}+std-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+std-devel %{_description} + +This package contains library source intended for building other packages which +use the "std" feature of the "%{crate}" crate. + +%files -n %{name}+std-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 - 2.10.1-1 +- Rebuilt for MSVSphere 10 + +## START: Generated by rpmautospec +* Fri Oct 04 2024 Fabio Valentini - 2.10.1-1 +- Update to version 2.10.1; Fixes RHBZ#2310682 + +* Fri Jul 19 2024 Fedora Release Engineering - 2.9.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Fri Jan 26 2024 Fedora Release Engineering - 2.9.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Tue Oct 24 2023 Fabio Valentini - 2.9.0-1 +- Update to version 2.9.0; Fixes RHBZ#2245548 + +* Fri Jul 21 2023 Fedora Release Engineering - 2.8.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Sat Jul 15 2023 Fabio Valentini - 2.8.0-1 +- Update to version 2.8.0; Fixes RHBZ#2217707 + +* Mon Mar 27 2023 Fabio Valentini - 2.7.2-1 +- Update to version 2.7.2; Fixes RHBZ#2182190 + +* Sun Jan 29 2023 Fabio Valentini - 2.7.1-1 +- Update to version 2.7.1; Fixes RHBZ#2152426 + +* Fri Jan 20 2023 Fedora Release Engineering - 2.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Sat Dec 10 2022 Fabio Valentini - 2.6.0-1 +- Update to version 2.6.0; Fixes RHBZ#2151733 + +* Mon Nov 07 2022 Fabio Valentini - 2.5.1-1 +- Update to version 2.5.1; Fixes RHBZ#2140455 + +* Sat Jul 23 2022 Fedora Release Engineering - 2.5.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Wed May 25 2022 Fabio Valentini - 2.5.0-1 +- Update to version 2.5.0; Fixes RHBZ#2076003 + +* Thu Mar 31 2022 Fabio Valentini - 2.4.0-1 +- Update to version 2.4.0; Fixes RHBZ#2061202 + +* Fri Jan 21 2022 Fedora Release Engineering - 2.3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Fri Jul 23 2021 Fedora Release Engineering - 2.3.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Sat Jun 19 2021 Fabio Valentini - 2.3.1-1 +- Update to version 2.3.1. +- Fixes RHBZ#1972015 + +* Wed Jan 27 2021 Fedora Release Engineering - 2.3.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Wed Jul 29 2020 Fedora Release Engineering - 2.3.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Tue Mar 17 2020 Josh Stone - 2.3.0-1 +- Update to 2.3.0 + +* Thu Feb 06 2020 Josh Stone - 2.2.0-1 +- Update to 2.2.0 + +* Thu Jan 30 2020 Fedora Release Engineering - 2.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Mon Nov 11 14:31:12 CET 2019 Igor Gnatenko - 2.1.0-1 +- Initial package + +## END: Generated by rpmautospec