2024-01-02 16:21:30 +08:00
|
|
|
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
|
2020-04-21 04:59:16 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
|
|
|
2022-05-29 00:55:44 +08:00
|
|
|
from spack.package import *
|
|
|
|
|
|
|
|
|
2020-09-04 06:30:39 +08:00
|
|
|
class Accumulo(MavenPackage):
|
2020-04-21 04:59:16 +08:00
|
|
|
"""Apache Accumulo is a sorted, distributed key/value store that
|
|
|
|
provides robust, scalable data storage and retrieval."""
|
|
|
|
|
|
|
|
homepage = "https://accumulo.apache.org/"
|
2022-07-31 06:19:18 +08:00
|
|
|
url = "https://github.com/apache/accumulo/archive/rel/2.0.1.tar.gz"
|
2020-04-21 04:59:16 +08:00
|
|
|
|
2023-12-23 03:29:11 +08:00
|
|
|
license("Apache-2.0")
|
|
|
|
|
2022-07-31 06:19:18 +08:00
|
|
|
version("2.0.1", sha256="2756ac14e850b30ad9bd1043418d621b93307d083f84904cd8fac5c8beec751b")
|
|
|
|
version("2.0.0", sha256="2564056dc24398aa464763c21bae10ef09356fe3261600d27744071cf965c265")
|
|
|
|
version("1.9.3", sha256="d9548d5b9cf9f494f027f0fe59d5d6d45d09064359d7761cade62991ce2a5d0c")
|
|
|
|
version("1.9.2", sha256="11ab028143ad6313cd5fc701b36b4c35e46a4a3fa2ce663869860b9f6bf5ee4d")
|
2020-04-21 04:59:16 +08:00
|
|
|
|
2022-07-31 06:19:18 +08:00
|
|
|
depends_on("java@8:", type=("build", "run"))
|
|
|
|
depends_on("maven@3.5.0:", type="build")
|