From f191a39d540b994f78ac7c2379f3dadbedd54c74 Mon Sep 17 00:00:00 2001 From: Alexander Grund Date: Fri, 13 Sep 2024 16:53:01 +0200 Subject: [PATCH 1/4] Check for pycodestyle in styletests framework uses pycodestyle if available and pep8 only as a fallback and later likely not at all (pep8 was renamed to pycodestyle and the existing package is no longer updated) So we need to check for either both or (more future proof) only for pycodestyle. --- test/easyconfigs/styletests.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/easyconfigs/styletests.py b/test/easyconfigs/styletests.py index 8c695514aba6..4677d96b5b63 100644 --- a/test/easyconfigs/styletests.py +++ b/test/easyconfigs/styletests.py @@ -23,7 +23,7 @@ # along with EasyBuild. If not, see . ## """ -Style tests for easyconfig files. Uses pep8. +Style tests for easyconfig files. Uses pycodestyle. @author: Ward Poelmans (Ghent University) """ @@ -37,15 +37,15 @@ from easybuild.framework.easyconfig.style import check_easyconfigs_style try: - import pep8 + import pycodestyle except ImportError: - pep8 = None + pycodestyle = None class StyleTest(TestCase): log = fancylogger.getLogger("StyleTest", fname=False) - @skipIf(not pep8, 'no pep8 available') + @skipIf(not pycodestyle, 'pycodestyle is not available') def test_style_conformance(self): """Check the easyconfigs for style""" # all available easyconfig files From 87dea8ff5913f066b8ef60680d16d021a2165864 Mon Sep 17 00:00:00 2001 From: Alexander Grund Date: Fri, 13 Sep 2024 16:55:28 +0200 Subject: [PATCH 2/4] Install pycodestyle in CI pep8 has bugs which makes it miss many issues like long-lines in docstrings. This might make the tests fail if both packages are available as framework prefers the newer pycodestyle. --- .github/workflows/unit_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 82cf7cacef93..8105438411b4 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -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: | From 3e3727adc631f13cc0cdf6edf8931924a29e1cd9 Mon Sep 17 00:00:00 2001 From: Alexander Grund Date: Fri, 13 Sep 2024 16:56:48 +0200 Subject: [PATCH 3/4] Fix code style issues in existing ECs These make the test fail, so fix them. --- .../c/CPB/CPB-11-4-2011-foss-2017a-Python-2.7.13.eb | 8 ++++---- .../f/FreeSurfer/FreeSurfer-5.3.0-centos4_x86_64.eb | 6 ++++-- .../f/FreeSurfer/FreeSurfer-6.0.0-centos6_x86_64.eb | 6 ++++-- .../f/FreeSurfer/FreeSurfer-6.0.1-centos6_x86_64.eb | 6 ++++-- .../f/FreeSurfer/FreeSurfer-7.1.1-centos6_x86_64.eb | 6 ++++-- .../f/FreeSurfer/FreeSurfer-7.1.1-centos7_x86_64.eb | 6 ++++-- .../f/FreeSurfer/FreeSurfer-7.1.1-centos8_x86_64.eb | 6 ++++-- .../easyconfigs/g/GConf/GConf-3.2.6-GCCcore-8.2.0.eb | 4 ++-- .../easyconfigs/g/GConf/GConf-3.2.6-GCCcore-8.3.0.eb | 4 ++-- easybuild/easyconfigs/g/GConf/GConf-3.2.6-foss-2016a.eb | 4 ++-- easybuild/easyconfigs/g/GConf/GConf-3.2.6-foss-2018b.eb | 4 ++-- easybuild/easyconfigs/g/GConf/GConf-3.2.6-intel-2016a.eb | 4 ++-- easybuild/easyconfigs/g/GConf/GConf-3.2.6-intel-2016b.eb | 4 ++-- easybuild/easyconfigs/g/GConf/GConf-3.2.6-intel-2017a.eb | 4 ++-- easybuild/easyconfigs/g/GConf/GConf-3.2.6-intel-2017b.eb | 4 ++-- .../h/HOME/HOME-0.9-foss-2017a-Python-2.7.13.eb | 3 ++- easybuild/easyconfigs/h/Hypre/Hypre-2.11.1-foss-2016a.eb | 7 ++++--- easybuild/easyconfigs/h/Hypre/Hypre-2.11.1-intel-2016a.eb | 7 ++++--- .../h/hanythingondemand/hanythingondemand-3.0.0-cli.eb | 3 ++- .../h/hanythingondemand/hanythingondemand-3.0.1-cli.eb | 3 ++- .../h/hanythingondemand/hanythingondemand-3.0.2-cli.eb | 3 ++- .../h/hanythingondemand/hanythingondemand-3.0.3-cli.eb | 3 ++- .../h/hanythingondemand/hanythingondemand-3.0.4-cli.eb | 3 ++- .../h/hanythingondemand/hanythingondemand-3.1.0-cli.eb | 3 ++- .../hanythingondemand-3.1.0-intel-2016a-Python-2.7.11.eb | 3 ++- .../h/hanythingondemand/hanythingondemand-3.1.1-cli.eb | 3 ++- .../hanythingondemand-3.1.1-intel-2016a-Python-2.7.11.eb | 3 ++- .../h/hanythingondemand/hanythingondemand-3.1.2-cli.eb | 3 ++- .../hanythingondemand-3.1.2-intel-2016a-Python-2.7.11.eb | 3 ++- .../h/hanythingondemand/hanythingondemand-3.1.3-cli.eb | 3 ++- .../hanythingondemand-3.1.3-intel-2016b-Python-2.7.12.eb | 3 ++- .../h/hanythingondemand/hanythingondemand-3.1.4-cli.eb | 3 ++- .../hanythingondemand-3.1.4-intel-2016b-Python-2.7.12.eb | 3 ++- .../h/hanythingondemand/hanythingondemand-3.2.0-cli.eb | 3 ++- .../hanythingondemand-3.2.0-intel-2016b-Python-2.7.12.eb | 3 ++- .../h/hanythingondemand/hanythingondemand-3.2.2-cli.eb | 3 ++- .../hanythingondemand-3.2.2-intel-2016b-Python-2.7.12.eb | 3 ++- .../i/inflection/inflection-1.3.5-foss-2023a-R-4.3.2.eb | 5 +++-- easybuild/easyconfigs/m/Maq/Maq-0.7.0.eb | 5 +++-- .../p/PileOMeth/PileOMeth-0.1.11-foss-2016b.eb | 5 +++-- .../p/pftoolsV3/pftoolsV3-20160324-foss-2016a.eb | 5 +++-- easybuild/easyconfigs/q/QtPy/QtPy-1.9.0-GCCcore-10.2.0.eb | 3 ++- .../q/QtPy/QtPy-1.9.0-GCCcore-8.3.0-Python-3.7.4.eb | 3 ++- .../Qtconsole/Qtconsole-4.7.7-foss-2019b-Python-3.7.4.eb | 3 ++- .../Qtconsole-4.7.7-fosscuda-2019b-Python-3.7.4.eb | 3 ++- .../q/Qtconsole/Qtconsole-5.0.2-GCCcore-10.2.0.eb | 3 ++- .../r/RMBlast/RMBlast-2.2.28-foss-2016a-Python-2.7.11.eb | 7 ++++--- easybuild/easyconfigs/s/SHORE/SHORE-0.9.3-foss-2016a.eb | 4 ++-- easybuild/easyconfigs/t/Tk/Tk-8.6.3-GCC-4.8.4-no-X11.eb | 3 ++- easybuild/easyconfigs/t/Tk/Tk-8.6.3-GCC-4.9.2-no-X11.eb | 3 ++- .../easyconfigs/t/Tk/Tk-8.6.4-GCC-4.9.3-2.25-no-X11.eb | 3 ++- .../easyconfigs/t/Tk/Tk-8.6.4-GNU-4.9.3-2.25-no-X11.eb | 3 ++- easybuild/easyconfigs/t/Tk/Tk-8.6.4-foss-2016a-no-X11.eb | 3 ++- .../easyconfigs/t/Tk/Tk-8.6.4-gimkl-2.11.5-no-X11.eb | 3 ++- .../t/Tk/Tk-8.6.4-intel-2016.02-GCC-4.9-no-X11.eb | 3 ++- .../easyconfigs/t/Tk/Tk-8.6.4-intel-2016a-libX11-1.6.3.eb | 3 ++- easybuild/easyconfigs/t/Tk/Tk-8.6.4-intel-2016a-no-X11.eb | 3 ++- .../v/ViennaRNA/ViennaRNA-2.2.3_fix-pragma.patch | 2 +- 58 files changed, 139 insertions(+), 86 deletions(-) diff --git a/easybuild/easyconfigs/c/CPB/CPB-11-4-2011-foss-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/c/CPB/CPB-11-4-2011-foss-2017a-Python-2.7.13.eb index 18d84e42717a..717931d64f68 100644 --- a/easybuild/easyconfigs/c/CPB/CPB-11-4-2011-foss-2017a-Python-2.7.13.eb +++ b/easybuild/easyconfigs/c/CPB/CPB-11-4-2011-foss-2017a-Python-2.7.13.eb @@ -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'} diff --git a/easybuild/easyconfigs/f/FreeSurfer/FreeSurfer-5.3.0-centos4_x86_64.eb b/easybuild/easyconfigs/f/FreeSurfer/FreeSurfer-5.3.0-centos4_x86_64.eb index 1d5111f9d0ff..0d25671bc77b 100644 --- a/easybuild/easyconfigs/f/FreeSurfer/FreeSurfer-5.3.0-centos4_x86_64.eb +++ b/easybuild/easyconfigs/f/FreeSurfer/FreeSurfer-5.3.0-centos4_x86_64.eb @@ -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 diff --git a/easybuild/easyconfigs/f/FreeSurfer/FreeSurfer-6.0.0-centos6_x86_64.eb b/easybuild/easyconfigs/f/FreeSurfer/FreeSurfer-6.0.0-centos6_x86_64.eb index a447630d1c8e..80c2ced70576 100644 --- a/easybuild/easyconfigs/f/FreeSurfer/FreeSurfer-6.0.0-centos6_x86_64.eb +++ b/easybuild/easyconfigs/f/FreeSurfer/FreeSurfer-6.0.0-centos6_x86_64.eb @@ -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 diff --git a/easybuild/easyconfigs/f/FreeSurfer/FreeSurfer-6.0.1-centos6_x86_64.eb b/easybuild/easyconfigs/f/FreeSurfer/FreeSurfer-6.0.1-centos6_x86_64.eb index 2f780b5d6a63..f7c0a9dadb48 100644 --- a/easybuild/easyconfigs/f/FreeSurfer/FreeSurfer-6.0.1-centos6_x86_64.eb +++ b/easybuild/easyconfigs/f/FreeSurfer/FreeSurfer-6.0.1-centos6_x86_64.eb @@ -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 diff --git a/easybuild/easyconfigs/f/FreeSurfer/FreeSurfer-7.1.1-centos6_x86_64.eb b/easybuild/easyconfigs/f/FreeSurfer/FreeSurfer-7.1.1-centos6_x86_64.eb index 3ff7305bc664..d10977618e2d 100644 --- a/easybuild/easyconfigs/f/FreeSurfer/FreeSurfer-7.1.1-centos6_x86_64.eb +++ b/easybuild/easyconfigs/f/FreeSurfer/FreeSurfer-7.1.1-centos6_x86_64.eb @@ -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 diff --git a/easybuild/easyconfigs/f/FreeSurfer/FreeSurfer-7.1.1-centos7_x86_64.eb b/easybuild/easyconfigs/f/FreeSurfer/FreeSurfer-7.1.1-centos7_x86_64.eb index e0c851d46073..254852cae611 100644 --- a/easybuild/easyconfigs/f/FreeSurfer/FreeSurfer-7.1.1-centos7_x86_64.eb +++ b/easybuild/easyconfigs/f/FreeSurfer/FreeSurfer-7.1.1-centos7_x86_64.eb @@ -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 diff --git a/easybuild/easyconfigs/f/FreeSurfer/FreeSurfer-7.1.1-centos8_x86_64.eb b/easybuild/easyconfigs/f/FreeSurfer/FreeSurfer-7.1.1-centos8_x86_64.eb index 0d0830a63099..761e52f4229c 100644 --- a/easybuild/easyconfigs/f/FreeSurfer/FreeSurfer-7.1.1-centos8_x86_64.eb +++ b/easybuild/easyconfigs/f/FreeSurfer/FreeSurfer-7.1.1-centos8_x86_64.eb @@ -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 diff --git a/easybuild/easyconfigs/g/GConf/GConf-3.2.6-GCCcore-8.2.0.eb b/easybuild/easyconfigs/g/GConf/GConf-3.2.6-GCCcore-8.2.0.eb index 0bdfa6791345..ec1c3d4e80d6 100644 --- a/easybuild/easyconfigs/g/GConf/GConf-3.2.6-GCCcore-8.2.0.eb +++ b/easybuild/easyconfigs/g/GConf/GConf-3.2.6-GCCcore-8.2.0.eb @@ -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'] } diff --git a/easybuild/easyconfigs/g/GConf/GConf-3.2.6-GCCcore-8.3.0.eb b/easybuild/easyconfigs/g/GConf/GConf-3.2.6-GCCcore-8.3.0.eb index 7abf72b477a1..16a8fd8fe4a4 100644 --- a/easybuild/easyconfigs/g/GConf/GConf-3.2.6-GCCcore-8.3.0.eb +++ b/easybuild/easyconfigs/g/GConf/GConf-3.2.6-GCCcore-8.3.0.eb @@ -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'] } diff --git a/easybuild/easyconfigs/g/GConf/GConf-3.2.6-foss-2016a.eb b/easybuild/easyconfigs/g/GConf/GConf-3.2.6-foss-2016a.eb index 45f6636633b8..1977d5abcd3a 100644 --- a/easybuild/easyconfigs/g/GConf/GConf-3.2.6-foss-2016a.eb +++ b/easybuild/easyconfigs/g/GConf/GConf-3.2.6-foss-2016a.eb @@ -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'] } diff --git a/easybuild/easyconfigs/g/GConf/GConf-3.2.6-foss-2018b.eb b/easybuild/easyconfigs/g/GConf/GConf-3.2.6-foss-2018b.eb index 15d1a7c81663..9cd1551c71a7 100644 --- a/easybuild/easyconfigs/g/GConf/GConf-3.2.6-foss-2018b.eb +++ b/easybuild/easyconfigs/g/GConf/GConf-3.2.6-foss-2018b.eb @@ -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'] } diff --git a/easybuild/easyconfigs/g/GConf/GConf-3.2.6-intel-2016a.eb b/easybuild/easyconfigs/g/GConf/GConf-3.2.6-intel-2016a.eb index a84f9eddd5a2..01363dbbd3f6 100644 --- a/easybuild/easyconfigs/g/GConf/GConf-3.2.6-intel-2016a.eb +++ b/easybuild/easyconfigs/g/GConf/GConf-3.2.6-intel-2016a.eb @@ -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'] } diff --git a/easybuild/easyconfigs/g/GConf/GConf-3.2.6-intel-2016b.eb b/easybuild/easyconfigs/g/GConf/GConf-3.2.6-intel-2016b.eb index cc25368e3048..ce33c79a9c8d 100644 --- a/easybuild/easyconfigs/g/GConf/GConf-3.2.6-intel-2016b.eb +++ b/easybuild/easyconfigs/g/GConf/GConf-3.2.6-intel-2016b.eb @@ -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'] } diff --git a/easybuild/easyconfigs/g/GConf/GConf-3.2.6-intel-2017a.eb b/easybuild/easyconfigs/g/GConf/GConf-3.2.6-intel-2017a.eb index 5c54d46358ad..67bfea1c142c 100644 --- a/easybuild/easyconfigs/g/GConf/GConf-3.2.6-intel-2017a.eb +++ b/easybuild/easyconfigs/g/GConf/GConf-3.2.6-intel-2017a.eb @@ -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'] } diff --git a/easybuild/easyconfigs/g/GConf/GConf-3.2.6-intel-2017b.eb b/easybuild/easyconfigs/g/GConf/GConf-3.2.6-intel-2017b.eb index 5197bc0f0d2e..3c093a1e245d 100644 --- a/easybuild/easyconfigs/g/GConf/GConf-3.2.6-intel-2017b.eb +++ b/easybuild/easyconfigs/g/GConf/GConf-3.2.6-intel-2017b.eb @@ -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'] } diff --git a/easybuild/easyconfigs/h/HOME/HOME-0.9-foss-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/h/HOME/HOME-0.9-foss-2017a-Python-2.7.13.eb index f98439d69644..0f5c250390f1 100644 --- a/easybuild/easyconfigs/h/HOME/HOME-0.9-foss-2017a-Python-2.7.13.eb +++ b/easybuild/easyconfigs/h/HOME/HOME-0.9-foss-2017a-Python-2.7.13.eb @@ -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.""" diff --git a/easybuild/easyconfigs/h/Hypre/Hypre-2.11.1-foss-2016a.eb b/easybuild/easyconfigs/h/Hypre/Hypre-2.11.1-foss-2016a.eb index 5f5821f26c1e..74a5f05d7277 100644 --- a/easybuild/easyconfigs/h/Hypre/Hypre-2.11.1-foss-2016a.eb +++ b/easybuild/easyconfigs/h/Hypre/Hypre-2.11.1-foss-2016a.eb @@ -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} diff --git a/easybuild/easyconfigs/h/Hypre/Hypre-2.11.1-intel-2016a.eb b/easybuild/easyconfigs/h/Hypre/Hypre-2.11.1-intel-2016a.eb index 2de6608fd997..4325e86407b5 100644 --- a/easybuild/easyconfigs/h/Hypre/Hypre-2.11.1-intel-2016a.eb +++ b/easybuild/easyconfigs/h/Hypre/Hypre-2.11.1-intel-2016a.eb @@ -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} diff --git a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.0.0-cli.eb b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.0.0-cli.eb index 8ee9d1902b0d..0b37d810e95f 100644 --- a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.0.0-cli.eb +++ b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.0.0-cli.eb @@ -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 diff --git a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.0.1-cli.eb b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.0.1-cli.eb index 95b33f19656d..71fee4f149ac 100644 --- a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.0.1-cli.eb +++ b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.0.1-cli.eb @@ -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 diff --git a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.0.2-cli.eb b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.0.2-cli.eb index f5191f7af562..2baade2dc45b 100644 --- a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.0.2-cli.eb +++ b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.0.2-cli.eb @@ -5,7 +5,8 @@ version = '3.0.2' 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 diff --git a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.0.3-cli.eb b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.0.3-cli.eb index ce2aef97f036..388f5e75aafb 100644 --- a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.0.3-cli.eb +++ b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.0.3-cli.eb @@ -5,7 +5,8 @@ version = '3.0.3' 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 diff --git a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.0.4-cli.eb b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.0.4-cli.eb index 0ba26f75c639..eaa4594ee560 100644 --- a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.0.4-cli.eb +++ b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.0.4-cli.eb @@ -5,7 +5,8 @@ version = '3.0.4' 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 diff --git a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.0-cli.eb b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.0-cli.eb index b0ee3b3f2892..d16def677641 100644 --- a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.0-cli.eb +++ b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.0-cli.eb @@ -5,7 +5,8 @@ version = '3.1.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 = 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 diff --git a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.0-intel-2016a-Python-2.7.11.eb b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.0-intel-2016a-Python-2.7.11.eb index ea6beb02ab92..10a4defad0e5 100644 --- a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.0-intel-2016a-Python-2.7.11.eb +++ b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.0-intel-2016a-Python-2.7.11.eb @@ -5,7 +5,8 @@ version = '3.1.0' versionsuffix = '-Python-%(pyver)s' 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 = {'name': 'intel', 'version': '2016a'} diff --git a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.1-cli.eb b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.1-cli.eb index 37a6b75aa022..1ea4f0cbc340 100644 --- a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.1-cli.eb +++ b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.1-cli.eb @@ -5,7 +5,8 @@ version = '3.1.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 diff --git a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.1-intel-2016a-Python-2.7.11.eb b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.1-intel-2016a-Python-2.7.11.eb index c8a9f916228c..32cb5ffed64c 100644 --- a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.1-intel-2016a-Python-2.7.11.eb +++ b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.1-intel-2016a-Python-2.7.11.eb @@ -5,7 +5,8 @@ version = '3.1.1' versionsuffix = '-Python-%(pyver)s' 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 = {'name': 'intel', 'version': '2016a'} diff --git a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.2-cli.eb b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.2-cli.eb index b690d69de809..ee0f88775fb6 100644 --- a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.2-cli.eb +++ b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.2-cli.eb @@ -5,7 +5,8 @@ version = '3.1.2' 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 diff --git a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.2-intel-2016a-Python-2.7.11.eb b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.2-intel-2016a-Python-2.7.11.eb index dfb850cb0b47..05d5f197ee18 100644 --- a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.2-intel-2016a-Python-2.7.11.eb +++ b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.2-intel-2016a-Python-2.7.11.eb @@ -5,7 +5,8 @@ version = '3.1.2' versionsuffix = '-Python-%(pyver)s' 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 = {'name': 'intel', 'version': '2016a'} diff --git a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.3-cli.eb b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.3-cli.eb index 1c54dbe72e58..af9468f4447d 100644 --- a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.3-cli.eb +++ b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.3-cli.eb @@ -5,7 +5,8 @@ version = '3.1.3' 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 diff --git a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.3-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.3-intel-2016b-Python-2.7.12.eb index c344402bb0e7..136fe79d73c5 100644 --- a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.3-intel-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.3-intel-2016b-Python-2.7.12.eb @@ -5,7 +5,8 @@ version = '3.1.3' versionsuffix = '-Python-%(pyver)s' 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 = {'name': 'intel', 'version': '2016b'} diff --git a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.4-cli.eb b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.4-cli.eb index 453fefa5448e..58f26a92b4d6 100644 --- a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.4-cli.eb +++ b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.4-cli.eb @@ -5,7 +5,8 @@ version = '3.1.4' 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 diff --git a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.4-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.4-intel-2016b-Python-2.7.12.eb index d7a2250529ca..f4f90b542c86 100644 --- a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.4-intel-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.1.4-intel-2016b-Python-2.7.12.eb @@ -5,7 +5,8 @@ version = '3.1.4' versionsuffix = '-Python-%(pyver)s' 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 = {'name': 'intel', 'version': '2016b'} diff --git a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.2.0-cli.eb b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.2.0-cli.eb index 25073afd3d69..937d3a1286ea 100644 --- a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.2.0-cli.eb +++ b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.2.0-cli.eb @@ -5,7 +5,8 @@ version = '3.2.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 = 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 diff --git a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.2.0-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.2.0-intel-2016b-Python-2.7.12.eb index 877aaf825311..86f48fabb3f2 100644 --- a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.2.0-intel-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.2.0-intel-2016b-Python-2.7.12.eb @@ -5,7 +5,8 @@ version = '3.2.0' versionsuffix = '-Python-%(pyver)s' 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 = {'name': 'intel', 'version': '2016b'} diff --git a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.2.2-cli.eb b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.2.2-cli.eb index 41fb847fcf76..c2c8f1406762 100644 --- a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.2.2-cli.eb +++ b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.2.2-cli.eb @@ -5,7 +5,8 @@ version = '3.2.2' 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 diff --git a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.2.2-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.2.2-intel-2016b-Python-2.7.12.eb index 2b63aacbecca..459bce146904 100644 --- a/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.2.2-intel-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/h/hanythingondemand/hanythingondemand-3.2.2-intel-2016b-Python-2.7.12.eb @@ -5,7 +5,8 @@ version = '3.2.2' versionsuffix = '-Python-%(pyver)s' 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 = {'name': 'intel', 'version': '2016b'} diff --git a/easybuild/easyconfigs/i/inflection/inflection-1.3.5-foss-2023a-R-4.3.2.eb b/easybuild/easyconfigs/i/inflection/inflection-1.3.5-foss-2023a-R-4.3.2.eb index af8c45ca3938..4c9cbc8129e2 100644 --- a/easybuild/easyconfigs/i/inflection/inflection-1.3.5-foss-2023a-R-4.3.2.eb +++ b/easybuild/easyconfigs/i/inflection/inflection-1.3.5-foss-2023a-R-4.3.2.eb @@ -5,8 +5,9 @@ version = '1.3.5' versionsuffix = '-R-%(rver)s' homepage = 'https://github.com/dchristop/inflection' -description = """inflection is a package that finds the inflection point of a planar curve which is given as a data frame - of discrete (xi,yi) points""" +description = """\ +inflection is a package that finds the inflection point of a planar curve which is given as a data frame +of discrete (xi,yi) points""" toolchain = {'name': 'foss', 'version': '2023a'} diff --git a/easybuild/easyconfigs/m/Maq/Maq-0.7.0.eb b/easybuild/easyconfigs/m/Maq/Maq-0.7.0.eb index bd8bd5efe52b..31a174806297 100644 --- a/easybuild/easyconfigs/m/Maq/Maq-0.7.0.eb +++ b/easybuild/easyconfigs/m/Maq/Maq-0.7.0.eb @@ -8,8 +8,9 @@ name = 'Maq' version = '0.7.0' homepage = 'http://maq.sourceforge.net/maq-man.shtml' -description = """Maq is a software that builds mapping assemblies from short reads generated by the next-generation sequencing - machines.""" +description = """\ +Maq is a software that builds mapping assemblies from short reads generated by the next-generation sequencing machines\ +""" toolchain = SYSTEM diff --git a/easybuild/easyconfigs/p/PileOMeth/PileOMeth-0.1.11-foss-2016b.eb b/easybuild/easyconfigs/p/PileOMeth/PileOMeth-0.1.11-foss-2016b.eb index edf4ca1f3730..eb5e1279a0ba 100644 --- a/easybuild/easyconfigs/p/PileOMeth/PileOMeth-0.1.11-foss-2016b.eb +++ b/easybuild/easyconfigs/p/PileOMeth/PileOMeth-0.1.11-foss-2016b.eb @@ -1,7 +1,7 @@ ## # This is a contribution from Phoenix HPC Service, The University of Adelaide, Australia # Homepage: https://www.adelaide.edu.au/phoenix/ -# +# # Copyright:: adelaide.edu.au/phoenix # Authors:: Robert Qiao , Exe Escobedo # License:: @@ -15,7 +15,8 @@ name = 'PileOMeth' version = '0.1.11' homepage = 'https://github.com/dpryan79/PileOMeth' -description = """PileOMeth processes a coordinate-sorted and indexed BAM or CRAM file containing some form of BS-seq alignments. +description = """\ +PileOMeth processes a coordinate-sorted and indexed BAM or CRAM file containing some form of BS-seq alignments. PileOMeth extracts per-base methylation metrics from them. PileOMeth requires an indexed fasta file containing the reference genome as well. """ diff --git a/easybuild/easyconfigs/p/pftoolsV3/pftoolsV3-20160324-foss-2016a.eb b/easybuild/easyconfigs/p/pftoolsV3/pftoolsV3-20160324-foss-2016a.eb index f72f7b4c0ec2..bcd872567dee 100644 --- a/easybuild/easyconfigs/p/pftoolsV3/pftoolsV3-20160324-foss-2016a.eb +++ b/easybuild/easyconfigs/p/pftoolsV3/pftoolsV3-20160324-foss-2016a.eb @@ -4,8 +4,9 @@ name = 'pftoolsV3' version = '20160324' homepage = 'http://web.expasy.org/pftools/' -description = """The pftools package contains all the software necessary to build protein and DNA generalized profiles and use - them to scan and align sequences, and search databases. +description = """\ +The pftools package contains all the software necessary to build protein and DNA generalized profiles and use +them to scan and align sequences, and search databases. """ toolchain = {'name': 'foss', 'version': '2016a'} diff --git a/easybuild/easyconfigs/q/QtPy/QtPy-1.9.0-GCCcore-10.2.0.eb b/easybuild/easyconfigs/q/QtPy/QtPy-1.9.0-GCCcore-10.2.0.eb index 863392420ba6..2db677bda277 100644 --- a/easybuild/easyconfigs/q/QtPy/QtPy-1.9.0-GCCcore-10.2.0.eb +++ b/easybuild/easyconfigs/q/QtPy/QtPy-1.9.0-GCCcore-10.2.0.eb @@ -4,7 +4,8 @@ name = 'QtPy' version = '1.9.0' homepage = "https://github.com/spyder-ide/qtpy" -description = """QtPy is a small abstraction layer that lets you write applications using a single API call to either PyQt or PySide. +description = """\ +QtPy is a small abstraction layer that lets you write applications using a single API call to either PyQt or PySide. It provides support for PyQt5, PyQt4, PySide2 and PySide.""" toolchain = {'name': 'GCCcore', 'version': '10.2.0'} diff --git a/easybuild/easyconfigs/q/QtPy/QtPy-1.9.0-GCCcore-8.3.0-Python-3.7.4.eb b/easybuild/easyconfigs/q/QtPy/QtPy-1.9.0-GCCcore-8.3.0-Python-3.7.4.eb index 095885518704..795888b6f87a 100644 --- a/easybuild/easyconfigs/q/QtPy/QtPy-1.9.0-GCCcore-8.3.0-Python-3.7.4.eb +++ b/easybuild/easyconfigs/q/QtPy/QtPy-1.9.0-GCCcore-8.3.0-Python-3.7.4.eb @@ -5,7 +5,8 @@ version = '1.9.0' versionsuffix = '-Python-%(pyver)s' homepage = "https://github.com/spyder-ide/qtpy" -description = """QtPy is a small abstraction layer that lets you write applications using a single API call to either PyQt or PySide. +description = """\ +QtPy is a small abstraction layer that lets you write applications using a single API call to either PyQt or PySide. It provides support for PyQt5, PyQt4, PySide2 and PySide.""" toolchain = {'name': 'GCCcore', 'version': '8.3.0'} diff --git a/easybuild/easyconfigs/q/Qtconsole/Qtconsole-4.7.7-foss-2019b-Python-3.7.4.eb b/easybuild/easyconfigs/q/Qtconsole/Qtconsole-4.7.7-foss-2019b-Python-3.7.4.eb index 9fe99bab0446..9d91b282995c 100644 --- a/easybuild/easyconfigs/q/Qtconsole/Qtconsole-4.7.7-foss-2019b-Python-3.7.4.eb +++ b/easybuild/easyconfigs/q/Qtconsole/Qtconsole-4.7.7-foss-2019b-Python-3.7.4.eb @@ -5,7 +5,8 @@ version = '4.7.7' versionsuffix = '-Python-%(pyver)s' homepage = 'https://jupyter.org/' -description = """A rich Qt-based console for working with Jupyter kernels, supporting rich media output, session export, and more. +description = """\ +A rich Qt-based console for working with Jupyter kernels, supporting rich media output, session export, and more. The Qtconsole is a very lightweight application that largely feels like a terminal, but provides a number of enhancements only possible in a GUI, such as inline figures, proper multiline editing with syntax highlighting, graphical calltips, and more.""" diff --git a/easybuild/easyconfigs/q/Qtconsole/Qtconsole-4.7.7-fosscuda-2019b-Python-3.7.4.eb b/easybuild/easyconfigs/q/Qtconsole/Qtconsole-4.7.7-fosscuda-2019b-Python-3.7.4.eb index 1e182d772d1c..6dd1bf26923d 100644 --- a/easybuild/easyconfigs/q/Qtconsole/Qtconsole-4.7.7-fosscuda-2019b-Python-3.7.4.eb +++ b/easybuild/easyconfigs/q/Qtconsole/Qtconsole-4.7.7-fosscuda-2019b-Python-3.7.4.eb @@ -5,7 +5,8 @@ version = '4.7.7' versionsuffix = '-Python-%(pyver)s' homepage = 'https://jupyter.org/' -description = """A rich Qt-based console for working with Jupyter kernels, supporting rich media output, session export, and more. +description = """\ +A rich Qt-based console for working with Jupyter kernels, supporting rich media output, session export, and more. The Qtconsole is a very lightweight application that largely feels like a terminal, but provides a number of enhancements only possible in a GUI, such as inline figures, proper multiline editing with syntax highlighting, graphical calltips, and more.""" diff --git a/easybuild/easyconfigs/q/Qtconsole/Qtconsole-5.0.2-GCCcore-10.2.0.eb b/easybuild/easyconfigs/q/Qtconsole/Qtconsole-5.0.2-GCCcore-10.2.0.eb index 26585354a271..3c1c6c003264 100644 --- a/easybuild/easyconfigs/q/Qtconsole/Qtconsole-5.0.2-GCCcore-10.2.0.eb +++ b/easybuild/easyconfigs/q/Qtconsole/Qtconsole-5.0.2-GCCcore-10.2.0.eb @@ -4,7 +4,8 @@ name = 'Qtconsole' version = '5.0.2' homepage = 'https://jupyter.org/' -description = """A rich Qt-based console for working with Jupyter kernels, supporting rich media output, session export, and more. +description = """\ +A rich Qt-based console for working with Jupyter kernels, supporting rich media output, session export, and more. The Qtconsole is a very lightweight application that largely feels like a terminal, but provides a number of enhancements only possible in a GUI, such as inline figures, proper multiline editing with syntax highlighting, graphical calltips, and more.""" diff --git a/easybuild/easyconfigs/r/RMBlast/RMBlast-2.2.28-foss-2016a-Python-2.7.11.eb b/easybuild/easyconfigs/r/RMBlast/RMBlast-2.2.28-foss-2016a-Python-2.7.11.eb index d6dced35466b..3d2c1d05449a 100644 --- a/easybuild/easyconfigs/r/RMBlast/RMBlast-2.2.28-foss-2016a-Python-2.7.11.eb +++ b/easybuild/easyconfigs/r/RMBlast/RMBlast-2.2.28-foss-2016a-Python-2.7.11.eb @@ -5,9 +5,10 @@ version = '2.2.28' versionsuffix = '-Python-2.7.11' homepage = 'http://www.repeatmasker.org/RMBlast.html' -description = """RMBlast is a RepeatMasker compatible version of the standard NCBI BLAST suite. The primary difference between - this distribution and the NCBI distribution is the addition of a new program 'rmblastn' for use with RepeatMasker and - RepeatModeler.""" +description = """\ +RMBlast is a RepeatMasker compatible version of the standard NCBI BLAST suite. The primary difference between +this distribution and the NCBI distribution is the addition of a new program 'rmblastn' for use with RepeatMasker and +RepeatModeler.""" toolchain = {'name': 'foss', 'version': '2016a'} diff --git a/easybuild/easyconfigs/s/SHORE/SHORE-0.9.3-foss-2016a.eb b/easybuild/easyconfigs/s/SHORE/SHORE-0.9.3-foss-2016a.eb index 4078e01a54f8..e8004498a87f 100644 --- a/easybuild/easyconfigs/s/SHORE/SHORE-0.9.3-foss-2016a.eb +++ b/easybuild/easyconfigs/s/SHORE/SHORE-0.9.3-foss-2016a.eb @@ -4,8 +4,8 @@ name = 'SHORE' version = '0.9.3' homepage = "http://1001genomes.org/software/shore.html" -description = """SHORE, for Short Read, is a mapping and analysis pipeline for short read data produced on the Illumina platform. -""" +description = """\ +SHORE, for Short Read, is a mapping and analysis pipeline for short read data produced on the Illumina platform.""" toolchain = {'name': 'foss', 'version': '2016a'} diff --git a/easybuild/easyconfigs/t/Tk/Tk-8.6.3-GCC-4.8.4-no-X11.eb b/easybuild/easyconfigs/t/Tk/Tk-8.6.3-GCC-4.8.4-no-X11.eb index e49d8019731b..e5b3143748cb 100644 --- a/easybuild/easyconfigs/t/Tk/Tk-8.6.3-GCC-4.8.4-no-X11.eb +++ b/easybuild/easyconfigs/t/Tk/Tk-8.6.3-GCC-4.8.4-no-X11.eb @@ -5,7 +5,8 @@ version = '8.6.3' versionsuffix = '-no-X11' homepage = 'http://www.tcl.tk/' -description = """Tk is an open source, cross-platform widget toolchain that provides a library of basic elements for building +description = """\ +Tk is an open source, cross-platform widget toolchain that provides a library of basic elements for building a graphical user interface (GUI) in many different programming languages.""" toolchain = {'name': 'GCC', 'version': '4.8.4'} diff --git a/easybuild/easyconfigs/t/Tk/Tk-8.6.3-GCC-4.9.2-no-X11.eb b/easybuild/easyconfigs/t/Tk/Tk-8.6.3-GCC-4.9.2-no-X11.eb index df6346fdf862..78d6c1f8ed3a 100644 --- a/easybuild/easyconfigs/t/Tk/Tk-8.6.3-GCC-4.9.2-no-X11.eb +++ b/easybuild/easyconfigs/t/Tk/Tk-8.6.3-GCC-4.9.2-no-X11.eb @@ -5,7 +5,8 @@ version = '8.6.3' versionsuffix = '-no-X11' homepage = 'http://www.tcl.tk/' -description = """Tk is an open source, cross-platform widget toolchain that provides a library of basic elements for building +description = """\ +Tk is an open source, cross-platform widget toolchain that provides a library of basic elements for building a graphical user interface (GUI) in many different programming languages.""" toolchain = {'name': 'GCC', 'version': '4.9.2'} diff --git a/easybuild/easyconfigs/t/Tk/Tk-8.6.4-GCC-4.9.3-2.25-no-X11.eb b/easybuild/easyconfigs/t/Tk/Tk-8.6.4-GCC-4.9.3-2.25-no-X11.eb index 8a30be2061d2..a29bee9e23c5 100644 --- a/easybuild/easyconfigs/t/Tk/Tk-8.6.4-GCC-4.9.3-2.25-no-X11.eb +++ b/easybuild/easyconfigs/t/Tk/Tk-8.6.4-GCC-4.9.3-2.25-no-X11.eb @@ -5,7 +5,8 @@ version = '8.6.4' versionsuffix = '-no-X11' homepage = 'http://www.tcl.tk/' -description = """Tk is an open source, cross-platform widget toolchain that provides a library of basic elements for building +description = """\ +Tk is an open source, cross-platform widget toolchain that provides a library of basic elements for building a graphical user interface (GUI) in many different programming languages.""" toolchain = {'name': 'GCC', 'version': '4.9.3-2.25'} diff --git a/easybuild/easyconfigs/t/Tk/Tk-8.6.4-GNU-4.9.3-2.25-no-X11.eb b/easybuild/easyconfigs/t/Tk/Tk-8.6.4-GNU-4.9.3-2.25-no-X11.eb index 50d6e6345589..136ad730001d 100644 --- a/easybuild/easyconfigs/t/Tk/Tk-8.6.4-GNU-4.9.3-2.25-no-X11.eb +++ b/easybuild/easyconfigs/t/Tk/Tk-8.6.4-GNU-4.9.3-2.25-no-X11.eb @@ -5,7 +5,8 @@ version = '8.6.4' versionsuffix = '-no-X11' homepage = 'http://www.tcl.tk/' -description = """Tk is an open source, cross-platform widget toolchain that provides a library of basic elements for building +description = """\ +Tk is an open source, cross-platform widget toolchain that provides a library of basic elements for building a graphical user interface (GUI) in many different programming languages.""" toolchain = {'name': 'GNU', 'version': '4.9.3-2.25'} diff --git a/easybuild/easyconfigs/t/Tk/Tk-8.6.4-foss-2016a-no-X11.eb b/easybuild/easyconfigs/t/Tk/Tk-8.6.4-foss-2016a-no-X11.eb index 57e512249bd8..e370a4da3e20 100644 --- a/easybuild/easyconfigs/t/Tk/Tk-8.6.4-foss-2016a-no-X11.eb +++ b/easybuild/easyconfigs/t/Tk/Tk-8.6.4-foss-2016a-no-X11.eb @@ -5,7 +5,8 @@ version = '8.6.4' versionsuffix = '-no-X11' homepage = 'http://www.tcl.tk/' -description = """Tk is an open source, cross-platform widget toolchain that provides a library of basic elements for building +description = """\ +Tk is an open source, cross-platform widget toolchain that provides a library of basic elements for building a graphical user interface (GUI) in many different programming languages.""" toolchain = {'name': 'foss', 'version': '2016a'} diff --git a/easybuild/easyconfigs/t/Tk/Tk-8.6.4-gimkl-2.11.5-no-X11.eb b/easybuild/easyconfigs/t/Tk/Tk-8.6.4-gimkl-2.11.5-no-X11.eb index be28b60358aa..ea8d4c020d78 100644 --- a/easybuild/easyconfigs/t/Tk/Tk-8.6.4-gimkl-2.11.5-no-X11.eb +++ b/easybuild/easyconfigs/t/Tk/Tk-8.6.4-gimkl-2.11.5-no-X11.eb @@ -5,7 +5,8 @@ version = '8.6.4' versionsuffix = '-no-X11' homepage = 'http://www.tcl.tk/' -description = """Tk is an open source, cross-platform widget toolchain that provides a library of basic elements for building +description = """\ +Tk is an open source, cross-platform widget toolchain that provides a library of basic elements for building a graphical user interface (GUI) in many different programming languages.""" toolchain = {'name': 'gimkl', 'version': '2.11.5'} diff --git a/easybuild/easyconfigs/t/Tk/Tk-8.6.4-intel-2016.02-GCC-4.9-no-X11.eb b/easybuild/easyconfigs/t/Tk/Tk-8.6.4-intel-2016.02-GCC-4.9-no-X11.eb index 873aa2d811e2..cb069c293be4 100644 --- a/easybuild/easyconfigs/t/Tk/Tk-8.6.4-intel-2016.02-GCC-4.9-no-X11.eb +++ b/easybuild/easyconfigs/t/Tk/Tk-8.6.4-intel-2016.02-GCC-4.9-no-X11.eb @@ -5,7 +5,8 @@ version = '8.6.4' versionsuffix = '-no-X11' homepage = 'http://www.tcl.tk/' -description = """Tk is an open source, cross-platform widget toolchain that provides a library of basic elements for building +description = """\ +Tk is an open source, cross-platform widget toolchain that provides a library of basic elements for building a graphical user interface (GUI) in many different programming languages.""" toolchain = {'name': 'intel', 'version': '2016.02-GCC-4.9'} diff --git a/easybuild/easyconfigs/t/Tk/Tk-8.6.4-intel-2016a-libX11-1.6.3.eb b/easybuild/easyconfigs/t/Tk/Tk-8.6.4-intel-2016a-libX11-1.6.3.eb index c3146e1bea87..8deec3a74dea 100644 --- a/easybuild/easyconfigs/t/Tk/Tk-8.6.4-intel-2016a-libX11-1.6.3.eb +++ b/easybuild/easyconfigs/t/Tk/Tk-8.6.4-intel-2016a-libX11-1.6.3.eb @@ -7,7 +7,8 @@ local_libxver = '1.6.3' versionsuffix = '-%s-%s' % (local_libx11, local_libxver) homepage = 'http://www.tcl.tk/' -description = """Tk is an open source, cross-platform widget toolchain that provides a library of basic elements for building +description = """\ +Tk is an open source, cross-platform widget toolchain that provides a library of basic elements for building a graphical user interface (GUI) in many different programming languages.""" toolchain = {'name': 'intel', 'version': '2016a'} diff --git a/easybuild/easyconfigs/t/Tk/Tk-8.6.4-intel-2016a-no-X11.eb b/easybuild/easyconfigs/t/Tk/Tk-8.6.4-intel-2016a-no-X11.eb index 3174f88f273b..3efb9ba558c7 100644 --- a/easybuild/easyconfigs/t/Tk/Tk-8.6.4-intel-2016a-no-X11.eb +++ b/easybuild/easyconfigs/t/Tk/Tk-8.6.4-intel-2016a-no-X11.eb @@ -5,7 +5,8 @@ version = '8.6.4' versionsuffix = '-no-X11' homepage = 'http://www.tcl.tk/' -description = """Tk is an open source, cross-platform widget toolchain that provides a library of basic elements for building +description = """\ +Tk is an open source, cross-platform widget toolchain that provides a library of basic elements for building a graphical user interface (GUI) in many different programming languages.""" toolchain = {'name': 'intel', 'version': '2016a'} diff --git a/easybuild/easyconfigs/v/ViennaRNA/ViennaRNA-2.2.3_fix-pragma.patch b/easybuild/easyconfigs/v/ViennaRNA/ViennaRNA-2.2.3_fix-pragma.patch index b53cab1ffff5..6d990158377d 100644 --- a/easybuild/easyconfigs/v/ViennaRNA/ViennaRNA-2.2.3_fix-pragma.patch +++ b/easybuild/easyconfigs/v/ViennaRNA/ViennaRNA-2.2.3_fix-pragma.patch @@ -12,7 +12,7 @@ author: Kenneth Hoste (HPC-UGent) + #pragma omp parallel for for (i=0; i<=n3; i++){ c[i] = (int *) vrna_alloc(sizeof(int) * (n4+1)); - in[i] = (int *) vrna_alloc(sizeof(int) * (n4+1)); + in [i] = (int *) vrna_alloc(sizeof(int) * (n4+1)); --- ViennaRNA-2.2.3/src/Kinfold/cache.c.orig 2017-02-28 14:16:36.074432301 +0100 +++ ViennaRNA-2.2.3/src/Kinfold/cache.c 2017-02-28 14:16:38.544493318 +0100 @@ -56,7 +56,6 @@ From 701aa34e0e85cfc7a53001e979229ac33f138b57 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 30 Sep 2024 13:23:52 +0200 Subject: [PATCH 4/4] use x instead of l in list comprehensions, since l is an ambiguous variable name reported by pycodestyle --- easybuild/easyconfigs/c/CaDiCaL/CaDiCaL-1.3.0-GCC-9.3.0.eb | 4 ++-- easybuild/easyconfigs/c/Cbc/Cbc-2.10.5-foss-2020b.eb | 2 +- easybuild/easyconfigs/c/Clp/Clp-1.17.6-foss-2020b.eb | 2 +- .../easyconfigs/c/cddlib/cddlib-0.94m-GCCcore-11.3.0.eb | 2 +- .../easyconfigs/c/cddlib/cddlib-0.94m-GCCcore-13.2.0.eb | 2 +- .../easyconfigs/d/dd/dd-0.5.6-foss-2020a-Python-3.8.2.eb | 2 +- easybuild/easyconfigs/g/GMP/GMP-6.2.0-GCCcore-10.2.0.eb | 2 +- easybuild/easyconfigs/g/GMP/GMP-6.2.0-GCCcore-9.3.0.eb | 2 +- easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-10.3.0.eb | 2 +- easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-11.2.0.eb | 2 +- easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-11.3.0.eb | 2 +- easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-12.2.0.eb | 2 +- easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-12.3.0.eb | 2 +- easybuild/easyconfigs/g/GMP/GMP-6.3.0-GCCcore-13.2.0.eb | 2 +- easybuild/easyconfigs/g/GMP/GMP-6.3.0-GCCcore-13.3.0.eb | 2 +- .../easyconfigs/i/ISA-L/ISA-L-2.30.0-GCCcore-10.2.0.eb | 2 +- .../easyconfigs/i/ISA-L/ISA-L-2.30.0-GCCcore-10.3.0.eb | 2 +- easybuild/easyconfigs/i/ITK/ITK-5.2.1-foss-2020b.eb | 2 +- easybuild/easyconfigs/i/ITK/ITK-5.2.1-foss-2021a.eb | 2 +- easybuild/easyconfigs/i/ITK/ITK-5.2.1-foss-2021b.eb | 2 +- easybuild/easyconfigs/i/ITK/ITK-5.2.1-foss-2022a.eb | 2 +- easybuild/easyconfigs/i/ITK/ITK-5.2.1-fosscuda-2020b.eb | 2 +- easybuild/easyconfigs/i/ITK/ITK-5.3.0-foss-2022b.eb | 2 +- easybuild/easyconfigs/i/ITK/ITK-5.3.0-foss-2023a.eb | 2 +- .../easyconfigs/l/libaio/libaio-0.3.112-GCCcore-10.2.0.eb | 4 ++-- .../easyconfigs/l/libaio/libaio-0.3.112-GCCcore-10.3.0.eb | 4 ++-- .../easyconfigs/l/libaio/libaio-0.3.112-GCCcore-11.2.0.eb | 4 ++-- .../easyconfigs/l/libaio/libaio-0.3.112-GCCcore-11.3.0.eb | 4 ++-- .../easyconfigs/l/libaio/libaio-0.3.113-GCCcore-12.2.0.eb | 4 ++-- .../easyconfigs/l/libaio/libaio-0.3.113-GCCcore-12.3.0.eb | 4 ++-- .../easyconfigs/l/libaio/libaio-0.3.113-GCCcore-13.2.0.eb | 4 ++-- .../easyconfigs/l/libwebp/libwebp-1.1.0-GCCcore-10.2.0.eb | 4 ++-- .../easyconfigs/l/libwebp/libwebp-1.1.0-GCCcore-9.3.0.eb | 4 ++-- .../easyconfigs/l/libwebp/libwebp-1.2.0-GCCcore-10.3.0.eb | 4 ++-- .../easyconfigs/l/libwebp/libwebp-1.2.0-GCCcore-11.2.0.eb | 4 ++-- easybuild/easyconfigs/n/nauty/nauty-2.8.6-GCC-11.3.0.eb | 6 +++--- easybuild/easyconfigs/n/nauty/nauty-2.8.8-GCC-13.2.0.eb | 6 +++--- .../easyconfigs/n/ncbi-vdb/ncbi-vdb-2.10.7-gompi-2020a.eb | 4 ++-- .../easyconfigs/n/ncbi-vdb/ncbi-vdb-2.10.9-gompi-2020b.eb | 4 ++-- .../easyconfigs/n/ncbi-vdb/ncbi-vdb-2.10.9-gompi-2021a.eb | 4 ++-- easybuild/easyconfigs/n/ncurses/ncurses-5.9.eb | 2 +- easybuild/easyconfigs/n/ncurses/ncurses-6.1.eb | 2 +- .../easyconfigs/n/ncurses/ncurses-6.2-GCCcore-10.2.0.eb | 2 +- .../easyconfigs/n/ncurses/ncurses-6.2-GCCcore-10.3.0.eb | 2 +- .../easyconfigs/n/ncurses/ncurses-6.2-GCCcore-11.2.0.eb | 2 +- .../easyconfigs/n/ncurses/ncurses-6.2-GCCcore-9.3.0.eb | 2 +- easybuild/easyconfigs/n/ncurses/ncurses-6.2.eb | 2 +- .../easyconfigs/n/ncurses/ncurses-6.3-GCCcore-11.3.0.eb | 2 +- .../easyconfigs/n/ncurses/ncurses-6.3-GCCcore-12.1.0.eb | 2 +- .../easyconfigs/n/ncurses/ncurses-6.3-GCCcore-12.2.0.eb | 2 +- easybuild/easyconfigs/n/ncurses/ncurses-6.3.eb | 2 +- .../easyconfigs/n/ncurses/ncurses-6.4-GCCcore-12.3.0.eb | 2 +- .../easyconfigs/n/ncurses/ncurses-6.4-GCCcore-13.1.0.eb | 2 +- .../easyconfigs/n/ncurses/ncurses-6.4-GCCcore-13.2.0.eb | 2 +- easybuild/easyconfigs/n/ncurses/ncurses-6.4.eb | 2 +- .../easyconfigs/n/ncurses/ncurses-6.5-GCCcore-13.3.0.eb | 2 +- easybuild/easyconfigs/n/ncurses/ncurses-6.5.eb | 2 +- .../OpenCV/OpenCV-4.2.0-foss-2020a-Python-3.8.2-contrib.eb | 2 +- .../easyconfigs/o/OpenCV/OpenCV-4.5.1-foss-2020b-contrib.eb | 2 +- .../o/OpenCV/OpenCV-4.5.1-fosscuda-2020b-contrib.eb | 2 +- .../o/OpenCV/OpenCV-4.5.3-foss-2021a-CUDA-11.3.1-contrib.eb | 2 +- .../easyconfigs/o/OpenCV/OpenCV-4.5.3-foss-2021a-contrib.eb | 2 +- .../easyconfigs/o/OpenCV/OpenCV-4.5.5-foss-2021b-contrib.eb | 2 +- .../s/SRA-Toolkit/SRA-Toolkit-2.10.8-gompi-2020a.eb | 4 ++-- .../s/SRA-Toolkit/SRA-Toolkit-2.10.9-gompi-2020b.eb | 4 ++-- .../s/SRA-Toolkit/SRA-Toolkit-3.0.10-gompi-2023a.eb | 2 +- .../s/SRA-Toolkit/SRA-Toolkit-3.0.3-gompi-2022a.eb | 2 +- .../s/SRA-Toolkit/SRA-Toolkit-3.0.5-gompi-2021a.eb | 2 +- .../s/SRA-Toolkit/SRA-Toolkit-3.0.5-gompi-2022b.eb | 2 +- .../easyconfigs/s/Singular/Singular-4.3.2p10-gfbf-2022a.eb | 2 +- .../easyconfigs/s/Singular/Singular-4.4.0-gfbf-2023b.eb | 2 +- .../easyconfigs/t/TinyXML/TinyXML-2.6.2-GCCcore-11.2.0.eb | 2 +- .../easyconfigs/t/TinyXML/TinyXML-2.6.2-GCCcore-11.3.0.eb | 2 +- .../easyconfigs/v/VTK/VTK-8.2.0-foss-2020a-Python-3.8.2.eb | 2 +- easybuild/easyconfigs/v/VTK/VTK-8.2.0-foss-2021a.eb | 2 +- .../v/VTK/VTK-8.2.0-fosscuda-2020a-Python-3.8.2.eb | 2 +- easybuild/easyconfigs/v/VTK/VTK-9.0.1-foss-2020b.eb | 2 +- easybuild/easyconfigs/v/VTK/VTK-9.0.1-foss-2021a.eb | 2 +- easybuild/easyconfigs/v/VTK/VTK-9.0.1-fosscuda-2020b.eb | 2 +- easybuild/easyconfigs/v/VTK/VTK-9.1.0-foss-2021b.eb | 2 +- easybuild/easyconfigs/v/VTK/VTK-9.2.0.rc2-foss-2022a.eb | 2 +- easybuild/easyconfigs/v/VTK/VTK-9.2.2-foss-2022a.eb | 2 +- easybuild/easyconfigs/v/VTK/VTK-9.2.6-foss-2022b.eb | 2 +- easybuild/easyconfigs/v/VTK/VTK-9.2.6-foss-2023a.eb | 2 +- easybuild/easyconfigs/v/VTK/VTK-9.3.0-foss-2023a.eb | 2 +- easybuild/easyconfigs/v/VTK/VTK-9.3.0-foss-2023b.eb | 2 +- 86 files changed, 107 insertions(+), 107 deletions(-) diff --git a/easybuild/easyconfigs/c/CaDiCaL/CaDiCaL-1.3.0-GCC-9.3.0.eb b/easybuild/easyconfigs/c/CaDiCaL/CaDiCaL-1.3.0-GCC-9.3.0.eb index 2f7f3255b284..746235458002 100644 --- a/easybuild/easyconfigs/c/CaDiCaL/CaDiCaL-1.3.0-GCC-9.3.0.eb +++ b/easybuild/easyconfigs/c/CaDiCaL/CaDiCaL-1.3.0-GCC-9.3.0.eb @@ -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': [], } diff --git a/easybuild/easyconfigs/c/Cbc/Cbc-2.10.5-foss-2020b.eb b/easybuild/easyconfigs/c/Cbc/Cbc-2.10.5-foss-2020b.eb index 427e25ee824e..3ed520be5c20 100644 --- a/easybuild/easyconfigs/c/Cbc/Cbc-2.10.5-foss-2020b.eb +++ b/easybuild/easyconfigs/c/Cbc/Cbc-2.10.5-foss-2020b.eb @@ -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'] } diff --git a/easybuild/easyconfigs/c/Clp/Clp-1.17.6-foss-2020b.eb b/easybuild/easyconfigs/c/Clp/Clp-1.17.6-foss-2020b.eb index 4a649579d28b..b3d64ec60c88 100644 --- a/easybuild/easyconfigs/c/Clp/Clp-1.17.6-foss-2020b.eb +++ b/easybuild/easyconfigs/c/Clp/Clp-1.17.6-foss-2020b.eb @@ -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'] } diff --git a/easybuild/easyconfigs/c/cddlib/cddlib-0.94m-GCCcore-11.3.0.eb b/easybuild/easyconfigs/c/cddlib/cddlib-0.94m-GCCcore-11.3.0.eb index d5ef7861ad71..09dcf8a1ab74 100644 --- a/easybuild/easyconfigs/c/cddlib/cddlib-0.94m-GCCcore-11.3.0.eb +++ b/easybuild/easyconfigs/c/cddlib/cddlib-0.94m-GCCcore-11.3.0.eb @@ -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'] } diff --git a/easybuild/easyconfigs/c/cddlib/cddlib-0.94m-GCCcore-13.2.0.eb b/easybuild/easyconfigs/c/cddlib/cddlib-0.94m-GCCcore-13.2.0.eb index c747475d1378..7f56ff44df24 100644 --- a/easybuild/easyconfigs/c/cddlib/cddlib-0.94m-GCCcore-13.2.0.eb +++ b/easybuild/easyconfigs/c/cddlib/cddlib-0.94m-GCCcore-13.2.0.eb @@ -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'] } diff --git a/easybuild/easyconfigs/d/dd/dd-0.5.6-foss-2020a-Python-3.8.2.eb b/easybuild/easyconfigs/d/dd/dd-0.5.6-foss-2020a-Python-3.8.2.eb index 1af852259bff..a9e7a00788ca 100644 --- a/easybuild/easyconfigs/d/dd/dd-0.5.6-foss-2020a-Python-3.8.2.eb +++ b/easybuild/easyconfigs/d/dd/dd-0.5.6-foss-2020a-Python-3.8.2.eb @@ -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'], } diff --git a/easybuild/easyconfigs/g/GMP/GMP-6.2.0-GCCcore-10.2.0.eb b/easybuild/easyconfigs/g/GMP/GMP-6.2.0-GCCcore-10.2.0.eb index b1f3baccd692..2e5b24b06369 100644 --- a/easybuild/easyconfigs/g/GMP/GMP-6.2.0-GCCcore-10.2.0.eb +++ b/easybuild/easyconfigs/g/GMP/GMP-6.2.0-GCCcore-10.2.0.eb @@ -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'], } diff --git a/easybuild/easyconfigs/g/GMP/GMP-6.2.0-GCCcore-9.3.0.eb b/easybuild/easyconfigs/g/GMP/GMP-6.2.0-GCCcore-9.3.0.eb index 5c21453c3d72..5619b138b8c6 100644 --- a/easybuild/easyconfigs/g/GMP/GMP-6.2.0-GCCcore-9.3.0.eb +++ b/easybuild/easyconfigs/g/GMP/GMP-6.2.0-GCCcore-9.3.0.eb @@ -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'], } diff --git a/easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-10.3.0.eb b/easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-10.3.0.eb index 827e778e0c40..25da6d0c6ff3 100644 --- a/easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-10.3.0.eb +++ b/easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-10.3.0.eb @@ -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'], } diff --git a/easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-11.2.0.eb b/easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-11.2.0.eb index e2a92bee0a6c..f5c4300839a0 100644 --- a/easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-11.2.0.eb +++ b/easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-11.2.0.eb @@ -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'], } diff --git a/easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-11.3.0.eb b/easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-11.3.0.eb index 33d857b78583..ff5120721e6e 100644 --- a/easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-11.3.0.eb +++ b/easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-11.3.0.eb @@ -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'], } diff --git a/easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-12.2.0.eb b/easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-12.2.0.eb index 8d18902ab40d..f0ebbf4fa34c 100644 --- a/easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-12.2.0.eb +++ b/easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-12.2.0.eb @@ -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'], } diff --git a/easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-12.3.0.eb b/easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-12.3.0.eb index 15f013028362..3994a9a94ce9 100644 --- a/easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-12.3.0.eb +++ b/easybuild/easyconfigs/g/GMP/GMP-6.2.1-GCCcore-12.3.0.eb @@ -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'], } diff --git a/easybuild/easyconfigs/g/GMP/GMP-6.3.0-GCCcore-13.2.0.eb b/easybuild/easyconfigs/g/GMP/GMP-6.3.0-GCCcore-13.2.0.eb index 1be7b653e2c4..98cd78584765 100644 --- a/easybuild/easyconfigs/g/GMP/GMP-6.3.0-GCCcore-13.2.0.eb +++ b/easybuild/easyconfigs/g/GMP/GMP-6.3.0-GCCcore-13.2.0.eb @@ -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'], } diff --git a/easybuild/easyconfigs/g/GMP/GMP-6.3.0-GCCcore-13.3.0.eb b/easybuild/easyconfigs/g/GMP/GMP-6.3.0-GCCcore-13.3.0.eb index 29f69f73299d..ccfd632ae51e 100644 --- a/easybuild/easyconfigs/g/GMP/GMP-6.3.0-GCCcore-13.3.0.eb +++ b/easybuild/easyconfigs/g/GMP/GMP-6.3.0-GCCcore-13.3.0.eb @@ -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'], } diff --git a/easybuild/easyconfigs/i/ISA-L/ISA-L-2.30.0-GCCcore-10.2.0.eb b/easybuild/easyconfigs/i/ISA-L/ISA-L-2.30.0-GCCcore-10.2.0.eb index df76b6b84fa5..22b310f46fdd 100644 --- a/easybuild/easyconfigs/i/ISA-L/ISA-L-2.30.0-GCCcore-10.2.0.eb +++ b/easybuild/easyconfigs/i/ISA-L/ISA-L-2.30.0-GCCcore-10.2.0.eb @@ -31,7 +31,7 @@ _bins = ['bin/igzip'] _includes = ['include/%(namelower)s.h'] _includes += ['include/isa-l/%s.h' % i for i in ['crc64', 'crc', 'erasure_code', 'gf_vect_mul', 'igzip_lib', 'mem_routines', 'raid', 'test', 'types']] -_libs = ['lib/libisal.%s' % l for l in ['a', 'la', SHLIB_EXT]] +_libs = ['lib/libisal.%s' % x for x in ['a', 'la', SHLIB_EXT]] sanity_check_paths = { 'files': _bins + _includes + _libs, diff --git a/easybuild/easyconfigs/i/ISA-L/ISA-L-2.30.0-GCCcore-10.3.0.eb b/easybuild/easyconfigs/i/ISA-L/ISA-L-2.30.0-GCCcore-10.3.0.eb index 943166392af2..8c63d6366173 100644 --- a/easybuild/easyconfigs/i/ISA-L/ISA-L-2.30.0-GCCcore-10.3.0.eb +++ b/easybuild/easyconfigs/i/ISA-L/ISA-L-2.30.0-GCCcore-10.3.0.eb @@ -31,7 +31,7 @@ _bins = ['bin/igzip'] _includes = ['include/%(namelower)s.h'] _includes += ['include/isa-l/%s.h' % i for i in ['crc64', 'crc', 'erasure_code', 'gf_vect_mul', 'igzip_lib', 'mem_routines', 'raid', 'test', 'types']] -_libs = ['lib/libisal.%s' % l for l in ['a', 'la', SHLIB_EXT]] +_libs = ['lib/libisal.%s' % x for x in ['a', 'la', SHLIB_EXT]] sanity_check_paths = { 'files': _bins + _includes + _libs, diff --git a/easybuild/easyconfigs/i/ITK/ITK-5.2.1-foss-2020b.eb b/easybuild/easyconfigs/i/ITK/ITK-5.2.1-foss-2020b.eb index 4ad17d850e91..b68959945708 100644 --- a/easybuild/easyconfigs/i/ITK/ITK-5.2.1-foss-2020b.eb +++ b/easybuild/easyconfigs/i/ITK/ITK-5.2.1-foss-2020b.eb @@ -53,7 +53,7 @@ local_lib_names = ['ITKCommon', 'ITKIOHDF5', 'ITKIOJPEG', 'ITKIOPNG', 'ITKIOTIFF sanity_check_paths = { 'files': ['bin/itkTestDriver'] + - ['lib/lib%s-%%(version_major)s.%%(version_minor)s.%s' % (l, SHLIB_EXT) for l in local_lib_names], + ['lib/lib%s-%%(version_major)s.%%(version_minor)s.%s' % (x, SHLIB_EXT) for x in local_lib_names], 'dirs': ['include/ITK-%(version_major)s.%(version_minor)s', 'share'], } diff --git a/easybuild/easyconfigs/i/ITK/ITK-5.2.1-foss-2021a.eb b/easybuild/easyconfigs/i/ITK/ITK-5.2.1-foss-2021a.eb index 0a4b96c2863d..4f32b17a4cbd 100644 --- a/easybuild/easyconfigs/i/ITK/ITK-5.2.1-foss-2021a.eb +++ b/easybuild/easyconfigs/i/ITK/ITK-5.2.1-foss-2021a.eb @@ -53,7 +53,7 @@ local_lib_names = ['ITKCommon', 'ITKIOHDF5', 'ITKIOJPEG', 'ITKIOPNG', 'ITKIOTIFF sanity_check_paths = { 'files': ['bin/itkTestDriver'] + - ['lib/lib%s-%%(version_major)s.%%(version_minor)s.%s' % (l, SHLIB_EXT) for l in local_lib_names], + ['lib/lib%s-%%(version_major)s.%%(version_minor)s.%s' % (x, SHLIB_EXT) for x in local_lib_names], 'dirs': ['include/ITK-%(version_major)s.%(version_minor)s', 'share'], } diff --git a/easybuild/easyconfigs/i/ITK/ITK-5.2.1-foss-2021b.eb b/easybuild/easyconfigs/i/ITK/ITK-5.2.1-foss-2021b.eb index 738552724dae..655b9db0e286 100644 --- a/easybuild/easyconfigs/i/ITK/ITK-5.2.1-foss-2021b.eb +++ b/easybuild/easyconfigs/i/ITK/ITK-5.2.1-foss-2021b.eb @@ -52,7 +52,7 @@ local_lib_names = ['ITKCommon', 'ITKIOHDF5', 'ITKIOJPEG', 'ITKIOPNG', 'ITKIOTIFF sanity_check_paths = { 'files': ['bin/itkTestDriver'] + - ['lib/lib%s-%%(version_major)s.%%(version_minor)s.%s' % (l, SHLIB_EXT) for l in local_lib_names], + ['lib/lib%s-%%(version_major)s.%%(version_minor)s.%s' % (x, SHLIB_EXT) for x in local_lib_names], 'dirs': ['include/ITK-%(version_major)s.%(version_minor)s', 'share'], } diff --git a/easybuild/easyconfigs/i/ITK/ITK-5.2.1-foss-2022a.eb b/easybuild/easyconfigs/i/ITK/ITK-5.2.1-foss-2022a.eb index 4db022302694..dbf961312d89 100644 --- a/easybuild/easyconfigs/i/ITK/ITK-5.2.1-foss-2022a.eb +++ b/easybuild/easyconfigs/i/ITK/ITK-5.2.1-foss-2022a.eb @@ -57,7 +57,7 @@ local_lib_names = ['ITKCommon', 'ITKIOHDF5', 'ITKIOJPEG', 'ITKIOPNG', 'ITKIOTIFF sanity_check_paths = { 'files': ['bin/itkTestDriver'] + - ['lib/lib%s-%%(version_major)s.%%(version_minor)s.%s' % (l, SHLIB_EXT) for l in local_lib_names], + ['lib/lib%s-%%(version_major)s.%%(version_minor)s.%s' % (x, SHLIB_EXT) for x in local_lib_names], 'dirs': ['include/ITK-%(version_major)s.%(version_minor)s', 'lib/python%(pyshortver)s/site-packages', 'share'], } diff --git a/easybuild/easyconfigs/i/ITK/ITK-5.2.1-fosscuda-2020b.eb b/easybuild/easyconfigs/i/ITK/ITK-5.2.1-fosscuda-2020b.eb index 0d9fe14e51cd..a72a7674978b 100644 --- a/easybuild/easyconfigs/i/ITK/ITK-5.2.1-fosscuda-2020b.eb +++ b/easybuild/easyconfigs/i/ITK/ITK-5.2.1-fosscuda-2020b.eb @@ -53,7 +53,7 @@ local_lib_names = ['ITKCommon', 'ITKIOHDF5', 'ITKIOJPEG', 'ITKIOPNG', 'ITKIOTIFF sanity_check_paths = { 'files': ['bin/itkTestDriver'] + - ['lib/lib%s-%%(version_major)s.%%(version_minor)s.%s' % (l, SHLIB_EXT) for l in local_lib_names], + ['lib/lib%s-%%(version_major)s.%%(version_minor)s.%s' % (x, SHLIB_EXT) for x in local_lib_names], 'dirs': ['include/ITK-%(version_major)s.%(version_minor)s', 'share'], } diff --git a/easybuild/easyconfigs/i/ITK/ITK-5.3.0-foss-2022b.eb b/easybuild/easyconfigs/i/ITK/ITK-5.3.0-foss-2022b.eb index 9ba65978898b..550fb0adc9ef 100644 --- a/easybuild/easyconfigs/i/ITK/ITK-5.3.0-foss-2022b.eb +++ b/easybuild/easyconfigs/i/ITK/ITK-5.3.0-foss-2022b.eb @@ -67,7 +67,7 @@ local_lib_names = ['ITKCommon', 'ITKIOHDF5', 'ITKIOJPEG', 'ITKIOPNG', 'ITKIOTIFF sanity_check_paths = { 'files': ['bin/itkTestDriver'] + - ['lib/lib%s-%%(version_major)s.%%(version_minor)s.%s' % (l, SHLIB_EXT) for l in local_lib_names], + ['lib/lib%s-%%(version_major)s.%%(version_minor)s.%s' % (x, SHLIB_EXT) for x in local_lib_names], 'dirs': ['include/ITK-%(version_major)s.%(version_minor)s', 'lib/python%(pyshortver)s/site-packages', 'share'], } diff --git a/easybuild/easyconfigs/i/ITK/ITK-5.3.0-foss-2023a.eb b/easybuild/easyconfigs/i/ITK/ITK-5.3.0-foss-2023a.eb index e51e8bbd7186..56bfd5928e9d 100644 --- a/easybuild/easyconfigs/i/ITK/ITK-5.3.0-foss-2023a.eb +++ b/easybuild/easyconfigs/i/ITK/ITK-5.3.0-foss-2023a.eb @@ -67,7 +67,7 @@ local_lib_names = ['ITKCommon', 'ITKIOHDF5', 'ITKIOJPEG', 'ITKIOPNG', 'ITKIOTIFF sanity_check_paths = { 'files': ['bin/itkTestDriver'] + - ['lib/lib%s-%%(version_major)s.%%(version_minor)s.%s' % (l, SHLIB_EXT) for l in local_lib_names], + ['lib/lib%s-%%(version_major)s.%%(version_minor)s.%s' % (x, SHLIB_EXT) for x in local_lib_names], 'dirs': ['include/ITK-%(version_major)s.%(version_minor)s', 'lib/python%(pyshortver)s/site-packages', 'share'], } diff --git a/easybuild/easyconfigs/l/libaio/libaio-0.3.112-GCCcore-10.2.0.eb b/easybuild/easyconfigs/l/libaio/libaio-0.3.112-GCCcore-10.2.0.eb index 1be5c814b957..939219035435 100644 --- a/easybuild/easyconfigs/l/libaio/libaio-0.3.112-GCCcore-10.2.0.eb +++ b/easybuild/easyconfigs/l/libaio/libaio-0.3.112-GCCcore-10.2.0.eb @@ -29,10 +29,10 @@ _solinks = [ "libaio.%s.1" % SHLIB_EXT, ] -postinstallcmds = ["cd %%(installdir)s/lib && ln -s %s %s" % (_soname, l) for l in _solinks] +postinstallcmds = ["cd %%(installdir)s/lib && ln -s %s %s" % (_soname, x) for x in _solinks] sanity_check_paths = { - 'files': ['lib/%s' % l for l in ['libaio.a', _soname] + _solinks] + ['include/libaio.h'], + 'files': ['lib/%s' % x for x in ['libaio.a', _soname] + _solinks] + ['include/libaio.h'], 'dirs': [], } diff --git a/easybuild/easyconfigs/l/libaio/libaio-0.3.112-GCCcore-10.3.0.eb b/easybuild/easyconfigs/l/libaio/libaio-0.3.112-GCCcore-10.3.0.eb index 1ae85f5f8208..bdd547eac104 100644 --- a/easybuild/easyconfigs/l/libaio/libaio-0.3.112-GCCcore-10.3.0.eb +++ b/easybuild/easyconfigs/l/libaio/libaio-0.3.112-GCCcore-10.3.0.eb @@ -29,10 +29,10 @@ _solinks = [ "libaio.%s.1" % SHLIB_EXT, ] -postinstallcmds = ["cd %%(installdir)s/lib && ln -s %s %s" % (_soname, l) for l in _solinks] +postinstallcmds = ["cd %%(installdir)s/lib && ln -s %s %s" % (_soname, x) for x in _solinks] sanity_check_paths = { - 'files': ['lib/%s' % l for l in ['libaio.a', _soname] + _solinks] + ['include/libaio.h'], + 'files': ['lib/%s' % x for x in ['libaio.a', _soname] + _solinks] + ['include/libaio.h'], 'dirs': [], } diff --git a/easybuild/easyconfigs/l/libaio/libaio-0.3.112-GCCcore-11.2.0.eb b/easybuild/easyconfigs/l/libaio/libaio-0.3.112-GCCcore-11.2.0.eb index 052974c15a85..de8ed204af88 100644 --- a/easybuild/easyconfigs/l/libaio/libaio-0.3.112-GCCcore-11.2.0.eb +++ b/easybuild/easyconfigs/l/libaio/libaio-0.3.112-GCCcore-11.2.0.eb @@ -29,10 +29,10 @@ _solinks = [ "libaio.%s.1" % SHLIB_EXT, ] -postinstallcmds = ["cd %%(installdir)s/lib && ln -s %s %s" % (_soname, l) for l in _solinks] +postinstallcmds = ["cd %%(installdir)s/lib && ln -s %s %s" % (_soname, x) for x in _solinks] sanity_check_paths = { - 'files': ['lib/%s' % l for l in ['libaio.a', _soname] + _solinks] + ['include/libaio.h'], + 'files': ['lib/%s' % x for x in ['libaio.a', _soname] + _solinks] + ['include/libaio.h'], 'dirs': [], } diff --git a/easybuild/easyconfigs/l/libaio/libaio-0.3.112-GCCcore-11.3.0.eb b/easybuild/easyconfigs/l/libaio/libaio-0.3.112-GCCcore-11.3.0.eb index 024258d17924..0228005dc586 100644 --- a/easybuild/easyconfigs/l/libaio/libaio-0.3.112-GCCcore-11.3.0.eb +++ b/easybuild/easyconfigs/l/libaio/libaio-0.3.112-GCCcore-11.3.0.eb @@ -29,10 +29,10 @@ _solinks = [ "libaio.%s.1" % SHLIB_EXT, ] -postinstallcmds = ["cd %%(installdir)s/lib && ln -s %s %s" % (_soname, l) for l in _solinks] +postinstallcmds = ["cd %%(installdir)s/lib && ln -s %s %s" % (_soname, x) for x in _solinks] sanity_check_paths = { - 'files': ['lib/%s' % l for l in ['libaio.a', _soname] + _solinks] + ['include/libaio.h'], + 'files': ['lib/%s' % x for x in ['libaio.a', _soname] + _solinks] + ['include/libaio.h'], 'dirs': [], } diff --git a/easybuild/easyconfigs/l/libaio/libaio-0.3.113-GCCcore-12.2.0.eb b/easybuild/easyconfigs/l/libaio/libaio-0.3.113-GCCcore-12.2.0.eb index 64d50b5219dc..b66cd94af39b 100644 --- a/easybuild/easyconfigs/l/libaio/libaio-0.3.113-GCCcore-12.2.0.eb +++ b/easybuild/easyconfigs/l/libaio/libaio-0.3.113-GCCcore-12.2.0.eb @@ -29,10 +29,10 @@ _solinks = [ "libaio.%s.1" % SHLIB_EXT, ] -postinstallcmds = ["cd %%(installdir)s/lib && ln -s %s %s" % (_soname, l) for l in _solinks] +postinstallcmds = ["cd %%(installdir)s/lib && ln -s %s %s" % (_soname, x) for x in _solinks] sanity_check_paths = { - 'files': ['lib/%s' % l for l in ['libaio.a', _soname] + _solinks] + ['include/libaio.h'], + 'files': ['lib/%s' % x for x in ['libaio.a', _soname] + _solinks] + ['include/libaio.h'], 'dirs': [], } diff --git a/easybuild/easyconfigs/l/libaio/libaio-0.3.113-GCCcore-12.3.0.eb b/easybuild/easyconfigs/l/libaio/libaio-0.3.113-GCCcore-12.3.0.eb index 19154bc8933b..36a1d2c1160f 100644 --- a/easybuild/easyconfigs/l/libaio/libaio-0.3.113-GCCcore-12.3.0.eb +++ b/easybuild/easyconfigs/l/libaio/libaio-0.3.113-GCCcore-12.3.0.eb @@ -29,10 +29,10 @@ _solinks = [ "libaio.%s.1" % SHLIB_EXT, ] -postinstallcmds = ["cd %%(installdir)s/lib && ln -s %s %s" % (_soname, l) for l in _solinks] +postinstallcmds = ["cd %%(installdir)s/lib && ln -s %s %s" % (_soname, x) for x in _solinks] sanity_check_paths = { - 'files': ['lib/%s' % l for l in ['libaio.a', _soname] + _solinks] + ['include/libaio.h'], + 'files': ['lib/%s' % x for x in ['libaio.a', _soname] + _solinks] + ['include/libaio.h'], 'dirs': [], } diff --git a/easybuild/easyconfigs/l/libaio/libaio-0.3.113-GCCcore-13.2.0.eb b/easybuild/easyconfigs/l/libaio/libaio-0.3.113-GCCcore-13.2.0.eb index e5a7827cc4b5..73d308e78f13 100644 --- a/easybuild/easyconfigs/l/libaio/libaio-0.3.113-GCCcore-13.2.0.eb +++ b/easybuild/easyconfigs/l/libaio/libaio-0.3.113-GCCcore-13.2.0.eb @@ -29,10 +29,10 @@ _solinks = [ "libaio.%s.1" % SHLIB_EXT, ] -postinstallcmds = ["cd %%(installdir)s/lib && ln -s %s %s" % (_soname, l) for l in _solinks] +postinstallcmds = ["cd %%(installdir)s/lib && ln -s %s %s" % (_soname, x) for x in _solinks] sanity_check_paths = { - 'files': ['lib/%s' % l for l in ['libaio.a', _soname] + _solinks] + ['include/libaio.h'], + 'files': ['lib/%s' % x for x in ['libaio.a', _soname] + _solinks] + ['include/libaio.h'], 'dirs': [], } diff --git a/easybuild/easyconfigs/l/libwebp/libwebp-1.1.0-GCCcore-10.2.0.eb b/easybuild/easyconfigs/l/libwebp/libwebp-1.1.0-GCCcore-10.2.0.eb index 06e2a0c51644..1e22cfc835b1 100644 --- a/easybuild/easyconfigs/l/libwebp/libwebp-1.1.0-GCCcore-10.2.0.eb +++ b/easybuild/easyconfigs/l/libwebp/libwebp-1.1.0-GCCcore-10.2.0.eb @@ -28,8 +28,8 @@ configopts = "--enable-libwebpmux" sanity_check_paths = { 'files': ['include/webp/%s' % f for f in ['decode.h', 'demux.h', 'encode.h', 'mux.h', 'mux_types.h', 'types.h']] + - ['lib/lib%s.a' % l for l in ['webp', 'webpdemux', 'webpmux']] + - ['lib/lib%s.%s' % (l, SHLIB_EXT) for l in ['webp', 'webpdemux', 'webpmux']], + ['lib/lib%s.a' % x for x in ['webp', 'webpdemux', 'webpmux']] + + ['lib/lib%s.%s' % (x, SHLIB_EXT) for x in ['webp', 'webpdemux', 'webpmux']], 'dirs': ['lib/'] } diff --git a/easybuild/easyconfigs/l/libwebp/libwebp-1.1.0-GCCcore-9.3.0.eb b/easybuild/easyconfigs/l/libwebp/libwebp-1.1.0-GCCcore-9.3.0.eb index 3a859a21df8f..3b35abfaf1ae 100644 --- a/easybuild/easyconfigs/l/libwebp/libwebp-1.1.0-GCCcore-9.3.0.eb +++ b/easybuild/easyconfigs/l/libwebp/libwebp-1.1.0-GCCcore-9.3.0.eb @@ -28,8 +28,8 @@ configopts = "--enable-libwebpmux" sanity_check_paths = { 'files': ['include/webp/%s' % f for f in ['decode.h', 'demux.h', 'encode.h', 'mux.h', 'mux_types.h', 'types.h']] + - ['lib/lib%s.a' % l for l in ['webp', 'webpdemux', 'webpmux']] + - ['lib/lib%s.%s' % (l, SHLIB_EXT) for l in ['webp', 'webpdemux', 'webpmux']], + ['lib/lib%s.a' % x for x in ['webp', 'webpdemux', 'webpmux']] + + ['lib/lib%s.%s' % (x, SHLIB_EXT) for x in ['webp', 'webpdemux', 'webpmux']], 'dirs': ['lib/'] } diff --git a/easybuild/easyconfigs/l/libwebp/libwebp-1.2.0-GCCcore-10.3.0.eb b/easybuild/easyconfigs/l/libwebp/libwebp-1.2.0-GCCcore-10.3.0.eb index 0fb99780e9a7..117af5e46771 100644 --- a/easybuild/easyconfigs/l/libwebp/libwebp-1.2.0-GCCcore-10.3.0.eb +++ b/easybuild/easyconfigs/l/libwebp/libwebp-1.2.0-GCCcore-10.3.0.eb @@ -28,8 +28,8 @@ configopts = "--enable-libwebpmux" sanity_check_paths = { 'files': ['include/webp/%s' % f for f in ['decode.h', 'demux.h', 'encode.h', 'mux.h', 'mux_types.h', 'types.h']] + - ['lib/lib%s.a' % l for l in ['webp', 'webpdemux', 'webpmux']] + - ['lib/lib%s.%s' % (l, SHLIB_EXT) for l in ['webp', 'webpdemux', 'webpmux']], + ['lib/lib%s.a' % x for x in ['webp', 'webpdemux', 'webpmux']] + + ['lib/lib%s.%s' % (x, SHLIB_EXT) for x in ['webp', 'webpdemux', 'webpmux']], 'dirs': ['lib/'] } diff --git a/easybuild/easyconfigs/l/libwebp/libwebp-1.2.0-GCCcore-11.2.0.eb b/easybuild/easyconfigs/l/libwebp/libwebp-1.2.0-GCCcore-11.2.0.eb index 89ff37dc6732..f6bbfd0d144a 100644 --- a/easybuild/easyconfigs/l/libwebp/libwebp-1.2.0-GCCcore-11.2.0.eb +++ b/easybuild/easyconfigs/l/libwebp/libwebp-1.2.0-GCCcore-11.2.0.eb @@ -28,8 +28,8 @@ configopts = "--enable-libwebpmux" sanity_check_paths = { 'files': ['include/webp/%s' % f for f in ['decode.h', 'demux.h', 'encode.h', 'mux.h', 'mux_types.h', 'types.h']] + - ['lib/lib%s.a' % l for l in ['webp', 'webpdemux', 'webpmux']] + - ['lib/lib%s.%s' % (l, SHLIB_EXT) for l in ['webp', 'webpdemux', 'webpmux']], + ['lib/lib%s.a' % x for x in ['webp', 'webpdemux', 'webpmux']] + + ['lib/lib%s.%s' % (x, SHLIB_EXT) for x in ['webp', 'webpdemux', 'webpmux']], 'dirs': ['lib/'] } diff --git a/easybuild/easyconfigs/n/nauty/nauty-2.8.6-GCC-11.3.0.eb b/easybuild/easyconfigs/n/nauty/nauty-2.8.6-GCC-11.3.0.eb index 1fe2879b3c83..3d3c776b3738 100644 --- a/easybuild/easyconfigs/n/nauty/nauty-2.8.6-GCC-11.3.0.eb +++ b/easybuild/easyconfigs/n/nauty/nauty-2.8.6-GCC-11.3.0.eb @@ -25,7 +25,7 @@ local_headers = [ 'gtools.h', 'gutils.h', 'naugroup.h', 'naugstrings.h', 'naurng.h', 'nausparse.h', 'nautaux.h', 'nautinv.h', 'naututil.h', 'nautycliquer.h', 'nauty.h', 'planarity.h', 'quarticirred28.h', 'schreier.h', 'traces.h' ] -local_libs = ['nauty%s.a' % l for l in ['', '1', 'L', 'L1', 'W', 'W1']] +local_libs = ['nauty%s.a' % x for x in ['', '1', 'L', 'L1', 'W', 'W1']] # Configure and enable thread-local variables prebuildopts = "./configure --enable-tls && " @@ -39,12 +39,12 @@ files_to_copy = [ ] # prepend "lib" to library files to standarize their name -postinstallcmds = ["cd %%(installdir)s/lib/ && mv %s lib%s" % (l, l) for l in local_libs] +postinstallcmds = ["cd %%(installdir)s/lib/ && mv %s lib%s" % (x, x) for x in local_libs] sanity_check_paths = { 'files': ['bin/%s' % x for x in local_executables] + ['include/%%(name)s/%s' % h for h in local_headers] + - ['lib/lib%s' % l for l in local_libs], + ['lib/lib%s' % x for x in local_libs], 'dirs': [''] } diff --git a/easybuild/easyconfigs/n/nauty/nauty-2.8.8-GCC-13.2.0.eb b/easybuild/easyconfigs/n/nauty/nauty-2.8.8-GCC-13.2.0.eb index 66a269da4e9a..7053636766ff 100644 --- a/easybuild/easyconfigs/n/nauty/nauty-2.8.8-GCC-13.2.0.eb +++ b/easybuild/easyconfigs/n/nauty/nauty-2.8.8-GCC-13.2.0.eb @@ -25,7 +25,7 @@ local_headers = [ 'gtools.h', 'gutils.h', 'naugroup.h', 'naugstrings.h', 'naurng.h', 'nausparse.h', 'nautaux.h', 'nautinv.h', 'naututil.h', 'nautycliquer.h', 'nauty.h', 'planarity.h', 'quarticirred28.h', 'schreier.h', 'traces.h' ] -local_libs = ['nauty%s.a' % l for l in ['', '1', 'L', 'L1', 'W', 'W1']] +local_libs = ['nauty%s.a' % x for x in ['', '1', 'L', 'L1', 'W', 'W1']] # Configure and enable thread-local variables prebuildopts = "./configure --enable-tls && " @@ -39,12 +39,12 @@ files_to_copy = [ ] # prepend "lib" to library files to standarize their name -postinstallcmds = ["cd %%(installdir)s/lib/ && mv %s lib%s" % (l, l) for l in local_libs] +postinstallcmds = ["cd %%(installdir)s/lib/ && mv %s lib%s" % (x, x) for x in local_libs] sanity_check_paths = { 'files': ['bin/%s' % x for x in local_executables] + ['include/%%(name)s/%s' % h for h in local_headers] + - ['lib/lib%s' % l for l in local_libs], + ['lib/lib%s' % x for x in local_libs], 'dirs': [''] } diff --git a/easybuild/easyconfigs/n/ncbi-vdb/ncbi-vdb-2.10.7-gompi-2020a.eb b/easybuild/easyconfigs/n/ncbi-vdb/ncbi-vdb-2.10.7-gompi-2020a.eb index 7ce38403f760..6c2afb4fb514 100644 --- a/easybuild/easyconfigs/n/ncbi-vdb/ncbi-vdb-2.10.7-gompi-2020a.eb +++ b/easybuild/easyconfigs/n/ncbi-vdb/ncbi-vdb-2.10.7-gompi-2020a.eb @@ -41,8 +41,8 @@ preinstallopts = 'EBFLAGS="$CFLAGS" ' sanity_check_paths = { 'files': ['include/ncbi-vdb/NGS.hpp', ('lib/libncbi-ngs-c++.a', 'lib64/libncbi-ngs-c++.a')] + - [('lib/libncbi-%s.%s' % (l, e), 'lib64/libncbi-%s.%s' % (l, e)) - for l in ['vdb', 'wvdb'] for e in ['a', SHLIB_EXT]], + [('lib/libncbi-%s.%s' % (x, e), 'lib64/libncbi-%s.%s' % (x, e)) + for x in ['vdb', 'wvdb'] for e in ['a', SHLIB_EXT]], 'dirs': [], } diff --git a/easybuild/easyconfigs/n/ncbi-vdb/ncbi-vdb-2.10.9-gompi-2020b.eb b/easybuild/easyconfigs/n/ncbi-vdb/ncbi-vdb-2.10.9-gompi-2020b.eb index f46954badfed..2c3c97317d8c 100644 --- a/easybuild/easyconfigs/n/ncbi-vdb/ncbi-vdb-2.10.9-gompi-2020b.eb +++ b/easybuild/easyconfigs/n/ncbi-vdb/ncbi-vdb-2.10.9-gompi-2020b.eb @@ -41,8 +41,8 @@ preinstallopts = 'EBFLAGS="$CFLAGS" ' sanity_check_paths = { 'files': ['include/ncbi-vdb/NGS.hpp', ('lib/libncbi-ngs-c++.a', 'lib64/libncbi-ngs-c++.a')] + - [('lib/libncbi-%s.%s' % (l, e), 'lib64/libncbi-%s.%s' % (l, e)) - for l in ['vdb', 'wvdb'] for e in ['a', SHLIB_EXT]], + [('lib/libncbi-%s.%s' % (x, e), 'lib64/libncbi-%s.%s' % (x, e)) + for x in ['vdb', 'wvdb'] for e in ['a', SHLIB_EXT]], 'dirs': [], } diff --git a/easybuild/easyconfigs/n/ncbi-vdb/ncbi-vdb-2.10.9-gompi-2021a.eb b/easybuild/easyconfigs/n/ncbi-vdb/ncbi-vdb-2.10.9-gompi-2021a.eb index aa5ea3306c4d..3139cff8c135 100644 --- a/easybuild/easyconfigs/n/ncbi-vdb/ncbi-vdb-2.10.9-gompi-2021a.eb +++ b/easybuild/easyconfigs/n/ncbi-vdb/ncbi-vdb-2.10.9-gompi-2021a.eb @@ -41,8 +41,8 @@ preinstallopts = 'EBFLAGS="$CFLAGS" ' sanity_check_paths = { 'files': ['include/ncbi-vdb/NGS.hpp', ('lib/libncbi-ngs-c++.a', 'lib64/libncbi-ngs-c++.a')] + - [('lib/libncbi-%s.%s' % (l, e), 'lib64/libncbi-%s.%s' % (l, e)) - for l in ['vdb', 'wvdb'] for e in ['a', SHLIB_EXT]], + [('lib/libncbi-%s.%s' % (x, e), 'lib64/libncbi-%s.%s' % (x, e)) + for x in ['vdb', 'wvdb'] for e in ['a', SHLIB_EXT]], 'dirs': [], } diff --git a/easybuild/easyconfigs/n/ncurses/ncurses-5.9.eb b/easybuild/easyconfigs/n/ncurses/ncurses-5.9.eb index 18dd57e1d6e1..bc3173eab598 100644 --- a/easybuild/easyconfigs/n/ncurses/ncurses-5.9.eb +++ b/easybuild/easyconfigs/n/ncurses/ncurses-5.9.eb @@ -40,7 +40,7 @@ buildopts = 'CFLAGS="-O2 -fPIC"' # Symlink libtinfo to libncurses # libncurses with this configopts has all the symbols from libtinfo, but some packages look for libtinfo specifically -postinstallcmds = ['cd %(installdir)s/lib && for l in libncurses{.,_,w}*; do ln -s "${l}" "${l/ncurses/tinfo}"; done'] +postinstallcmds = ['cd %(installdir)s/lib && for x in libncurses{.,_,w}*; do ln -s "${x}" "${x/ncurses/tinfo}"; done'] _target_suffix = ['', 'w'] # '': ncurses, 'w': ncursesw _lib_suffix = ['%s%s' % (x, y) for x in _target_suffix for y in ['.a', '_g.a', '.' + SHLIB_EXT]] diff --git a/easybuild/easyconfigs/n/ncurses/ncurses-6.1.eb b/easybuild/easyconfigs/n/ncurses/ncurses-6.1.eb index 85438274955d..d0258278ed33 100644 --- a/easybuild/easyconfigs/n/ncurses/ncurses-6.1.eb +++ b/easybuild/easyconfigs/n/ncurses/ncurses-6.1.eb @@ -28,7 +28,7 @@ buildopts = 'CFLAGS="-O2 -fPIC"' # Symlink libtinfo to libncurses # libncurses with this configopts has all the symbols from libtinfo, but some packages look for libtinfo specifically -postinstallcmds = ['cd %(installdir)s/lib && for l in libncurses{.,_,w}*; do ln -s "${l}" "${l/ncurses/tinfo}"; done'] +postinstallcmds = ['cd %(installdir)s/lib && for x in libncurses{.,_,w}*; do ln -s "${x}" "${x/ncurses/tinfo}"; done'] _target_suffix = ['', 'w'] # '': ncurses, 'w': ncursesw _lib_suffix = ['%s%s' % (x, y) for x in _target_suffix for y in ['.a', '_g.a', '.' + SHLIB_EXT]] diff --git a/easybuild/easyconfigs/n/ncurses/ncurses-6.2-GCCcore-10.2.0.eb b/easybuild/easyconfigs/n/ncurses/ncurses-6.2-GCCcore-10.2.0.eb index 2ef2ac3431c2..3e4cbc865cdb 100644 --- a/easybuild/easyconfigs/n/ncurses/ncurses-6.2-GCCcore-10.2.0.eb +++ b/easybuild/easyconfigs/n/ncurses/ncurses-6.2-GCCcore-10.2.0.eb @@ -30,7 +30,7 @@ configopts = [ # Symlink libtinfo to libncurses # libncurses with this configopts has all the symbols from libtinfo, but some packages look for libtinfo specifically -postinstallcmds = ['cd %(installdir)s/lib && for l in libncurses{.,_,w}*; do ln -s "${l}" "${l/ncurses/tinfo}"; done'] +postinstallcmds = ['cd %(installdir)s/lib && for x in libncurses{.,_,w}*; do ln -s "${x}" "${x/ncurses/tinfo}"; done'] _target_suffix = ['', 'w'] # '': ncurses, 'w': ncursesw _lib_suffix = ['%s%s' % (x, y) for x in _target_suffix for y in ['.a', '_g.a', '.' + SHLIB_EXT]] diff --git a/easybuild/easyconfigs/n/ncurses/ncurses-6.2-GCCcore-10.3.0.eb b/easybuild/easyconfigs/n/ncurses/ncurses-6.2-GCCcore-10.3.0.eb index 3608131b4d77..44a352f643ec 100644 --- a/easybuild/easyconfigs/n/ncurses/ncurses-6.2-GCCcore-10.3.0.eb +++ b/easybuild/easyconfigs/n/ncurses/ncurses-6.2-GCCcore-10.3.0.eb @@ -30,7 +30,7 @@ configopts = [ # Symlink libtinfo to libncurses # libncurses with this configopts has all the symbols from libtinfo, but some packages look for libtinfo specifically -postinstallcmds = ['cd %(installdir)s/lib && for l in libncurses{.,_,w}*; do ln -s "${l}" "${l/ncurses/tinfo}"; done'] +postinstallcmds = ['cd %(installdir)s/lib && for x in libncurses{.,_,w}*; do ln -s "${x}" "${x/ncurses/tinfo}"; done'] _target_suffix = ['', 'w'] # '': ncurses, 'w': ncursesw _lib_suffix = ['%s%s' % (x, y) for x in _target_suffix for y in ['.a', '_g.a', '.' + SHLIB_EXT]] diff --git a/easybuild/easyconfigs/n/ncurses/ncurses-6.2-GCCcore-11.2.0.eb b/easybuild/easyconfigs/n/ncurses/ncurses-6.2-GCCcore-11.2.0.eb index 8c1f8604b302..e9c0795d94d4 100644 --- a/easybuild/easyconfigs/n/ncurses/ncurses-6.2-GCCcore-11.2.0.eb +++ b/easybuild/easyconfigs/n/ncurses/ncurses-6.2-GCCcore-11.2.0.eb @@ -30,7 +30,7 @@ configopts = [ # Symlink libtinfo to libncurses # libncurses with this configopts has all the symbols from libtinfo, but some packages look for libtinfo specifically -postinstallcmds = ['cd %(installdir)s/lib && for l in libncurses{.,_,w}*; do ln -s "${l}" "${l/ncurses/tinfo}"; done'] +postinstallcmds = ['cd %(installdir)s/lib && for x in libncurses{.,_,w}*; do ln -s "${x}" "${x/ncurses/tinfo}"; done'] _target_suffix = ['', 'w'] # '': ncurses, 'w': ncursesw _lib_suffix = ['%s%s' % (x, y) for x in _target_suffix for y in ['.a', '_g.a', '.' + SHLIB_EXT]] diff --git a/easybuild/easyconfigs/n/ncurses/ncurses-6.2-GCCcore-9.3.0.eb b/easybuild/easyconfigs/n/ncurses/ncurses-6.2-GCCcore-9.3.0.eb index cee6bdc8b983..e0ba575910a5 100644 --- a/easybuild/easyconfigs/n/ncurses/ncurses-6.2-GCCcore-9.3.0.eb +++ b/easybuild/easyconfigs/n/ncurses/ncurses-6.2-GCCcore-9.3.0.eb @@ -30,7 +30,7 @@ configopts = [ # Symlink libtinfo to libncurses # libncurses with this configopts has all the symbols from libtinfo, but some packages look for libtinfo specifically -postinstallcmds = ['cd %(installdir)s/lib && for l in libncurses{.,_,w}*; do ln -s "${l}" "${l/ncurses/tinfo}"; done'] +postinstallcmds = ['cd %(installdir)s/lib && for x in libncurses{.,_,w}*; do ln -s "${x}" "${x/ncurses/tinfo}"; done'] _target_suffix = ['', 'w'] # '': ncurses, 'w': ncursesw _lib_suffix = ['%s%s' % (x, y) for x in _target_suffix for y in ['.a', '_g.a', '.' + SHLIB_EXT]] diff --git a/easybuild/easyconfigs/n/ncurses/ncurses-6.2.eb b/easybuild/easyconfigs/n/ncurses/ncurses-6.2.eb index 14b48372eed9..263d60243578 100644 --- a/easybuild/easyconfigs/n/ncurses/ncurses-6.2.eb +++ b/easybuild/easyconfigs/n/ncurses/ncurses-6.2.eb @@ -28,7 +28,7 @@ buildopts = 'CFLAGS="-O2 -fPIC"' # Symlink libtinfo to libncurses # libncurses with this configopts has all the symbols from libtinfo, but some packages look for libtinfo specifically -postinstallcmds = ['cd %(installdir)s/lib && for l in libncurses{.,_,w}*; do ln -s "${l}" "${l/ncurses/tinfo}"; done'] +postinstallcmds = ['cd %(installdir)s/lib && for x in libncurses{.,_,w}*; do ln -s "${x}" "${x/ncurses/tinfo}"; done'] _target_suffix = ['', 'w'] # '': ncurses, 'w': ncursesw _lib_suffix = ['%s%s' % (x, y) for x in _target_suffix for y in ['.a', '_g.a', '.' + SHLIB_EXT]] diff --git a/easybuild/easyconfigs/n/ncurses/ncurses-6.3-GCCcore-11.3.0.eb b/easybuild/easyconfigs/n/ncurses/ncurses-6.3-GCCcore-11.3.0.eb index 232a2cfedab4..1319666182ee 100644 --- a/easybuild/easyconfigs/n/ncurses/ncurses-6.3-GCCcore-11.3.0.eb +++ b/easybuild/easyconfigs/n/ncurses/ncurses-6.3-GCCcore-11.3.0.eb @@ -30,7 +30,7 @@ configopts = [ # Symlink libtinfo to libncurses # libncurses with this configopts has all the symbols from libtinfo, but some packages look for libtinfo specifically -postinstallcmds = ['cd %(installdir)s/lib && for l in libncurses{.,_,w}*; do ln -s "${l}" "${l/ncurses/tinfo}"; done'] +postinstallcmds = ['cd %(installdir)s/lib && for x in libncurses{.,_,w}*; do ln -s "${x}" "${x/ncurses/tinfo}"; done'] _target_suffix = ['', 'w'] # '': ncurses, 'w': ncursesw _lib_suffix = ['%s%s' % (x, y) for x in _target_suffix for y in ['.a', '_g.a', '.' + SHLIB_EXT]] diff --git a/easybuild/easyconfigs/n/ncurses/ncurses-6.3-GCCcore-12.1.0.eb b/easybuild/easyconfigs/n/ncurses/ncurses-6.3-GCCcore-12.1.0.eb index 4b9fc292bde1..c9183ead73b7 100644 --- a/easybuild/easyconfigs/n/ncurses/ncurses-6.3-GCCcore-12.1.0.eb +++ b/easybuild/easyconfigs/n/ncurses/ncurses-6.3-GCCcore-12.1.0.eb @@ -30,7 +30,7 @@ configopts = [ # Symlink libtinfo to libncurses # libncurses with this configopts has all the symbols from libtinfo, but some packages look for libtinfo specifically -postinstallcmds = ['cd %(installdir)s/lib && for l in libncurses{.,_,w}*; do ln -s "${l}" "${l/ncurses/tinfo}"; done'] +postinstallcmds = ['cd %(installdir)s/lib && for x in libncurses{.,_,w}*; do ln -s "${x}" "${x/ncurses/tinfo}"; done'] _target_suffix = ['', 'w'] # '': ncurses, 'w': ncursesw _lib_suffix = ['%s%s' % (x, y) for x in _target_suffix for y in ['.a', '_g.a', '.' + SHLIB_EXT]] diff --git a/easybuild/easyconfigs/n/ncurses/ncurses-6.3-GCCcore-12.2.0.eb b/easybuild/easyconfigs/n/ncurses/ncurses-6.3-GCCcore-12.2.0.eb index 6e0cca39d811..c0e5067704fc 100644 --- a/easybuild/easyconfigs/n/ncurses/ncurses-6.3-GCCcore-12.2.0.eb +++ b/easybuild/easyconfigs/n/ncurses/ncurses-6.3-GCCcore-12.2.0.eb @@ -30,7 +30,7 @@ configopts = [ # Symlink libtinfo to libncurses # libncurses with this configopts has all the symbols from libtinfo, but some packages look for libtinfo specifically -postinstallcmds = ['cd %(installdir)s/lib && for l in libncurses{.,_,w}*; do ln -s "${l}" "${l/ncurses/tinfo}"; done'] +postinstallcmds = ['cd %(installdir)s/lib && for x in libncurses{.,_,w}*; do ln -s "${x}" "${x/ncurses/tinfo}"; done'] _target_suffix = ['', 'w'] # '': ncurses, 'w': ncursesw _lib_suffix = ['%s%s' % (x, y) for x in _target_suffix for y in ['.a', '_g.a', '.' + SHLIB_EXT]] diff --git a/easybuild/easyconfigs/n/ncurses/ncurses-6.3.eb b/easybuild/easyconfigs/n/ncurses/ncurses-6.3.eb index 83969aa9fa57..96efad315ec4 100644 --- a/easybuild/easyconfigs/n/ncurses/ncurses-6.3.eb +++ b/easybuild/easyconfigs/n/ncurses/ncurses-6.3.eb @@ -31,7 +31,7 @@ buildopts = 'CFLAGS="-O2 -fPIC"' # Symlink libtinfo to libncurses # libncurses with this configopts has all the symbols from libtinfo, but some packages look for libtinfo specifically -postinstallcmds = ['cd %(installdir)s/lib && for l in libncurses{.,_,w}*; do ln -s "${l}" "${l/ncurses/tinfo}"; done'] +postinstallcmds = ['cd %(installdir)s/lib && for x in libncurses{.,_,w}*; do ln -s "${x}" "${x/ncurses/tinfo}"; done'] _target_suffix = ['', 'w'] # '': ncurses, 'w': ncursesw _lib_suffix = ['%s%s' % (x, y) for x in _target_suffix for y in ['.a', '_g.a', '.' + SHLIB_EXT]] diff --git a/easybuild/easyconfigs/n/ncurses/ncurses-6.4-GCCcore-12.3.0.eb b/easybuild/easyconfigs/n/ncurses/ncurses-6.4-GCCcore-12.3.0.eb index 868596ebe86d..e5aac8a4e542 100644 --- a/easybuild/easyconfigs/n/ncurses/ncurses-6.4-GCCcore-12.3.0.eb +++ b/easybuild/easyconfigs/n/ncurses/ncurses-6.4-GCCcore-12.3.0.eb @@ -34,7 +34,7 @@ configopts = [ # Symlink libtinfo to libncurses # libncurses with this configopts has all the symbols from libtinfo, but some packages look for libtinfo specifically -postinstallcmds = ['cd %(installdir)s/lib && for l in libncurses{.,_,w}*; do ln -s "${l}" "${l/ncurses/tinfo}"; done'] +postinstallcmds = ['cd %(installdir)s/lib && for x in libncurses{.,_,w}*; do ln -s "${x}" "${x/ncurses/tinfo}"; done'] _target_suffix = ['', 'w'] # '': ncurses, 'w': ncursesw _lib_suffix = ['%s%s' % (x, y) for x in _target_suffix for y in ['.a', '_g.a', '.' + SHLIB_EXT]] diff --git a/easybuild/easyconfigs/n/ncurses/ncurses-6.4-GCCcore-13.1.0.eb b/easybuild/easyconfigs/n/ncurses/ncurses-6.4-GCCcore-13.1.0.eb index 40a351927629..7522a5dcfad9 100644 --- a/easybuild/easyconfigs/n/ncurses/ncurses-6.4-GCCcore-13.1.0.eb +++ b/easybuild/easyconfigs/n/ncurses/ncurses-6.4-GCCcore-13.1.0.eb @@ -34,7 +34,7 @@ configopts = [ # Symlink libtinfo to libncurses # libncurses with this configopts has all the symbols from libtinfo, but some packages look for libtinfo specifically -postinstallcmds = ['cd %(installdir)s/lib && for l in libncurses{.,_,w}*; do ln -s "${l}" "${l/ncurses/tinfo}"; done'] +postinstallcmds = ['cd %(installdir)s/lib && for x in libncurses{.,_,w}*; do ln -s "${x}" "${x/ncurses/tinfo}"; done'] _target_suffix = ['', 'w'] # '': ncurses, 'w': ncursesw _lib_suffix = ['%s%s' % (x, y) for x in _target_suffix for y in ['.a', '_g.a', '.' + SHLIB_EXT]] diff --git a/easybuild/easyconfigs/n/ncurses/ncurses-6.4-GCCcore-13.2.0.eb b/easybuild/easyconfigs/n/ncurses/ncurses-6.4-GCCcore-13.2.0.eb index 4c46e0831435..048597e41020 100644 --- a/easybuild/easyconfigs/n/ncurses/ncurses-6.4-GCCcore-13.2.0.eb +++ b/easybuild/easyconfigs/n/ncurses/ncurses-6.4-GCCcore-13.2.0.eb @@ -34,7 +34,7 @@ configopts = [ # Symlink libtinfo to libncurses # libncurses with this configopts has all the symbols from libtinfo, but some packages look for libtinfo specifically -postinstallcmds = ['cd %(installdir)s/lib && for l in libncurses{.,_,w}*; do ln -s "${l}" "${l/ncurses/tinfo}"; done'] +postinstallcmds = ['cd %(installdir)s/lib && for x in libncurses{.,_,w}*; do ln -s "${x}" "${x/ncurses/tinfo}"; done'] _target_suffix = ['', 'w'] # '': ncurses, 'w': ncursesw _lib_suffix = ['%s%s' % (x, y) for x in _target_suffix for y in ['.a', '_g.a', '.' + SHLIB_EXT]] diff --git a/easybuild/easyconfigs/n/ncurses/ncurses-6.4.eb b/easybuild/easyconfigs/n/ncurses/ncurses-6.4.eb index a5d4b191e8a4..18485f482dbd 100644 --- a/easybuild/easyconfigs/n/ncurses/ncurses-6.4.eb +++ b/easybuild/easyconfigs/n/ncurses/ncurses-6.4.eb @@ -31,7 +31,7 @@ buildopts = 'CFLAGS="-O2 -fPIC"' # Symlink libtinfo to libncurses # libncurses with this configopts has all the symbols from libtinfo, but some packages look for libtinfo specifically -postinstallcmds = ['cd %(installdir)s/lib && for l in libncurses{.,_,w}*; do ln -s "${l}" "${l/ncurses/tinfo}"; done'] +postinstallcmds = ['cd %(installdir)s/lib && for x in libncurses{.,_,w}*; do ln -s "${x}" "${x/ncurses/tinfo}"; done'] _target_suffix = ['', 'w'] # '': ncurses, 'w': ncursesw _lib_suffix = ['%s%s' % (x, y) for x in _target_suffix for y in ['.a', '_g.a', '.' + SHLIB_EXT]] diff --git a/easybuild/easyconfigs/n/ncurses/ncurses-6.5-GCCcore-13.3.0.eb b/easybuild/easyconfigs/n/ncurses/ncurses-6.5-GCCcore-13.3.0.eb index c34643c0b374..a233fbfaae78 100644 --- a/easybuild/easyconfigs/n/ncurses/ncurses-6.5-GCCcore-13.3.0.eb +++ b/easybuild/easyconfigs/n/ncurses/ncurses-6.5-GCCcore-13.3.0.eb @@ -34,7 +34,7 @@ configopts = [ # Symlink libtinfo to libncurses # libncurses with this configopts has all the symbols from libtinfo, but some packages look for libtinfo specifically -postinstallcmds = ['cd %(installdir)s/lib && for l in libncurses{.,_,w}*; do ln -s "${l}" "${l/ncurses/tinfo}"; done'] +postinstallcmds = ['cd %(installdir)s/lib && for x in libncurses{.,_,w}*; do ln -s "${x}" "${x/ncurses/tinfo}"; done'] _target_suffix = ['', 'w'] # '': ncurses, 'w': ncursesw _lib_suffix = ['%s%s' % (x, y) for x in _target_suffix for y in ['.a', '_g.a', '.' + SHLIB_EXT]] diff --git a/easybuild/easyconfigs/n/ncurses/ncurses-6.5.eb b/easybuild/easyconfigs/n/ncurses/ncurses-6.5.eb index a3ff51a30fcf..f5576ddc6b7b 100644 --- a/easybuild/easyconfigs/n/ncurses/ncurses-6.5.eb +++ b/easybuild/easyconfigs/n/ncurses/ncurses-6.5.eb @@ -31,7 +31,7 @@ buildopts = 'CFLAGS="-O2 -fPIC"' # Symlink libtinfo to libncurses # libncurses with this configopts has all the symbols from libtinfo, but some packages look for libtinfo specifically -postinstallcmds = ['cd %(installdir)s/lib && for l in libncurses{.,_,w}*; do ln -s "${l}" "${l/ncurses/tinfo}"; done'] +postinstallcmds = ['cd %(installdir)s/lib && for x in libncurses{.,_,w}*; do ln -s "${x}" "${x/ncurses/tinfo}"; done'] _target_suffix = ['', 'w'] # '': ncurses, 'w': ncursesw _lib_suffix = ['%s%s' % (x, y) for x in _target_suffix for y in ['.a', '_g.a', '.' + SHLIB_EXT]] diff --git a/easybuild/easyconfigs/o/OpenCV/OpenCV-4.2.0-foss-2020a-Python-3.8.2-contrib.eb b/easybuild/easyconfigs/o/OpenCV/OpenCV-4.2.0-foss-2020a-Python-3.8.2-contrib.eb index 8870feae56a4..3a3d84de7601 100644 --- a/easybuild/easyconfigs/o/OpenCV/OpenCV-4.2.0-foss-2020a-Python-3.8.2-contrib.eb +++ b/easybuild/easyconfigs/o/OpenCV/OpenCV-4.2.0-foss-2020a-Python-3.8.2-contrib.eb @@ -62,7 +62,7 @@ local_contrib_libs = [ ] sanity_check_paths = { - 'files': ['lib64/libopencv_%s.%s' % (l, SHLIB_EXT) for l in local_contrib_libs], + 'files': ['lib64/libopencv_%s.%s' % (x, SHLIB_EXT) for x in local_contrib_libs], 'dirs': [], } diff --git a/easybuild/easyconfigs/o/OpenCV/OpenCV-4.5.1-foss-2020b-contrib.eb b/easybuild/easyconfigs/o/OpenCV/OpenCV-4.5.1-foss-2020b-contrib.eb index f866015943dc..526c20bde165 100644 --- a/easybuild/easyconfigs/o/OpenCV/OpenCV-4.5.1-foss-2020b-contrib.eb +++ b/easybuild/easyconfigs/o/OpenCV/OpenCV-4.5.1-foss-2020b-contrib.eb @@ -77,7 +77,7 @@ local_contrib_libs = [ ] sanity_check_paths = { - 'files': ['lib64/libopencv_%s.%s' % (l, SHLIB_EXT) for l in local_contrib_libs], + 'files': ['lib64/libopencv_%s.%s' % (x, SHLIB_EXT) for x in local_contrib_libs], 'dirs': [], } diff --git a/easybuild/easyconfigs/o/OpenCV/OpenCV-4.5.1-fosscuda-2020b-contrib.eb b/easybuild/easyconfigs/o/OpenCV/OpenCV-4.5.1-fosscuda-2020b-contrib.eb index 6bd1dad125bc..45c90226c43e 100644 --- a/easybuild/easyconfigs/o/OpenCV/OpenCV-4.5.1-fosscuda-2020b-contrib.eb +++ b/easybuild/easyconfigs/o/OpenCV/OpenCV-4.5.1-fosscuda-2020b-contrib.eb @@ -77,7 +77,7 @@ local_contrib_libs = [ ] sanity_check_paths = { - 'files': ['lib64/libopencv_%s.%s' % (l, SHLIB_EXT) for l in local_contrib_libs], + 'files': ['lib64/libopencv_%s.%s' % (x, SHLIB_EXT) for x in local_contrib_libs], 'dirs': [], } diff --git a/easybuild/easyconfigs/o/OpenCV/OpenCV-4.5.3-foss-2021a-CUDA-11.3.1-contrib.eb b/easybuild/easyconfigs/o/OpenCV/OpenCV-4.5.3-foss-2021a-CUDA-11.3.1-contrib.eb index 9c0af78eb102..5b248f41a05c 100644 --- a/easybuild/easyconfigs/o/OpenCV/OpenCV-4.5.3-foss-2021a-CUDA-11.3.1-contrib.eb +++ b/easybuild/easyconfigs/o/OpenCV/OpenCV-4.5.3-foss-2021a-CUDA-11.3.1-contrib.eb @@ -79,7 +79,7 @@ local_contrib_libs = [ ] sanity_check_paths = { - 'files': ['lib64/libopencv_%s.%s' % (l, SHLIB_EXT) for l in local_contrib_libs], + 'files': ['lib64/libopencv_%s.%s' % (x, SHLIB_EXT) for x in local_contrib_libs], 'dirs': [], } diff --git a/easybuild/easyconfigs/o/OpenCV/OpenCV-4.5.3-foss-2021a-contrib.eb b/easybuild/easyconfigs/o/OpenCV/OpenCV-4.5.3-foss-2021a-contrib.eb index 39fac2609e23..4b4d102cacdb 100644 --- a/easybuild/easyconfigs/o/OpenCV/OpenCV-4.5.3-foss-2021a-contrib.eb +++ b/easybuild/easyconfigs/o/OpenCV/OpenCV-4.5.3-foss-2021a-contrib.eb @@ -77,7 +77,7 @@ local_contrib_libs = [ ] sanity_check_paths = { - 'files': ['lib64/libopencv_%s.%s' % (l, SHLIB_EXT) for l in local_contrib_libs], + 'files': ['lib64/libopencv_%s.%s' % (x, SHLIB_EXT) for x in local_contrib_libs], 'dirs': [], } diff --git a/easybuild/easyconfigs/o/OpenCV/OpenCV-4.5.5-foss-2021b-contrib.eb b/easybuild/easyconfigs/o/OpenCV/OpenCV-4.5.5-foss-2021b-contrib.eb index 86531a76eb55..374fbce9837f 100644 --- a/easybuild/easyconfigs/o/OpenCV/OpenCV-4.5.5-foss-2021b-contrib.eb +++ b/easybuild/easyconfigs/o/OpenCV/OpenCV-4.5.5-foss-2021b-contrib.eb @@ -77,7 +77,7 @@ local_contrib_libs = [ ] sanity_check_paths = { - 'files': ['lib64/libopencv_%s.%s' % (l, SHLIB_EXT) for l in local_contrib_libs], + 'files': ['lib64/libopencv_%s.%s' % (x, SHLIB_EXT) for x in local_contrib_libs], 'dirs': [], } diff --git a/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-2.10.8-gompi-2020a.eb b/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-2.10.8-gompi-2020a.eb index a61e247f2116..6349cd152a82 100644 --- a/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-2.10.8-gompi-2020a.eb +++ b/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-2.10.8-gompi-2020a.eb @@ -90,8 +90,8 @@ local_bin = ['abi-dump', 'abi-load', 'align-info', 'bam-load', 'cache-mgr', 'cg- sanity_check_paths = { 'files': ['bin/%s' % x for x in local_bin] + ['include/ncbi-vdb/NGS.hpp', ('lib/libncbi-ngs-c++.a', 'lib64/libncbi-ngs-c++.a')] + - [('lib/libncbi-%s.%s' % (l, e), 'lib64/libncbi-%s.%s' % (l, e)) - for l in ['vdb', 'wvdb'] for e in ['a', SHLIB_EXT]], + [('lib/libncbi-%s.%s' % (x, e), 'lib64/libncbi-%s.%s' % (x, e)) + for x in ['vdb', 'wvdb'] for e in ['a', SHLIB_EXT]], 'dirs': [] } diff --git a/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-2.10.9-gompi-2020b.eb b/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-2.10.9-gompi-2020b.eb index ba95e2ddc3a4..4c6e55fba493 100644 --- a/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-2.10.9-gompi-2020b.eb +++ b/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-2.10.9-gompi-2020b.eb @@ -90,8 +90,8 @@ local_bin = ['abi-dump', 'abi-load', 'align-info', 'bam-load', 'cache-mgr', 'cg- sanity_check_paths = { 'files': ['bin/%s' % x for x in local_bin] + ['include/ncbi-vdb/NGS.hpp', ('lib/libncbi-ngs-c++.a', 'lib64/libncbi-ngs-c++.a')] + - [('lib/libncbi-%s.%s' % (l, e), 'lib64/libncbi-%s.%s' % (l, e)) - for l in ['vdb', 'wvdb'] for e in ['a', SHLIB_EXT]], + [('lib/libncbi-%s.%s' % (x, e), 'lib64/libncbi-%s.%s' % (x, e)) + for x in ['vdb', 'wvdb'] for e in ['a', SHLIB_EXT]], 'dirs': [] } diff --git a/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-3.0.10-gompi-2023a.eb b/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-3.0.10-gompi-2023a.eb index b7658b73c234..eed4a30c7d7e 100644 --- a/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-3.0.10-gompi-2023a.eb +++ b/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-3.0.10-gompi-2023a.eb @@ -57,7 +57,7 @@ _ngs_libs = ['libncbi-ngs.a', 'libncbi-ngs-c++.a', 'libncbi-ngs.%s' % SHLIB_EXT, 'libngs-c++.a', 'libngs-c++.%s' % SHLIB_EXT] sanity_check_paths = { - 'files': ['bin/%s' % x for x in _sra_bin] + ['lib/%s' % l for l in _ngs_libs], + 'files': ['bin/%s' % x for x in _sra_bin] + ['lib/%s' % x for x in _ngs_libs], 'dirs': ['jar', 'include/ncbi-vdb', 'include/ngs'] } diff --git a/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-3.0.3-gompi-2022a.eb b/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-3.0.3-gompi-2022a.eb index a7423e09e62c..742d94a678d0 100644 --- a/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-3.0.3-gompi-2022a.eb +++ b/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-3.0.3-gompi-2022a.eb @@ -56,7 +56,7 @@ _ngs_libs = ['libncbi-ngs.a', 'libncbi-ngs-c++.a', 'libncbi-ngs.%s' % SHLIB_EXT, 'libngs-c++.a', 'libngs-c++.%s' % SHLIB_EXT] sanity_check_paths = { - 'files': ['bin/%s' % x for x in _sra_bin] + ['lib/%s' % l for l in _ngs_libs], + 'files': ['bin/%s' % x for x in _sra_bin] + ['lib/%s' % x for x in _ngs_libs], 'dirs': ['jar', 'include/ncbi-vdb', 'include/ngs'] } diff --git a/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-3.0.5-gompi-2021a.eb b/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-3.0.5-gompi-2021a.eb index 9759bd166416..3ce353ff56f2 100644 --- a/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-3.0.5-gompi-2021a.eb +++ b/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-3.0.5-gompi-2021a.eb @@ -54,7 +54,7 @@ _ngs_libs = ['libncbi-ngs.a', 'libncbi-ngs-c++.a', 'libncbi-ngs.%s' % SHLIB_EXT, 'libngs-c++.a', 'libngs-c++.%s' % SHLIB_EXT] sanity_check_paths = { - 'files': ['bin/%s' % x for x in _sra_bin] + ['lib/%s' % l for l in _ngs_libs], + 'files': ['bin/%s' % x for x in _sra_bin] + ['lib/%s' % x for x in _ngs_libs], 'dirs': ['jar', 'include/ncbi-vdb', 'include/ngs'] } diff --git a/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-3.0.5-gompi-2022b.eb b/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-3.0.5-gompi-2022b.eb index c81d146ae638..d6c0be51d315 100644 --- a/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-3.0.5-gompi-2022b.eb +++ b/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-3.0.5-gompi-2022b.eb @@ -57,7 +57,7 @@ _ngs_libs = ['libncbi-ngs.a', 'libncbi-ngs-c++.a', 'libncbi-ngs.%s' % SHLIB_EXT, 'libngs-c++.a', 'libngs-c++.%s' % SHLIB_EXT] sanity_check_paths = { - 'files': ['bin/%s' % x for x in _sra_bin] + ['lib/%s' % l for l in _ngs_libs], + 'files': ['bin/%s' % x for x in _sra_bin] + ['lib/%s' % x for x in _ngs_libs], 'dirs': ['jar', 'include/ncbi-vdb', 'include/ngs'] } diff --git a/easybuild/easyconfigs/s/Singular/Singular-4.3.2p10-gfbf-2022a.eb b/easybuild/easyconfigs/s/Singular/Singular-4.3.2p10-gfbf-2022a.eb index 9cbd46cd5976..a046862dd93b 100644 --- a/easybuild/easyconfigs/s/Singular/Singular-4.3.2p10-gfbf-2022a.eb +++ b/easybuild/easyconfigs/s/Singular/Singular-4.3.2p10-gfbf-2022a.eb @@ -36,7 +36,7 @@ configopts = "--with-gmp=$EBROOTGMP --with-flint=$EBROOTFLINT --with-ntl=$EBROOT sanity_check_paths = { 'files': ['bin/%s' % x for x in ['ESingular', 'Singular', 'TSingular', 'libpolys-config', 'libsingular-config']] + - ['lib/lib%s.%s' % (l, e) for l in ['Singular', 'factory', 'omalloc', 'polys', 'singular_resources'] + ['lib/lib%s.%s' % (x, e) for x in ['Singular', 'factory', 'omalloc', 'polys', 'singular_resources'] for e in ['a', SHLIB_EXT]], 'dirs': ['include/%s' % h for h in ['factory', 'omalloc', 'resources', 'singular']] + ['libexec/singular', 'share'], diff --git a/easybuild/easyconfigs/s/Singular/Singular-4.4.0-gfbf-2023b.eb b/easybuild/easyconfigs/s/Singular/Singular-4.4.0-gfbf-2023b.eb index b68c99461473..1c6d28cd8284 100644 --- a/easybuild/easyconfigs/s/Singular/Singular-4.4.0-gfbf-2023b.eb +++ b/easybuild/easyconfigs/s/Singular/Singular-4.4.0-gfbf-2023b.eb @@ -36,7 +36,7 @@ configopts = "--with-gmp=$EBROOTGMP --with-flint=$EBROOTFLINT --with-ntl=$EBROOT sanity_check_paths = { 'files': ['bin/%s' % x for x in ['ESingular', 'Singular', 'TSingular', 'libpolys-config', 'libsingular-config']] + - ['lib/lib%s.%s' % (l, e) for l in ['Singular', 'factory', 'omalloc', 'polys', 'singular_resources'] + ['lib/lib%s.%s' % (x, e) for x in ['Singular', 'factory', 'omalloc', 'polys', 'singular_resources'] for e in ['a', SHLIB_EXT]], 'dirs': ['include/%s' % h for h in ['factory', 'omalloc', 'resources', 'singular']] + ['libexec/singular', 'share'], diff --git a/easybuild/easyconfigs/t/TinyXML/TinyXML-2.6.2-GCCcore-11.2.0.eb b/easybuild/easyconfigs/t/TinyXML/TinyXML-2.6.2-GCCcore-11.2.0.eb index 502a6576d665..2a470ddc4e48 100644 --- a/easybuild/easyconfigs/t/TinyXML/TinyXML-2.6.2-GCCcore-11.2.0.eb +++ b/easybuild/easyconfigs/t/TinyXML/TinyXML-2.6.2-GCCcore-11.2.0.eb @@ -53,7 +53,7 @@ postinstallcmds = [' && '.join([ ])] sanity_check_paths = { - 'files': ['include/%s' % i for i in _incs] + ['lib/%s' % l for l in _libs], + 'files': ['include/%s' % i for i in _incs] + ['lib/%s' % x for x in _libs], 'dirs': [], } diff --git a/easybuild/easyconfigs/t/TinyXML/TinyXML-2.6.2-GCCcore-11.3.0.eb b/easybuild/easyconfigs/t/TinyXML/TinyXML-2.6.2-GCCcore-11.3.0.eb index 1810c449235c..8bad07b846c1 100644 --- a/easybuild/easyconfigs/t/TinyXML/TinyXML-2.6.2-GCCcore-11.3.0.eb +++ b/easybuild/easyconfigs/t/TinyXML/TinyXML-2.6.2-GCCcore-11.3.0.eb @@ -53,7 +53,7 @@ postinstallcmds = [' && '.join([ ])] sanity_check_paths = { - 'files': ['include/%s' % i for i in _incs] + ['lib/%s' % l for l in _libs], + 'files': ['include/%s' % i for i in _incs] + ['lib/%s' % x for x in _libs], 'dirs': [], } diff --git a/easybuild/easyconfigs/v/VTK/VTK-8.2.0-foss-2020a-Python-3.8.2.eb b/easybuild/easyconfigs/v/VTK/VTK-8.2.0-foss-2020a-Python-3.8.2.eb index 44e96b7622bf..7a68015bf398 100644 --- a/easybuild/easyconfigs/v/VTK/VTK-8.2.0-foss-2020a-Python-3.8.2.eb +++ b/easybuild/easyconfigs/v/VTK/VTK-8.2.0-foss-2020a-Python-3.8.2.eb @@ -89,7 +89,7 @@ local_vtk_libs = ['CommonCore', 'IONetCDF', 'ParallelMPI', 'RenderingOpenGL2'] sanity_check_paths = { 'files': ['bin/%s' % x for x in local_vtk_exec] + - ['lib/libvtk%s-%%(version_major_minor)s.%s' % (l, SHLIB_EXT) for l in local_vtk_libs], + ['lib/libvtk%s-%%(version_major_minor)s.%s' % (x, SHLIB_EXT) for x in local_vtk_libs], 'dirs': ['lib/python%(pyshortver)s/site-packages/', 'include/vtk-%(version_major_minor)s'], } diff --git a/easybuild/easyconfigs/v/VTK/VTK-8.2.0-foss-2021a.eb b/easybuild/easyconfigs/v/VTK/VTK-8.2.0-foss-2021a.eb index 69f866da78ab..3b8eefd0ad21 100644 --- a/easybuild/easyconfigs/v/VTK/VTK-8.2.0-foss-2021a.eb +++ b/easybuild/easyconfigs/v/VTK/VTK-8.2.0-foss-2021a.eb @@ -93,7 +93,7 @@ local_vtk_libs = ['CommonCore', 'IONetCDF', 'ParallelMPI', 'RenderingOpenGL2'] sanity_check_paths = { 'files': ['bin/%s' % x for x in local_vtk_exec] + - ['lib/libvtk%s-%%(version_major_minor)s.%s' % (l, SHLIB_EXT) for l in local_vtk_libs], + ['lib/libvtk%s-%%(version_major_minor)s.%s' % (x, SHLIB_EXT) for x in local_vtk_libs], 'dirs': ['lib/python%(pyshortver)s/site-packages/', 'include/vtk-%(version_major_minor)s'], } diff --git a/easybuild/easyconfigs/v/VTK/VTK-8.2.0-fosscuda-2020a-Python-3.8.2.eb b/easybuild/easyconfigs/v/VTK/VTK-8.2.0-fosscuda-2020a-Python-3.8.2.eb index c7649233d3e0..a4ce06d1f006 100644 --- a/easybuild/easyconfigs/v/VTK/VTK-8.2.0-fosscuda-2020a-Python-3.8.2.eb +++ b/easybuild/easyconfigs/v/VTK/VTK-8.2.0-fosscuda-2020a-Python-3.8.2.eb @@ -98,7 +98,7 @@ local_vtk_libs = ['AcceleratorsVTKm', 'CommonCore', 'IONetCDF', 'ParallelMPI', ' sanity_check_paths = { 'files': ['bin/%s' % x for x in local_vtk_exec] + - ['lib/libvtk%s-%%(version_major_minor)s.%s' % (l, SHLIB_EXT) for l in local_vtk_libs], + ['lib/libvtk%s-%%(version_major_minor)s.%s' % (x, SHLIB_EXT) for x in local_vtk_libs], 'dirs': ['lib/python%(pyshortver)s/site-packages/', 'include/vtk-%(version_major_minor)s'], } diff --git a/easybuild/easyconfigs/v/VTK/VTK-9.0.1-foss-2020b.eb b/easybuild/easyconfigs/v/VTK/VTK-9.0.1-foss-2020b.eb index c92d21af64b4..d5b717e40d97 100644 --- a/easybuild/easyconfigs/v/VTK/VTK-9.0.1-foss-2020b.eb +++ b/easybuild/easyconfigs/v/VTK/VTK-9.0.1-foss-2020b.eb @@ -77,7 +77,7 @@ local_vtk_libs = ['CommonCore', 'IONetCDF', 'ParallelCore', 'RenderingOpenGL2'] sanity_check_paths = { 'files': ['bin/%s' % x for x in local_vtk_exec] + ['include/vtk-%(version_major_minor)s/vtkMPI.h'] + - ['lib/libvtk%s-%%(version_major_minor)s.%s' % (l, SHLIB_EXT) for l in local_vtk_libs], + ['lib/libvtk%s-%%(version_major_minor)s.%s' % (x, SHLIB_EXT) for x in local_vtk_libs], 'dirs': ['lib/python%(pyshortver)s/site-packages/', 'include/vtk-%(version_major_minor)s'], } diff --git a/easybuild/easyconfigs/v/VTK/VTK-9.0.1-foss-2021a.eb b/easybuild/easyconfigs/v/VTK/VTK-9.0.1-foss-2021a.eb index c2ca95e963f4..c638bf533f84 100644 --- a/easybuild/easyconfigs/v/VTK/VTK-9.0.1-foss-2021a.eb +++ b/easybuild/easyconfigs/v/VTK/VTK-9.0.1-foss-2021a.eb @@ -72,7 +72,7 @@ local_vtk_libs = ['CommonCore', 'IONetCDF', 'ParallelCore', 'RenderingOpenGL2'] sanity_check_paths = { 'files': ['bin/%s' % x for x in local_vtk_exec] + ['include/vtk-%(version_major_minor)s/vtkMPI.h'] + - ['lib/libvtk%s-%%(version_major_minor)s.%s' % (l, SHLIB_EXT) for l in local_vtk_libs], + ['lib/libvtk%s-%%(version_major_minor)s.%s' % (x, SHLIB_EXT) for x in local_vtk_libs], 'dirs': ['lib/python%(pyshortver)s/site-packages/', 'include/vtk-%(version_major_minor)s'], } diff --git a/easybuild/easyconfigs/v/VTK/VTK-9.0.1-fosscuda-2020b.eb b/easybuild/easyconfigs/v/VTK/VTK-9.0.1-fosscuda-2020b.eb index 3d7c9e19371c..e2b021d5a7e3 100644 --- a/easybuild/easyconfigs/v/VTK/VTK-9.0.1-fosscuda-2020b.eb +++ b/easybuild/easyconfigs/v/VTK/VTK-9.0.1-fosscuda-2020b.eb @@ -76,7 +76,7 @@ local_vtk_libs = ['CommonCore', 'IONetCDF', 'ParallelCore', 'RenderingOpenGL2'] sanity_check_paths = { 'files': ['bin/%s' % x for x in local_vtk_exec] + ['include/vtk-%(version_major_minor)s/vtkMPI.h'] + - ['lib/libvtk%s-%%(version_major_minor)s.%s' % (l, SHLIB_EXT) for l in local_vtk_libs], + ['lib/libvtk%s-%%(version_major_minor)s.%s' % (x, SHLIB_EXT) for x in local_vtk_libs], 'dirs': ['lib/python%(pyshortver)s/site-packages/', 'include/vtk-%(version_major_minor)s'], } diff --git a/easybuild/easyconfigs/v/VTK/VTK-9.1.0-foss-2021b.eb b/easybuild/easyconfigs/v/VTK/VTK-9.1.0-foss-2021b.eb index 4f1fa372e75e..ba8a21fc86eb 100644 --- a/easybuild/easyconfigs/v/VTK/VTK-9.1.0-foss-2021b.eb +++ b/easybuild/easyconfigs/v/VTK/VTK-9.1.0-foss-2021b.eb @@ -72,7 +72,7 @@ local_vtk_libs = ['CommonCore', 'IONetCDF', 'ParallelCore', 'RenderingOpenGL2'] sanity_check_paths = { 'files': ['bin/%s' % x for x in local_vtk_exec] + ['include/vtk-%(version_major_minor)s/vtkMPI.h'] + - ['lib/libvtk%s-%%(version_major_minor)s.%s' % (l, SHLIB_EXT) for l in local_vtk_libs], + ['lib/libvtk%s-%%(version_major_minor)s.%s' % (x, SHLIB_EXT) for x in local_vtk_libs], 'dirs': ['lib/python%(pyshortver)s/site-packages/', 'include/vtk-%(version_major_minor)s'], } diff --git a/easybuild/easyconfigs/v/VTK/VTK-9.2.0.rc2-foss-2022a.eb b/easybuild/easyconfigs/v/VTK/VTK-9.2.0.rc2-foss-2022a.eb index 2fd6fa6575ab..488f7870d6c4 100644 --- a/easybuild/easyconfigs/v/VTK/VTK-9.2.0.rc2-foss-2022a.eb +++ b/easybuild/easyconfigs/v/VTK/VTK-9.2.0.rc2-foss-2022a.eb @@ -72,7 +72,7 @@ local_vtk_libs = ['CommonCore', 'IONetCDF', 'ParallelCore', 'RenderingOpenGL2'] sanity_check_paths = { 'files': ['bin/%s' % x for x in local_vtk_exec] + ['include/vtk-%(version_major_minor)s/vtkMPI.h'] + - ['lib/libvtk%s-%%(version_major_minor)s.%s' % (l, SHLIB_EXT) for l in local_vtk_libs], + ['lib/libvtk%s-%%(version_major_minor)s.%s' % (x, SHLIB_EXT) for x in local_vtk_libs], 'dirs': ['lib/python%(pyshortver)s/site-packages/', 'include/vtk-%(version_major_minor)s'], } diff --git a/easybuild/easyconfigs/v/VTK/VTK-9.2.2-foss-2022a.eb b/easybuild/easyconfigs/v/VTK/VTK-9.2.2-foss-2022a.eb index 1394917dc978..9eedaa0fc7e7 100644 --- a/easybuild/easyconfigs/v/VTK/VTK-9.2.2-foss-2022a.eb +++ b/easybuild/easyconfigs/v/VTK/VTK-9.2.2-foss-2022a.eb @@ -72,7 +72,7 @@ local_vtk_libs = ['CommonCore', 'IONetCDF', 'ParallelCore', 'RenderingOpenGL2'] sanity_check_paths = { 'files': ['bin/%s' % x for x in local_vtk_exec] + ['include/vtk-%(version_major_minor)s/vtkMPI.h'] + - ['lib/libvtk%s-%%(version_major_minor)s.%s' % (l, SHLIB_EXT) for l in local_vtk_libs], + ['lib/libvtk%s-%%(version_major_minor)s.%s' % (x, SHLIB_EXT) for x in local_vtk_libs], 'dirs': ['lib/python%(pyshortver)s/site-packages/', 'include/vtk-%(version_major_minor)s'], } diff --git a/easybuild/easyconfigs/v/VTK/VTK-9.2.6-foss-2022b.eb b/easybuild/easyconfigs/v/VTK/VTK-9.2.6-foss-2022b.eb index 8182cdf8c403..a94843a1ceb7 100644 --- a/easybuild/easyconfigs/v/VTK/VTK-9.2.6-foss-2022b.eb +++ b/easybuild/easyconfigs/v/VTK/VTK-9.2.6-foss-2022b.eb @@ -75,7 +75,7 @@ local_vtk_libs = ['CommonCore', 'IONetCDF', 'ParallelCore', 'RenderingOpenGL2'] sanity_check_paths = { 'files': ['bin/%s' % x for x in local_vtk_exec] + ['include/vtk-%(version_major_minor)s/vtkMPI.h'] + - ['lib/libvtk%s-%%(version_major_minor)s.%s' % (l, SHLIB_EXT) for l in local_vtk_libs], + ['lib/libvtk%s-%%(version_major_minor)s.%s' % (x, SHLIB_EXT) for x in local_vtk_libs], 'dirs': ['lib/python%(pyshortver)s/site-packages/', 'include/vtk-%(version_major_minor)s'], } diff --git a/easybuild/easyconfigs/v/VTK/VTK-9.2.6-foss-2023a.eb b/easybuild/easyconfigs/v/VTK/VTK-9.2.6-foss-2023a.eb index 5c6c6f7a1229..0e4b2672e26b 100644 --- a/easybuild/easyconfigs/v/VTK/VTK-9.2.6-foss-2023a.eb +++ b/easybuild/easyconfigs/v/VTK/VTK-9.2.6-foss-2023a.eb @@ -83,7 +83,7 @@ local_vtk_libs = ['CommonCore', 'IONetCDF', 'ParallelCore', 'RenderingOpenGL2'] sanity_check_paths = { 'files': ['bin/%s' % x for x in local_vtk_exec] + ['include/vtk-%(version_major_minor)s/vtkMPI.h'] + - ['lib/libvtk%s-%%(version_major_minor)s.%s' % (l, SHLIB_EXT) for l in local_vtk_libs], + ['lib/libvtk%s-%%(version_major_minor)s.%s' % (x, SHLIB_EXT) for x in local_vtk_libs], 'dirs': ['lib/python%(pyshortver)s/site-packages/', 'include/vtk-%(version_major_minor)s'], } diff --git a/easybuild/easyconfigs/v/VTK/VTK-9.3.0-foss-2023a.eb b/easybuild/easyconfigs/v/VTK/VTK-9.3.0-foss-2023a.eb index 740fd888dfb2..bad555846b20 100644 --- a/easybuild/easyconfigs/v/VTK/VTK-9.3.0-foss-2023a.eb +++ b/easybuild/easyconfigs/v/VTK/VTK-9.3.0-foss-2023a.eb @@ -83,7 +83,7 @@ local_vtk_libs = ['CommonCore', 'IONetCDF', 'ParallelCore', 'RenderingOpenGL2'] sanity_check_paths = { 'files': ['bin/%s' % x for x in local_vtk_exec] + ['include/vtk-%(version_major_minor)s/vtkMPI.h'] + - ['lib/libvtk%s-%%(version_major_minor)s.%s' % (l, SHLIB_EXT) for l in local_vtk_libs], + ['lib/libvtk%s-%%(version_major_minor)s.%s' % (x, SHLIB_EXT) for x in local_vtk_libs], 'dirs': ['lib/python%(pyshortver)s/site-packages/', 'include/vtk-%(version_major_minor)s'], } diff --git a/easybuild/easyconfigs/v/VTK/VTK-9.3.0-foss-2023b.eb b/easybuild/easyconfigs/v/VTK/VTK-9.3.0-foss-2023b.eb index 3be42a90bacc..bac6592195cf 100644 --- a/easybuild/easyconfigs/v/VTK/VTK-9.3.0-foss-2023b.eb +++ b/easybuild/easyconfigs/v/VTK/VTK-9.3.0-foss-2023b.eb @@ -82,7 +82,7 @@ local_vtk_libs = ['CommonCore', 'IONetCDF', 'ParallelCore', 'RenderingOpenGL2'] sanity_check_paths = { 'files': ['bin/%s' % x for x in local_vtk_exec] + ['include/vtk-%(version_major_minor)s/vtkMPI.h'] + - ['lib/libvtk%s-%%(version_major_minor)s.%s' % (l, SHLIB_EXT) for l in local_vtk_libs], + ['lib/libvtk%s-%%(version_major_minor)s.%s' % (x, SHLIB_EXT) for x in local_vtk_libs], 'dirs': ['lib/python%(pyshortver)s/site-packages/', 'include/vtk-%(version_major_minor)s'], }