Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/pdsh/
Date: Sat, 26 May 2018 20:31:40
Message-Id: 1527366686.80bdc3c593f7e3a4f881993ce5f329c4ef10bf7a.bman@gentoo
1 commit: 80bdc3c593f7e3a4f881993ce5f329c4ef10bf7a
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 26 18:52:21 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sat May 26 20:31:26 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80bdc3c5
7
8 app-shells/pdsh: drop EAPI=2
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 app-shells/pdsh/pdsh-2.26.ebuild | 51 ----------------------------------------
13 1 file changed, 51 deletions(-)
14
15 diff --git a/app-shells/pdsh/pdsh-2.26.ebuild b/app-shells/pdsh/pdsh-2.26.ebuild
16 deleted file mode 100644
17 index e67fe3b5f24..00000000000
18 --- a/app-shells/pdsh/pdsh-2.26.ebuild
19 +++ /dev/null
20 @@ -1,51 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI="2"
25 -
26 -DESCRIPTION="A high-performance, parallel remote shell utility"
27 -HOMEPAGE="https://computing.llnl.gov/linux/pdsh.html"
28 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
29 -
30 -LICENSE="GPL-2"
31 -SLOT="0"
32 -KEYWORDS="~amd64 ~x86"
33 -IUSE="crypt readline rsh static-libs test"
34 -
35 -RDEPEND="crypt? ( net-misc/openssh )
36 - rsh? ( net-misc/netkit-rsh )
37 - readline? ( sys-libs/readline )"
38 -DEPEND="${RDEPEND}
39 - test? ( dev-util/dejagnu )"
40 -
41 -pkg_setup() {
42 - local m
43 - local valid_modules=":xcpu:ssh:exec:qshell:genders:nodeupdown:mrsh:mqshell:dshgroups:netgroup:"
44 -
45 - PDSH_MODULE_LIST="${PDSH_MODULE_LIST:-netgroup}"
46 - MODULE_CONFIG=""
47 - for m in ${PDSH_MODULE_LIST}; do
48 - if [[ "${valid_modules}" == *:${m}:* ]]; then
49 - MODULE_CONFIG="${MODULE_CONFIG} --with-${m}"
50 - fi
51 - done
52 -
53 - elog "Building ${PF} with the following modules:"
54 - elog " ${PDSH_MODULE_LIST}"
55 - elog "This list can be changed in /etc/portage/make.conf by setting"
56 - elog "PDSH_MODULE_LIST=\"module1 module2...\""
57 -}
58 -
59 -src_configure() {
60 - econf ${MODULE_CONFIG} \
61 - --with-machines \
62 - --enable-shared \
63 - $(use_with crypt ssh) \
64 - $(use_with rsh) \
65 - $(use_with readline) \
66 - $(use_enable static-libs static)
67 -}
68 -
69 -src_install() {
70 - emake DESTDIR="${D}" install || die "emake install failed"
71 -}