v0.15.4
Loading...
Searching...
No Matches
package.py
Go to the documentation of this file.
1# Copyright (c) 2022 [Authors](http://mofem.eng.gla.ac.uk/mofem/html/authors.html)
2#
3# Permission is hereby granted, free of charge, to any person obtaining a copy
4# of this software and associated documentation files (the "Software"), to deal
5# in the Software without restriction, including without limitation the rights
6# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7# copies of the Software, and to permit persons to whom the Software is
8# furnished to do so, subject to the following conditions:
9#
10# The above copyright notice and this permission notice shall be included in all
11# copies or substantial portions of the Software.
12#
13# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19# SOFTWARE.
20#
21# [MIT License](https://opensource.org/licenses/MIT)#
22
23
24from spack import *
25
26
28 """mofem fracture module"""
29
30 homepage = "http://mofem.eng.gla.ac.uk"
31 git = "https://bitbucket.org/mofem/um_eshelbian_plasticity.git"
32
33 maintainers = ['likask','CallumRuncie']
34
35 # Development versions
36 version('main', branch='main')
37 version('develop', branch='develop')
38 version('lukasz', branch='lukasz/develop')
39 # Versions
40 version('0.15.5', branch='Version0.15.5')
41 version('0.15.4', branch='Version0.15.4')
42 version('0.15.3', branch='Version0.15.3')
43 version('0.15.2', branch='Version0.15.2')
44 version('0.15.1', branch='Version0.15.1')
45 version('0.15.0', branch='Version0.15.0')
46
47 variant('copy_user_modules', default=True,
48 description='Copy user modules directory instead linking')
49
50 extends('mofem-cephas')
51
52 depends_on('mofem-cephas@main', when='@main')
53 depends_on('mofem-cephas@develop', when='@develop')
54 depends_on('mofem-cephas@lukasz', when='@lukasz')
55
56 depends_on('mofem-cephas@0.15.4:', when='@0.15.5')
57 depends_on('mofem-cephas@0.15.3:', when='@0.15.4')
58 depends_on('mofem-cephas@0.15.2:', when='@0.15.3')
59 depends_on('mofem-cephas@0.15.1:', when='@0.15.2')
60 depends_on('mofem-cephas@0.15.0:', when='@0.15.1')
61
63 env.set('CTEST_OUTPUT_ON_FAILURE', '1')
64
65 # The CMakeLists.txt installed with mofem-cephas package set cmake
66 # environment to install extension from extension repository. It searches
67 # for modules in user provides paths, for example in Spack source path.Also
68 # it finds all cmake exported targets installed in lib directory, which are
69 # built with dependent extensions, f.e. mofem - users - modules or others if
70 # needed.
71 @property
73 """The relative path to the directory containing CMakeLists.txt
74
75 This path is relative to the root of the extracted tarball,
76 not to the ``build_directory``. Defaults to the current directory.
77
78 :return: directory containing CMakeLists.txt
79 """
80 spec = self.spec
81 return spec['mofem-cephas'].prefix.include.cmake.users_modules
82
83 @property
84 def build_directory(self):
85 spec = self.spec
86 build_type = spec.variants['build_type'].value
87 build_dir = 'users_modules/eshelbian_plasticity'
88 return join_path(self.stage.path, build_dir)
89
90 def cmake_args(self):
91 spec = self.spec
92 from_variant = self.define_from_variant
93
94 options = []
95
96 # obligatory options
97 options.extend([
98 '-DCMAKE_EXPORT_COMPILE_COMMANDS=ON',
99 '-DMPI_RUN_FLAGS=--allow-run-as-root',
100 '-DWITH_SPACK=YES'])
101 options.append(self.define(
102 'MOFEM_DIR', spec['mofem-cephas'].prefix))
103 options.append(self.define(
104 'EXTERNAL_MODULE_SOURCE_DIRS', self.stage.source_path))
105
106 # build tests
107 options.append(self.define('MOFEM_UM_BUILD_TESTS', self.run_tests))
108
109 return options
110
111 # This function is not needed to run code installed by extension, nor in
112 # the install process. However, for users like to have access to source
113 # code to play, change and make it. Having source code at hand one can
114 # compile in own build directory it in package view when the extension is
115 # activated.
116 @run_after('install')
118 source = self.stage.source_path
119 prefix = self.prefix
120 install_tree(source, prefix.ext_users_modules.mixed_fracture_module)
121
122 def check(self):
123 """Searches the CMake-generated Makefile for the target ``test``
124 and runs it if found.
125 """
126 with working_dir(self.build_directorybuild_directory):
127 ctest('-L', 'short', '--output-on-failure', parallel=False)