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.
159 lines
4.0 KiB
159 lines
4.0 KiB
# Generated by rust2rpm 22
|
|
%bcond_without check
|
|
%global debug_package %{nil}
|
|
|
|
%global crate structopt
|
|
|
|
Name: rust-structopt
|
|
Version: 0.3.26
|
|
Release: %autorelease
|
|
Summary: Parse command line argument by defining a struct
|
|
|
|
License: Apache-2.0 OR MIT
|
|
URL: https://crates.io/crates/structopt
|
|
Source: %{crates_source}
|
|
|
|
ExclusiveArch: %{rust_arches}
|
|
|
|
BuildRequires: rust-packaging >= 21
|
|
|
|
%global _description %{expand:
|
|
Parse command line argument by defining a struct.}
|
|
|
|
%description %{_description}
|
|
|
|
%package devel
|
|
Summary: %{summary}
|
|
BuildArch: noarch
|
|
|
|
%description devel %{_description}
|
|
|
|
This package contains library source intended for building other packages which
|
|
use the "%{crate}" crate.
|
|
|
|
%files devel
|
|
%license %{crate_instdir}/LICENSE-APACHE
|
|
%license %{crate_instdir}/LICENSE-MIT
|
|
%doc %{crate_instdir}/CHANGELOG.md
|
|
%doc %{crate_instdir}/README.md
|
|
%{crate_instdir}/
|
|
|
|
%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 the "default" feature of the "%{crate}" crate.
|
|
|
|
%files -n %{name}+default-devel
|
|
%ghost %{crate_instdir}/Cargo.toml
|
|
|
|
%package -n %{name}+color-devel
|
|
Summary: %{summary}
|
|
BuildArch: noarch
|
|
|
|
%description -n %{name}+color-devel %{_description}
|
|
|
|
This package contains library source intended for building other packages which
|
|
use the "color" feature of the "%{crate}" crate.
|
|
|
|
%files -n %{name}+color-devel
|
|
%ghost %{crate_instdir}/Cargo.toml
|
|
|
|
%package -n %{name}+debug-devel
|
|
Summary: %{summary}
|
|
BuildArch: noarch
|
|
|
|
%description -n %{name}+debug-devel %{_description}
|
|
|
|
This package contains library source intended for building other packages which
|
|
use the "debug" feature of the "%{crate}" crate.
|
|
|
|
%files -n %{name}+debug-devel
|
|
%ghost %{crate_instdir}/Cargo.toml
|
|
|
|
%package -n %{name}+doc-devel
|
|
Summary: %{summary}
|
|
BuildArch: noarch
|
|
|
|
%description -n %{name}+doc-devel %{_description}
|
|
|
|
This package contains library source intended for building other packages which
|
|
use the "doc" feature of the "%{crate}" crate.
|
|
|
|
%files -n %{name}+doc-devel
|
|
%ghost %{crate_instdir}/Cargo.toml
|
|
|
|
%package -n %{name}+no_cargo-devel
|
|
Summary: %{summary}
|
|
BuildArch: noarch
|
|
|
|
%description -n %{name}+no_cargo-devel %{_description}
|
|
|
|
This package contains library source intended for building other packages which
|
|
use the "no_cargo" feature of the "%{crate}" crate.
|
|
|
|
%files -n %{name}+no_cargo-devel
|
|
%ghost %{crate_instdir}/Cargo.toml
|
|
|
|
%package -n %{name}+suggestions-devel
|
|
Summary: %{summary}
|
|
BuildArch: noarch
|
|
|
|
%description -n %{name}+suggestions-devel %{_description}
|
|
|
|
This package contains library source intended for building other packages which
|
|
use the "suggestions" feature of the "%{crate}" crate.
|
|
|
|
%files -n %{name}+suggestions-devel
|
|
%ghost %{crate_instdir}/Cargo.toml
|
|
|
|
%package -n %{name}+wrap_help-devel
|
|
Summary: %{summary}
|
|
BuildArch: noarch
|
|
|
|
%description -n %{name}+wrap_help-devel %{_description}
|
|
|
|
This package contains library source intended for building other packages which
|
|
use the "wrap_help" feature of the "%{crate}" crate.
|
|
|
|
%files -n %{name}+wrap_help-devel
|
|
%ghost %{crate_instdir}/Cargo.toml
|
|
|
|
%package -n %{name}+yaml-devel
|
|
Summary: %{summary}
|
|
BuildArch: noarch
|
|
|
|
%description -n %{name}+yaml-devel %{_description}
|
|
|
|
This package contains library source intended for building other packages which
|
|
use the "yaml" feature of the "%{crate}" crate.
|
|
|
|
%files -n %{name}+yaml-devel
|
|
%ghost %{crate_instdir}/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
|
|
# * flatten_twice is marked should_panic, but gets a hard error from clap
|
|
# * ui test fails because of missing paw dependency
|
|
%cargo_test -- -- --skip flatten_twice --skip ui
|
|
%endif
|
|
|
|
%changelog
|
|
%autochangelog
|