Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use pycodestyle in CI and fix style issues in EasyConfigs #21405

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
# for testing OpenMPI-system*eb we need to have Open MPI installed
sudo apt-get install libopenmpi-dev openmpi-bin
# required for test_dep_graph
pip install pep8 python-graph-core python-graph-dot
pip install pycodestyle python-graph-core python-graph-dot

- name: install EasyBuild framework
run: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ version = '11-4-2011'
versionsuffix = '-Python-%(pyver)s'

homepage = 'http://tda.gatech.edu/software/cpb/index.html'
description = """CPB is a novel two-step Pearson correlation based biclustering approach to mine genes that are co-regulated with
a given reference gene in order to discover genes that function in a common biological process.
In the first step, the algorithm identifies subsets of genes with high correlation, reducing false negatives
with a nonparametric filtering scheme.
description = """CPB is a novel two-step Pearson correlation based biclustering approach to mine genes that are
co-regulated with a given reference gene in order to discover genes that function in a common biological process.
In the first step, the algorithm identifies subsets of genes with high correlation, reducing false negatives
with a nonparametric filtering scheme.
In the second step, biclusters from multiple datasets are used to extract and rank gene correlation information."""

toolchain = {'name': 'foss', 'version': '2017a'}
Expand Down
4 changes: 2 additions & 2 deletions easybuild/easyconfigs/c/CaDiCaL/CaDiCaL-1.3.0-GCC-9.3.0.eb
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ local_libs = ['libcadical.a']

files_to_copy = [
(['build/%s' % x for x in local_bins], 'bin'),
(['build/%s' % l for l in local_libs], 'lib'),
(['build/%s' % x for x in local_libs], 'lib'),
]

sanity_check_paths = {
'files': ['bin/%s' % x for x in local_bins] + ['lib/%s' % l for l in local_libs],
'files': ['bin/%s' % x for x in local_bins] + ['lib/%s' % x for x in local_libs],
'dirs': [],
}

Expand Down
2 changes: 1 addition & 1 deletion easybuild/easyconfigs/c/Cbc/Cbc-2.10.5-foss-2020b.eb
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ configopts += '--with-cgl-lib="-lCgl" '
configopts += '--with-cgl-datadir=$EBROOTCGL/share/coin/Data '

sanity_check_paths = {
'files': ['bin/cbc'] + ['lib/lib%s.%s' % (l, SHLIB_EXT) for l in ['Cbc', 'CbcSolver', 'OsiCbc']],
'files': ['bin/cbc'] + ['lib/lib%s.%s' % (x, SHLIB_EXT) for x in ['Cbc', 'CbcSolver', 'OsiCbc']],
'dirs': ['include/coin', 'lib/pkgconfig', 'share/coin']
}

Expand Down
2 changes: 1 addition & 1 deletion easybuild/easyconfigs/c/Clp/Clp-1.17.6-foss-2020b.eb
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ configopts += '--with-osi-lib="-lOsi" '
configopts += '--with-osi-datadir=$EBROOTOSI/share/coin/Data '

sanity_check_paths = {
'files': ['bin/clp'] + ['lib/lib%s.%s' % (l, SHLIB_EXT) for l in ['Clp', 'ClpSolver', 'OsiClp']],
'files': ['bin/clp'] + ['lib/lib%s.%s' % (x, SHLIB_EXT) for x in ['Clp', 'ClpSolver', 'OsiClp']],
'dirs': ['include/coin', 'lib/pkgconfig', 'share/coin']
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ local_exes = ['adjacency', 'allfaces', 'cddexec', 'fourier', 'lcdd', 'projection
'testcdd2', 'testlp1', 'testlp2', 'testlp3', 'testshoot']
sanity_check_paths = {
'files': ['bin/%s' % x for x in local_exes] + ['bin/%s_gmp' % x for x in local_exes] +
['lib/%s.%s' % (l, e) for l in ['libcdd', 'libcddgmp'] for e in ['a', SHLIB_EXT]] +
['lib/%s.%s' % (x, e) for x in ['libcdd', 'libcddgmp'] for e in ['a', SHLIB_EXT]] +
['include/cddlib/%s.h' % h for h in ['cdd', 'cddmp', 'cddtypes', 'setoper', 'splitmix64']],
'dirs': ['share/doc']
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ local_exes = ['adjacency', 'allfaces', 'cddexec', 'fourier', 'lcdd', 'projection
'testcdd2', 'testlp1', 'testlp2', 'testlp3', 'testshoot']
sanity_check_paths = {
'files': ['bin/%s' % x for x in local_exes] + ['bin/%s_gmp' % x for x in local_exes] +
['lib/%s.%s' % (l, e) for l in ['libcdd', 'libcddgmp'] for e in ['a', SHLIB_EXT]] +
['lib/%s.%s' % (x, e) for x in ['libcdd', 'libcddgmp'] for e in ['a', SHLIB_EXT]] +
['include/cddlib/%s.h' % h for h in ['cdd', 'cddmp', 'cddtypes', 'setoper', 'splitmix64']],
'dirs': ['share/doc']
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ components = [
]

sanity_check_paths = {
'files': ['lib/%s.a' % l for l in ['libcudd', 'libsylvan']] +
'files': ['lib/%s.a' % x for x in ['libcudd', 'libsylvan']] +
['include/%s.h' % h for h in ['cudd', 'lace', 'sylvan', 'sylvan_gmp']],
'dirs': ['lib/python%(pyshortver)s/site-packages'],
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ version = '5.3.0'
versionsuffix = '-centos4_x86_64'

homepage = 'http://surfer.nmr.mgh.harvard.edu/fswiki/FreeSurferWiki'
description = """FreeSurfer is a set of tools for analysis and visualization of structural and functional brain imaging data.
FreeSurfer contains a fully automatic structural imaging stream for processing cross sectional and longitudinal data."""
description = """\
FreeSurfer is a set of tools for analysis and visualization of structural and functional brain imaging data.
FreeSurfer contains a fully automatic structural imaging stream for processing cross sectional and longitudinal data.
"""

toolchain = SYSTEM

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ version = '6.0.0'
versionsuffix = '-centos6_x86_64'

homepage = 'http://surfer.nmr.mgh.harvard.edu/fswiki/FreeSurferWiki'
description = """FreeSurfer is a set of tools for analysis and visualization of structural and functional brain imaging data.
FreeSurfer contains a fully automatic structural imaging stream for processing cross sectional and longitudinal data."""
description = """\
FreeSurfer is a set of tools for analysis and visualization of structural and functional brain imaging data.
FreeSurfer contains a fully automatic structural imaging stream for processing cross sectional and longitudinal data.
"""

toolchain = SYSTEM

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ version = '6.0.1'
versionsuffix = '-centos6_x86_64'

homepage = 'https://surfer.nmr.mgh.harvard.edu/'
description = """FreeSurfer is a set of tools for analysis and visualization of structural and functional brain imaging data.
FreeSurfer contains a fully automatic structural imaging stream for processing cross sectional and longitudinal data."""
description = """\
FreeSurfer is a set of tools for analysis and visualization of structural and functional brain imaging data.
FreeSurfer contains a fully automatic structural imaging stream for processing cross sectional and longitudinal data.
"""

toolchain = SYSTEM

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ version = '7.1.1'
versionsuffix = '-centos6_x86_64'

homepage = 'https://surfer.nmr.mgh.harvard.edu/'
description = """FreeSurfer is a set of tools for analysis and visualization of structural and functional brain imaging data.
FreeSurfer contains a fully automatic structural imaging stream for processing cross sectional and longitudinal data."""
description = """\
FreeSurfer is a set of tools for analysis and visualization of structural and functional brain imaging data.
FreeSurfer contains a fully automatic structural imaging stream for processing cross sectional and longitudinal data.
"""

toolchain = SYSTEM

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ version = '7.1.1'
versionsuffix = '-centos7_x86_64'

homepage = 'https://surfer.nmr.mgh.harvard.edu/'
description = """FreeSurfer is a set of tools for analysis and visualization of structural and functional brain imaging data.
FreeSurfer contains a fully automatic structural imaging stream for processing cross sectional and longitudinal data."""
description = """\
FreeSurfer is a set of tools for analysis and visualization of structural and functional brain imaging data.
FreeSurfer contains a fully automatic structural imaging stream for processing cross sectional and longitudinal data.
"""

toolchain = SYSTEM

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ version = '7.1.1'
versionsuffix = '-centos8_x86_64'

homepage = 'https://surfer.nmr.mgh.harvard.edu/'
description = """FreeSurfer is a set of tools for analysis and visualization of structural and functional brain imaging data.
FreeSurfer contains a fully automatic structural imaging stream for processing cross sectional and longitudinal data."""
description = """\
FreeSurfer is a set of tools for analysis and visualization of structural and functional brain imaging data.
FreeSurfer contains a fully automatic structural imaging stream for processing cross sectional and longitudinal data.
"""

toolchain = SYSTEM

Expand Down
4 changes: 2 additions & 2 deletions easybuild/easyconfigs/g/GConf/GConf-3.2.6-GCCcore-8.2.0.eb
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ dependencies = [
configopts = '--disable-orbit '

sanity_check_paths = {
'files': ['bin/gconf%s' % x for x in['-merge-tree', 'tool-2']] +
'files': ['bin/gconf%s' % x for x in ['-merge-tree', 'tool-2']] +
['bin/gsettings-%s-convert' % x for x in ['data', 'schema']] +
['lib/libgconf-2.%s' % x for x in['a', 'so']],
['lib/libgconf-2.%s' % x for x in ['a', 'so']],
'dirs': ['include', 'share']
}

Expand Down
4 changes: 2 additions & 2 deletions easybuild/easyconfigs/g/GConf/GConf-3.2.6-GCCcore-8.3.0.eb
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ dependencies = [
configopts = '--disable-orbit '

sanity_check_paths = {
'files': ['bin/gconf%s' % x for x in['-merge-tree', 'tool-2']] +
'files': ['bin/gconf%s' % x for x in ['-merge-tree', 'tool-2']] +
['bin/gsettings-%s-convert' % x for x in ['data', 'schema']] +
['lib/libgconf-2.%s' % x for x in['a', 'so']],
['lib/libgconf-2.%s' % x for x in ['a', 'so']],
'dirs': ['include', 'share']
}

Expand Down
4 changes: 2 additions & 2 deletions easybuild/easyconfigs/g/GConf/GConf-3.2.6-foss-2016a.eb
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ dependencies = [
configopts = '--disable-orbit '

sanity_check_paths = {
'files': ['bin/gconf%s' % x for x in['-merge-tree', 'tool-2']] +
'files': ['bin/gconf%s' % x for x in ['-merge-tree', 'tool-2']] +
['bin/gsettings-%s-convert' % x for x in ['data', 'schema']] +
['lib/libgconf-2.%s' % x for x in['a', 'so']],
['lib/libgconf-2.%s' % x for x in ['a', 'so']],
'dirs': ['include', 'share']
}

Expand Down
4 changes: 2 additions & 2 deletions easybuild/easyconfigs/g/GConf/GConf-3.2.6-foss-2018b.eb
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ dependencies = [
configopts = '--disable-orbit '

sanity_check_paths = {
'files': ['bin/gconf%s' % x for x in['-merge-tree', 'tool-2']] +
'files': ['bin/gconf%s' % x for x in ['-merge-tree', 'tool-2']] +
['bin/gsettings-%s-convert' % x for x in ['data', 'schema']] +
['lib/libgconf-2.%s' % x for x in['a', 'so']],
['lib/libgconf-2.%s' % x for x in ['a', 'so']],
'dirs': ['include', 'share']
}

Expand Down
4 changes: 2 additions & 2 deletions easybuild/easyconfigs/g/GConf/GConf-3.2.6-intel-2016a.eb
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ dependencies = [
configopts = '--disable-orbit '

sanity_check_paths = {
'files': ['bin/gconf%s' % x for x in['-merge-tree', 'tool-2']] +
'files': ['bin/gconf%s' % x for x in ['-merge-tree', 'tool-2']] +
['bin/gsettings-%s-convert' % x for x in ['data', 'schema']] +
['lib/libgconf-2.%s' % x for x in['a', 'so']],
['lib/libgconf-2.%s' % x for x in ['a', 'so']],
'dirs': ['include', 'share']
}

Expand Down
4 changes: 2 additions & 2 deletions easybuild/easyconfigs/g/GConf/GConf-3.2.6-intel-2016b.eb
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ dependencies = [
configopts = '--disable-orbit '

sanity_check_paths = {
'files': ['bin/gconf%s' % x for x in['-merge-tree', 'tool-2']] +
'files': ['bin/gconf%s' % x for x in ['-merge-tree', 'tool-2']] +
['bin/gsettings-%s-convert' % x for x in ['data', 'schema']] +
['lib/libgconf-2.%s' % x for x in['a', 'so']],
['lib/libgconf-2.%s' % x for x in ['a', 'so']],
'dirs': ['include', 'share']
}

Expand Down
4 changes: 2 additions & 2 deletions easybuild/easyconfigs/g/GConf/GConf-3.2.6-intel-2017a.eb
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ dependencies = [
configopts = '--disable-orbit '

sanity_check_paths = {
'files': ['bin/gconf%s' % x for x in['-merge-tree', 'tool-2']] +
'files': ['bin/gconf%s' % x for x in ['-merge-tree', 'tool-2']] +
['bin/gsettings-%s-convert' % x for x in ['data', 'schema']] +
['lib/libgconf-2.%s' % x for x in['a', 'so']],
['lib/libgconf-2.%s' % x for x in ['a', 'so']],
'dirs': ['include', 'share']
}

Expand Down
4 changes: 2 additions & 2 deletions easybuild/easyconfigs/g/GConf/GConf-3.2.6-intel-2017b.eb
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ dependencies = [
configopts = '--disable-orbit '

sanity_check_paths = {
'files': ['bin/gconf%s' % x for x in['-merge-tree', 'tool-2']] +
'files': ['bin/gconf%s' % x for x in ['-merge-tree', 'tool-2']] +
['bin/gsettings-%s-convert' % x for x in ['data', 'schema']] +
['lib/libgconf-2.%s' % x for x in['a', 'so']],
['lib/libgconf-2.%s' % x for x in ['a', 'so']],
'dirs': ['include', 'share']
}

Expand Down
2 changes: 1 addition & 1 deletion easybuild/easyconfigs/g/GMP/GMP-6.2.0-GCCcore-10.2.0.eb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ testopts = " && rm -r %(installdir)s/lib"
runtest = 'check'

sanity_check_paths = {
'files': ['lib/lib%s.%s' % (l, e) for l in ['gmp', 'gmpxx'] for e in [SHLIB_EXT, 'a']] +
'files': ['lib/lib%s.%s' % (x, e) for x in ['gmp', 'gmpxx'] for e in [SHLIB_EXT, 'a']] +
['include/gmp.h', 'include/gmpxx.h'],
'dirs': ['share'],
}
Expand Down
2 changes: 1 addition & 1 deletion easybuild/easyconfigs/g/GMP/GMP-6.2.0-GCCcore-9.3.0.eb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ testopts = " && rm -r %(installdir)s/lib"
runtest = 'check'

sanity_check_paths = {
'files': ['lib/lib%s.%s' % (l, e) for l in ['gmp', 'gmpxx'] for e in [SHLIB_EXT, 'a']] +
'files': ['lib/lib%s.%s' % (x, e) for x in ['gmp', 'gmpxx'] for e in [SHLIB_EXT, 'a']] +
['include/gmp.h', 'include/gmpxx.h'],
'dirs': ['share'],
}
Expand Down
2 changes: 1 addition & 1 deletion easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-10.3.0.eb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ testopts = " && rm -r %(installdir)s/lib"
runtest = 'check'

sanity_check_paths = {
'files': ['lib/lib%s.%s' % (l, e) for l in ['gmp', 'gmpxx'] for e in [SHLIB_EXT, 'a']] +
'files': ['lib/lib%s.%s' % (x, e) for x in ['gmp', 'gmpxx'] for e in [SHLIB_EXT, 'a']] +
['include/gmp.h', 'include/gmpxx.h'],
'dirs': ['share'],
}
Expand Down
2 changes: 1 addition & 1 deletion easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-11.2.0.eb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ testopts = " && rm -r %(installdir)s/lib"
runtest = 'check'

sanity_check_paths = {
'files': ['lib/lib%s.%s' % (l, e) for l in ['gmp', 'gmpxx'] for e in [SHLIB_EXT, 'a']] +
'files': ['lib/lib%s.%s' % (x, e) for x in ['gmp', 'gmpxx'] for e in [SHLIB_EXT, 'a']] +
['include/gmp.h', 'include/gmpxx.h'],
'dirs': ['share'],
}
Expand Down
2 changes: 1 addition & 1 deletion easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-11.3.0.eb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ testopts = " && rm -r %(installdir)s/lib"
runtest = 'check'

sanity_check_paths = {
'files': ['lib/lib%s.%s' % (l, e) for l in ['gmp', 'gmpxx'] for e in [SHLIB_EXT, 'a']] +
'files': ['lib/lib%s.%s' % (x, e) for x in ['gmp', 'gmpxx'] for e in [SHLIB_EXT, 'a']] +
['include/gmp.h', 'include/gmpxx.h'],
'dirs': ['share'],
}
Expand Down
2 changes: 1 addition & 1 deletion easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-12.2.0.eb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ testopts = " && rm -r %(installdir)s/lib"
runtest = 'check'

sanity_check_paths = {
'files': ['lib/lib%s.%s' % (l, e) for l in ['gmp', 'gmpxx'] for e in [SHLIB_EXT, 'a']] +
'files': ['lib/lib%s.%s' % (x, e) for x in ['gmp', 'gmpxx'] for e in [SHLIB_EXT, 'a']] +
['include/gmp.h', 'include/gmpxx.h'],
'dirs': ['share'],
}
Expand Down
2 changes: 1 addition & 1 deletion easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-12.3.0.eb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ testopts = " && rm -r %(installdir)s/lib"
runtest = 'check'

sanity_check_paths = {
'files': ['lib/lib%s.%s' % (l, e) for l in ['gmp', 'gmpxx'] for e in [SHLIB_EXT, 'a']] +
'files': ['lib/lib%s.%s' % (x, e) for x in ['gmp', 'gmpxx'] for e in [SHLIB_EXT, 'a']] +
['include/gmp.h', 'include/gmpxx.h'],
'dirs': ['share'],
}
Expand Down
2 changes: 1 addition & 1 deletion easybuild/easyconfigs/g/GMP/GMP-6.3.0-GCCcore-13.2.0.eb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ testopts = " && rm -r %(installdir)s/lib"
runtest = 'check'

sanity_check_paths = {
'files': ['lib/lib%s.%s' % (l, e) for l in ['gmp', 'gmpxx'] for e in [SHLIB_EXT, 'a']] +
'files': ['lib/lib%s.%s' % (x, e) for x in ['gmp', 'gmpxx'] for e in [SHLIB_EXT, 'a']] +
['include/gmp.h', 'include/gmpxx.h'],
'dirs': ['share'],
}
Expand Down
2 changes: 1 addition & 1 deletion easybuild/easyconfigs/g/GMP/GMP-6.3.0-GCCcore-13.3.0.eb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ testopts = " && rm -r %(installdir)s/lib"
runtest = 'check'

sanity_check_paths = {
'files': ['lib/lib%s.%s' % (l, e) for l in ['gmp', 'gmpxx'] for e in [SHLIB_EXT, 'a']] +
'files': ['lib/lib%s.%s' % (x, e) for x in ['gmp', 'gmpxx'] for e in [SHLIB_EXT, 'a']] +
['include/gmp.h', 'include/gmpxx.h'],
'dirs': ['share'],
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ version = '0.9'
versionsuffix = '-Python-%(pyver)s'

homepage = 'https://github.com/ListerLab/HOME'
description = """HOME (histogram of methylation) is a python package for differential methylation region (DMR) identification.
description = """\
HOME (histogram of methylation) is a python package for differential methylation region (DMR) identification.
The method uses histogram of methylation features and the linear Support Vector Machine (SVM) to identify DMRs
from whole genome bisulfite sequencing (WGBS) data."""

