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-derive_builder/rust-derive_builder.spec

174 lines
5.2 KiB

# Generated by rust2rpm 9
%bcond_with check
%global debug_package %{nil}
%global crate derive_builder
Name: rust-%{crate}
Version: 0.7.2
Release: 1%{?dist}
Summary: Rust macro to automatically implement the builder pattern for arbitrary structs
# Upstream license specification: MIT/Apache-2.0
License: MIT or ASL 2.0
URL: https://crates.io/crates/derive_builder
Source: %{crates_source}
# Initial patched metadata
# * Update pretty_assertions to 0.6, https://github.com/colin-kiegel/rust-derive-builder/pull/143
Patch0: derive_builder-fix-metadata.diff
ExclusiveArch: %{rust_arches}
BuildRequires: rust-packaging
BuildRequires: (crate(darling/default) >= 0.9.0 with crate(darling/default) < 0.10.0)
BuildRequires: (crate(proc-macro2/default) >= 0.4.0 with crate(proc-macro2/default) < 0.5.0)
BuildRequires: (crate(quote/default) >= 0.6.0 with crate(quote/default) < 0.7.0)
BuildRequires: (crate(syn/default) >= 0.15.0 with crate(syn/default) < 0.16.0)
BuildRequires: (crate(syn/extra-traits) >= 0.15.0 with crate(syn/extra-traits) < 0.16.0)
BuildRequires: (crate(syn/full) >= 0.15.0 with crate(syn/full) < 0.16.0)
BuildRequires: crate(derive_builder_core/default) = 0.5.0
%if %{with check}
BuildRequires: (crate(pretty_assertions/default) >= 0.6.0 with crate(pretty_assertions/default) < 0.7.0)
%endif
%global _description %{expand:
Rust macro to automatically implement the builder pattern for arbitrary
structs.}
%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 LICENSE-MIT LICENSE-APACHE
%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
%package -n %{name}+compiletest_rs-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+compiletest_rs-devel %{_description}
This package contains library source intended for building other packages
which use "compiletest_rs" feature of "%{crate}" crate.
%files -n %{name}+compiletest_rs-devel
%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml
%package -n %{name}+env_logger-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+env_logger-devel %{_description}
This package contains library source intended for building other packages
which use "env_logger" feature of "%{crate}" crate.
%files -n %{name}+env_logger-devel
%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml
%package -n %{name}+log-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+log-devel %{_description}
This package contains library source intended for building other packages
which use "log" feature of "%{crate}" crate.
%files -n %{name}+log-devel
%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml
%package -n %{name}+logging-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+logging-devel %{_description}
This package contains library source intended for building other packages
which use "logging" feature of "%{crate}" crate.
%files -n %{name}+logging-devel
%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml
%package -n %{name}+nightlytests-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+nightlytests-devel %{_description}
This package contains library source intended for building other packages
which use "nightlytests" feature of "%{crate}" crate.
%files -n %{name}+nightlytests-devel
%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml
%package -n %{name}+skeptic-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+skeptic-devel %{_description}
This package contains library source intended for building other packages
which use "skeptic" feature of "%{crate}" crate.
%files -n %{name}+skeptic-devel
%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml
%package -n %{name}+skeptic_tests-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+skeptic_tests-devel %{_description}
This package contains library source intended for building other packages
which use "skeptic_tests" feature of "%{crate}" crate.
%files -n %{name}+skeptic_tests-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
* Sat Jun 08 15:30:18 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.2-1
- Update to 0.7.2
* Mon Mar 25 19:37:14 CET 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.1-2
- Update darling to 0.9
* Wed Mar 13 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.1-1
- Initial package