Initial import (#1705118).
parent
816a3b2224
commit
ba47c8d42f
@ -0,0 +1 @@
|
||||
/imgref-1.3.5.crate
|
@ -0,0 +1,70 @@
|
||||
# Generated by rust2rpm
|
||||
%bcond_without check
|
||||
%global debug_package %{nil}
|
||||
|
||||
%global crate imgref
|
||||
|
||||
Name: rust-%{crate}
|
||||
Version: 1.3.5
|
||||
Release: 1%{?dist}
|
||||
Summary: Trivial Rust struct for interchange of pixel buffers with width
|
||||
|
||||
# No license file
|
||||
# https://github.com/kornelski/imgref/pull/11
|
||||
# Upstream license specification: CC0-1.0
|
||||
License: CC0
|
||||
URL: https://crates.io/crates/imgref
|
||||
Source: %{crates_source}
|
||||
|
||||
ExclusiveArch: %{rust_arches}
|
||||
|
||||
BuildRequires: rust-packaging
|
||||
|
||||
%global _description \
|
||||
A trivial struct for interchange of pixel buffers with width, height & stride.
|
||||
|
||||
%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
|
||||
%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 "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
|
||||
* Tue Apr 30 21:46:48 EEST 2019 Artem Polishchuk <ego.cordatus@gmail.com> - 1.3.5-1
|
||||
- Initial package
|
Loading…
Reference in new issue