* Fixed a bug where the poller would not unregister a closed
file descriptor under some circumstances, which caused
excessive polling, resulting in higher CPU usage. Patch by
aftersnow.
* Fixed a bug where restarting supervisord may have failed with
the message Error: Another program is already listening on a
port that one of our HTTP servers is configured to use. if an
HTTP request was made during restart. Patch by Julien Le
Cléach.
* Fixed a unit test that failed only on Python 3.13. Only test
code was changed; no changes to supervisord itself. Patch by
Colin Watson.
* On Python 3.8 and later, setuptools is no longer a runtime
dependency. Patch by Ofek Lev.
* On Python versions before 3.8, setuptools is still a runtime
dependency (for pkg_resources) but it is no longer declared
in setup.py as such. This is because adding a conditional
dependency with an environment marker (setuptools;
python_version < '3.8') breaks installation in some
scenarios, e.g. setup.py install or older versions of pip.
Ensure that setuptools is installed if using Python before
3.8.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/supervisor?expand=0&rev=15
100 lines
3.3 KiB
RPMSpec
100 lines
3.3 KiB
RPMSpec
#
|
|
# spec file for package supervisor
|
|
#
|
|
# Copyright (c) 2025 SUSE LLC and contributors
|
|
#
|
|
# 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: supervisor
|
|
Version: 4.3.0
|
|
Release: 0
|
|
Summary: A system for controlling process state under UNIX
|
|
License: SUSE-Repoze
|
|
Group: Development/Languages/Python
|
|
URL: http://supervisord.org/
|
|
Source: https://files.pythonhosted.org/packages/source/s/supervisor/supervisor-%{version}.tar.gz
|
|
Source2: supervisord.conf
|
|
Source3: supervisord.service
|
|
Source4: supervisord-tmpfiles.conf
|
|
BuildRequires: fdupes
|
|
BuildRequires: python3-pytest
|
|
BuildRequires: python3-rpm-macros
|
|
BuildRequires: python3-setuptools
|
|
Suggests: python3-cElementTree >= 1.0.2
|
|
BuildArch: noarch
|
|
%{?systemd_requires}
|
|
|
|
%description
|
|
Supervisor is a client/server system that allows its users to
|
|
control a number of processes on UNIX-like operating systems.
|
|
|
|
%prep
|
|
%setup -q
|
|
sed -i 's|#!<<PYTHON>>|#!%{_bindir}/python3|g' supervisor/tests/fixtures/unkillable_spew.py supervisor/tests/fixtures/spew.py
|
|
find . -name '*.py' -exec sed -i "s|#!%{_bindir}/env python|#!%{_bindir}/python3|g" {} \;
|
|
|
|
%build
|
|
%python3_build
|
|
|
|
%install
|
|
%python3_install
|
|
install -d %{buildroot}%{_sbindir}
|
|
install -d %{buildroot}%{_sysconfdir}/supervisord.d
|
|
install -D -m 0644 %{SOURCE4} %{buildroot}/%{_tmpfilesdir}/supervisord.conf
|
|
install -D -m 0644 %{SOURCE3} %{buildroot}%{_unitdir}/supervisord.service
|
|
install -d -m 0750 %{buildroot}%{_localstatedir}/log/supervisord/
|
|
install -m 0660 %{SOURCE2} %{buildroot}%{_sysconfdir}/
|
|
install -d %{buildroot}%{_sbindir}/
|
|
ln -s service %{buildroot}%{_sbindir}/rcsupervisord
|
|
%fdupes %{buildroot}%{python_sitelib}/
|
|
|
|
%pre
|
|
%service_add_pre supervisord.service
|
|
|
|
%post
|
|
%service_add_post supervisord.service
|
|
%tmpfiles_create %{_tmpfilesdir}/supervisord.conf
|
|
|
|
%preun
|
|
%service_del_preun supervisord.service
|
|
|
|
%postun
|
|
%service_del_postun supervisord.service
|
|
|
|
%check
|
|
# [ 13s] > self.assertEqual(sock.listen_backlog, socket.SOMAXCONN)
|
|
# [ 13s] E AssertionError: 128 != 4096
|
|
# somaxconn have changed recently, as far as I remember
|
|
sed -i '/self.assertEqual(sock.listen_backlog, socket.SOMAXCONN)/d' supervisor/tests/test_socket_manager.py
|
|
pytest
|
|
|
|
%files
|
|
%license LICENSES.txt COPYRIGHT.txt
|
|
%doc README.rst CHANGES.rst
|
|
%{_bindir}/echo_supervisord_conf
|
|
%{_bindir}/pidproxy
|
|
%{_bindir}/supervisorctl
|
|
%{_bindir}/supervisord
|
|
%{python_sitelib}/*
|
|
%{_tmpfilesdir}/supervisord.conf
|
|
%dir %ghost /run/supervisord
|
|
%dir %attr(-,root,root) %ghost %{_rundir}/%{name}
|
|
%{_unitdir}/supervisord.service
|
|
%{_sbindir}/rcsupervisord
|
|
%config(noreplace) %{_sysconfdir}/supervisord.conf
|
|
%dir %{_sysconfdir}/supervisord.d
|
|
%dir %attr(750,root,root)%{_localstatedir}/log/supervisord
|
|
|
|
%changelog
|