summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/ignite/package.py
blob: e8c2b2cb3698e24010eee3f7091a2fc080938f50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Copyright 2013-2022 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 Ignite(Package):
    """
    Apache Ignite is a memory-centric distributed database, caching, and
    processing platform for transactional, analytical, and streaming
    workloads delivering in-memory speeds at petabyte scale.
    """

    homepage = "https://ignite.apache.org/"
    url      = "https://archive.apache.org/dist/ignite/2.6.0/apache-ignite-hadoop-2.6.0-bin.zip"

    version('2.6.0', sha256='be40350f301a308a0ab09413a130d421730bf253d200e054b82a7d0c275c69f2')
    version('2.5.0', sha256='00bd35b6c50754325b966d50c7eee7067e0558f3d52b3dee27aff981b6da38be')
    version('2.4.0', sha256='3d4f44fbb1c46731cf6ad4acce26da72960b292b307221cec55057b4f305abd9')
    version('2.3.0', sha256='aae162c3df243592f7baa0d63b9bf60a7bdb00c7198f43e75b0a777a6fe5b639')
    version('2.2.0', sha256='e4c150f59b11e14fdf4f663cf6f2c433dd55c17720221c89f3c67b9868177bd3')

    depends_on('java', type='run')

    def install(self, spec, prefix):
        install_tree('.', prefix)