diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-01-09 20:06:48 +0800 |
---|---|---|
committer | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2020-01-09 13:06:48 +0100 |
commit | 9ae80a56a3247e8b930b7efe85996b4118916adb (patch) | |
tree | ebba08fb922adb62b253ae5026cd9df5790510a9 /var | |
parent | 592a144febc1444a07d750ee29bfb92ba60dac5b (diff) | |
download | spack-9ae80a56a3247e8b930b7efe85996b4118916adb.tar.gz spack-9ae80a56a3247e8b930b7efe85996b4118916adb.tar.bz2 spack-9ae80a56a3247e8b930b7efe85996b4118916adb.tar.xz spack-9ae80a56a3247e8b930b7efe85996b4118916adb.zip |
storm: new package (#14437)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/storm/package.py | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/storm/package.py b/var/spack/repos/builtin/packages/storm/package.py new file mode 100644 index 0000000000..a4da7325cd --- /dev/null +++ b/var/spack/repos/builtin/packages/storm/package.py @@ -0,0 +1,28 @@ +# 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 Storm(Package): + """ + Storm is a distributed realtime computation system. Similar to how + Hadoop provides a set of general primitives for doing batch processing, + Storm provides a set of general primitives for doing realtime computation. + """ + + homepage = "https://www-eu.apache.org/dist/storm" + url = "https://www-eu.apache.org/dist/storm/apache-storm-2.1.0/apache-storm-2.1.0.tar.gz" + url_list = homepage + list_depth = 2 + + version('2.1.0', sha256='e279a495dda42af7d9051543989f74a1435a5bda53e795a1de4a1def32027fc4') + version('2.0.0', sha256='0a4a6f985242a99f899a01bd01dacf9365f381e2acc473caa84073fbe84f6703') + version('1.2.3', sha256='d45322253db06353a521284f31b30bd964dab859f3a279a305bd79112803425a') + + depends_on('java', type='run') + + def install(self, spec, prefix): + install_tree('.', prefix) |