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
|
##############################################################################
# Copyright (c) 2013-2018, Lawrence Livermore National Security, LLC.
# Produced at the Lawrence Livermore National Laboratory.
#
# This file is part of Spack.
# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
# LLNL-CODE-647188
#
# For details, see https://github.com/llnl/spack
# Please also see the NOTICE and LICENSE files for our notice and the LGPL.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License (as
# published by the Free Software Foundation) version 2.1, February 1999.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
# conditions of the GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##############################################################################
#
from spack import *
import glob
class Pfunit(CMakePackage):
"""pFUnit is a unit testing framework enabling JUnit-like testing of
serial and MPI-parallel software written in Fortran."""
homepage = "http://pfunit.sourceforge.net/"
url = "https://github.com/Goddard-Fortran-Ecosystem/pFUnit/archive/3.2.9.tar.gz"
maintainers = ['citibeth']
version('3.2.9', 'e13d8362284b13b7c863e2fe769a9d5c')
variant('shared', default=True,
description='Build shared library in addition to static')
variant('mpi', default=False, description='Enable MPI')
variant('openmp', default=False, description='Enable OpenMP')
variant('docs', default=False, description='Build docs')
depends_on('python@2.7:', type=('build', 'run')) # python3 too!
depends_on('mpi', when='+mpi')
def patch(self):
# The package tries to put .mod files in directory ./mod;
# spack needs to put them in a standard location:
for file in glob.glob('*/CMakeLists.txt'):
filter_file(r'.*/mod($|[^\w].*)', '', file)
def cmake_args(self):
spec = self.spec
args = [
'-DPYTHON_EXECUTABLE=%s' % spec['python'].command,
'-DBUILD_SHARED=%s' % ('YES' if '+shared' in spec else 'NO'),
'-DCMAKE_Fortran_MODULE_DIRECTORY=%s' % spec.prefix.include,
'-DBUILD_DOCS=%s' % ('YES' if '+docs' in spec else 'NO'),
'-DOPENMP=%s' % ('YES' if '+openmp' in spec else 'NO')]
if spec.satisfies('+mpi'):
args.extend(['-DMPI=YES', '-DMPI_USE_MPIEXEC=YES',
'-DMPI_Fortran_COMPILER=%s' % spec['mpi'].mpifc])
else:
args.append('-DMPI=NO')
return args
def check(self):
"""Searches the CMake-generated Makefile for the target ``test``
and runs it if found.
"""
args = ['tests']
if self.spec.satisfies('+mpi'):
args.append('MPI=YES')
if self.spec.satisfies('+openmp'):
args.append('OPENMP=YES')
with working_dir(self.build_directory):
make(*args)
def compiler_vendor(self):
vendors = {'%gcc': 'GNU', '%clang': 'GNU', '%intel': 'Intel',
'%pgi': 'PGI', '%nag': 'NAG'}
for key, value in vendors.items():
if self.spec.satisfies(key):
return value
raise InstallError('Unsupported compiler.')
def setup_environment(self, spack_env, run_env):
spack_env.set('PFUNIT', self.spec.prefix)
run_env.set('PFUNIT', self.spec.prefix)
spack_env.set('F90_VENDOR', self.compiler_vendor())
run_env.set('F90_VENDOR', self.compiler_vendor())
def setup_dependent_environment(self, spack_env, run_env, dependent_spec):
spack_env.set('PFUNIT', self.spec.prefix)
spack_env.set('F90_VENDOR', self.compiler_vendor())
|