summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorsknigh <sknigh@sandia.gov>2020-03-03 10:50:20 -0800
committerGitHub <noreply@github.com>2020-03-03 12:50:20 -0600
commitcec341594d5d5a59746cfec72f76ec271b81da2b (patch)
tree1af123bd6d076818b4fcdd62f4b0eff2fb3abaa2 /var
parentfddb3f291cf4c48250a188e4379e48848902f7f0 (diff)
downloadspack-cec341594d5d5a59746cfec72f76ec271b81da2b.tar.gz
spack-cec341594d5d5a59746cfec72f76ec271b81da2b.tar.bz2
spack-cec341594d5d5a59746cfec72f76ec271b81da2b.tar.xz
spack-cec341594d5d5a59746cfec72f76ec271b81da2b.zip
Added UQTk package (#14801)
* added UQTk package * Add missing expat dependency to uqtk
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/uqtk/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/uqtk/package.py b/var/spack/repos/builtin/packages/uqtk/package.py
new file mode 100644
index 0000000000..c6af83e759
--- /dev/null
+++ b/var/spack/repos/builtin/packages/uqtk/package.py
@@ -0,0 +1,20 @@
+# Copyright 2013-2020 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 Uqtk(CMakePackage):
+ """Sandia Uncertainty Quantification Toolkit. The UQ Toolkit (UQTk) is a
+ collection of libraries and tools for the quantification of uncertainty
+ in numerical model predictions"""
+
+ homepage = "https://www.sandia.gov/UQToolkit/"
+ url = "https://github.com/sandialabs/UQTk/archive/v3.0.4.tar.gz"
+ git = "https://github.com/sandialabs/UQTk.git"
+
+ version('master', branch='master')
+ version('3.0.4', sha256='0a72856438134bb571fd328d1d30ce3d0d7aead32eda9b7fb6e436a27d546d2e')
+
+ depends_on('expat')