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