summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/garply/package.py
blob: 8070a09f1af1579b94f7fd47591ccf96db4af734 (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
# 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)


import os
import sys

from spack.package import *


class Garply(Package):
    """Toy package for testing dependencies"""

    homepage = "https://www.example.com"
    has_code = False
    version("3.0.0")

    def install(self, spec, prefix):
        garply_h = """#ifndef GARPLY_H_

class Garply
{
private:
    static const int version_major;
    static const int version_minor;

public:
    Garply();
    int get_version() const;
    int garplinate() const;
};

#endif // GARPLY_H_
"""
        garply_cc = """#include "garply.h"
#include "garply_version.h"
#include <iostream>

const int Garply::version_major = garply_version_major;
const int Garply::version_minor = garply_version_minor;

Garply::Garply() {}

int
Garply::get_version() const
{
    return 10 * version_major + version_minor;
}

int
Garply::garplinate() const
{
    std::cout << "Garply::garplinate version " << get_version()
              << " invoked" << std::endl;
    std::cout << "Garply config dir = %s" << std::endl;
    return get_version();
}
"""
        garplinator_cc = """#include "garply.h"
#include <iostream>

int
main()
{
    Garply garply;
    garply.garplinate();

    return 0;
}
"""
        garply_version_h = """const int garply_version_major = %s;
const int garply_version_minor = %s;
"""
        mkdirp("%s/garply" % prefix.include)
        mkdirp("%s/garply" % self.stage.source_path)
        with open("%s/garply_version.h" % self.stage.source_path, "w") as f:
            f.write(garply_version_h % (self.version[0], self.version[1:]))
        with open("%s/garply/garply.h" % self.stage.source_path, "w") as f:
            f.write(garply_h)
        with open("%s/garply/garply.cc" % self.stage.source_path, "w") as f:
            f.write(garply_cc % prefix.config)
        with open("%s/garply/garplinator.cc" % self.stage.source_path, "w") as f:
            f.write(garplinator_cc)
        gpp = which(
            "g++",
            path=":".join(
                [s for s in os.environ["PATH"].split(os.pathsep) if "lib/spack/env" not in s]
            ),
        )
        if sys.platform == "darwin":
            gpp = which("/usr/bin/clang++")
        gpp(
            "-Dgarply_EXPORTS",
            "-I%s" % self.stage.source_path,
            "-O2",
            "-g",
            "-DNDEBUG",
            "-fPIC",
            "-o",
            "garply.cc.o",
            "-c",
            "%s/garply/garply.cc" % self.stage.source_path,
        )
        gpp(
            "-Dgarply_EXPORTS",
            "-I%s" % self.stage.source_path,
            "-O2",
            "-g",
            "-DNDEBUG",
            "-fPIC",
            "-o",
            "garplinator.cc.o",
            "-c",
            "%s/garply/garplinator.cc" % self.stage.source_path,
        )
        if sys.platform == "darwin":
            gpp(
                "-fPIC",
                "-O2",
                "-g",
                "-DNDEBUG",
                "-dynamiclib",
                "-Wl,-headerpad_max_install_names",
                "-o",
                "libgarply.dylib",
                "-install_name",
                "@rpath/libgarply.dylib",
                "garply.cc.o",
            )
            gpp(
                "-O2",
                "-g",
                "-DNDEBUG",
                "-Wl,-search_paths_first",
                "-Wl,-headerpad_max_install_names",
                "garplinator.cc.o",
                "-o",
                "garplinator",
                "-Wl,-rpath,%s" % prefix.lib64,
                "libgarply.dylib",
            )
            mkdirp(prefix.lib64)
            copy("libgarply.dylib", "%s/libgarply.dylib" % prefix.lib64)
            os.link("%s/libgarply.dylib" % prefix.lib64, "%s/libgarply.dylib.3.0" % prefix.lib64)
        else:
            gpp(
                "-fPIC",
                "-O2",
                "-g",
                "-DNDEBUG",
                "-shared",
                "-Wl,-soname,libgarply.so",
                "-o",
                "libgarply.so",
                "garply.cc.o",
            )
            gpp(
                "-O2",
                "-g",
                "-DNDEBUG",
                "-rdynamic",
                "garplinator.cc.o",
                "-o",
                "garplinator",
                "-Wl,-rpath,%s" % prefix.lib64,
                "libgarply.so",
            )
            mkdirp(prefix.lib64)
            copy("libgarply.so", "%s/libgarply.so" % prefix.lib64)
            os.link("%s/libgarply.so" % prefix.lib64, "%s/libgarply.so.3.0" % prefix.lib64)
        copy("garplinator", "%s/garplinator" % prefix.lib64)
        copy("%s/garply/garply.h" % self.stage.source_path, "%s/garply/garply.h" % prefix.include)
        mkdirp(prefix.bin)
        copy("garply_version.h", "%s/garply_version.h" % prefix.bin)
        os.symlink("%s/garplinator" % prefix.lib64, "%s/garplinator" % prefix.bin)