Expand Down
7 changes: 4 additions & 3 deletions easybuild/easyconfigs/h/Hypre/Hypre-2.11.1-foss-2016a.eb
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ name = 'Hypre'
version = '2.11.1'

homepage = "https://computation.llnl.gov/casc/linear_solvers/sls_hypre.html"
description = """Hypre is a library for solving large, sparse linear systems of equations on massively parallel computers.
The problems of interest arise in the simulation codes being developed at LLNL and elsewhere
to study physical phenomena in the defense, environmental, energy, and biological sciences."""
description = """\
Hypre is a library for solving large, sparse linear systems of equations on massively parallel computers.
The problems of interest arise in the simulation codes being developed at LLNL and elsewhere
to study physical phenomena in the defense, environmental, energy, and biological sciences."""

toolchain = {'name': 'foss', 'version': '2016a'}
toolchainopts = {'pic': True}
Expand Down
7 changes: 4 additions & 3 deletions easybuild/easyconfigs/h/Hypre/Hypre-2.11.1-intel-2016a.eb
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ name = 'Hypre'
version = '2.11.1'

homepage = "https://computation.llnl.gov/casc/linear_solvers/sls_hypre.html"
description = """Hypre is a library for solving large, sparse linear systems of equations on massively parallel computers.
The problems of interest arise in the simulation codes being developed at LLNL and elsewhere
to study physical phenomena in the defense, environmental, energy, and biological sciences."""
description = """\
Hypre is a library for solving large, sparse linear systems of equations on massively parallel computers.
The problems of interest arise in the simulation codes being developed at LLNL and elsewhere
to study physical phenomena in the defense, environmental, energy, and biological sciences."""

toolchain = {'name': 'intel', 'version': '2016a'}
toolchainopts = {'pic': True}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ version = '3.0.0'
versionsuffix = '-cli'

homepage = 'https://github.com/hpcugent/hanythingondemand'
description = """HanythingOnDemand (HOD) is a system for provisioning virtual Hadoop clusters over a large physical cluster.
description = """\
HanythingOnDemand (HOD) is a system for provisioning virtual Hadoop clusters over a large physical cluster.
It uses the Torque resource manager to do node allocation."""

toolchain = SYSTEM
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ version = '3.0.1'
versionsuffix = '-cli'

homepage = 'https://github.com/hpcugent/hanythingondemand'
description = """HanythingOnDemand (HOD) is a system for provisioning virtual Hadoop clusters over a large physical cluster.
description = description = """\
HanythingOnDemand (HOD) is a system for provisioning virtual Hadoop clusters over a large physical cluster.
It uses the Torque resource manager to do node allocation."""

toolchain = SYSTEM
Expand Down
Loading
Loading