From: "Louis Sautier" <sbraz@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/supervisor/
Date: Sat, 24 Dec 2022 18:38:46 +0000 (UTC) [thread overview]
Message-ID: <1671906876.c3de54a5703f1cc9977052374e9c7abcc8ccebe4.sbraz@gentoo> (raw)
commit: c3de54a5703f1cc9977052374e9c7abcc8ccebe4
Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 24 18:04:21 2022 +0000
Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
CommitDate: Sat Dec 24 18:34:36 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3de54a5
app-admin/supervisor: add 4.2.5, Python 3.11 support
And switch to DISTUTILS_USE_PEP517.
Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
app-admin/supervisor/Manifest | 1 +
app-admin/supervisor/supervisor-4.2.5.ebuild | 51 ++++++++++++++++++++++++++++
2 files changed, 52 insertions(+)
diff --git a/app-admin/supervisor/Manifest b/app-admin/supervisor/Manifest
index f20cd79a3b38..635d9abb518d 100644
--- a/app-admin/supervisor/Manifest
+++ b/app-admin/supervisor/Manifest
@@ -1,2 +1,3 @@
DIST supervisor-4.2.2.tar.gz 463657 BLAKE2B 766feffcbd70b575b6b7dfd6ed98e3510e0fd9362c423b677d44a2b5dd23ded14a349a279d3d28d4fd9e04a2175c8f00e24c07df310b61d34c7f69f60d26a4ac SHA512 f787206e6c6a5d3dfc4284974a4a87cbcaeac0c705afb2b8eae53f066413bd9e68095c5309e29625e01469a4748613370e1ac0d7be84b9d72c3623244bdd2eb3
DIST supervisor-4.2.4.tar.gz 465151 BLAKE2B 91b99a64950dc874bdc008ba53ca8b1962cc34981fee27c2fd82956d73ace9eaaf91439ef6be40530c4860fe1eee193e19b51ab81050f7368aa7d31f8444c785 SHA512 38c55aeadb8664337b667aad891a3a2134ae4af88e90d636054e6be9aebc8a3ef87d79d15fcafd2b9966af562deeedc96ac3730bde9439dde30208f0a874f2d7
+DIST supervisor-4.2.5.tar.gz 466073 BLAKE2B 54b45c824a1ad2960b04ca4ca9e54337f8c4da1a13008b559103f9efb9043588e72b3ee97c41218eb9252606d717575ad2615d12136047734f83d843d0a63bfa SHA512 ea80c8c91356646deccf20735e065fd9b341f3be6d56838d333989297a912b0a59142338925b2eb08690e038f0617814e03447673701a19093aa483432ce6d41
diff --git a/app-admin/supervisor/supervisor-4.2.5.ebuild b/app-admin/supervisor/supervisor-4.2.5.ebuild
new file mode 100644
index 000000000000..de4148c5f9bd
--- /dev/null
+++ b/app-admin/supervisor/supervisor-4.2.5.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{8..11} )
+# xml.etree.ElementTree module required.
+PYTHON_REQ_USE="xml(+)"
+
+inherit distutils-r1 systemd
+
+DESCRIPTION="A system for controlling process state under UNIX"
+HOMEPAGE="http://supervisord.org/ https://pypi.org/project/supervisor/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="repoze ZPL BSD HPND GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~riscv ~x86"
+
+RDEPEND="acct-group/supervisor"
+
+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
+}
next reply other threads:[~2022-12-24 18:38 UTC|newest]
Thread overview: 51+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-12-24 18:38 Louis Sautier [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-01-30 13:07 [gentoo-commits] repo/gentoo:master commit in: app-admin/supervisor/ Louis Sautier
2025-01-30 13:07 Louis Sautier
2024-05-28 17:01 Sam James
2024-04-29 20:13 Louis Sautier
2024-04-27 6:53 Michał Górny
2023-05-20 6:22 Michał Górny
2023-05-01 0:30 Sam James
2023-05-01 0:16 Sam James
2022-11-01 10:20 Yixun Lan
2021-12-30 23:31 Louis Sautier
2021-12-30 23:31 Louis Sautier
2021-06-03 8:23 Sam James
2021-06-01 11:58 Sam James
2021-05-31 22:24 Louis Sautier
2021-02-27 0:46 Louis Sautier
2020-09-11 23:56 Louis Sautier
2020-08-21 9:20 Louis Sautier
2020-08-11 18:51 Agostino Sarubbo
2020-08-11 14:23 Agostino Sarubbo
2020-05-03 20:07 Louis Sautier
2020-03-01 20:39 Louis Sautier
2020-02-11 12:03 Louis Sautier
2020-02-11 11:09 Agostino Sarubbo
2020-02-11 9:52 Agostino Sarubbo
2020-02-10 12:59 Louis Sautier
2019-07-26 10:21 Louis Sautier
2019-07-17 15:05 Louis Sautier
2019-07-17 15:05 Louis Sautier
2019-05-23 8:24 Louis Sautier
2019-05-23 8:24 Louis Sautier
2019-04-19 11:10 Louis Sautier
2019-04-19 11:10 Louis Sautier
2019-04-10 22:24 Louis Sautier
2019-04-07 0:37 Louis Sautier
2019-04-07 0:37 Louis Sautier
2018-12-23 20:10 Louis Sautier
2018-12-23 20:10 Louis Sautier
2017-07-26 15:31 Michał Górny
2017-07-26 15:31 Michał Górny
2017-07-26 15:31 Michał Górny
2017-06-11 7:19 Michael Palimaka
2017-06-11 7:19 Michael Palimaka
2016-12-02 21:44 Patrice Clement
2016-12-02 21:44 Patrice Clement
2016-10-29 21:17 Michał Górny
2016-10-01 20:15 Patrick Lauer
2016-06-13 9:12 Patrick Lauer
2016-04-03 18:30 Patrick Lauer
2016-03-12 10:02 Patrick Lauer
2016-02-18 9:58 Patrick Lauer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1671906876.c3de54a5703f1cc9977052374e9c7abcc8ccebe4.sbraz@gentoo \
--to=sbraz@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox