initial import (#1948130)
parent
528ced2932
commit
b8c17cd0d7
@ -0,0 +1,4 @@
|
||||
/results_*/
|
||||
/*.src.rpm
|
||||
|
||||
/buffered-reader-1.0.1.crate
|
@ -1,3 +0,0 @@
|
||||
# rust-buffered-reader
|
||||
|
||||
The rust-buffered-reader package
|
@ -0,0 +1,135 @@
|
||||
# Generated by rust2rpm 16
|
||||
%bcond_without check
|
||||
%global debug_package %{nil}
|
||||
|
||||
%global crate buffered-reader
|
||||
|
||||
Name: rust-%{crate}
|
||||
Version: 1.0.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Super-powered Reader
|
||||
|
||||
# Upstream license specification: GPL-2.0-or-later
|
||||
# FIXME: missing LICENSE file
|
||||
License: GPLv2+
|
||||
URL: https://crates.io/crates/buffered-reader
|
||||
Source: %{crates_source}
|
||||
|
||||
ExclusiveArch: %{rust_arches}
|
||||
%if %{__cargo_skip_build}
|
||||
BuildArch: noarch
|
||||
%endif
|
||||
|
||||
BuildRequires: rust-packaging
|
||||
|
||||
%global _description %{expand:
|
||||
Super-powered Reader.}
|
||||
|
||||
%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 NEWS
|
||||
%{cargo_registry}/%{crate}-%{version_no_tilde}/
|
||||
|
||||
%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_no_tilde}/Cargo.toml
|
||||
|
||||
%package -n %{name}+bzip2-devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n %{name}+bzip2-devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages
|
||||
which use "bzip2" feature of "%{crate}" crate.
|
||||
|
||||
%files -n %{name}+bzip2-devel
|
||||
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
|
||||
|
||||
%package -n %{name}+compression-devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n %{name}+compression-devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages
|
||||
which use "compression" feature of "%{crate}" crate.
|
||||
|
||||
%files -n %{name}+compression-devel
|
||||
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
|
||||
|
||||
%package -n %{name}+compression-bzip2-devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n %{name}+compression-bzip2-devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages
|
||||
which use "compression-bzip2" feature of "%{crate}" crate.
|
||||
|
||||
%files -n %{name}+compression-bzip2-devel
|
||||
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
|
||||
|
||||
%package -n %{name}+compression-deflate-devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n %{name}+compression-deflate-devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages
|
||||
which use "compression-deflate" feature of "%{crate}" crate.
|
||||
|
||||
%files -n %{name}+compression-deflate-devel
|
||||
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
|
||||
|
||||
%package -n %{name}+flate2-devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n %{name}+flate2-devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages
|
||||
which use "flate2" feature of "%{crate}" crate.
|
||||
|
||||
%files -n %{name}+flate2-devel
|
||||
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
|
||||
|
||||
%prep
|
||||
%autosetup -n %{crate}-%{version_no_tilde} -p1
|
||||
%cargo_prep
|
||||
|
||||
%generate_buildrequires
|
||||
%cargo_generate_buildrequires
|
||||
|
||||
%build
|
||||
%cargo_build
|
||||
|
||||
%install
|
||||
%cargo_install
|
||||
|
||||
%if %{with check}
|
||||
%check
|
||||
%cargo_test
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Thu Apr 08 2021 Fabio Valentini <decathorpe@gmail.com> - 1.0.1-1
|
||||
- Initial package
|
Loading…
Reference in new issue