83 lines
3.2 KiB
Python
83 lines
3.2 KiB
Python
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack import *
|
|
|
|
|
|
class P4est(AutotoolsPackage):
|
|
"""Dynamic management of a collection (a forest) of adaptive octrees in
|
|
parallel"""
|
|
homepage = "https://www.p4est.org"
|
|
|
|
# Only use the official tarball releases provided on p4est.org or
|
|
# p4est.github.io. The automatically generated releases from the
|
|
# Github repository lack important parts.
|
|
url = "https://p4est.github.io/release/p4est-2.3.2.tar.gz"
|
|
|
|
maintainers = ['davydden']
|
|
|
|
version('2.3.2', sha256='076df9e5578e0e7fcfbe12e1a0b080104001f8c986ab1d5a69ec2220050df8e6')
|
|
version('2.3.1', sha256='be66893b039fb3f27aca3d5d00acff42c67bfad5aa09cea9253cdd628b2bdc9a')
|
|
version('2.2', sha256='1549cbeba29bee2c35e7cc50a90a04961da5f23b6eada9c8047f511b90a8e438')
|
|
version('2.1', sha256='07ab24bd63a652a30576fbca12c0fc068dffa615d888802d7f229fa994a9c1ef')
|
|
version('2.0', sha256='c522c5b69896aab39aa5a81399372a19a6b03fc6200d2d5d677d9a22fe31029a')
|
|
version('1.1', sha256='0b5327a35f0c869bf920b8cab5f20caa4eb55692eaaf1f451d5de30285b25139')
|
|
|
|
variant('mpi', default=True, description='Enable MPI')
|
|
variant('openmp', default=False, description='Enable OpenMP')
|
|
|
|
# build dependencies
|
|
depends_on('automake', when='@2.0', type='build')
|
|
depends_on('autoconf', when='@2.0', type='build')
|
|
depends_on('libtool@2.4.2:', type='build')
|
|
|
|
# other dependencies
|
|
depends_on('mpi', when='+mpi')
|
|
depends_on('zlib')
|
|
|
|
# from sc upstream, correct the default libraries
|
|
patch('https://github.com/cburstedde/libsc/commit/b506aab224b988fec210cc212469f2c4f58b2d04.patch',
|
|
sha256='e9418b1a9347a409be241cd185519b31950e42a7f55b6fb80ce53097657098ee',
|
|
working_dir='sc',
|
|
when='@2.0')
|
|
patch('https://github.com/cburstedde/libsc/commit/b45a51a7ef97883a3d4dcbd05cb2c77890a76f75.patch',
|
|
sha256='8fb829e34e3a1e28afdd6e56e0bdc1d377af569b7ccb9e9d8da0eeb5829ed27e',
|
|
working_dir='sc',
|
|
when='@2.0')
|
|
|
|
def autoreconf(self, spec, prefix):
|
|
if self.spec.satisfies('@2.0'):
|
|
bootstrap = Executable('./bootstrap')
|
|
bootstrap()
|
|
|
|
def configure_args(self):
|
|
args = [
|
|
'--enable-shared',
|
|
'--disable-vtk-binary',
|
|
'--without-blas',
|
|
'CPPFLAGS=-DSC_LOG_PRIORITY=SC_LP_ESSENTIAL',
|
|
'CFLAGS=-O2'
|
|
]
|
|
|
|
if '~mpi' in self.spec:
|
|
args.append('--disable-mpi')
|
|
else:
|
|
args.append('--enable-mpi')
|
|
args.append('CC=%s' % self.spec['mpi'].mpicc)
|
|
args.append('CXX=%s' % self.spec['mpi'].mpicxx)
|
|
args.append('FC=%s' % self.spec['mpi'].mpifc)
|
|
args.append('F77=%s' % self.spec['mpi'].mpif77)
|
|
|
|
if '+openmp' in self.spec:
|
|
try:
|
|
args.append(
|
|
'--enable-openmp={0}'.format(self.compiler.openmp_flag))
|
|
except UnsupportedCompilerFlag:
|
|
args.append('--enable-openmp')
|
|
else:
|
|
args.append('--disable-openmp')
|
|
|
|
return args
|