15
0
forked from pool/python-Pebble
Files
python-Pebble/python-Pebble.spec
Markéta Machová 0e87e028ab Accepting request 1240173 from home:yacar:branches:devel:languages:python
- Update to 5.1.0:
  * issue #140: expose internal constants to allow changing default
    timeouts and polling intervals.
  * issue #141: add PID of expired process to ProcessExpired exception.
  * Add pool decorators parameter allowing to provide a PebblePool
    as executor for the decorated functions.
  * issue #137: reset SIGTERM default handler to child processes.
  * Include concurrent and asynchronous modules as top-level packages.
  * Improve type hinting logic.
  * Refactor internal logic: remove code duplication.

OBS-URL: https://build.opensuse.org/request/show/1240173
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Pebble?expand=0&rev=34
2025-01-27 08:49:52 +00:00

61 lines
1.7 KiB
RPMSpec
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#
# spec file for package python-Pebble
#
# 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/
#
Name: python-Pebble
Version: 5.1.0
Release: 0
Summary: Threading and multiprocessing eye-candy for Python
License: LGPL-3.0-only
URL: https://github.com/noxdafox/pebble
Source: https://files.pythonhosted.org/packages/source/P/Pebble/Pebble-%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: git-core
BuildRequires: python-rpm-macros
BuildRequires: python3-base >= 3.7
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module pytest}
# /SECTION
%python_subpackages
%description
Pebble provides an API to manage threads and processes within an application.
It wraps Pythons standard library threading and multiprocessing objects.
%prep
%setup -q -n Pebble-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest
%files %{python_files}
%doc README.rst
%license LICENSE
%{python_sitelib}/pebble
%{python_sitelib}/Pebble-%{version}*
%changelog