Compare commits
No commits in common. 'i9cf' and 'epel9' have entirely different histories.
@ -0,0 +1,28 @@
|
||||
/env_logger-0.4.3.crate
|
||||
/env_logger-0.5.0.crate
|
||||
/env_logger-0.5.1.crate
|
||||
/env_logger-0.5.2.crate
|
||||
/env_logger-0.5.3.crate
|
||||
/env_logger-0.5.4.crate
|
||||
/env_logger-0.5.5.crate
|
||||
/env_logger-0.5.6.crate
|
||||
/env_logger-0.5.7.crate
|
||||
/env_logger-0.5.8.crate
|
||||
/env_logger-0.5.9.crate
|
||||
/env_logger-0.5.10.crate
|
||||
/env_logger-0.5.11.crate
|
||||
/env_logger-0.5.12.crate
|
||||
/env_logger-0.5.13.crate
|
||||
/env_logger-0.6.0.crate
|
||||
/env_logger-0.6.1.crate
|
||||
/env_logger-0.6.2.crate
|
||||
/env_logger-0.7.1.crate
|
||||
/env_logger-0.8.1.crate
|
||||
/env_logger-0.8.2.crate
|
||||
/env_logger-0.8.3.crate
|
||||
/env_logger-0.8.4.crate
|
||||
/env_logger-0.9.0.crate
|
||||
/env_logger-0.9.1.crate
|
||||
/env_logger-0.9.3.crate
|
||||
/env_logger-0.10.0.crate
|
||||
/env_logger-0.10.1.crate
|
Binary file not shown.
@ -0,0 +1,118 @@
|
||||
# Generated by rust2rpm 25
|
||||
%bcond_without check
|
||||
%global debug_package %{nil}
|
||||
|
||||
%global crate env_logger
|
||||
|
||||
Name: rust-env_logger
|
||||
Version: 0.10.1
|
||||
Release: %autorelease
|
||||
Summary: Logging implementation for log which is configured via an environment variable
|
||||
|
||||
License: MIT OR Apache-2.0
|
||||
URL: https://crates.io/crates/env_logger
|
||||
Source: %{crates_source}
|
||||
|
||||
BuildRequires: cargo-rpm-macros >= 24
|
||||
|
||||
%global _description %{expand:
|
||||
A logging implementation for `log` which is configured via an
|
||||
environment variable.}
|
||||
|
||||
%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}/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}+auto-color-devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n %{name}+auto-color-devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages which
|
||||
use the "auto-color" feature of the "%{crate}" crate.
|
||||
|
||||
%files -n %{name}+auto-color-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}+humantime-devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n %{name}+humantime-devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages which
|
||||
use the "humantime" feature of the "%{crate}" crate.
|
||||
|
||||
%files -n %{name}+humantime-devel
|
||||
%ghost %{crate_instdir}/Cargo.toml
|
||||
|
||||
%package -n %{name}+regex-devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n %{name}+regex-devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages which
|
||||
use the "regex" feature of the "%{crate}" crate.
|
||||
|
||||
%files -n %{name}+regex-devel
|
||||
%ghost %{crate_instdir}/Cargo.toml
|
||||
|
||||
%prep
|
||||
%autosetup -n %{crate}-%{version} -p1
|
||||
%cargo_prep
|
||||
|
||||
%generate_buildrequires
|
||||
%cargo_generate_buildrequires
|
||||
|
||||
%build
|
||||
%cargo_build
|
||||
|
||||
%install
|
||||
%cargo_install
|
||||
|
||||
%if %{with check}
|
||||
%check
|
||||
%cargo_test
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
%autochangelog
|
Loading…
Reference in new issue