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 723601581B9 for ; Wed, 01 Oct 2025 13:32:54 +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) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 5C878340F20 for ; Wed, 01 Oct 2025 13:32:54 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 752A9110574; Wed, 01 Oct 2025 13:32:46 +0000 (UTC) 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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 6BBD0110574 for ; Wed, 01 Oct 2025 13:32:46 +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) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 27FEA340F38 for ; Wed, 01 Oct 2025 13:32:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BC9B43A6C for ; Wed, 01 Oct 2025 13:32:44 +0000 (UTC) From: "Petr Vaněk" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Petr Vaněk" Message-ID: <1759325509.6e3b16bf2acc09ce9644024fb1d2deb0cd5808fb.arkamar@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/daemonize/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/daemonize/daemonize-1.7.8-r1.ebuild X-VCS-Directories: sys-apps/daemonize/ X-VCS-Committer: arkamar X-VCS-Committer-Name: Petr Vaněk X-VCS-Revision: 6e3b16bf2acc09ce9644024fb1d2deb0cd5808fb X-VCS-Branch: master Date: Wed, 01 Oct 2025 13:32:44 +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: 452826f7-9d0e-4cb0-90a5-2a60bf828296 X-Archives-Hash: 5b82d318106776bd01875f862994bdfb commit: 6e3b16bf2acc09ce9644024fb1d2deb0cd5808fb Author: Petr Vaněk gentoo org> AuthorDate: Wed Oct 1 13:22:38 2025 +0000 Commit: Petr Vaněk gentoo org> CommitDate: Wed Oct 1 13:31:49 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e3b16bf sys-apps/daemonize: drop 1.7.8-r1 Signed-off-by: Petr Vaněk gentoo.org> sys-apps/daemonize/daemonize-1.7.8-r1.ebuild | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/sys-apps/daemonize/daemonize-1.7.8-r1.ebuild b/sys-apps/daemonize/daemonize-1.7.8-r1.ebuild deleted file mode 100644 index 203dc8882ed2..000000000000 --- a/sys-apps/daemonize/daemonize-1.7.8-r1.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Runs a command as a Unix daemon" -HOMEPAGE="https://software.clapper.org/daemonize/" -SRC_URI="https://github.com/bmc/${PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${PN}-release-${PV}" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86" - -DOCS=( {CHANGELOG,README}.md ) - -src_prepare() { - default - sed -i \ - -e 's:\($(CC)\) $(CFLAGS) \(.*\.o\):\1 $(LDFLAGS) \2:' \ - Makefile.in || die -}