Prepare for RPM 4.20 OBS-URL: https://build.opensuse.org/request/show/1153385 OBS-URL: https://build.opensuse.org/package/show/network:cluster:ohpc/prun-ohpc?expand=0&rev=11
60 lines
1.7 KiB
RPMSpec
60 lines
1.7 KiB
RPMSpec
#
|
|
# spec file for package prun-ohpc
|
|
#
|
|
# Copyright (c) 2019 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: prun-ohpc
|
|
Version: 1.2
|
|
Release: 0
|
|
Summary: Convenience utility for parallel job launch
|
|
License: Apache-2.0
|
|
Group: Productivity/Clustering/Computing
|
|
BuildArch: noarch
|
|
URL: https://github.com/openhpc/ohpc
|
|
Source1: prun
|
|
Source2: LICENSE
|
|
Patch1: prun-Add-user-config.patch
|
|
|
|
%description
|
|
prun provides a unified, script-based wrapper for launching parallel jobs
|
|
within a resource manager for a variety of MPI families.
|
|
|
|
%prep
|
|
cp %{S:1} %{S:2} .
|
|
|
|
%patch -P 1 -p0
|
|
|
|
cat <<EOF > ./prunrc
|
|
# Loglvl: 0=error,1=warn,2=info,3=debug
|
|
LOGLEVEL=2
|
|
EOF
|
|
|
|
%build
|
|
|
|
%install
|
|
mkdir -p %{buildroot}%{_bindir}
|
|
install -D -m 0755 prun %{buildroot}%{_bindir}
|
|
install -D -m 0644 prunrc %{buildroot}%{_sysconfdir}/prunrc
|
|
install -D -m 0644 prunrc %{buildroot}%{_sysconfdir}/skel/.prunrc
|
|
|
|
%files
|
|
%license LICENSE
|
|
%{_bindir}/prun
|
|
%config %{_sysconfdir}/prunrc
|
|
%config %{_sysconfdir}/skel/.prunrc
|
|
|
|
%changelog
|