17
0
Files
python-decorator/python-decorator.spec
Matej Cepl 25eb328083 Accepting request 1278569 from home:glaubitz:branches:devel:languages:python
- 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

OBS-URL: https://build.opensuse.org/request/show/1278569
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-decorator?expand=0&rev=54
2025-05-20 09:59:33 +00:00

69 lines
2.2 KiB
RPMSpec

#
# spec file for package python-decorator
#
# Copyright (c) 2025 SUSE LLC
#
# 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/
#
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%{?sle15_python_module_pythons}
Name: python-decorator
Version: 5.2.1
Release: 0
Summary: Decorators for Humans
License: BSD-2-Clause
Group: Development/Languages/Python
URL: https://github.com/micheles/decorator
Source: https://files.pythonhosted.org/packages/source/d/decorator/decorator-%{version}.tar.gz
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: dos2unix
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildArch: noarch
%python_subpackages
%description
Typical implementations of Python decorators involve nested
functions, and do not preserve the signature of decorated functions,
thus can be confusing to both developers and documentation tools.
This module changes the usage of decorators for the average
programmer so as to make decorators such as memoize, tracing,
redirecting_stdout, locked, etc. more accessible.
%prep
%setup -q -n decorator-%{version}
%autopatch -p1
%build
%pyproject_wheel
%install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} $python tests/test.py -v
%files %{python_files}
%license LICENSE.txt
%doc CHANGES.md README.rst
%{python_sitelib}/decorator.py*
%pycache_only %{python_sitelib}/__pycache__/decorator.*.py*
%{python_sitelib}/decorator-%{version}.dist-info
%changelog