1
0
forked from pool/python-Pebble

4 Commits

Author SHA256 Message Date
7625ea81c1 Accepting request 1272261 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1272261
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Pebble?expand=0&rev=18
2025-04-24 15:25:45 +00:00
aea91005f5 - Update to 5.1.1
* issue #146: fix pool hanging on pickle errors.
  * issue #147: fix pool hanging when futures are cancelled
    while large amount of data is being transferred.
- Adjust upstream source name in spec file
- Allow lower- and uppercase filenames for meta directory
- 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
- Use Python 3.11 on SLE-15 by default

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Pebble?expand=0&rev=36
2025-04-23 20:20:49 +00:00
b3591c55d3 Accepting request 1240458 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1240458
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Pebble?expand=0&rev=17
2025-01-27 19:55:16 +00:00
3523844cfb - 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/package/show/devel:languages:python/python-Pebble?expand=0&rev=34
2025-01-27 08:49:52 +00:00
4 changed files with 43 additions and 10 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2784c147766f06388cea784084b14bec93fdbaa793830f1983155aa330a2a6e4
size 32054

3
pebble-5.1.1.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4e91a5b8e48b30b26eaa5391ba2cf65fbb3594fba17b88bc0b3351cf849d0305
size 38672

View File

@@ -1,3 +1,32 @@
-------------------------------------------------------------------
Wed Apr 23 10:56:25 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 5.1.1
* issue #146: fix pool hanging on pickle errors.
* issue #147: fix pool hanging when futures are cancelled
while large amount of data is being transferred.
- Adjust upstream source name in spec file
- Allow lower- and uppercase filenames for meta directory
- 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
- Use Python 3.11 on SLE-15 by default
-------------------------------------------------------------------
Fri Jan 24 13:34:44 UTC 2025 - Yunus Acar <yunus.acar@suse.com>
- 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.
-------------------------------------------------------------------
Fri Mar 22 21:01:33 UTC 2024 - Dirk Müller <dmueller@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-Pebble
#
# Copyright (c) 2024 SUSE LLC
# 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
@@ -16,14 +16,17 @@
#
%{?sle15_python_module_pythons}
Name: python-Pebble
Version: 5.0.7
Version: 5.1.1
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
Source: https://files.pythonhosted.org/packages/source/p/pebble/pebble-%{version}.tar.gz
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: git-core
BuildRequires: python-rpm-macros
@@ -39,13 +42,13 @@ 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}
%setup -q -n pebble-%{version}
%build
%python_build
%pyproject_wheel
%install
%python_install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
@@ -54,6 +57,7 @@ It wraps Pythons standard library threading and multiprocessing objects.
%files %{python_files}
%doc README.rst
%license LICENSE
%{python_sitelib}/*
%{python_sitelib}/pebble
%{python_sitelib}/[Pp]ebble-%{version}*
%changelog