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