parent
6cdb96bc80
commit
5d53b4efda
@ -0,0 +1 @@
|
||||
/human_format-1.0.3.crate
|
@ -0,0 +1,80 @@
|
||||
# Generated by rust2rpm 24
|
||||
# Deactivate tests because of missing dependency: galvanic-test (rhbz#2224175)
|
||||
%bcond_with check
|
||||
%global debug_package %{nil}
|
||||
|
||||
%global crate human_format
|
||||
|
||||
Name: rust-human_format
|
||||
Version: 1.0.3
|
||||
Release: %autorelease
|
||||
Summary: Converts a number to/from a human readable string
|
||||
|
||||
License: MIT
|
||||
URL: https://crates.io/crates/human_format
|
||||
Source: %{crates_source}
|
||||
|
||||
BuildRequires: rust-packaging >= 21
|
||||
BuildRequires: dos2unix
|
||||
|
||||
%global _description %{expand:
|
||||
Rust Port of human-format from node, formatting numbers for us, while
|
||||
the machines are still at bay.}
|
||||
|
||||
%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
|
||||
%doc %{crate_instdir}/README.md
|
||||
%doc %{crate_instdir}/changelog.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
|
||||
|
||||
%prep
|
||||
%autosetup -n %{crate}-%{version_no_tilde} -p1
|
||||
# Fix EOL encodings
|
||||
for f in src/lib.rs changelog.md README.md; do
|
||||
# Keep timestamp of the old file
|
||||
touch -r $f $f.tstamp
|
||||
dos2unix $f
|
||||
touch -r $f.tstamp $f
|
||||
rm $f.tstamp
|
||||
done
|
||||
%cargo_prep
|
||||
|
||||
%generate_buildrequires
|
||||
%cargo_generate_buildrequires
|
||||
|
||||
%build
|
||||
%cargo_build
|
||||
|
||||
%install
|
||||
%cargo_install
|
||||
|
||||
%if %{with check}
|
||||
%check
|
||||
%cargo_test
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
%autochangelog
|
@ -0,0 +1,2 @@
|
||||
[DEFAULT]
|
||||
summary = Converts a number to/from a human readable string
|
Loading…
Reference in new issue