summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2020-04-23 18:43:12 +0800
committerGitHub <noreply@github.com>2020-04-23 12:43:12 +0200
commitdf2cfd26cd03e29b9898fe79c804c78f2d29cbd0 (patch)
tree4e5a8de12d91448ceb8625bd75302fcc1e5e5e3e
parent19c58438713d2fae596ae61c7747788fb0d46887 (diff)
downloadspack-df2cfd26cd03e29b9898fe79c804c78f2d29cbd0.tar.gz
spack-df2cfd26cd03e29b9898fe79c804c78f2d29cbd0.tar.bz2
spack-df2cfd26cd03e29b9898fe79c804c78f2d29cbd0.tar.xz
spack-df2cfd26cd03e29b9898fe79c804c78f2d29cbd0.zip
ambari: added package at v2.7.5 (#16149)
-rw-r--r--var/spack/repos/builtin/packages/ambari/package.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/ambari/package.py b/var/spack/repos/builtin/packages/ambari/package.py
new file mode 100644
index 0000000000..6e54f0a44e
--- /dev/null
+++ b/var/spack/repos/builtin/packages/ambari/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 Ambari(PythonPackage):
+ """Apache Ambari is a tool for provisioning, managing, and monitoring
+ Apache Hadoop clusters. Ambari consists of a set of RESTful APIs and
+ a browser-based management interface."""
+
+ homepage = "https://cwiki.apache.org/confluence/display/AMBARI/Ambari"
+ url = "https://github.com/apache/ambari/archive/release-2.7.5.tar.gz"
+
+ version('2.7.5', sha256='f8c8687b7a61b633b92f83b1c104fd75b1e13836cd8a0e0df6db7b483b23a354')
+ version('2.7.4', sha256='d6796c7ea913d39c93dad52b4cb74ef411a7dce4ebf68f11b12718117f2c01a4')
+ version('2.7.3', sha256='30fe72e60fa6b62fe032bd193ebd0cef20b65c54b57cad92f6f44daabd3771cf')
+ version('2.7.1', sha256='ea4eb28f377ce9d0b9b7648f2020dda4be974c6d9a22ebaafbf1bc97890e4e42')
+
+ depends_on('python@:2.7.999', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')
+ depends_on('py-mock', type='test')
+ depends_on('py-coilmq', type=('build', 'run'))