Boost/1.83.0-cpeAOCC-24.03 (Boost-1.83.0-cpeAOCC-24.03.eb)
To access module help and find out for which stacks and partitions the module is
installed, use module spider Boost/1.83.0-cpeAOCC-24.03
.
EasyConfig:
# contributed by Luca Marsella (CSCS)
# Adapted by Kurt Lust (kurt.lust@uantwerpen.be) for the LUMI consortium
easyblock = 'EB_BoostCPE'
local_bzip2_version = '1.0.8' # http://www.bzip.org/downloads.html
local_ICU_version = '74.1' # http://site.icu-project.org/home
local_zlib_version = '1.3.1' # https://zlib.net/
local_zstd_version = '1.5.5' # https://github.com/facebook/zstd/releases
local_Boost_version = '1.83.0' # https://www.boost.org/
name = 'Boost'
version = local_Boost_version
homepage = 'http://www.boost.org/'
whatis = [
'Description: Boost provides free peer-reviewed portable C++ source libraries.'
]
description = """
Boost provides free peer-reviewed portable C++ source libraries.
We emphasize libraries that work well with the C++ Standard Library. Boost
libraries are intended to be widely useful, and usable across a broad spectrum
of applications. The Boost license encourages both commercial and non-commercial
use.
We aim to establish "existing practice" and provide reference implementations so
that Boost libraries are suitable for eventual standardization. Ten Boost
libraries are included in the C++ Standards Committee's Library Technical Report
(TR1) and in the new C++11 Standard. C++11 also includes several more Boost
libraries in addition to those from TR1. More Boost libraries are proposed for
standardization in C++17.
This module includes static and shared libraries, compiled with MPI support.
The library boost_python is build for the system Python.
This version of the module does not include support for Cray Python.
The module does inlude single-threaded (suffix -x86) and multithreaded (suffix
-mt-x86) versions of the libraries. The default names (without suffix) link
to the multithreaded versions.
"""
software_license_urls = [
'https://www.boost.org/users/license.html',
f'https://github.com/boostorg/boost/blob/boost-{version}/LICENSE_1_0.txt',
]
toolchain = {'name': 'cpeAOCC', 'version': '24.03'}
toolchainopts = {'usempi': True, 'pic': True, 'verbose': False}
# https://boostorg.jfrog.io/native/main/release/1.77.0/source/boost_1_77_0.tar.bz2
source_urls = ['https://boostorg.jfrog.io/artifactory/main/release/%(version)s/source']
sources = ['%(namelower)s_%(version_major)s_%(version_minor)s_0.tar.bz2']
patches = ['Boost-1.83.0_fix-aocc-compiler-crash.patch']
checksums = [
'6478edfe2f3305127cffe8caf73ea0176c53769f4bf1585be237eb30798c3b8e', # boost_1_83_0.tar.bz2
'64c00e6c2e0263b86cce0c5c6318e54258ea57537d7a9c02108845a4635dc120', # Boost-1.83.0_fix-aocc-compiler-crash.patch
]
builddependencies = [ # Create a reproducible build environment.
('buildtools', '%(toolchain_version)s', '', True),
]
dependencies = [
('bzip2', local_bzip2_version),
('zlib', local_zlib_version),
('zstd', local_zstd_version),
('ICU', local_ICU_version),
]
configopts = '--without-libraries=python'
# Also build boost_mpi - not needed as we already set use_mpi to True
# boost_mpi = True
# Toolsets - Not needed as the EasyBlock recognizes the toolchain.
# toolset = 'clang'
# build_toolset = 'clang'
postinstallcmds = [
'mkdir -p %(installdir)s/share/licenses/%(name)s',
'cp LICENSE_1_0.txt README.md %(installdir)s/share/licenses/%(name)s',
]
modextravars = {'BOOST_ROOT': '%(installdir)s'}
moduleclass = 'devel'