summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMario Melara <maamelara@gmail.com>2018-07-26 07:47:55 -0700
committerAdam J. Stewart <ajstewart426@gmail.com>2018-07-26 09:47:55 -0500
commitcb410b30031e8034636e1a532cacaf66d733ff7a (patch)
tree767f6a6d0fe1f17c55c4c81689bc4751d42e277d
parentd5957f147b6c8e7bc218b38efea435eff5d529af (diff)
downloadspack-cb410b30031e8034636e1a532cacaf66d733ff7a.tar.gz
spack-cb410b30031e8034636e1a532cacaf66d733ff7a.tar.bz2
spack-cb410b30031e8034636e1a532cacaf66d733ff7a.tar.xz
spack-cb410b30031e8034636e1a532cacaf66d733ff7a.zip
Add package DMTCP (#8808)
-rw-r--r--var/spack/repos/builtin/packages/dmtcp/package.py36
1 files changed, 36 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/dmtcp/package.py b/var/spack/repos/builtin/packages/dmtcp/package.py
new file mode 100644
index 0000000000..9ec0932f0e
--- /dev/null
+++ b/var/spack/repos/builtin/packages/dmtcp/package.py
@@ -0,0 +1,36 @@
+##############################################################################
+# Copyright (c) 2013-2018, Lawrence Livermore National Security, LLC.
+# Produced at the Lawrence Livermore National Laboratory.
+#
+# This file is part of Spack.
+# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
+# LLNL-CODE-647188
+#
+# For details, see https://github.com/spack/spack
+# Please also see the NOTICE and LICENSE files for our notice and the LGPL.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License (as
+# published by the Free Software Foundation) version 2.1, February 1999.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
+# conditions of the GNU Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+##############################################################################
+from spack import *
+
+
+class Dmtcp(AutotoolsPackage):
+ """DMTCP (Distributed MultiThreaded Checkpointing) transparently
+ checkpoints a single-host or distributed computation in user-space --
+ with no modifications to user code or to the O/S."""
+
+ homepage = "http://dmtcp.sourceforge.net/"
+ url = "https://sourceforge.net/projects/dmtcp/files/2.5.2/dmtcp-2.5.2.tar.gz/download"
+
+ version('2.5.2', sha256='0e3e5e15bd401b7b6937f2b678cd7d6a252eab0a143d5740b89cc3bebb4282be')