14
0
forked from pool/python-click
Files
python-click/python-click.spec

67 lines
2.1 KiB
RPMSpec
Raw Permalink Normal View History

#
# spec file for package python-click
#
# Copyright (c) 2025 SUSE LLC and contributors
#
# 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.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?sle15_python_module_pythons}
Name: python-click
Version: 8.2.1
Release: 0
Summary: A wrapper around optparse for command line utilities
License: BSD-3-Clause
URL: https://github.com/pallets/click
Source: https://files.pythonhosted.org/packages/source/c/click/click-%{version}.tar.gz
## 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}
BuildRequires: %{python_module flit-core}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildArch: noarch
%python_subpackages
%description
Click is a Python package for creating command line interfaces
in a composable way with as little code as necessary. It's the "Command
Line Interface Creation Kit". It is configurable, and comes with
defaults out of the box.
%prep
%autosetup -p1 -n click-%{version}
%build
%pyproject_wheel
%install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
export LANG=en_US.UTF-8
%pytest -rs --tb=short
%files %{python_files}
%license LICENSE.txt
%doc CHANGES.rst README.md
%{python_sitelib}/click
%{python_sitelib}/click-%{version}.dist-info
%changelog