Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/shmux/
Date: Sun, 25 Apr 2021 18:10:30
Message-Id: 1619374210.52f9f253e53d4f0eae46b071c87ff242ff9dfc44.asturm@gentoo
1 commit: 52f9f253e53d4f0eae46b071c87ff242ff9dfc44
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 22 06:37:55 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 25 18:10:10 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52f9f253
7
8 net-misc/shmux: Drop 1.0.2 (r0), EAPI5--, overshadowed by 1.0.2-r1
9
10 Closes: https://bugs.gentoo.org/783729
11 Package-Manager: Portage-3.0.18, Repoman-3.0.3
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 net-misc/shmux/shmux-1.0.2.ebuild | 38 --------------------------------------
15 1 file changed, 38 deletions(-)
16
17 diff --git a/net-misc/shmux/shmux-1.0.2.ebuild b/net-misc/shmux/shmux-1.0.2.ebuild
18 deleted file mode 100644
19 index 2d94277728f..00000000000
20 --- a/net-misc/shmux/shmux-1.0.2.ebuild
21 +++ /dev/null
22 @@ -1,38 +0,0 @@
23 -# Copyright 1999-2021 Gentoo Authors
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI="5"
27 -
28 -inherit autotools epatch
29 -
30 -DESCRIPTION="Program for executing the same command on many hosts in parallel"
31 -HOMEPAGE="http://web.taranis.org/shmux/"
32 -SRC_URI="http://web.taranis.org/${PN}/dist/${P}.tgz"
33 -
34 -LICENSE="shmux"
35 -SLOT="0"
36 -KEYWORDS="amd64 ~ppc x86"
37 -IUSE="pcre"
38 -RESTRICT="test"
39 -
40 -RDEPEND="
41 - pcre? ( dev-libs/libpcre )
42 - sys-libs/ncurses
43 -"
44 -DEPEND="${RDEPEND}
45 - virtual/awk"
46 -
47 -src_prepare() {
48 - epatch "${FILESDIR}"/${P}-tinfo.patch
49 - eautoreconf
50 -}
51 -
52 -src_configure() {
53 - econf $(use_with pcre)
54 -}
55 -
56 -src_install() {
57 - dobin src/shmux
58 - doman shmux.1
59 - dodoc CHANGES
60 -}