summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorValentin Reis <fre@freux.fr>2019-06-20 21:21:44 -0500
committerPeter Scheibel <scheibel1@llnl.gov>2019-06-20 19:21:44 -0700
commite6264030d714ab4a58ba2266711eddfb4ce29fd8 (patch)
treef677c662268a0985125c8d46d4f8accedf17955b /var
parent9b8215ce9db034991e496ce417e8251360699842 (diff)
downloadspack-e6264030d714ab4a58ba2266711eddfb4ce29fd8.tar.gz
spack-e6264030d714ab4a58ba2266711eddfb4ce29fd8.tar.bz2
spack-e6264030d714ab4a58ba2266711eddfb4ce29fd8.tar.xz
spack-e6264030d714ab4a58ba2266711eddfb4ce29fd8.zip
New packages: nrm and libnrm (#11777)
Also add new py-warlock, py-jsonpatch, and py-jsonpointer packages as dependencies of nrm.
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/libnrm/package.py23
-rw-r--r--var/spack/repos/builtin/packages/nrm/package.py26
-rw-r--r--var/spack/repos/builtin/packages/py-jsonpatch/package.py18
-rw-r--r--var/spack/repos/builtin/packages/py-jsonpointer/package.py17
-rw-r--r--var/spack/repos/builtin/packages/py-warlock/package.py20
5 files changed, 104 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libnrm/package.py b/var/spack/repos/builtin/packages/libnrm/package.py
new file mode 100644
index 0000000000..a1ecddccf3
--- /dev/null
+++ b/var/spack/repos/builtin/packages/libnrm/package.py
@@ -0,0 +1,23 @@
+# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+from spack import *
+
+
+class Libnrm(AutotoolsPackage):
+ """Libnrm, the application instrumentation library for the Node
+ Resource Manager(NRM)."""
+
+ homepage = "https://xgitlab.cels.anl.gov/argo/libnrm"
+ url = "https://www.mcs.anl.gov/research/projects/argo/downloads/libnrm-0.1.0.tar.gz"
+ version('0.1.0', '9261a55e58fd6350d9382dd09001cfd4')
+
+ depends_on('m4', type='build')
+ depends_on('autoconf', type='build')
+ depends_on('automake', type='build')
+ depends_on('libtool', type='build')
+
+ depends_on('zeromq')
+ depends_on('mpich')
diff --git a/var/spack/repos/builtin/packages/nrm/package.py b/var/spack/repos/builtin/packages/nrm/package.py
new file mode 100644
index 0000000000..bc4af79457
--- /dev/null
+++ b/var/spack/repos/builtin/packages/nrm/package.py
@@ -0,0 +1,26 @@
+# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+from spack import *
+
+
+class Nrm(PythonPackage):
+ """Node Resource Manager"""
+
+ homepage = "https://xgitlab.cels.anl.gov/argo/nrm"
+ url = "https://www.mcs.anl.gov/research/projects/argo/downloads/nrm-0.1.0.tar.gz"
+ version('0.1.0', '2135baf658355480b515c0989d019758')
+
+ depends_on('py-setuptools', type=('build'))
+
+ depends_on('py-six', type=('build', 'run'))
+ depends_on('py-zmq@17.1.2', type=('build', 'run'))
+ depends_on('py-pyyaml', type=('build', 'run'))
+ depends_on('py-tornado@5.1.1', type=('build', 'run'))
+ depends_on('py-numpy', type=('build', 'run'))
+ depends_on('py-argparse@1.2.1:', type=('build', 'run'))
+ depends_on('py-jsonschema@2.6.0', type=('build', 'run'))
+ depends_on('py-warlock', type=('build', 'run'))
+ depends_on('py-scipy', type=('build', 'run'))
diff --git a/var/spack/repos/builtin/packages/py-jsonpatch/package.py b/var/spack/repos/builtin/packages/py-jsonpatch/package.py
new file mode 100644
index 0000000000..b9e60c9a88
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-jsonpatch/package.py
@@ -0,0 +1,18 @@
+# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+from spack import *
+
+
+class PyJsonpatch(PythonPackage):
+ """Library to apply JSON Patches according to RFC 6902"""
+
+ homepage = "https://github.com/stefankoegl/python-json-patch"
+ url = "https://github.com/stefankoegl/python-json-patch/archive/v1.23.tar.gz"
+
+ version('1.23', sha256='0af03651204ea3049bc4aedaa42b591e134a4ee16e421f9c5f3ac4e9092885ad')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-jsonpointer@1.9', type=('build', 'run'))
diff --git a/var/spack/repos/builtin/packages/py-jsonpointer/package.py b/var/spack/repos/builtin/packages/py-jsonpointer/package.py
new file mode 100644
index 0000000000..9e33b53b0d
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-jsonpointer/package.py
@@ -0,0 +1,17 @@
+# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+from spack import *
+
+
+class PyJsonpointer(PythonPackage):
+ """Library to resolve JSON Pointers according to RFC 6901"""
+
+ homepage = "https://github.com/stefankoegl/python-json-pointer"
+ url = "https://github.com/stefankoegl/python-json-pointer/archive/v2.0.tar.gz"
+
+ version('2.0', sha256='9594b7574a3216c9994181e9db7566a5cafb4ab24956e554f2dba1bb39edecb2')
+
+ depends_on('py-setuptools', type='build')
diff --git a/var/spack/repos/builtin/packages/py-warlock/package.py b/var/spack/repos/builtin/packages/py-warlock/package.py
new file mode 100644
index 0000000000..31f2c307ba
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-warlock/package.py
@@ -0,0 +1,20 @@
+# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+from spack import *
+
+
+class PyWarlock(PythonPackage):
+ """Self-validating Python objects using JSON schema"""
+
+ homepage = "https://github.com/bcwaldon/warlock"
+ url = "https://github.com/bcwaldon/warlock/archive/1.3.3.tar.gz"
+
+ version('1.3.3', sha256='b77e4977d5dc54d47f88cbcc9ab2d716f5f10171d123138785dad96aeb2858d0')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-jsonschema@0.7:3', type=('build', 'run'))
+ depends_on('py-jsonpatch@0.10:1', type=('build', 'run'))
+ depends_on('py-six@1:', type=('build', 'run'))