Update to 2.10.7

Signed-off-by: Igor Raits <ignatenkobrain@fedoraproject.org>
This commit is contained in:
Igor Raits 2020-12-25 18:48:25 +01:00
parent 22b07696cc
commit af809eb358
No known key found for this signature in database
GPG Key ID: 115D5AB89C5C1E1E
3 changed files with 108 additions and 8 deletions

1
.gitignore vendored
View File

@ -9,3 +9,4 @@
/dua-cli-2.6.0.crate /dua-cli-2.6.0.crate
/dua-cli-2.6.1.crate /dua-cli-2.6.1.crate
/dua-cli-2.8.2.crate /dua-cli-2.8.2.crate
/dua-cli-2.10.7.crate

View File

@ -1,4 +1,4 @@
# Generated by rust2rpm 13 # Generated by rust2rpm 16
# * The test code is not shipped, but even if it would - the testing parts # * The test code is not shipped, but even if it would - the testing parts
# are missing too. # are missing too.
%bcond_with check %bcond_with check
@ -6,17 +6,14 @@
%global crate dua-cli %global crate dua-cli
Name: rust-%{crate} Name: rust-%{crate}
Version: 2.8.2 Version: 2.10.7
Release: 4%{?dist} Release: 1%{?dist}
Summary: Tool to conveniently learn about the disk usage of directories Summary: Tool to conveniently learn about the disk usage of directories
# Upstream license specification: MIT # Upstream license specification: MIT
License: MIT License: MIT
URL: https://crates.io/crates/dua-cli URL: https://crates.io/crates/dua-cli
Source: %{crates_source} Source: %{crates_source}
# Initial patched metadata
# * Downgrade byte-unit to 3.1
Patch0: dua-cli-fix-metadata.diff
ExclusiveArch: %{rust_arches} ExclusiveArch: %{rust_arches}
%if %{__cargo_skip_build} %if %{__cargo_skip_build}
@ -34,9 +31,12 @@ Tool to conveniently learn about the disk usage of directories, fast!.}
%package -n %{crate} %package -n %{crate}
Summary: %{summary} Summary: %{summary}
# (MIT or ASL 2.0) and BSD # (MIT or ASL 2.0) and BSD
# BSD
# MIT # MIT
# MIT or ASL 2.0 # MIT or ASL 2.0
License: MIT and BSD # MPLv2.0
# Unlicense or MIT
License: MIT and BSD and MPLv2.0
%description -n %{crate} %{_description} %description -n %{crate} %{_description}
@ -72,6 +72,102 @@ which use "default" feature of "%{crate}" crate.
%files -n %{name}+default-devel %files -n %{name}+default-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml %ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+crosstermion-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+crosstermion-devel %{_description}
This package contains library source intended for building other packages
which use "crosstermion" feature of "%{crate}" crate.
%files -n %{name}+crosstermion-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+open-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+open-devel %{_description}
This package contains library source intended for building other packages
which use "open" feature of "%{crate}" crate.
%files -n %{name}+open-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+tui-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+tui-devel %{_description}
This package contains library source intended for building other packages
which use "tui" feature of "%{crate}" crate.
%files -n %{name}+tui-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+tui-crossplatform-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+tui-crossplatform-devel %{_description}
This package contains library source intended for building other packages
which use "tui-crossplatform" feature of "%{crate}" crate.
%files -n %{name}+tui-crossplatform-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+tui-react-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+tui-react-devel %{_description}
This package contains library source intended for building other packages
which use "tui-react" feature of "%{crate}" crate.
%files -n %{name}+tui-react-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+tui-shared-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+tui-shared-devel %{_description}
This package contains library source intended for building other packages
which use "tui-shared" feature of "%{crate}" crate.
%files -n %{name}+tui-shared-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+tui-unix-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+tui-unix-devel %{_description}
This package contains library source intended for building other packages
which use "tui-unix" feature of "%{crate}" crate.
%files -n %{name}+tui-unix-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+unicode-segmentation-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+unicode-segmentation-devel %{_description}
This package contains library source intended for building other packages
which use "unicode-segmentation" feature of "%{crate}" crate.
%files -n %{name}+unicode-segmentation-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%prep %prep
%autosetup -n %{crate}-%{version_no_tilde} -p1 %autosetup -n %{crate}-%{version_no_tilde} -p1
%cargo_prep %cargo_prep
@ -95,6 +191,9 @@ which use "default" feature of "%{crate}" crate.
%endif %endif
%changelog %changelog
* Fri Dec 25 11:55:17 CET 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 2.10.7-1
- Update to 2.10.7
* Sun Aug 16 15:01:11 GMT 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 2.8.2-4 * Sun Aug 16 15:01:11 GMT 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 2.8.2-4
- Rebuild - Rebuild

View File

@ -1 +1 @@
SHA512 (dua-cli-2.8.2.crate) = c55013591e954de5739af175a7a1b0ef29dcd74185013a5e85f761c7fbaa51af82def2e4dacda1219730fa2cc4322946aff39f79625c78df961e4657e6cbb97e SHA512 (dua-cli-2.10.7.crate) = cc704b978e4f4f17223837dfcc9b85ebd5c9eeb5735a8fb6dfe43e5551a27443f10f3cf976934fc79163044dcb9efbe55dae119c86307e73ff74df69e70c6313