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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BF4F61382C5 for ; Sun, 25 Apr 2021 18:10:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1C5A1E087F; Sun, 25 Apr 2021 18:10:30 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 03C73E087F for ; Sun, 25 Apr 2021 18:10:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8C25F341486 for ; Sun, 25 Apr 2021 18:10:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EB4E6634 for ; Sun, 25 Apr 2021 18:10:26 +0000 (UTC) From: "Andreas Sturmlechner" 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 Sturmlechner" Message-ID: <1619374210.52f9f253e53d4f0eae46b071c87ff242ff9dfc44.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/shmux/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/shmux/shmux-1.0.2.ebuild X-VCS-Directories: net-misc/shmux/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 52f9f253e53d4f0eae46b071c87ff242ff9dfc44 X-VCS-Branch: master Date: Sun, 25 Apr 2021 18:10:26 +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: 66a30a0c-b589-4808-81c6-1292be9b0d4d X-Archives-Hash: 76b81db6d548f8427baac221459a85f7 commit: 52f9f253e53d4f0eae46b071c87ff242ff9dfc44 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Apr 22 06:37:55 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Apr 25 18:10:10 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52f9f253 net-misc/shmux: Drop 1.0.2 (r0), EAPI5--, overshadowed by 1.0.2-r1 Closes: https://bugs.gentoo.org/783729 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> net-misc/shmux/shmux-1.0.2.ebuild | 38 -------------------------------------- 1 file changed, 38 deletions(-) diff --git a/net-misc/shmux/shmux-1.0.2.ebuild b/net-misc/shmux/shmux-1.0.2.ebuild deleted file mode 100644 index 2d94277728f..00000000000 --- a/net-misc/shmux/shmux-1.0.2.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -inherit autotools epatch - -DESCRIPTION="Program for executing the same command on many hosts in parallel" -HOMEPAGE="http://web.taranis.org/shmux/" -SRC_URI="http://web.taranis.org/${PN}/dist/${P}.tgz" - -LICENSE="shmux" -SLOT="0" -KEYWORDS="amd64 ~ppc x86" -IUSE="pcre" -RESTRICT="test" - -RDEPEND=" - pcre? ( dev-libs/libpcre ) - sys-libs/ncurses -" -DEPEND="${RDEPEND} - virtual/awk" - -src_prepare() { - epatch "${FILESDIR}"/${P}-tinfo.patch - eautoreconf -} - -src_configure() { - econf $(use_with pcre) -} - -src_install() { - dobin src/shmux - doman shmux.1 - dodoc CHANGES -}