Initial import

Signed-off-by: Igor Gnatenko <ignatenkobrain@fedoraproject.org>
epel9
Igor Gnatenko 6 years ago
parent 903e3912c2
commit 42eb123bf4
No known key found for this signature in database
GPG Key ID: 695714BD1BBC5F4C

1
.gitignore vendored

@ -0,0 +1 @@
/sized-chunks-0.3.0.crate

@ -0,0 +1,79 @@
# Generated by rust2rpm 9
%bcond_without check
%global debug_package %{nil}
%global crate sized-chunks
Name: rust-%{crate}
Version: 0.3.0
Release: 1%{?dist}
Summary: Efficient sized chunk datatypes
# Upstream license specification: MPL-2.0+
License: MPLv2.0
URL: https://crates.io/crates/sized-chunks
Source: %{crates_source}
ExclusiveArch: %{rust_arches}
%if %{__cargo_skip_build}
BuildArch: noarch
%endif
BuildRequires: rust-packaging
%if ! %{__cargo_skip_build}
BuildRequires: (crate(typenum/default) >= 1.10.0 with crate(typenum/default) < 2.0.0)
%if %{with check}
BuildRequires: (crate(proptest-derive/default) >= 0.1.0 with crate(proptest-derive/default) < 0.2.0)
BuildRequires: (crate(proptest/default) >= 0.9.1 with crate(proptest/default) < 0.10.0)
%endif
%endif
%global _description %{expand:
Efficient sized chunk datatypes.}
%description %{_description}
%package devel
Summary: %{summary}
BuildArch: noarch
%description devel %{_description}
This package contains library source intended for building other packages
which use "%{crate}" crate.
%files devel
%license LICENCE.md
%doc README.md CHANGELOG.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 "default" feature of "%{crate}" crate.
%files -n %{name}+default-devel
%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml
%prep
%autosetup -n %{crate}-%{version_no_tilde} -p1
%cargo_prep
%build
%cargo_build
%install
%cargo_install
%if %{with check}
%check
%cargo_test
%endif
%changelog
* Sun Jun 09 17:55:01 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.3.0-1
- Initial package

@ -0,0 +1 @@
SHA512 (sized-chunks-0.3.0.crate) = 179fffb653ff0a44f582d50443980010e6773b00dddc07c7dad151a6a3a131f38c24f73123db34224a3a11ca4519995d792cce04c6f7fd62adafd4bd8c088243

@ -0,0 +1,5 @@
---
standard-inventory-qcow2:
qemu:
# `cargo test` usually eats more than 1G.
m: 4G

@ -0,0 +1,13 @@
---
- hosts: localhost
roles:
- role: standard-test-basic
tags:
- classic
repositories:
- repo: "https://src.fedoraproject.org/tests/rust.git"
dest: rust
tests:
- rust/cargo-test
environment:
pkg: rust-sized-chunks
Loading…
Cancel
Save