diff options
author | Louis Sautier <sbraz@gentoo.org> | 2024-04-26 00:39:25 +0200 |
---|---|---|
committer | Louis Sautier <sbraz@gentoo.org> | 2024-04-29 22:10:39 +0200 |
commit | 593416ef4837798a7ee2fc6564cb2955f10a0a3f (patch) | |
tree | 09f0e38c3d52d8dd17b6fe61169f8ffd6c04a9f5 /app-admin | |
parent | net-misc/tuba: Bump to 0.7.2 (diff) | |
download | gentoo-593416ef4837798a7ee2fc6564cb2955f10a0a3f.tar.gz gentoo-593416ef4837798a7ee2fc6564cb2955f10a0a3f.tar.bz2 gentoo-593416ef4837798a7ee2fc6564cb2955f10a0a3f.zip |
app-admin/supervisor: re-add setuptools to RDEPEND, enable py312
It was mistakenly removed at some point, probably when we switched to
DISTUTILS_USE_PEP517=setuptools.
Closes: https://bugs.gentoo.org/930642
Closes: https://bugs.gentoo.org/929275
Signed-off-by: Louis Sautier <sbraz@gentoo.org>
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/supervisor/supervisor-4.2.5-r1.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/app-admin/supervisor/supervisor-4.2.5-r1.ebuild b/app-admin/supervisor/supervisor-4.2.5-r1.ebuild new file mode 100644 index 000000000000..0ec69aee0dc9 --- /dev/null +++ b/app-admin/supervisor/supervisor-4.2.5-r1.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( pypy3 python3_{10..12} ) +# xml.etree.ElementTree module required. +PYTHON_REQ_USE="xml(+)" + +inherit distutils-r1 systemd pypi + +DESCRIPTION="A system for controlling process state under UNIX" +HOMEPAGE="http://supervisord.org/ https://pypi.org/project/supervisor/" + +LICENSE="repoze ZPL BSD HPND GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~riscv ~x86" + +# setuptools is required because the package uses pkg_resources +RDEPEND=" + acct-group/supervisor + dev-python/setuptools[${PYTHON_USEDEP}] +" + +distutils_enable_sphinx docs +distutils_enable_tests pytest + +python_install_all() { + distutils-r1_python_install_all + newinitd "${FILESDIR}/init.d-r2" supervisord + newconfd "${FILESDIR}/conf.d-r1" supervisord + dodoc supervisor/skel/sample.conf + keepdir /etc/supervisord.d + insinto /etc + doins "${FILESDIR}/supervisord.conf" + keepdir /var/log/supervisor + systemd_dounit "${FILESDIR}/supervisord.service" +} + +pkg_preinst() { + fowners :supervisor /var/log/supervisor + fperms 750 /var/log/supervisor +} + +pkg_postinst() { + if [[ -z "${REPLACING_VERSIONS}" ]]; then + # This is a new installation + elog "You may install your configuration files in ${EROOT}/etc/supervisord.d" + elog "For config examples, see ${EROOT}/usr/share/doc/${PF}/sample.conf.bz2" + elog "" + elog "By default, only members of the supervisor group can run supervisorctl." + fi +} |