From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (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 AA2A9158042 for ; Wed, 30 Oct 2024 21:27:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C87E0E07A9; Wed, 30 Oct 2024 21:27:43 +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 pigeon.gentoo.org (Postfix) with ESMTPS id B2230E07A9 for ; Wed, 30 Oct 2024 21:27:43 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EA461343064 for ; Wed, 30 Oct 2024 21:27:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 89874B4D for ; Wed, 30 Oct 2024 21:27:41 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1730323633.4c81db158e8cd36fdf66dc2152cef783431f90f9.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/daemontools-encore/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/daemontools-encore/daemontools-encore-1.11-r1.ebuild X-VCS-Directories: sys-process/daemontools-encore/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: 4c81db158e8cd36fdf66dc2152cef783431f90f9 X-VCS-Branch: master Date: Wed, 30 Oct 2024 21:27:41 +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: 25c6a10f-6c46-450f-a77c-0a0f638fa577 X-Archives-Hash: 82558d74de9f37710e073d08b6555075 commit: 4c81db158e8cd36fdf66dc2152cef783431f90f9 Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed Oct 30 21:27:13 2024 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed Oct 30 21:27:13 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c81db15 sys-process/daemontools-encore: drop 1.11-r1 Bug: https://bugs.gentoo.org/898852 Signed-off-by: Andreas K. Hüttel gentoo.org> .../daemontools-encore-1.11-r1.ebuild | 57 ---------------------- 1 file changed, 57 deletions(-) diff --git a/sys-process/daemontools-encore/daemontools-encore-1.11-r1.ebuild b/sys-process/daemontools-encore/daemontools-encore-1.11-r1.ebuild deleted file mode 100644 index f81001db81c4..000000000000 --- a/sys-process/daemontools-encore/daemontools-encore-1.11-r1.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit flag-o-matic qmail - -DESCRIPTION="Collection of tools for managing UNIX services" -HOMEPAGE="https://untroubled.org/daemontools-encore/" -SRC_URI="https://untroubled.org/daemontools-encore/${P}.tar.gz" - -LICENSE="GPL-2 MIT" -SLOT="0" -KEYWORDS="amd64 ~loong ~x86" -IUSE="selinux static" - -RDEPEND=" - !app-doc/daemontools-man - !sys-process/daemontools - selinux? ( sec-policy/selinux-daemontools ) -" - -PATCHES=( - "${FILESDIR}"/${PN}-1.11-do-not-always-run-tests.patch - "${FILESDIR}"/${PN}-1.11-add-missing-setuser-man-page.patch - "${FILESDIR}"/${PN}-1.11-implicit-func-decl-clang16.patch -) - -src_compile() { - use static && append-ldflags -static - qmail_set_cc - emake -} - -src_install() { - keepdir /service - - echo "${ED}/usr/bin" > conf-bin || die - echo "${ED}/usr/share/man" > conf-man || die - dodir /usr/bin - dodir /usr/share/man - emake install - - dodoc ChangeLog CHANGES CHANGES.djb README TODO - - newinitd "${FILESDIR}"/svscan.init-2 svscan -} - -pkg_postinst() { - einfo - einfo "You can run daemontools using the svscan init.d script," - einfo "or you could run it through inittab." - einfo "To use inittab, emerge supervise-scripts and run:" - einfo "svscan-add-to-inittab" - einfo "Then you can hup init with the command telinit q" - einfo -}