You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rust-bincode/rust-bincode.spec

74 lines
1.9 KiB

# Generated by rust2rpm
%bcond_without check
%global debug_package %{nil}
%global crate bincode
Name: rust-%{crate}
Version: 0.9.2
Release: 1%{?dist}
Summary: Binary serialization / deserialization strategy that uses Serde
License: MIT
URL: https://crates.io/crates/bincode
Source0: https://crates.io/api/v1/crates/%{crate}/%{version}/download#/%{crate}-%{version}.crate
# https://github.com/TyOverby/bincode/pull/220
Source1: https://raw.githubusercontent.com/TyOverby/bincode/v%{version}/LICENSE.md
ExclusiveArch: %{rust_arches}
BuildRequires: rust-packaging
# [dependencies]
BuildRequires: (crate(byteorder) >= 1.0.0 with crate(byteorder) < 2.0.0)
BuildRequires: (crate(serde) >= 1.0.0 with crate(serde) < 2.0.0)
%if %{with check}
# [dev-dependencies]
BuildRequires: (crate(serde_bytes) >= 0.10.0 with crate(serde_bytes) < 0.11.0)
BuildRequires: (crate(serde_derive) >= 1.0.0 with crate(serde_derive) < 2.0.0)
%endif
%description
%{summary}.
%package devel
Summary: %{summary}
BuildArch: noarch
%description devel
A binary serialization / deserialization strategy that uses Serde for
transforming structs into bytes and vice versa!
This package contains library source intended for building other packages
which use %{crate} from crates.io.
%prep
%autosetup -n %{crate}-%{version} -p1
cp -a %{S:1} .
%cargo_prep
%build
%cargo_build
%install
%cargo_install
%if %{with check}
%check
%cargo_test
%endif
%files devel
%license LICENSE.md
%doc readme.md
%{cargo_registry}/%{crate}-%{version}/
%changelog
* Mon Nov 13 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.9.2-1
- Update to 0.9.2
* Sat Jul 08 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.8.0-2
- Don't patch 1.*.*
* Fri Jun 16 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.8.0-1
- Initial package