File pdsh.spec of Package pdsh
#
# spec file for package pdsh
#
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
#
%if 0%{!?sle_version:1} || 0%{?sle_version} >= 120300 || (0%{!?is_opensuse:1} && 0%{?sle_version} >= 120200)
%define have_munge 1
%define have_slurm 1
%define have_genders 1
%endif
Name: pdsh
BuildRequires: dejagnu
BuildRequires: openssh
BuildRequires: readline-devel
%if 0%{?have_slurm}
BuildRequires: slurm-devel
%endif
%if 0%{?have_munge}
BuildRequires: munge-devel
%endif
BuildRequires: pam-devel
Recommends: mrsh
%if 0%{?have_genders}
BuildRequires: genders-devel > 1.0
%endif
Url: http://pdsh.googlecode.com/
Version: 2.33
Release: 0
Summary: Parallel remote shell program
# git clone of https://code.google.com/p/pdsh/
License: GPL-2.0+
Group: Productivity/Clustering/Computing
Source: https://github.com/chaos/%{name}/releases/download/%{name}-%{version}/%{name}-%{version}.tar.gz
Patch1: pdsh-exclude-slurm-list-namespace.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Prereq:
# Set this to 1 to build with genders support and framework for
# running Elan jobs.
%define chaos 0
%description
Pdsh is a multithreaded remote shell client which executes commands on
multiple remote hosts in parallel. Pdsh can use several different
remote shell services, including Kerberos IV and ssh.
%if 0%{?have_slurm}
%package slurm
Summary: SLURM plugin for pdsh
Group: Productivity/Clustering/Computing
Requires: pdsh = %{version}
Enhances: slurm
%description slurm
Plugin for pdsh to determine nodes to run on by SLURM jobs or partitions.
%endif
%if 0%{?have_genders}
%package genders
Summary: Genders plugin for pdsh
Group: Productivity/Clustering/Computing
Requires: pdsh = %{version}
Conflicts: pdsh-netgroup
Conflicts: pdsh-dshgroup
Conflicts: pdsh-machines
%description genders
Plugin for pdsh to determine nodes to run on by genders attributes.
%endif
%package machines
Summary: Machines plugin for pdsh
Group: Productivity/Clustering/Computing
Requires: pdsh = %{version}
Conflicts: pdsh-genders
%description machines
Plugin for pdsh to determine nodes to run on from machines file.
%package dshgroup
Summary: Dsh plugin for pdsh
Group: Productivity/Clustering/Computing
Requires: pdsh = %{version}
Conflicts: pdsh-genders
Conflicts: pdsh-netgroup
%description dshgroup
Plugin for pdsh to determine nodes from dsh-style "group" files
%package netgroup
Summary: Netgroup plugin for pdsh
Group: Productivity/Clustering/Computing
Requires: pdsh = %{version}
Conflicts: pdsh-genders
Conflicts: pdsh-dshgroup
%description netgroup
Plugin for pdsh to determine nodes to run on from netgroups.
%prep
%setup -q
%patch1 -p1
%build
export CFLAGS="%{optflags} -fno-strict-aliasing"
%configure \
--with-readline \
--with-machines=/etc/pdsh/machines \
--with-ssh \
--with-dshgroups \
--with-netgroup \
--with-rcmd-rank-list="ssh %{?have_munge:mrsh} krb4 qsh mqsh exec xcpu" \
--with-pam \
--with-exec \
%{?have_genders:--with-genders} \
%{?have_munge:--with-mrsh} \
%{?have_slurm:--with-slurm} \
--without-rsh \
--disable-static
make
%install
%make_install
rm -f %buildroot/%_libdir/pdsh/*.la
%files
%defattr(-,root,root)
%doc README DISCLAIMER.* README.* NEWS COPYING TODO
%attr(755, root, root) /usr/bin/pdsh
%attr(755, root, root) /usr/bin/pdcp
/usr/bin/dshbak
/usr/bin/rpdcp
%{_mandir}/man1/pdsh.1.gz
%{_mandir}/man1/pdcp.1.gz
%{_mandir}/man1/dshbak.1.gz
%{_mandir}/man1/rpdcp.1.gz
%_libdir/pdsh
%{?have_genders:%exclude %_libdir/pdsh/genders.so}
%{?have_slurm:%exclude %_libdir/pdsh/slurm.so}
%exclude %_libdir/pdsh/machines.so
%exclude %_libdir/pdsh/dshgroup.so
%exclude %_libdir/pdsh/netgroup.so
%if 0%{?have_slurm}
%files slurm
%defattr(-,root,root)
%_libdir/pdsh/slurm.so
%endif
%if 0%{?have_genders}
%files genders
%defattr(-,root,root)
%_libdir/pdsh/genders.so
%endif
%files machines
%defattr(-,root,root)
%_libdir/pdsh/machines.so
%files dshgroup
%defattr(-,root,root)
%_libdir/pdsh/dshgroup.so
%files netgroup
%defattr(-,root,root)
%_libdir/pdsh/netgroup.so
%changelog