Add new package: giraph (#17790)
* Add new package: giraph * refine version check
This commit is contained in:
parent
ce7aefbb4f
commit
0cc2377de6
34
var/spack/repos/builtin/packages/giraph/package.py
Normal file
34
var/spack/repos/builtin/packages/giraph/package.py
Normal file
@ -0,0 +1,34 @@
|
||||
# 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 Giraph(Package):
|
||||
"""Apache Giraph is an iterative graph processing system built
|
||||
for high scalability."""
|
||||
|
||||
homepage = "https://giraph.apache.org/"
|
||||
url = "https://downloads.apache.org/giraph/giraph-1.0.0/giraph-dist-1.0.0-src.tar.gz"
|
||||
list_url = "https://downloads.apache.org/giraph/"
|
||||
list_depth = 1
|
||||
|
||||
version('1.2.0', sha256='6206f4ad220ea42aa0c4abecce343e36026cf9c6e0a2853f1eb08543da452ad1')
|
||||
version('1.1.0', sha256='181d94b8198c0f312d4611e24b0056b5181c8358a7ec89b0393661736cd19a4c')
|
||||
|
||||
depends_on('maven', type='build')
|
||||
depends_on('java@8', type=('build', 'run'))
|
||||
|
||||
def install(self, spec, prefix):
|
||||
mvn = which('mvn')
|
||||
mvn('clean', 'package', '-DskipTests')
|
||||
giraph_path = join_path(self.stage.source_path,
|
||||
'giraph-dist', 'target',
|
||||
'giraph-{0}-for-hadoop-1.2.1-bin'
|
||||
.format(spec.version),
|
||||
'giraph-{0}-for-hadoop-1.2.1'
|
||||
.format(spec.version))
|
||||
with working_dir(giraph_path):
|
||||
install_tree('.', prefix)
|
Loading…
Reference in New Issue
Block a user