Merge branch 'easyconfigs-it4i-anselm'

This commit is contained in:
Lukas Krupcik 2017-04-11 20:20:34 +02:00
commit d6bcc7078e
4 changed files with 61 additions and 3 deletions

View File

@ -0,0 +1,22 @@
name = 'HDF5'
version = '1.10.0-patch1'
homepage = 'http://www.hdfgroup.org/HDF5/'
description = """HDF5 is a unique technology suite that makes possible the management of
extremely large and complex data collections."""
toolchain = {'name': 'intel', 'version': '2017a'}
toolchainopts = {'pic': True, 'usempi': True}
source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src']
sources = [SOURCELOWER_TAR_GZ]
checksums = ['9180ff0ef8dc2ef3f61bd37a7404f295']
buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"'
dependencies = [
('zlib', '1.2.11', '', True),
('Szip', '2.1', '', True),
]
moduleclass = 'data'

View File

@ -19,8 +19,8 @@ patches = [
buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"'
dependencies = [
('zlib', '1.2.11'),
('Szip', '2.1'),
('zlib', '1.2.11', '', True),
('Szip', '2.1', '', True),
]
moduleclass = 'data'

View File

@ -14,7 +14,7 @@ source_urls = ["http://prdownloads.sourceforge.net/tcl"]
sources = ['%(namelower)s%(version)s-src.tar.gz']
dependencies = [
('zlib', '1.2.8'),
('zlib', '1.2.11'),
]
configopts = '--enable-threads EXTRA_INSTALL="install-private-headers"'

View File

@ -0,0 +1,36 @@
easyblock = 'ConfigureMake'
name = 'util-linux'
version = '2.29'
homepage = 'http://www.kernel.org/pub/linux/utils/util-linux'
description = """Set of Linux utilities"""
# Problem with GCC/ICC (toolchain intel-2015b)
toolchain = {'name': 'dummy', 'version': 'dummy'}
source_urls = ['%s/v%%(version_major_minor)s' % homepage]
sources = [SOURCELOWER_TAR_GZ]
# disable account related utilities (they need OS dependant pam-devel files)
# disable wall and friends (requires group changing permissions for install user)
# install systemd service files in install dir
# install bash completion files in install dir
configopts = '--disable-chfn-chsh --disable-login --disable-su '
configopts += '--disable-wall --disable-use-tty-group '
configopts += '--disable-makeinstall-chown --disable-makeinstall-setuid '
configopts += "--with-systemdsystemunitdir='${prefix}/systemd' "
configopts += "--with-bashcompletiondir='${prefix}/share/bash-completion/completions' "
# disable building Python bindings (since we don't include Python as a dep)
configopts += "--without-python "
dependencies = [
('ncurses', '6.0', '', True),
]
sanity_check_paths = {
'files': ['lib/lib%s.a' % x for x in ['blkid' , 'mount', 'uuid']],
'dirs': ['include', 'bin', 'share', 'sbin'],
}
moduleclass = 'tools'