forked from easybuilders/easybuild-easyconfigs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix trailing whitespace in HDF5 filename
- Loading branch information
Tim Kok
committed
Feb 13, 2024
1 parent
8f265db
commit 828c5b2
Showing
2 changed files
with
26 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,12 +39,12 @@ configopts = '-DBUILD_PYTHON=NO -DBUILD_PYTHON3=YES -Wno-dev -DCXX11="ON" ' | |
configopts += '-DDATA_DIR=%(installdir)s/data -DUSE_OPENMP=ON -DUSE_HDF5=ON ' | ||
configopts += '-DUSE_MPI=ON -DPython3_EXECUTABLE=$EBROOTPYTHON/bin/python ' | ||
|
||
download_cmd = 'wget --retry-connrefused ftp://[email protected]/outgoing/Measures/WSRT_Measures.ztar ' | ||
download_cmd += '-O /tmp/WSRT_Measures.ztar ' | ||
local_download_cmd = 'wget --retry-connrefused ftp://[email protected]/outgoing/Measures/WSRT_Measures.ztar ' | ||
local_download_cmd += '-O /tmp/WSRT_Measures.ztar ' | ||
|
||
# Install casacore data | ||
postinstallcmds = [ | ||
download_cmd, | ||
local_download_cmd, | ||
"tar xfvz /tmp/WSRT_Measures.ztar --one-top-level=%(installdir)s/data", | ||
] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name = 'HDF5' | ||
# Note: Odd minor releases are only RCs and should not be used. | ||
version = '1.12.2' | ||
|
||
homepage = 'https://portal.hdfgroup.org/display/support' | ||
description = """HDF5 is a data model, library, and file format for storing and managing data. | ||
It supports an unlimited variety of datatypes, and is designed for flexible | ||
and efficient I/O and for high volume and complex data.""" | ||
|
||
toolchain = {'name': 'gompi', 'version': '2023b'} | ||
toolchainopts = {'pic': True, 'usempi': True} | ||
|
||
source_urls = ['https://support.hdfgroup.org/ftp/%(name)s/releases/%(namelower)s-%(version_major_minor)s/%(namelower)s-%(version)s/src'] | ||
sources = [SOURCELOWER_TAR_GZ] | ||
checksums = ['2a89af03d56ce7502dcae18232c241281ad1773561ec00c0f0e8ee2463910f14'] | ||
|
||
dependencies = [ | ||
('zlib', '1.2.13'), | ||
('Szip', '2.1.1'), | ||
] | ||
|
||
|
||
moduleclass = 'data' |