2014-09-03 15:58:51 +00:00
|
|
|
#
|
|
|
|
# spec file for package python-click
|
|
|
|
#
|
2025-08-09 07:10:28 +00:00
|
|
|
# Copyright (c) 2025 SUSE LLC and contributors
|
2014-09-03 15:58:51 +00:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2019-01-01 15:23:08 +00:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2015-07-20 06:51:59 +00:00
|
|
|
#
|
2014-09-03 15:58:51 +00:00
|
|
|
|
|
|
|
|
2023-04-21 15:11:59 +00:00
|
|
|
%{?sle15_python_module_pythons}
|
2014-09-03 15:58:51 +00:00
|
|
|
Name: python-click
|
2025-08-09 07:08:18 +00:00
|
|
|
Version: 8.2.1
|
2014-09-03 15:58:51 +00:00
|
|
|
Release: 0
|
2018-12-05 19:24:11 +00:00
|
|
|
Summary: A wrapper around optparse for command line utilities
|
2015-07-20 06:51:59 +00:00
|
|
|
License: BSD-3-Clause
|
2025-05-21 07:16:56 +00:00
|
|
|
URL: https://github.com/pallets/click
|
2025-02-10 12:08:16 +00:00
|
|
|
Source: https://files.pythonhosted.org/packages/source/c/click/click-%{version}.tar.gz
|
2025-07-09 08:31:43 +00:00
|
|
|
## see github.com/pallets/click/issues/2939, github.com/pallets/click/pull/2940
|
|
|
|
Patch0: click-8.2.1-clirunner.patch
|
Accepting request 1276563 from home:sebix:branches:devel:languages:python
- Update to version 8.2.0:
- Drop support for Python 3.7, 3.8, and 3.9. :pr:`2588` :pr:`2893`
- Use modern packaging metadata with ``pyproject.toml`` instead of ``setup.cfg``.
:pr:`2438`
- Use ``flit_core`` instead of ``setuptools`` as build backend. :pr:`2543`
- Deprecate the ``__version__`` attribute. Use feature detection, or
``importlib.metadata.version("click")``, instead. :issue:`2598`
- ``BaseCommand`` is deprecated. ``Command`` is the base class for all
commands. :issue:`2589`
- ``MultiCommand`` is deprecated. ``Group`` is the base class for all group
commands. :issue:`2590`
- The current parser and related classes and methods, are deprecated.
:issue:`2205`
- ``OptionParser`` and the ``parser`` module, which is a modified copy of
``optparse`` in the standard library.
- ``Context.protected_args`` is unneeded. ``Context.args`` contains any
remaining arguments while parsing.
- ``Parameter.add_to_parser`` (on both ``Argument`` and ``Option``) is
unneeded. Parsing works directly without building a separate parser.
- ``split_arg_string`` is moved from ``parser`` to ``shell_completion``.
- Enable deferred evaluation of annotations with
``from __future__ import annotations``. :pr:`2270`
- When generating a command's name from a decorated function's name, the
suffixes ``_command``, ``_cmd``, ``_group``, and ``_grp`` are removed.
:issue:`2322`
- Show the ``types.ParamType.name`` for ``types.Choice`` options within
``--help`` message if ``show_choices=False`` is specified.
:issue:`2356`
- Do not display default values in prompts when ``Option.show_default`` is
``False``. :pr:`2509`
OBS-URL: https://build.opensuse.org/request/show/1276563
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-click?expand=0&rev=54
2025-05-12 06:35:29 +00:00
|
|
|
BuildRequires: %{python_module base >= 3.10}
|
2025-01-09 10:00:31 +00:00
|
|
|
BuildRequires: %{python_module flit-core}
|
|
|
|
BuildRequires: %{python_module pip}
|
2017-03-22 17:38:25 +00:00
|
|
|
BuildRequires: %{python_module pytest}
|
2025-02-10 12:08:16 +00:00
|
|
|
BuildRequires: %{python_module setuptools}
|
2025-01-09 10:00:31 +00:00
|
|
|
BuildRequires: %{python_module wheel}
|
2017-03-22 17:38:25 +00:00
|
|
|
BuildRequires: fdupes
|
|
|
|
BuildRequires: python-rpm-macros
|
2022-06-05 16:39:42 +00:00
|
|
|
BuildArch: noarch
|
2017-03-22 17:38:25 +00:00
|
|
|
%python_subpackages
|
2014-09-03 15:58:51 +00:00
|
|
|
|
|
|
|
%description
|
2018-12-05 19:24:11 +00:00
|
|
|
Click is a Python package for creating command line interfaces
|
2014-09-03 15:58:51 +00:00
|
|
|
in a composable way with as little code as necessary. It's the "Command
|
2018-12-05 19:24:11 +00:00
|
|
|
Line Interface Creation Kit". It is configurable, and comes with
|
|
|
|
defaults out of the box.
|
2014-09-03 15:58:51 +00:00
|
|
|
|
|
|
|
%prep
|
2023-05-05 14:21:21 +00:00
|
|
|
%autosetup -p1 -n click-%{version}
|
2014-09-03 15:58:51 +00:00
|
|
|
|
|
|
|
%build
|
2025-01-09 10:00:31 +00:00
|
|
|
%pyproject_wheel
|
2014-09-03 15:58:51 +00:00
|
|
|
|
|
|
|
%install
|
2025-01-09 10:00:31 +00:00
|
|
|
%pyproject_install
|
2019-10-14 11:43:58 +00:00
|
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
2014-09-03 15:58:51 +00:00
|
|
|
|
|
|
|
%check
|
2017-03-22 17:38:25 +00:00
|
|
|
export LANG=en_US.UTF-8
|
2021-08-30 12:56:07 +00:00
|
|
|
%pytest -rs --tb=short
|
2014-09-03 15:58:51 +00:00
|
|
|
|
2017-03-22 17:38:25 +00:00
|
|
|
%files %{python_files}
|
2025-01-09 10:00:31 +00:00
|
|
|
%license LICENSE.txt
|
|
|
|
%doc CHANGES.rst README.md
|
2017-03-22 17:38:25 +00:00
|
|
|
%{python_sitelib}/click
|
2025-01-09 10:00:31 +00:00
|
|
|
%{python_sitelib}/click-%{version}.dist-info
|
2014-09-03 15:58:51 +00:00
|
|
|
|
|
|
|
%changelog
|