modified: o/OpenMPI/OpenMPI-1.10.7-GCC-6.3.0-2.27-uv.eb

modified:   o/OpenMPI/OpenMPI-2.1.1-GCC-6.3.0-2.27-uv.eb
	modified:   o/OpenMPI/OpenMPI-3.0.0-GCC-6.3.0-2.27-uv.eb
	new file:   p/packaging/packaging-17.1-Py-3.6.eb
This commit is contained in:
Lukáš Krupčík 2018-04-11 13:20:55 +02:00
parent 7ec387f9fc
commit 174ea79658
4 changed files with 33 additions and 6 deletions

View File

@ -39,8 +39,8 @@ sanity_check_paths = {
'dirs': ["include/openmpi/ompi/mpi/cxx"],
}
modextravars = {'OMPI_MCA_btl_tcp_if_include': 'lo',
# 'OMPI_MCA_oob_tcp_if_include': '10.0.0.0/8',
modextravars = {
'OMPI_MCA_btl':'^tcp,openib',
}
moduleclass = 'mpi'

View File

@ -43,8 +43,9 @@ sanity_check_paths = {
'dirs': [],
}
modextravars = {'OMPI_MCA_btl_tcp_if_include': 'lo',
# 'OMPI_MCA_btl_tcp_if_exclude': 'bond0,bond1,bond2,ib0,ib1',
modextravars = {
'OMPI_MCA_btl':'^tcp,openib',
'OMPI_MCA_oob':'^tcp',
}
moduleclass = 'mpi'

View File

@ -47,8 +47,9 @@ sanity_check_paths = {
'dirs': [],
}
modextravars = {'OMPI_MCA_btl_tcp_if_include': 'lo',
# 'OMPI_MCA_oob_tcp_if_include': '10.0.0.0/8',
modextravars = {
'OMPI_MCA_btl':'^tcp,openib',
'OMPI_MCA_oob':'^tcp',
}
moduleclass = 'mpi'

View File

@ -0,0 +1,25 @@
# IT4Innovations 2018
easyblock = "PythonPackage"
name = 'packaging'
version = '17.1'
homepage = 'https://pypi.python.org/pypi/packaging'
description = 'Core utilities for Python packages.'
toolchain = {'name': 'Py', 'version': '3.6'}
source_urls = [PYPI_SOURCE]
sources = [SOURCE_TAR_GZ]
dependencies = [
('six', '1.11.0'),
('pyparsing', '2.2.0'),
]
sanity_check_paths = {
'files': ['lib/python3.6/site-packages/%(name)s-%(version)s-py3.6.egg'],
'dirs': [],
}
moduleclass = 'python'