Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-shells/pdsh: pdsh-2.22.ebuild ChangeLog
Date: Sat, 09 Oct 2010 20:04:34
Message-Id: 20101009195146.E8B012004C@flycatcher.gentoo.org
1 radhermit 10/10/09 19:51:46
2
3 Modified: ChangeLog
4 Added: pdsh-2.22.ebuild
5 Log:
6 Version bump. Remove unused eclasses, add static-libs and test USE flags, add conditional test dependency on dejagnu, remove RESTRICT=test as the tests should pass now, don't apply patch since a newer libltdl is used now, and remove unnecessary die on econf.
7
8 (Portage version: 2.2_rc90/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.18 app-shells/pdsh/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/pdsh/ChangeLog?rev=1.18&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/pdsh/ChangeLog?rev=1.18&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/pdsh/ChangeLog?r1=1.17&r2=1.18
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-shells/pdsh/ChangeLog,v
20 retrieving revision 1.17
21 retrieving revision 1.18
22 diff -u -r1.17 -r1.18
23 --- ChangeLog 22 Apr 2010 17:08:14 -0000 1.17
24 +++ ChangeLog 9 Oct 2010 19:51:46 -0000 1.18
25 @@ -1,6 +1,14 @@
26 # ChangeLog for app-shells/pdsh
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-shells/pdsh/ChangeLog,v 1.17 2010/04/22 17:08:14 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-shells/pdsh/ChangeLog,v 1.18 2010/10/09 19:51:46 radhermit Exp $
30 +
31 +*pdsh-2.22 (09 Oct 2010)
32 +
33 + 09 Oct 2010; Tim Harder <radhermit@g.o> +pdsh-2.22.ebuild:
34 + Version bump. Remove unused eclasses, add static-libs and test USE flags,
35 + add conditional test dependency on dejagnu, remove RESTRICT=test as the
36 + tests should pass now, don't apply patch since a newer libltdl is used
37 + now, and remove unnecessary die on econf.
38
39 22 Apr 2010; Samuli Suominen <ssuominen@g.o> pdsh-2.18-r1.ebuild:
40 amd64 stable wrt #252398
41
42
43
44 1.1 app-shells/pdsh/pdsh-2.22.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/pdsh/pdsh-2.22.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/pdsh/pdsh-2.22.ebuild?rev=1.1&content-type=text/plain
48
49 Index: pdsh-2.22.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-shells/pdsh/pdsh-2.22.ebuild,v 1.1 2010/10/09 19:51:46 radhermit Exp $
54
55 EAPI="2"
56
57 DESCRIPTION="A high-performance, parallel remote shell utility."
58 HOMEPAGE="https://computing.llnl.gov/linux/pdsh.html"
59 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="crypt readline rsh static-libs test"
65
66 RDEPEND="crypt? ( net-misc/openssh )
67 rsh? ( net-misc/netkit-rsh )
68 readline? ( sys-libs/readline )"
69 DEPEND="${RDEPEND}
70 test? ( dev-util/dejagnu )"
71
72 pkg_setup() {
73 local m
74 local valid_modules=":xcpu:ssh:exec:qshell:genders:nodeupdown:mrsh:mqshell:dshgroups:netgroup:"
75
76 PDSH_MODULE_LIST="${PDSH_MODULE_LIST:-netgroup}"
77 MODULE_CONFIG=""
78 for m in ${PDSH_MODULE_LIST}; do
79 if [[ "${valid_modules}" == *:${m}:* ]]; then
80 MODULE_CONFIG="${MODULE_CONFIG} --with-${m}"
81 fi
82 done
83
84 elog "Building ${PF} with the following modules:"
85 elog " ${PDSH_MODULE_LIST}"
86 elog "This list can be changed in /etc/make.conf by setting"
87 elog "PDSH_MODULE_LIST=\"module1 module2...\""
88 }
89
90 src_configure() {
91 econf ${MODULE_CONFIG} \
92 --with-machines \
93 --enable-shared \
94 $(use_with crypt ssh) \
95 $(use_with rsh) \
96 $(use_with readline) \
97 $(use_enable static-libs static)
98 }
99
100 src_install() {
101 emake DESTDIR="${D}" install || die "emake install failed"
102 }