From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5CF951580E0 for ; Thu, 30 Jan 2025 13:07:26 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 43D7B3430D7 for ; Thu, 30 Jan 2025 13:07:26 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 4B9A711046F; Thu, 30 Jan 2025 13:07:22 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 46C2911046F for ; Thu, 30 Jan 2025 13:07:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E70933430C5 for ; Thu, 30 Jan 2025 13:07:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 50AE6230A for ; Thu, 30 Jan 2025 13:07:20 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1738242387.4647debec5362d717660ca1f0a0f34564e39adce.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/supervisor/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/supervisor/supervisor-4.2.5.ebuild X-VCS-Directories: app-admin/supervisor/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: 4647debec5362d717660ca1f0a0f34564e39adce X-VCS-Branch: master Date: Thu, 30 Jan 2025 13:07:20 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0b7cd1f1-cde9-486b-a1da-367d9e9661e9 X-Archives-Hash: 0463d668f7f9c25b534f3ee16f1bf738 commit: 4647debec5362d717660ca1f0a0f34564e39adce Author: Nicolas PARLANT parhuet fr> AuthorDate: Fri Jan 17 09:44:51 2025 +0000 Commit: Louis Sautier gentoo org> CommitDate: Thu Jan 30 13:06:27 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4647debe app-admin/supervisor: drop 4.2.5 Signed-off-by: Nicolas PARLANT parhuet.fr> Closes: https://github.com/gentoo/gentoo/pull/40173 Signed-off-by: Louis Sautier gentoo.org> app-admin/supervisor/supervisor-4.2.5.ebuild | 50 ---------------------------- 1 file changed, 50 deletions(-) diff --git a/app-admin/supervisor/supervisor-4.2.5.ebuild b/app-admin/supervisor/supervisor-4.2.5.ebuild deleted file mode 100644 index 4ff555fe8f00..000000000000 --- a/app-admin/supervisor/supervisor-4.2.5.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# 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_{9..11} ) -# 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" - -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 -}