blob: 020073669519867099542babb777f5e47943ac4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
%global pypi_name rich-click
Name: python-%{pypi_name}
Version: 1.9.9
Release: 1%{?dist}
Summary: Format click help output nicely with rich
License: MIT
URL: https://github.com/ewels/rich-click
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
BuildArch: noarch
BuildRequires: python3-devel
BuildRequires: python3-pip
BuildRequires: python3-setuptools
BuildRequires: python3-wheel
BuildRequires: python3-click >= 8
BuildRequires: python3-rich >= 12
%description
rich-click is a wrapper around Click that renders help output nicely
using Rich. The intention of rich-click is to provide attractive help
output from Click, formatted with Rich, with minimal customization
required.
%package -n python3-%{pypi_name}
Summary: Format click help output nicely with rich
Provides: python-%{pypi_name}
Provides: python3dist(%{pypi_name}) = %{version}
Requires: python3-click >= 8
Requires: python3-rich >= 12
%description -n python3-%{pypi_name}
rich-click is a wrapper around Click that renders help output nicely
using Rich. The intention of rich-click is to provide attractive help
output from Click, formatted with Rich, with minimal customization
required.
%package help
Summary: Development documents and examples for %{pypi_name}
Provides: python3-%{pypi_name}-doc
Requires: python3-%{pypi_name}
%description help
Development documents and examples for rich-click.
%prep
%autosetup -n %{name}-%{version} -p1
%build
pip3 wheel --no-build-isolation --no-deps --wheel-dir %{_builddir}/wheels .
%install
pip3 install --no-build-isolation --no-index --no-deps \
--find-links %{_builddir}/wheels \
--root %{buildroot} --prefix /usr \
%{pypi_name}==%{version}
%files -n python3-%{pypi_name}
%license LICENSE
%{python3_sitelib}/rich_click/
%{python3_sitelib}/rich_click-%{version}*.dist-info/
%{_bindir}/rich-click
%files help
%license LICENSE
%doc README.md CHANGELOG.md
%changelog
* Mon Sep 14 2026 Python_Bot <Python_Bot@openeuler.org> - 1.9.9-1
- Initial package
|