summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/aws-sdk-cpp/package.py
blob: e6e48d0103c0ab1552e2fccc0a8ca5ba2812755d (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# Copyright 2013-2023 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.package import *


class AwsSdkCpp(CMakePackage):
    """AWS SDK for C++.

    The AWS SDK for C++ provides a modern C++ (version C++ 11 or later) interface for
    Amazon Web Services (AWS). It is meant to be performant and fully functioning with
    low- and high-level SDKs, while minimizing dependencies and providing platform
    portability (Windows, OSX, Linux, and mobile).
    """

    homepage = "https://github.com/aws/aws-sdk-cpp"
    git = "https://github.com/aws/aws-sdk-cpp.git"

    license("Apache-2.0")

    version(
        "1.11.144",
        tag="1.11.144",
        commit="498339d47146f8e3ee9ae0fad3fcda5acbaea1e6",
        submodules=True,
    )
    version(
        "1.10.57",
        tag="1.10.57",
        commit="777e0dd4b90eda8bf65bc4b5fce2f90febdbd2b8",
        submodules=True,
    )
    version(
        "1.10.32",
        tag="1.10.32",
        commit="40594bc05a3f68fe14f2f1a54c5c3e6752b1e290",
        submodules=True,
    )
    version(
        "1.9.379",
        tag="1.9.379",
        commit="94d02db44730b0a5cef98ce33deedf43f5333700",
        submodules=True,
    )
    version(
        "1.9.247",
        tag="1.9.247",
        commit="4bf33aa0172704eb5fc1da8086686670711bd801",
        submodules=True,
    )

    depends_on("cmake@3.1:", type="build")
    depends_on("zlib-api")
    depends_on("curl")

    # https://github.com/aws/aws-sdk-cpp/issues/1816
    patch(
        "https://github.com/aws/aws-sdk-cpp/pull/1937.patch?full_index=1",
        sha256="ba86e0556322604fb4b70e2dd4f4fb874701868b07353fc1d5c329d90777bf45",
        when="@1.9.247",
    )

    def cmake_args(self):
        return [
            self.define("BUILD_ONLY", ("s3", "transfer")),
            self.define("ENABLE_TESTING", False),
            self.define("AUTORUN_UNIT_TESTS", False),
        ]