14
0

- update to 1.3.2:

* Restore import-time initialization of macOS to avoid crash on thread+fork
  * Fixed segfault on macOS 12.5 in forked processes (issue #111).
    Note that, as a workaround, Activity Monitor will show the title of the
    parent.
  * Added fallback no-op implementation if building the extension fails.
  * Added support for displaying title as the process name in MacOS Activity
    Monitor (issue #10).
  * Fixed "Symbol not found: _Py_GetArgcArgv" error when using Xcode provided
    Python (issues #82, #103).
  * Fixed FreeBSD support, broken in 1.2 (issue #94).
  * Added package type annotations (issue #101).
  * Dropped support for Python 3.6.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-setproctitle?expand=0&rev=50
This commit is contained in:
2022-09-16 18:23:28 +00:00
committed by Git OBS Bridge
parent 2418d46aab
commit 32ff301416
4 changed files with 24 additions and 6 deletions

View File

@@ -19,13 +19,14 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-setproctitle
Version: 1.2.3
Version: 1.3.2
Release: 0
Summary: Python module to allow customization of the process title
License: BSD-3-Clause
URL: https://github.com/dvarrazzo/py-setproctitle/
Source: https://files.pythonhosted.org/packages/source/s/setproctitle/setproctitle-%{version}.tar.gz
BuildRequires: %{python_module devel}
BuildRequires: %{python_module base >= 3.7}
BuildRequires: %{python_module devel >= 3.7}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: procps
@@ -54,7 +55,7 @@ export CFLAGS="%{optflags}"
%files %{python_files}
%doc HISTORY.rst README.rst
%license COPYRIGHT
%{python_sitearch}/setproctitle*.so
%{python_sitearch}/setproctitle
%{python_sitearch}/setproctitle-%{version}*-info
%changelog