commit
8ef376aadc
Binary file not shown.
@ -0,0 +1,17 @@
|
||||
--- lscolors-0.13.0/Cargo.toml 1970-01-01T00:00:01+00:00
|
||||
+++ lscolors-0.13.0/Cargo.toml 2023-05-19T16:24:20.627112+00:00
|
||||
@@ -28,14 +28,6 @@
|
||||
license = "MIT/Apache-2.0"
|
||||
repository = "https://github.com/sharkdp/lscolors"
|
||||
|
||||
-[[bin]]
|
||||
-name = "lscolors"
|
||||
-path = "src/bin.rs"
|
||||
-required-features = [
|
||||
- "ansi_term",
|
||||
- "nu-ansi-term",
|
||||
-]
|
||||
-
|
||||
[dependencies.ansi_term]
|
||||
version = "0.12"
|
||||
optional = true
|
@ -0,0 +1,126 @@
|
||||
## START: Set by rpmautospec
|
||||
## (rpmautospec version 0.3.5)
|
||||
## RPMAUTOSPEC: autorelease, autochangelog
|
||||
%define autorelease(e:s:pb:n) %{?-p:0.}%{lua:
|
||||
release_number = 2;
|
||||
base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}"));
|
||||
print(release_number + base_release_number - 1);
|
||||
}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}}
|
||||
## END: Set by rpmautospec
|
||||
|
||||
# Generated by rust2rpm 24
|
||||
%bcond_without check
|
||||
%global debug_package %{nil}
|
||||
|
||||
%global crate lscolors
|
||||
|
||||
Name: rust-lscolors0.13
|
||||
Version: 0.13.0
|
||||
Release: %autorelease
|
||||
Summary: Colorize paths using the LS_COLORS environment variable
|
||||
|
||||
# Upstream license specification: MIT/Apache-2.0
|
||||
License: MIT OR Apache-2.0
|
||||
URL: https://crates.io/crates/lscolors
|
||||
Source: %{crates_source}
|
||||
# Manually created patch for downstream crate metadata changes
|
||||
# * drop binary, this is a compat crate
|
||||
Patch: lscolors-fix-metadata.diff
|
||||
|
||||
BuildRequires: rust-packaging >= 21
|
||||
|
||||
%global _description %{expand:
|
||||
Colorize paths using the LS_COLORS 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}+ansi_term-devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n %{name}+ansi_term-devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages which
|
||||
use the "ansi_term" feature of the "%{crate}" crate.
|
||||
|
||||
%files -n %{name}+ansi_term-devel
|
||||
%ghost %{crate_instdir}/Cargo.toml
|
||||
|
||||
%package -n %{name}+crossterm-devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n %{name}+crossterm-devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages which
|
||||
use the "crossterm" feature of the "%{crate}" crate.
|
||||
|
||||
%files -n %{name}+crossterm-devel
|
||||
%ghost %{crate_instdir}/Cargo.toml
|
||||
|
||||
%package -n %{name}+nu-ansi-term-devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n %{name}+nu-ansi-term-devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages which
|
||||
use the "nu-ansi-term" feature of the "%{crate}" crate.
|
||||
|
||||
%files -n %{name}+nu-ansi-term-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
|
||||
%cargo_test
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Mon Jan 15 2024 Arkady L. Shane <tigro@msvsphere-os.ru> - 0.13.0-2
|
||||
- Rebuilt for MSVSphere 9.3
|
||||
|
||||
* Fri May 19 2023 Michel Alexandre Salim <salimma@fedoraproject.org> - 0.13.0-2
|
||||
- Drop binary, as this is a compat crate
|
||||
|
||||
* Fri May 19 2023 Michel Alexandre Salim <salimma@fedoraproject.org> - 0.13.0-1
|
||||
- Initial Fedora package
|
Loading…
Reference in new issue