forked from pool/python-setproctitle
Compare commits
8 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| d00222df91 | |||
| a4e044727d | |||
| 3c53cc01a7 | |||
| 048bea3409 | |||
| 9076400606 | |||
| 4bb729c142 | |||
| 8685eec6a4 | |||
| 653409c255 |
@@ -1,3 +1,30 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jul 14 10:50:19 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 1.3.6
|
||||||
|
* Add support for free-threading (issue #147)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 16 06:12:21 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
|
||||||
|
|
||||||
|
- Switch to pyroject macros.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 26 13:01:57 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 1.3.5
|
||||||
|
* Fix bouncing Dock icon on macOS (issue #143).
|
||||||
|
* Fix building on C23 compilers (issue #145).
|
||||||
|
- Add fdupes to BuildRequires
|
||||||
|
- Run %fdupes in %install section
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Nov 20 16:57:28 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 1.3.4:
|
||||||
|
* Add support for Python 3.13 (issue #139).
|
||||||
|
* Drop support for Python 3.7.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Dec 14 12:40:39 UTC 2023 - Andreas Schwab <schwab@suse.de>
|
Thu Dec 14 12:40:39 UTC 2023 - Andreas Schwab <schwab@suse.de>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-setproctitle
|
# spec file for package python-setproctitle
|
||||||
#
|
#
|
||||||
# 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,7 +18,7 @@
|
|||||||
|
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-setproctitle
|
Name: python-setproctitle
|
||||||
Version: 1.3.3
|
Version: 1.3.6
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python module to allow customization of the process title
|
Summary: Python module to allow customization of the process title
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
@@ -26,8 +26,11 @@ URL: https://github.com/dvarrazzo/py-setproctitle/
|
|||||||
Source: https://files.pythonhosted.org/packages/source/s/setproctitle/setproctitle-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/s/setproctitle/setproctitle-%{version}.tar.gz
|
||||||
BuildRequires: %{python_module base >= 3.7}
|
BuildRequires: %{python_module base >= 3.7}
|
||||||
BuildRequires: %{python_module devel >= 3.7}
|
BuildRequires: %{python_module devel >= 3.7}
|
||||||
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
|
BuildRequires: %{python_module wheel}
|
||||||
|
BuildRequires: fdupes
|
||||||
BuildRequires: procps
|
BuildRequires: procps
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
@@ -43,10 +46,11 @@ the OpenSSH Server for example.
|
|||||||
|
|
||||||
%build
|
%build
|
||||||
export CFLAGS="%{optflags}"
|
export CFLAGS="%{optflags}"
|
||||||
%python_build
|
%pyproject_wheel
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%python_install
|
%pyproject_install
|
||||||
|
%python_expand %fdupes %{buildroot}%{$python_sitearch}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
# This is incompatible with qemu emulation
|
# This is incompatible with qemu emulation
|
||||||
@@ -58,6 +62,6 @@ export CFLAGS="%{optflags}"
|
|||||||
%doc HISTORY.rst README.rst
|
%doc HISTORY.rst README.rst
|
||||||
%license COPYRIGHT
|
%license COPYRIGHT
|
||||||
%{python_sitearch}/setproctitle
|
%{python_sitearch}/setproctitle
|
||||||
%{python_sitearch}/setproctitle-%{version}*-info
|
%{python_sitearch}/setproctitle-%{version}.dist-info
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:c913e151e7ea01567837ff037a23ca8740192880198b7fbb90b16d181607caae
|
|
||||||
size 27253
|
|
||||||
3
setproctitle-1.3.6.tar.gz
Normal file
3
setproctitle-1.3.6.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:c9f32b96c700bb384f33f7cf07954bb609d35dd82752cef57fb2ee0968409169
|
||||||
|
size 26889
|
||||||
Reference in New Issue
Block a user