From 181d34acb880ded81fed68747cad232b5d890d0f Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Sat, 3 Nov 2018 15:10:06 +0100 Subject: [PATCH] Adapt to new packaging Signed-off-by: Igor Gnatenko --- rust-bincode.spec | 66 +++++++++++++++++++++++++++++++++-------------- 1 file changed, 47 insertions(+), 19 deletions(-) diff --git a/rust-bincode.spec b/rust-bincode.spec index 861a356..89149af 100644 --- a/rust-bincode.spec +++ b/rust-bincode.spec @@ -1,12 +1,13 @@ # Generated by rust2rpm -%bcond_without check +# * Tests are run in infrastructure +%bcond_with check %global debug_package %{nil} %global crate bincode Name: rust-%{crate} Version: 1.0.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Binary serialization / deserialization strategy that uses Serde License: MIT @@ -16,28 +17,57 @@ Source0: https://crates.io/api/v1/crates/%{crate}/%{version}/download#/%{ ExclusiveArch: %{rust_arches} BuildRequires: rust-packaging -# [dependencies] -BuildRequires: (crate(byteorder) >= 1.2.0 with crate(byteorder) < 2.0.0) -BuildRequires: (crate(serde) >= 1.0.63 with crate(serde) < 2.0.0) +BuildRequires: (crate(byteorder/default) >= 1.2.0 with crate(byteorder/default) < 2.0.0) +BuildRequires: (crate(byteorder/i128) >= 1.2.0 with crate(byteorder/i128) < 2.0.0) +BuildRequires: (crate(serde/default) >= 1.0.63 with crate(serde/default) < 2.0.0) %if %{with check} -# [dev-dependencies] -BuildRequires: (crate(serde_bytes) >= 0.10.3 with crate(serde_bytes) < 0.11.0) -BuildRequires: (crate(serde_derive) >= 1.0.27 with crate(serde_derive) < 2.0.0) +BuildRequires: (crate(serde_bytes/default) >= 0.10.3 with crate(serde_bytes/default) < 0.11.0) +BuildRequires: (crate(serde_derive/default) >= 1.0.27 with crate(serde_derive/default) < 2.0.0) %endif -%description -%{summary}. +%global _description \ +A binary serialization / deserialization strategy that uses Serde for\ +transforming structs into bytes and vice versa! + +%description %{_description} %package devel Summary: %{summary} BuildArch: noarch -%description devel -A binary serialization / deserialization strategy that uses Serde for -transforming structs into bytes and vice versa! +%description devel %{_description} + +This package contains library source intended for building other packages +which use "%{crate}" crate. + +%files devel +%license LICENSE.md +%doc readme.md +%{cargo_registry}/%{crate}-%{version}/ + +%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 %{crate} from crates.io. +which use "default" feature of "%{crate}" crate. + +%files -n %{name}+default-devel +%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml + +%package -n %{name}+i128-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+i128-devel %{_description} + +This package contains library source intended for building other packages +which use "i128" feature of "%{crate}" crate. + +%files -n %{name}+i128-devel +%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml %prep %autosetup -n %{crate}-%{version} -p1 @@ -54,12 +84,10 @@ which use %{crate} from crates.io. %cargo_test %endif -%files devel -%license LICENSE.md -%doc readme.md -%{cargo_registry}/%{crate}-%{version}/ - %changelog +* Sat Nov 03 2018 Igor Gnatenko - 1.0.1-3 +- Adapt to new packaging + * Sat Jul 14 2018 Fedora Release Engineering - 1.0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild