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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B86C815801B for ; Sat, 8 Apr 2023 17:58:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0AD6FE0805; Sat, 8 Apr 2023 17:58:24 +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 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E320DE0805 for ; Sat, 8 Apr 2023 17:58:23 +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 F202A34116A for ; Sat, 8 Apr 2023 17:58:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 888DFA15 for ; Sat, 8 Apr 2023 17:58:21 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1680976681.e1963a4e0c19fa980112be7ac7ef6ede4355d23c.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/wait_on_pid/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/wait_on_pid/wait_on_pid-0.0.2-r1.ebuild X-VCS-Directories: sys-process/wait_on_pid/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: e1963a4e0c19fa980112be7ac7ef6ede4355d23c X-VCS-Branch: master Date: Sat, 8 Apr 2023 17:58:21 +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: dae9b0df-c8f2-40ab-9f81-27ad580b84af X-Archives-Hash: 1938a8bef4c9ed3489acb73f4d79303a commit: e1963a4e0c19fa980112be7ac7ef6ede4355d23c Author: Arthur Zamarin gentoo org> AuthorDate: Sat Apr 8 17:58:01 2023 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sat Apr 8 17:58:01 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1963a4e sys-process/wait_on_pid: drop 0.0.2-r1 (EAPI=6) Signed-off-by: Arthur Zamarin gentoo.org> .../wait_on_pid/wait_on_pid-0.0.2-r1.ebuild | 28 ---------------------- 1 file changed, 28 deletions(-) diff --git a/sys-process/wait_on_pid/wait_on_pid-0.0.2-r1.ebuild b/sys-process/wait_on_pid/wait_on_pid-0.0.2-r1.ebuild deleted file mode 100644 index acaf4578f147..000000000000 --- a/sys-process/wait_on_pid/wait_on_pid-0.0.2-r1.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -inherit toolchain-funcs - -DESCRIPTION="small utility to wait for an arbitrary process to exit" -HOMEPAGE="https://dev.gentoo.org/~zzam/wait_on_pid/" -SRC_URI="mirror://gentoo/${P}.tar.bz2 https://dev.gentoo.org/~zzam/${PN}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~ppc ~riscv x86 ~amd64-linux ~x86-linux" -IUSE="" - -DEPEND="" -RDEPEND="" - -src_prepare() { - default - tc-export CC -} - -src_install() { - default - dobin wait_on_pid -}