summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/foundationdb/package.py
blob: 5d1cd06fbf63701253c568e04b6eb0d66d482328 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# 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 *
from spack.pkg.builtin.boost import Boost


class Foundationdb(CMakePackage):
    """FoundationDB is a distributed database designed to handle large
    volumes of structured data across clusters of commodity servers.
    It organizes data as an ordered key-value store and employs ACID
    transactions for all operations."""

    homepage = "https://www.foundationdb.org/"
    url      = "https://github.com/apple/foundationdb/archive/6.3.3.tar.gz"

    version('6.3.4',  sha256='80a3d7f005b42e7b63abd27728f4d7f4088eea65aafb6942424c97a704b60fd4')
    version('6.3.3',  sha256='1fd46c2281ea283d17fc5044c57a3dbef371a3ed31733abf38610c459a4ed79d')
    version('6.3.2',  sha256='e930510937f8db3aba73262494eedcafb75cd3f523a8b5cd8254250af5da6086')
    version('6.3.1',  sha256='1162cf93f72c809fa43f0ec6722b01169a9522ec5de95aa52a76b485009a3c95')
    version('6.3.0',  sha256='307f99014fe0bb8fbb05399c303f5a7a5007ceee207810857a7b5e6a7df7c8e8')
    version('6.2.24', sha256='9225316e43691ff344224824384acfdf16ff2aac5468d6d810e38846051d5db8')

    depends_on('cmake@3.13.0:', type='build')
    depends_on('mono')

    # TODO: replace this with an explicit list of components of Boost,
    # for instance depends_on('boost +filesystem')
    # See https://github.com/spack/spack/pull/22303 for reference
    depends_on(Boost.with_default_variants)
    generator = 'Ninja'
    depends_on('ninja', type='build')

    def cmake_args(self):
        args = ['-DUSE_WERROR=ON']
        return args

    def install(self, spec, prefix):
        with working_dir(self.build_directory):
            ninja('install')
            install('fdb.cluster', prefix.bin)