summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2020-10-12 22:20:35 +0800
committerGitHub <noreply@github.com>2020-10-12 16:20:35 +0200
commitc2517a31bfa6d847f0b4eb591372d94cac1ed54e (patch)
tree80f5e177a78e339d76d9a9f2f3a65eb6338671d9
parent89cd3cfdb7ffed58df9c99976f115a7bc2fc350d (diff)
downloadspack-c2517a31bfa6d847f0b4eb591372d94cac1ed54e.tar.gz
spack-c2517a31bfa6d847f0b4eb591372d94cac1ed54e.tar.bz2
spack-c2517a31bfa6d847f0b4eb591372d94cac1ed54e.tar.xz
spack-c2517a31bfa6d847f0b4eb591372d94cac1ed54e.zip
openwsman: added new package at v2.7.0 (#19009)
-rw-r--r--var/spack/repos/builtin/packages/openwsman/package.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/openwsman/package.py b/var/spack/repos/builtin/packages/openwsman/package.py
new file mode 100644
index 0000000000..c355e2627f
--- /dev/null
+++ b/var/spack/repos/builtin/packages/openwsman/package.py
@@ -0,0 +1,25 @@
+# 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 Openwsman(CMakePackage):
+ """Openwsman server implementation and client api with bindings."""
+
+ homepage = "https://github.com/Openwsman/openwsman"
+ url = "https://github.com/Openwsman/openwsman/archive/v2.6.11.tar.gz"
+
+ version('2.7.0', sha256='8870c4a21cbaba9387ad38c37667e2cee29008faacaaf7eb18ad2061e2fc89a1')
+ version('2.6.11', sha256='895eaaae62925f9416766ea3e71a5368210e6cfe13b23e4e0422fa0e75c2541c')
+ version('2.6.10', sha256='d3c624a03d7bc1835544ce1af56efd010f77cbee0c02b34e0755aa9c9b2c317b')
+
+ depends_on('python@3:', type='build')
+ depends_on('curl')
+ depends_on('libxml2')
+ depends_on('sblim-sfcc')
+
+ def cmake_args(self):
+ return ['-DBUILD_PYTHON=OFF', '-DUSE_PAM=NO']