Skip to content

Commit

Permalink
Fix trailing whitespace in HDF5 filename
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Kok committed Feb 13, 2024
1 parent 8f265db commit 828c5b2
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 3 deletions.
6 changes: 3 additions & 3 deletions easybuild/easyconfigs/c/casacore/casacore-3.5.0-foss-2023b.eb
Original file line number Diff line number Diff line change
Expand Up @@ -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",
]

Expand Down
23 changes: 23 additions & 0 deletions easybuild/easyconfigs/h/HDF5/HDF5-1.12.2-gompi-2023b.eb
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'

0 comments on commit 828c5b2

Please sign in to comment.