Sync from SUSE:SLFO:Main python-decorator revision 42de0cad87788e4a618d29822bf92bd8
This commit is contained in:
BIN
decorator-5.1.1.tar.gz
(Stored with Git LFS)
BIN
decorator-5.1.1.tar.gz
(Stored with Git LFS)
Binary file not shown.
BIN
decorator-5.2.1.tar.gz
(Stored with Git LFS)
Normal file
BIN
decorator-5.2.1.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@@ -1,3 +1,39 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 20 09:26:46 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 5.2.1
|
||||||
|
* Updated CHANGES.md
|
||||||
|
* Update Makefile [ci skip]
|
||||||
|
* Include tests and documentation in sdist
|
||||||
|
* Managed functions without __name__
|
||||||
|
- from version 5.2.0
|
||||||
|
* Replace deprecated logging.warn with logging.warning
|
||||||
|
* Add support for Python 3.11
|
||||||
|
* Update download links
|
||||||
|
* Fix codespell errors
|
||||||
|
* Add support for decorative partial functions
|
||||||
|
* Replace 'bytecode' by 'binary' in LICENSE.txt to align with BSD-2-Clause
|
||||||
|
* Add support for Python 3.12
|
||||||
|
* Stop testing EOL Python 3.5 and 3.6 due to CI unavailability
|
||||||
|
* Requiring Python >= 3.7
|
||||||
|
* Dropped support for Python <= 3.6
|
||||||
|
* Use SPDX license identifier
|
||||||
|
* Add support for Python 3.13
|
||||||
|
* codespell: assertIn is not a typo
|
||||||
|
* Testing only Python >= 3.8
|
||||||
|
* Using asyncio.run
|
||||||
|
* Replaced setup.py with pyproject
|
||||||
|
* Updated copyright
|
||||||
|
* Moved tests outside of src
|
||||||
|
- Switch package to modern Python Stack on SLE-15
|
||||||
|
* Use Python 3.11 on SLE-15 by default
|
||||||
|
* Drop support for older Python versions
|
||||||
|
- 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
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Apr 21 12:24:11 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
Fri Apr 21 12:24:11 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-decorator
|
# spec file for package python-decorator
|
||||||
#
|
#
|
||||||
# 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,17 +18,16 @@
|
|||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
||||||
%global skip_python2 1
|
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-decorator
|
Name: python-decorator
|
||||||
Version: 5.1.1
|
Version: 5.2.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Decorators for Humans
|
Summary: Decorators for Humans
|
||||||
License: BSD-2-Clause
|
License: BSD-2-Clause
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
URL: https://github.com/micheles/decorator
|
URL: https://github.com/micheles/decorator
|
||||||
Source: https://files.pythonhosted.org/packages/source/d/decorator/decorator-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/d/decorator/decorator-%{version}.tar.gz
|
||||||
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: dos2unix
|
BuildRequires: dos2unix
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
@@ -50,20 +49,20 @@ redirecting_stdout, locked, etc. more accessible.
|
|||||||
%autopatch -p1
|
%autopatch -p1
|
||||||
|
|
||||||
%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
|
||||||
%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} $python src/tests/test.py -v
|
%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} $python tests/test.py -v
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%license LICENSE.txt
|
%license LICENSE.txt
|
||||||
%doc CHANGES.md README.rst
|
%doc CHANGES.md README.rst
|
||||||
%{python_sitelib}/decorator.py*
|
%{python_sitelib}/decorator.py*
|
||||||
%pycache_only %{python_sitelib}/__pycache__/decorator.*.py*
|
%pycache_only %{python_sitelib}/__pycache__/decorator.*.py*
|
||||||
%{python_sitelib}/decorator-%{version}-py*.egg-info
|
%{python_sitelib}/decorator-%{version}.dist-info
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Reference in New Issue
Block a user