diff options
author | darmac <darmac@163.com> | 2019-12-19 01:29:48 +0800 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2019-12-18 11:29:48 -0600 |
commit | 5a1b6e1cfc167eece90c01f9872a6ca99f4b6ede (patch) | |
tree | 807e27b995250a3dd0733351d315f85b408d70d2 | |
parent | 6e12c49c28598de591d178c2769815c53c1389cf (diff) | |
download | spack-5a1b6e1cfc167eece90c01f9872a6ca99f4b6ede.tar.gz spack-5a1b6e1cfc167eece90c01f9872a6ca99f4b6ede.tar.bz2 spack-5a1b6e1cfc167eece90c01f9872a6ca99f4b6ede.tar.xz spack-5a1b6e1cfc167eece90c01f9872a6ca99f4b6ede.zip |
add new package : hama (#14159)
* add new package : hama
* mv hama/hama/package.py to hama/package.py
-rw-r--r-- | var/spack/repos/builtin/packages/hama/package.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/hama/package.py b/var/spack/repos/builtin/packages/hama/package.py new file mode 100644 index 0000000000..78d7363803 --- /dev/null +++ b/var/spack/repos/builtin/packages/hama/package.py @@ -0,0 +1,22 @@ +# 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 Hama(Package): + """ + Apache Hama is a framework for Big Data analytics which uses the Bulk + Synchronous Parallel (BSP) computing model, which was established in + 2012 as a Top-Level Project of The Apache Software Foundation. + """ + + homepage = "https://www-eu.apache.org" + url = "https://www-eu.apache.org/dist/hama/hama-0.7.1/hama-dist-0.7.1.tar.gz" + + version('0.7.1', sha256='c7466c2a70a949609a501e868f6a288b7142725c407e24649ea6f7121632bc89') + + def install(self, spec, prefix): + install_tree('.', prefix) |