- removed dmtcpaware* packages
- updated to version 2.6.0 with following important changes, for
a full chnageglog see the NEWS file.
- changes for version 2.6
* not documented upstream
- changes for version 2.4
* Intensive testing done for integration of MPI/SLURM
* Support for glibc version 2.21 added
* The environment variable DMTCP_GDB_ATTACH_ON_RESTART was added
* DMTCP now supports InfiniBand UD
- changes for version 2.2
* A --exit-after-ckpt flag was added for dmtcp_coordinator.
* Scalability improvements were added. DMTCP has now been tested
on an MPI jobs using 2048 MPI ranks over 2048 CPU cores.
- changes for version 2.1
* plugins have now to use "dmtcp.h" instead of "dmtcpplugin.h"
* attempt to restore current working directory on restart
* 'dmtcp_restart --ckptdir <DIR>' and 'dmtcp_restart_script.sh --ckptdir
<DIR>' will change to a new directory to hold checkpoint images on restart.
* 'dmtcp_restart --no-strict-uid-checking' or 'dmtcp_coordinator
--no-strict-uid-checking'
* a new internal plugin to handle 'ssh' uniformly
OBS-URL: https://build.opensuse.org/request/show/745253
OBS-URL: https://build.opensuse.org/package/show/science/dmtcp?expand=0&rev=6
99 lines
2.9 KiB
RPMSpec
99 lines
2.9 KiB
RPMSpec
#
|
|
# spec file for package dmtcp
|
|
#
|
|
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
# Copyright (c) 2012 Kapil Arya
|
|
#
|
|
# 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: dmtcp
|
|
Version: 2.6.0
|
|
Release: 0
|
|
Summary: Checkpoint/Restart functionality for Linux processes
|
|
License: LGPL-3.0-or-later
|
|
Group: System/Packages
|
|
Url: http://dmtcp.sourceforge.net
|
|
Source0: https://github.com/%{name}/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: gcc
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: glibc-devel
|
|
%if 0%{?suse_version} >= 1100
|
|
BuildRequires: python-base
|
|
%else
|
|
BuildRequires: python
|
|
%endif
|
|
|
|
# This package is functional only on i386 and x86_64 architectures.
|
|
ExclusiveArch: %ix86 x86_64
|
|
|
|
%description
|
|
DMTCP (Distributed MultiThreaded Checkpointing) is a tool to transparently
|
|
checkpointing the state of an arbitrary group of programs including
|
|
multi-threaded and distributed computations. It operates directly on the user
|
|
binary executable, with no Linux kernel modules or other kernel mods.
|
|
|
|
Among the applications supported by DMTCP are OpenMPI, MATLAB, Python, Perl,
|
|
and many programming languages and shell scripting languages. DMTCP also
|
|
supports GNU screen sessions, including vim/cscope and emacs. With the use of
|
|
TightVNC, it can also checkpoint and restart X-Window applications, as long as
|
|
they do not use extensions (e.g.: no OpenGL, no video).
|
|
|
|
This package contains DMTCP binaries.
|
|
%package -n libmtcp-devel
|
|
Summary: MTCP developer package
|
|
Group: Development/Libraries/Other
|
|
Requires: libmtcp1 = %{version}
|
|
|
|
%description -n libmtcp-devel
|
|
This package provides files for developing applications that need to
|
|
interact with MTCP as opposed to DMTCP.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%configure --docdir=%{_docdir}/%{name} --disable-option-checking
|
|
make %{?_smp_mflags}
|
|
|
|
%check
|
|
# disable the test for now as bash is failing with 32-bit when built on 64-bit
|
|
# machine.
|
|
%ifarch %x86_64
|
|
./test/autotest.py --slow
|
|
%endif
|
|
|
|
%install
|
|
%makeinstall
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%{_bindir}/dmtcp_*
|
|
%{_bindir}/mtcp_restart
|
|
%{_mandir}/man1/*
|
|
%{_docdir}/*
|
|
%doc QUICK-START.md NEWS
|
|
%license COPYING
|
|
%if 0%{?suse_verion} > 1210
|
|
%exclude %{_docdir}/%{name}/examples
|
|
%endif
|
|
|
|
%files -n libmtcp-devel
|
|
%defattr(-,root,root,-)
|
|
%{_includedir}/dmtcp.h
|
|
%{_libdir}/%{name}
|
|
|
|
|
|
%changelog
|