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 5BF94138334 for ; Sat, 5 Oct 2019 08:12:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8AFD1E083D; Sat, 5 Oct 2019 08:12:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 73AAEE083D for ; Sat, 5 Oct 2019 08:12:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 AB01F34B98B for ; Sat, 5 Oct 2019 08:12:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0DAA082A for ; Sat, 5 Oct 2019 08:12:54 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1570262054.6b66d0126ad49d0a608831cf6366496e739061c4.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/shmux/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/shmux/Manifest net-misc/shmux/shmux-1.0.ebuild X-VCS-Directories: net-misc/shmux/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6b66d0126ad49d0a608831cf6366496e739061c4 X-VCS-Branch: master Date: Sat, 5 Oct 2019 08:12:54 +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: ec48b327-5cee-41e9-9f26-8bffb74d7542 X-Archives-Hash: 9efcd21430f6e694143144b8cc931b83 commit: 6b66d0126ad49d0a608831cf6366496e739061c4 Author: Michał Górny gentoo org> AuthorDate: Sat Oct 5 07:54:14 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Oct 5 07:54:14 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b66d012 net-misc/shmux: Drop old (EAPI=0) Signed-off-by: Michał Górny gentoo.org> net-misc/shmux/Manifest | 1 - net-misc/shmux/shmux-1.0.ebuild | 32 -------------------------------- 2 files changed, 33 deletions(-) diff --git a/net-misc/shmux/Manifest b/net-misc/shmux/Manifest index aef05e103fc..0d6da2ec902 100644 --- a/net-misc/shmux/Manifest +++ b/net-misc/shmux/Manifest @@ -1,2 +1 @@ DIST shmux-1.0.2.tgz 110473 BLAKE2B 7dcd08c37d0d8d3ee2dfccc89ee9f2c187c97278ba7adfa8e30bd5b86981d3a4b3513dfc884926000cede0b813a922e121c49db75ca4e0ff4efde2b4b9e6480b SHA512 d114678827d4fc203f0d18b4a4e02f8b56efdf490df0aef32756a020c755b387468a88fea7266249445a862d7ed9374640432e5807fa57bca5a7d559d7e67a8a -DIST shmux-1.0.tgz 81096 BLAKE2B 7f8e34c66ad705576cd76e5c88e5bc7c46122793c4b2366f4d081c5229bc93e16140afad56fa81b5a1b86721fb4cd3fa83a5536ca08dc6c96e3497ae7c75aa80 SHA512 970ba7972f90c99aa201ee9caae904c039da5084d870d621fcbe3b91a86fd979f35665400210105ebc712b6117f0640fc6c2702c901c467491cac860fa4d2181 diff --git a/net-misc/shmux/shmux-1.0.ebuild b/net-misc/shmux/shmux-1.0.ebuild deleted file mode 100644 index 3d92be96227..00000000000 --- a/net-misc/shmux/shmux-1.0.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -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_compile() { - econf $(use_with pcre) || die "econf failed" - emake || die "emake failed" -} - -src_install() { - dobin src/shmux || die "dobin failed" - doman shmux.1 || die "doman failed" - dodoc CHANGES || die "dodoc failed" -}