v0.15.0
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.0', branch='Version0.15.0')
41
42 variant('copy_user_modules', default=True,
43 description='Copy user modules directory instead linking')
44
45 extends('mofem-cephas')
46
47 depends_on('mofem-cephas@main', when='@main')
48 depends_on('mofem-cephas@develop', when='@develop')
49 depends_on('mofem-cephas@lukasz', when='@lukasz')
50
52 env.set('CTEST_OUTPUT_ON_FAILURE', '1')
53
54 # The CMakeLists.txt installed with mofem-cephas package set cmake
55 # environment to install extension from extension repository. It searches
56 # for modules in user provides paths, for example in Spack source path.Also
57 # it finds all cmake exported targets installed in lib directory, which are
58 # built with dependent extensions, f.e. mofem - users - modules or others if
59 # needed.
60 @property
62 """The relative path to the directory containing CMakeLists.txt
63
64 This path is relative to the root of the extracted tarball,
65 not to the ``build_directory``. Defaults to the current directory.
66
67 :return: directory containing CMakeLists.txt
68 """
69 spec = self.spec
70 return spec['mofem-cephas'].prefix.include.cmake.users_modules
71
72 @property
73 def build_directory(self):
74 spec = self.spec
75 build_type = spec.variants['build_type'].value
76 build_dir = 'users_modules/eshelbian_plasticity'
77 return join_path(self.stage.path, build_dir)
78
79 def cmake_args(self):
80 spec = self.spec
81 from_variant = self.define_from_variant
82
83 options = []
84
85 # obligatory options
86 options.extend([
87 '-DCMAKE_EXPORT_COMPILE_COMMANDS=ON',
88 '-DMPI_RUN_FLAGS=--allow-run-as-root',
89 '-DWITH_SPACK=YES'])
90 options.append(self.define(
91 'MOFEM_DIR', spec['mofem-cephas'].prefix))
92 options.append(self.define(
93 'EXTERNAL_MODULE_SOURCE_DIRS', self.stage.source_path))
94
95 # build tests
96 options.append(self.define('MOFEM_UM_BUILD_TESTS', self.run_tests))
97
98 return options
99
100 # This function is not needed to run code installed by extension, nor in
101 # the install process. However, for users like to have access to source
102 # code to play, change and make it. Having source code at hand one can
103 # compile in own build directory it in package view when the extension is
104 # activated.
105 @run_after('install')
107 source = self.stage.source_path
108 prefix = self.prefix
109 install_tree(source, prefix.ext_users_modules.mixed_fracture_module)
110
111 def check(self):
112 """Searches the CMake-generated Makefile for the target ``test``
113 and runs it if found.
114 """
115 with working_dir(self.build_directorybuild_directory):
116 ctest('-L', 'short', '--output-on-failure', parallel=False)