forked from pool/python-click
Accepting request 1236118 from home:glaubitz:branches:devel:languages:python
- Update to 8.1.8 * Fix an issue with type hints for ``click.open_file()``. :issue:`2717` * Fix issue where error message for invalid ``click.Path`` displays on multiple lines. :issue:`2697` * Fixed issue that prevented a default value of ``""`` from being displayed in the help for an option. :issue:`2500` * The test runner handles stripping color consistently on Windows. :issue:`2705` * Show correct value for flag default when using ``default_map``. :issue:`2632` * Fix ``click.echo(color=...)`` passing ``color`` to coloroma so it can be forced on Windows. :issue:`2606`. - Switch build system from setuptools to pyproject.toml * Add python-pip and python-wheel to BuildRequires * Replace %python_build with %pyproject_wheel * Replace %python_install with %pyproject_install * Update name for dist directory in %files section - Update BuildRequires from pyproject.toml OBS-URL: https://build.opensuse.org/request/show/1236118 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-click?expand=0&rev=50
This commit is contained in:
BIN
click-8.1.7.tar.gz
(Stored with Git LFS)
BIN
click-8.1.7.tar.gz
(Stored with Git LFS)
Binary file not shown.
BIN
click-8.1.8.tar.gz
(Stored with Git LFS)
Normal file
BIN
click-8.1.8.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@@ -1,3 +1,25 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 9 08:39:31 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 8.1.8
|
||||||
|
* Fix an issue with type hints for ``click.open_file()``. :issue:`2717`
|
||||||
|
* Fix issue where error message for invalid ``click.Path`` displays on
|
||||||
|
multiple lines. :issue:`2697`
|
||||||
|
* Fixed issue that prevented a default value of ``""`` from being displayed in
|
||||||
|
the help for an option. :issue:`2500`
|
||||||
|
* The test runner handles stripping color consistently on Windows.
|
||||||
|
:issue:`2705`
|
||||||
|
* Show correct value for flag default when using ``default_map``.
|
||||||
|
:issue:`2632`
|
||||||
|
* Fix ``click.echo(color=...)`` passing ``color`` to coloroma so it can be
|
||||||
|
forced on Windows. :issue:`2606`.
|
||||||
|
- Switch build system from setuptools to pyproject.toml
|
||||||
|
* Add python-pip and python-wheel to BuildRequires
|
||||||
|
* Replace %python_build with %pyproject_wheel
|
||||||
|
* Replace %python_install with %pyproject_install
|
||||||
|
* Update name for dist directory in %files section
|
||||||
|
- Update BuildRequires from pyproject.toml
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Sep 7 10:58:54 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
Thu Sep 7 10:58:54 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-click
|
# spec file for package python-click
|
||||||
#
|
#
|
||||||
# Copyright (c) 2023 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-click
|
Name: python-click
|
||||||
Version: 8.1.7
|
Version: 8.1.8
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A wrapper around optparse for command line utilities
|
Summary: A wrapper around optparse for command line utilities
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
@@ -26,8 +26,11 @@ Group: Development/Languages/Python
|
|||||||
URL: https://github.com/mitsuhiko/click
|
URL: https://github.com/mitsuhiko/click
|
||||||
Source: https://files.pythonhosted.org/packages/source/c/click/click-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/c/click/click-%{version}.tar.gz
|
||||||
BuildRequires: %{python_module base >= 3.7}
|
BuildRequires: %{python_module base >= 3.7}
|
||||||
|
BuildRequires: %{python_module flit-core}
|
||||||
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
|
BuildRequires: %{python_module wheel}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
@@ -43,10 +46,10 @@ defaults out of the box.
|
|||||||
%autosetup -p1 -n click-%{version}
|
%autosetup -p1 -n click-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%python_build
|
%pyproject_wheel
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%python_install
|
%pyproject_install
|
||||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
@@ -54,9 +57,9 @@ export LANG=en_US.UTF-8
|
|||||||
%pytest -rs --tb=short
|
%pytest -rs --tb=short
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%license LICENSE.rst
|
%license LICENSE.txt
|
||||||
%doc CHANGES.rst README.rst
|
%doc CHANGES.rst README.md
|
||||||
%{python_sitelib}/click
|
%{python_sitelib}/click
|
||||||
%{python_sitelib}/click-%{version}-py%{python_version}.egg-info
|
%{python_sitelib}/click-%{version}.dist-info
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Reference in New Issue
Block a user