From e8425f623546f2fcb3614a86a09c6602aa6ddb06 Mon Sep 17 00:00:00 2001 From: Ward Poelmans Date: Wed, 17 Feb 2016 17:53:38 +0100 Subject: [PATCH 001/608] Use Style test from framework to check easyconfigs --- test/easyconfigs/styletests.py | 70 ++++++++++++++++++++++++++++++++++ test/easyconfigs/suite.py | 4 +- 2 files changed, 72 insertions(+), 2 deletions(-) create mode 100644 test/easyconfigs/styletests.py diff --git a/test/easyconfigs/styletests.py b/test/easyconfigs/styletests.py new file mode 100644 index 0000000000..ca82ff8b0a --- /dev/null +++ b/test/easyconfigs/styletests.py @@ -0,0 +1,70 @@ +## +# Copyright 2016 Ghent University +# +# This file is part of EasyBuild, +# originally created by the HPC team of Ghent University (http://ugent.be/hpc/en), +# with support of Ghent University (http://ugent.be/hpc), +# the Flemish Supercomputer Centre (VSC) (https://vscentrum.be/nl/en), +# the Hercules foundation (http://www.herculesstichting.be/in_English) +# and the Department of Economy, Science and Innovation (EWI) (http://www.ewi-vlaanderen.be/en). +# +# http://github.com/hpcugent/easybuild +# +# EasyBuild is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation v2. +# +# EasyBuild is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with EasyBuild. If not, see . +## +""" +Style tests for easyconfig files. Uses pep8. + +@author: Ward Poelmans (Ghent University) +""" + +import glob +import sys +from unittest import TestCase, TestLoader, main +from vsc.utils import fancylogger + +from easybuild.framework.easyconfig.tools import get_paths_for +from easybuild.framework.easyconfig.style import style_conformance + +try: + import pep8 +except ImportError: + pass + + +class StyleTest(TestCase): + log = fancylogger.getLogger("StyleTest", fname=False) + + def test_style_conformance(self): + """Check the easyconfigs for style""" + if 'pep8' not in sys.modules: + print "Skipping style checks (no pep8 available)" + return + + # all available easyconfig files + easyconfigs_path = get_paths_for("easyconfigs")[0] + specs = glob.glob('%s/*/*/*.eb' % easyconfigs_path) + specs = sorted(specs) + + result = style_conformance(specs) + + self.assertEqual(result, 0, "Found code style errors (and/or warnings).") + + +def suite(): + """Return all style tests for easyconfigs.""" + return TestLoader().loadTestsFromTestCase(StyleTest) + + +if __name__ == '__main__': + main() diff --git a/test/easyconfigs/suite.py b/test/easyconfigs/suite.py index 6afbd6ffb1..43542cb1f8 100644 --- a/test/easyconfigs/suite.py +++ b/test/easyconfigs/suite.py @@ -30,7 +30,6 @@ Usage: "python -m easybuild.easyconfigs.test.suite.py" or "./easybuild/easyconfi @author: Toon Willems (Ghent University) @author: Kenneth Hoste (Ghent University) """ -import glob import os import shutil import sys @@ -41,6 +40,7 @@ from vsc.utils import fancylogger import easybuild.tools.build_log # initialize EasyBuild logging, so we disable it import test.easyconfigs.easyconfigs as e +import test.easyconfigs.styletests as s # disable all logging to significantly speed up tests fancylogger.disableDefaultHandlers() @@ -52,7 +52,7 @@ os.environ['EASYBUILD_DEPRECATED'] = '10000' os.environ['EASYBUILD_TMP_LOGDIR'] = tempfile.mkdtemp(prefix='easyconfigs_test_') # call suite() for each module and then run them all -SUITE = unittest.TestSuite([x.suite() for x in [e]]) +SUITE = unittest.TestSuite([x.suite() for x in [e, s]) # uses XMLTestRunner if possible, so we can output an XML file that can be supplied to Jenkins xml_msg = "" -- GitLab From 803a9868379be9487627c86b9de5c058b1e85ec9 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Mon, 18 Apr 2016 14:22:01 +1200 Subject: [PATCH 002/608] New EasyConfig for PGI 16.1 with GCC 4.9.2 --- .../p/PGI/PGI-16.1-GCC-4.9.2-2.25.eb | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 easybuild/easyconfigs/p/PGI/PGI-16.1-GCC-4.9.2-2.25.eb diff --git a/easybuild/easyconfigs/p/PGI/PGI-16.1-GCC-4.9.2-2.25.eb b/easybuild/easyconfigs/p/PGI/PGI-16.1-GCC-4.9.2-2.25.eb new file mode 100644 index 0000000000..5972e15b28 --- /dev/null +++ b/easybuild/easyconfigs/p/PGI/PGI-16.1-GCC-4.9.2-2.25.eb @@ -0,0 +1,25 @@ +name = 'PGI' +version = '16.1' + +homepage = 'http://www.pgroup.com/' +description = "C, C++ and Fortran compilers from The Portland Group - PGI" + +toolchain = {'name': 'dummy', 'version': ''} + +sources = ['pgicdk-%(version_major)s%(version_minor)s.tar.gz'] +checksums = ['442c044b9690a84b6600cd6919480bcb'] + +gccver = '4.9.2' +binutilsver = '2.25' +versionsuffix = '-GCC-%s-%s' % (gccver, binutilsver) + +dependencies = [ + ('GCCcore', gccver), + ('binutils', binutilsver, '', ('GCCcore', gccver)), + ('numactl', '2.0.11', '', ('GCCcore', gccver)), +] + +# license file +license_file = HOME + '/licenses/pgi/license.dat' + +moduleclass = 'compiler' -- GitLab From 77829e78309a5abee41e99ae3738435badc19f77 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Tue, 19 Apr 2016 10:56:27 +1200 Subject: [PATCH 003/608] Look for the PGI licence file in the home directory of the installing user --- easybuild/easyconfigs/p/PGI/PGI-16.1-GCC-4.9.2-2.25.eb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/p/PGI/PGI-16.1-GCC-4.9.2-2.25.eb b/easybuild/easyconfigs/p/PGI/PGI-16.1-GCC-4.9.2-2.25.eb index 5972e15b28..eedfe32fda 100644 --- a/easybuild/easyconfigs/p/PGI/PGI-16.1-GCC-4.9.2-2.25.eb +++ b/easybuild/easyconfigs/p/PGI/PGI-16.1-GCC-4.9.2-2.25.eb @@ -20,6 +20,7 @@ dependencies = [ ] # license file -license_file = HOME + '/licenses/pgi/license.dat' +import os +license_file = os.path.join(os.getenv('HOME'), "licenses", "pgi", "license.dat") moduleclass = 'compiler' -- GitLab From 564feda22e5efaa132254a5fd1f9fb1019970bd7 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Mon, 2 May 2016 16:56:03 +1200 Subject: [PATCH 004/608] Use HOME constant instead of env var --- easybuild/easyconfigs/p/PGI/PGI-16.1-GCC-4.9.2-2.25.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/p/PGI/PGI-16.1-GCC-4.9.2-2.25.eb b/easybuild/easyconfigs/p/PGI/PGI-16.1-GCC-4.9.2-2.25.eb index eedfe32fda..7f076bfe4d 100644 --- a/easybuild/easyconfigs/p/PGI/PGI-16.1-GCC-4.9.2-2.25.eb +++ b/easybuild/easyconfigs/p/PGI/PGI-16.1-GCC-4.9.2-2.25.eb @@ -21,6 +21,6 @@ dependencies = [ # license file import os -license_file = os.path.join(os.getenv('HOME'), "licenses", "pgi", "license.dat") +license_file = os.path.join(HOME, "licenses", "pgi", "license.dat") moduleclass = 'compiler' -- GitLab From 81decb13f423645cc345b6edcfae06d1de383dbc Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Tue, 17 May 2016 14:08:53 +1200 Subject: [PATCH 005/608] Put license_file path in canonical EB form --- easybuild/easyconfigs/p/PGI/PGI-16.1-GCC-4.9.2-2.25.eb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/p/PGI/PGI-16.1-GCC-4.9.2-2.25.eb b/easybuild/easyconfigs/p/PGI/PGI-16.1-GCC-4.9.2-2.25.eb index 7f076bfe4d..5972e15b28 100644 --- a/easybuild/easyconfigs/p/PGI/PGI-16.1-GCC-4.9.2-2.25.eb +++ b/easybuild/easyconfigs/p/PGI/PGI-16.1-GCC-4.9.2-2.25.eb @@ -20,7 +20,6 @@ dependencies = [ ] # license file -import os -license_file = os.path.join(HOME, "licenses", "pgi", "license.dat") +license_file = HOME + '/licenses/pgi/license.dat' moduleclass = 'compiler' -- GitLab From 09c31673c23660033fdebecdcf71c35a30ca7401 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Wed, 22 Jun 2016 12:13:18 +1200 Subject: [PATCH 006/608] First attempt at a CGAL easyconfig --- .../CGAL-4.8.1-foss-2015a-Python-2.7.11.eb | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-Python-2.7.11.eb diff --git a/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-Python-2.7.11.eb b/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-Python-2.7.11.eb new file mode 100644 index 0000000000..3e83eb1dbe --- /dev/null +++ b/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-Python-2.7.11.eb @@ -0,0 +1,33 @@ +name = 'CGAL' +version = '4.8.1' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://www.cgal.org/' +description = """The goal of the CGAL Open Source Project is to provide easy access to efficient + and reliable geometric algorithms in the form of a C++ library.""" + +toolchain = {'name': 'foss', 'version': '2015a'} +toolchainopts = {'strict': True} + +# note: source URL needs to be updated for a new version (checksums too)! +source_urls = ['https://github.com/%(name)s/%(namelower)s/releases/download/releases%2F%(name)s-%(version)s'] +sources = [SOURCE_TAR_XZ] +checksums = ['1cbcb3f251822766ed3d744f923c782d'] + +dependencies = [ + ('Python', '2.7.11'), + ('Boost', '1.60.0', versionsuffix), + ('MPFR', '3.1.2'), + ('Qt5', '5.6.0'), + ('libGLU', '9.0.0', '-Mesa-11.2.1'), +] + +configopts = "-DOPENGL_INCLUDE_DIR=$EBROOTMESA/include\;$EBROOTLIBGLU/include " +configopts += "-DOPENGL_gl_LIBRARY=$EBROOTMESA/lib/libGL.%s " % SHLIB_EXT +configopts += "-DOPENGL_glu_LIBRARY=$EBROOTLIBGLU/lib/libGLU.%s " % SHLIB_EXT + +builddependencies = [ + ('CMake', '3.4.1'), +] + +moduleclass = 'numlib' -- GitLab From 0d54283d911a55ea99dd8e28ba9f0f105b63ab5b Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Wed, 29 Jun 2016 17:46:09 +1200 Subject: [PATCH 007/608] No dependency on Python; simplified CGAL without GUI for OSGEO stack --- .../CGAL-4.8.1-foss-2015a-Python-2.7.11.eb | 33 ---------------- .../c/CGAL/CGAL-4.8.1-foss-2015a.eb | 38 +++++++++++++++++++ 2 files changed, 38 insertions(+), 33 deletions(-) delete mode 100644 easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-Python-2.7.11.eb create mode 100644 easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a.eb diff --git a/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-Python-2.7.11.eb b/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-Python-2.7.11.eb deleted file mode 100644 index 3e83eb1dbe..0000000000 --- a/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-Python-2.7.11.eb +++ /dev/null @@ -1,33 +0,0 @@ -name = 'CGAL' -version = '4.8.1' -versionsuffix = '-Python-%(pyver)s' - -homepage = 'http://www.cgal.org/' -description = """The goal of the CGAL Open Source Project is to provide easy access to efficient - and reliable geometric algorithms in the form of a C++ library.""" - -toolchain = {'name': 'foss', 'version': '2015a'} -toolchainopts = {'strict': True} - -# note: source URL needs to be updated for a new version (checksums too)! -source_urls = ['https://github.com/%(name)s/%(namelower)s/releases/download/releases%2F%(name)s-%(version)s'] -sources = [SOURCE_TAR_XZ] -checksums = ['1cbcb3f251822766ed3d744f923c782d'] - -dependencies = [ - ('Python', '2.7.11'), - ('Boost', '1.60.0', versionsuffix), - ('MPFR', '3.1.2'), - ('Qt5', '5.6.0'), - ('libGLU', '9.0.0', '-Mesa-11.2.1'), -] - -configopts = "-DOPENGL_INCLUDE_DIR=$EBROOTMESA/include\;$EBROOTLIBGLU/include " -configopts += "-DOPENGL_gl_LIBRARY=$EBROOTMESA/lib/libGL.%s " % SHLIB_EXT -configopts += "-DOPENGL_glu_LIBRARY=$EBROOTLIBGLU/lib/libGLU.%s " % SHLIB_EXT - -builddependencies = [ - ('CMake', '3.4.1'), -] - -moduleclass = 'numlib' diff --git a/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a.eb b/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a.eb new file mode 100644 index 0000000000..f8ab683344 --- /dev/null +++ b/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a.eb @@ -0,0 +1,38 @@ +name = 'CGAL' +version = '4.8.1' +gmpver = '6.0.0a' + +homepage = 'http://www.cgal.org/' +description = """The goal of the CGAL Open Source Project is to provide easy access to efficient + and reliable geometric algorithms in the form of a C++ library.""" + +toolchain = {'name': 'foss', 'version': '2015a'} +toolchainopts = {'strict': True} + +# note: source URL needs to be updated for a new version (checksums too)! +source_urls = ['https://github.com/%(name)s/%(namelower)s/releases/download/releases%2F%(name)s-%(version)s'] +sources = [SOURCE_TAR_XZ] +checksums = ['1cbcb3f251822766ed3d744f923c782d'] + +dependencies = [ + ('Boost', '1.60.0'), + ('GMP', gmpver), + ('MPFR', '3.1.2', '-GMP-%s' % gmpver), +] + +configopts = "-DCMAKE_VERBOSE_MAKEFILE=ON " +configopts += "-DBoost_INCLUDE_DIR=$EBROOTBOOST/include " +configopts += "-DBoost_LIBRARY_DIRS=$EBROOTBOOST/lib " +configopts += "-DBoost_SYSTEM_LIBRARY=$EBROOTBOOST/libboost_system.%s " % SHLIB_EXT +configopts += "-DBoost_THREAD_LIBRARY=$EBROOTBOOST/libboost_thread.%s " % SHLIB_EXT +configopts += "-DMPFR_INCLUDE_DIR=$EBROOTMPFR/include " +configopts += "-DMPFR_LIBRARIES=$EBROOTMPFR/lib/libmpfr.%s " % SHLIB_EXT +configopts += "-DGMP_INCLUDE_DIR=$EBROOTGMP/include " +configopts += "-DGMP_LIBRARIES=$EBROOTGMP/lib/libgmp.%s " % SHLIB_EXT +configopts += "-DGMP_LIBRARIES_DIR=$EBROOTGMP/lib " + +builddependencies = [ + ('CMake', '3.4.1'), +] + +moduleclass = 'numlib' -- GitLab From 83b5973dbc3450bf8155a6c68f734fa3ddbcb7fb Mon Sep 17 00:00:00 2001 From: Ward Poelmans Date: Wed, 30 Nov 2016 16:31:35 +0100 Subject: [PATCH 008/608] Update to use framework style tests --- test/easyconfigs/styletests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/easyconfigs/styletests.py b/test/easyconfigs/styletests.py index ca82ff8b0a..c8c17769f4 100644 --- a/test/easyconfigs/styletests.py +++ b/test/easyconfigs/styletests.py @@ -34,7 +34,7 @@ from unittest import TestCase, TestLoader, main from vsc.utils import fancylogger from easybuild.framework.easyconfig.tools import get_paths_for -from easybuild.framework.easyconfig.style import style_conformance +from easybuild.framework.easyconfig.style import check_easyconfigs_style try: import pep8 @@ -56,7 +56,7 @@ class StyleTest(TestCase): specs = glob.glob('%s/*/*/*.eb' % easyconfigs_path) specs = sorted(specs) - result = style_conformance(specs) + result = check_easyconfigs_style(specs) self.assertEqual(result, 0, "Found code style errors (and/or warnings).") -- GitLab From 7867bfe87d684124c7752a50c7b7588ef5b834f4 Mon Sep 17 00:00:00 2001 From: Ward Poelmans Date: Wed, 30 Nov 2016 16:46:24 +0100 Subject: [PATCH 009/608] Fix typo --- test/easyconfigs/suite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/easyconfigs/suite.py b/test/easyconfigs/suite.py index 921df252ae..56d7f05b41 100644 --- a/test/easyconfigs/suite.py +++ b/test/easyconfigs/suite.py @@ -52,7 +52,7 @@ os.environ['EASYBUILD_DEPRECATED'] = '10000' os.environ['EASYBUILD_TMP_LOGDIR'] = tempfile.mkdtemp(prefix='easyconfigs_test_') # call suite() for each module and then run them all -SUITE = unittest.TestSuite([x.suite() for x in [e, s]) +SUITE = unittest.TestSuite([x.suite() for x in [e, s]]) # uses XMLTestRunner if possible, so we can output an XML file that can be supplied to Jenkins xml_msg = "" -- GitLab From eb68480a8ce0e2c922be2966a61b0f0db76453fd Mon Sep 17 00:00:00 2001 From: Ward Poelmans Date: Wed, 30 Nov 2016 16:56:47 +0100 Subject: [PATCH 010/608] Install pep8 in travis --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 13ca5c0612..4a9b0a0109 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,7 +24,7 @@ install: # pydot (dep for python-graph-dot) 1.2.0 and more recent doesn't work with Python 2.6 - if [ "x$TRAVIS_PYTHON_VERSION" == 'x2.6' ]; then pip install pydot==1.1.0; else pip install pydot; fi # required for test_dep_graph - - pip install python-graph-core python-graph-dot + - pip install pep8 python-graph-core python-graph-dot # install easybuild-framework/easybuild-easyblocks (and dependencies) # use 'develop' branch of framework/easyblocks, except when testing 'master' - if [ "x$TRAVIS_BRANCH" = 'xmaster' ]; then BRANCH=master; else BRANCH=develop; fi -- GitLab From f523bc200ebdb8d1f30cd81ee0f7a37f8c339c3f Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 30 Nov 2016 19:13:33 +0100 Subject: [PATCH 011/608] include count of easyconfigs that fail style check in error message --- test/easyconfigs/styletests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/easyconfigs/styletests.py b/test/easyconfigs/styletests.py index c8c17769f4..2ea259071e 100644 --- a/test/easyconfigs/styletests.py +++ b/test/easyconfigs/styletests.py @@ -58,7 +58,7 @@ class StyleTest(TestCase): result = check_easyconfigs_style(specs) - self.assertEqual(result, 0, "Found code style errors (and/or warnings).") + self.assertEqual(result, 0, "Found code style errors (and/or warnings): %s" % result) def suite(): -- GitLab From 2a44ed6074b21315d39c1617b7fb511b91674c8a Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Fri, 13 Jan 2017 09:52:39 +1300 Subject: [PATCH 012/608] EasyConfigs for Perl 5.22.0 with the foss-2015a toolchain --- .../p/Perl/Perl-5.22.0-foss-2015a-mt.eb | 904 ++++++++++++++++++ .../p/Perl/Perl-5.22.0-foss-2015a.eb | 903 +++++++++++++++++ 2 files changed, 1807 insertions(+) create mode 100644 easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a-mt.eb create mode 100644 easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a.eb diff --git a/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a-mt.eb b/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a-mt.eb new file mode 100644 index 0000000000..43dbd48785 --- /dev/null +++ b/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a-mt.eb @@ -0,0 +1,904 @@ +name = 'Perl' +version = '5.22.0' +use_perl_threads = True +versionsuffix = '-mt' + +homepage = 'http://www.perl.org/' +description = """Larry Wall's Practical Extraction and Report Language""" + +toolchain = {'name': 'foss', 'version': '2015a'} +toolchainopts = {'optarch': True, 'pic': True} + +dependencies = [ + ('DB', '6.0.30'), # for DB_File module + ('SQLite', '3.8.9'), # for DBD::SQLite module + ('expat', '2.1.0'), # for XML::Parser I think + ('libxml2', '2.9.2'), # for XML::LibXML + ] + +#builddependencies = [('SAMtools', '0.1.20')] # NOT A LATER VERSION. For Bio::DB::Sam to static link to. + +source_urls = ['http://www.cpan.org/src/5.0'] +sources = [SOURCELOWER_TAR_GZ] +#runtest = 'test' + +exts_list = [ + ('Module::Build', '0.4210', { # std module but recent BioPerl needs a recent version for some reason + 'source_tmpl': 'Module-Build-0.4210.tar.gz', + 'source_urls': ['http://www.cpan.org/modules/by-module/Module/LEONT/'], + }), + ('ExtUtils::MakeMaker', '7.04', { + 'source_tmpl': 'ExtUtils-MakeMaker-7.04.tar.gz', + 'source_urls': ['http://www.cpan.org/modules/by-module/ExtUtils/BINGOS/'], + }), + ('local::lib', '2.000011', { + 'source_tmpl': 'local-lib-2.000011.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], + }), + ('IO::String', '1.08', { + 'source_tmpl': 'IO-String-1.08.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], + }), + ('Data::Stag', '0.14', { + 'source_tmpl': 'Data-Stag-0.14.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CM/CMUNGALL/'], + }), + ('DB_File', '1.835', { + 'source_urls': ['http://www.cpan.org/modules/by-module/DB_File/PMQS/'], + }), + ('DBI', '1.633', { + 'source_urls': ['http://www.cpan.org/modules/by-module/DBI/TIMB/'], + }), + ('Sub::Uplevel', '0.25', { + 'source_tmpl': 'Sub-Uplevel-0.25.tar.gz', + 'source_urls': ['http://www.cpan.org/modules/by-module/Sub/DAGOLDEN/'], + }), + ('Tree::DAG_Node', '1.26', { + 'source_tmpl': 'Tree-DAG_Node-1.26.tgz', + 'source_urls': ['http://www.cpan.org/modules/by-module/Tree/RSAVAGE/'], + }), + ('Try::Tiny', '0.22', { + 'source_tmpl': 'Try-Tiny-0.22.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DO/DOY/'], + }), + ('Devel::StackTrace', '2.00', { + 'source_tmpl': 'Devel-StackTrace-2.00.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/'], + }), + ('Class::Data::Inheritable', '0.08', { + 'source_tmpl': 'Class-Data-Inheritable-0.08.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TM/TMTM/'], + }), + ('Exception::Class', '1.39', { + 'source_tmpl': 'Exception-Class-1.39.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/'], + }), + ('Test::Fatal', '0.014', { + 'source_tmpl': 'Test-Fatal-0.014.tar.gz', + 'source_urls': ['http://www.cpan.org/modules/by-module/Test/RJBS/'], + }), + ('Test::NoWarnings', '1.04', { + 'source_tmpl': 'Test-NoWarnings-1.04.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AD/ADAMK/'], + }), + ('Test::Deep', '0.117', { + 'source_tmpl': 'Test-Deep-0.117.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], + }), + ('Algorithm::Diff', '1.15', { + 'source_tmpl': 'Algorithm-Diff-1.15.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/N/NE/NEDKONZ/'], + }), + ('Text::Diff', '1.41', { + 'source_tmpl': 'Text-Diff-1.41.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/O/OV/OVID/'], + }), + ('Test::Differences', '0.61', { + 'source_tmpl': 'Test-Differences-0.61.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/O/OV/OVID/'], + }), + ('Test::Exception', '0.32', { + 'source_tmpl': 'Test-Exception-0.32.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AD/ADIE/'], + }), + ('Test::Warn', '0.30', { + 'source_tmpl': 'Test-Warn-0.30.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CH/CHORNY/'], + }), + ('Test::Requires', '0.08', { + 'source_tmpl': 'Test-Requires-0.08.tar.gz', + 'source_urls': ['http://www.cpan.org/modules/by-module/Test/TOKUHIROM/'], + }), + ('Test::Tester', '0.109', { + 'source_tmpl': 'Test-Tester-0.109.tar.gz', + 'source_urls': ['http://www.cpan.org/modules/by-module/Test/FDALY/'], + }), + ('File::Slurp::Tiny', '0.003', { + 'source_tmpl': 'File-Slurp-Tiny-0.003.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEONT'], + }), + ('Params::Util', '1.07', { + 'source_tmpl': 'Params-Util-1.07.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AD/ADAMK/'], + }), + ('Sub::Install', '0.928', { + 'source_tmpl': 'Sub-Install-0.928.tar.gz', + 'source_urls': ['http://www.cpan.org/modules/by-module/Sub/RJBS/'], + }), + ('Data::OptList', '0.109', { + 'source_tmpl': 'Data-OptList-0.109.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], + }), + ('Sub::Exporter', '0.987', { + 'source_tmpl': 'Sub-Exporter-0.987.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], + }), + ('Capture::Tiny', '0.30', { + 'source_tmpl': 'Capture-Tiny-0.30.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/'], + }), + ('Test::Output', '1.03', { + 'source_tmpl': 'Test-Output-1.03.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BD/BDFOY/'], + }), + ('Module::Runtime', '0.014', { + 'source_tmpl': 'Module-Runtime-0.014.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/Z/ZE/ZEFRAM/'], + }), + ('Module::Implementation', '0.09', { + 'source_tmpl': 'Module-Implementation-0.09.tar.gz', + 'source_urls': ['http://www.cpan.org/modules/by-module/Module/DROLSKY/'], + }), + ('List::MoreUtils', '0.413', { + 'source_tmpl': 'List-MoreUtils-0.413.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RE/REHSACK/'], + }), + ('Package::DeprecationManager', '0.14', { + 'source_tmpl': 'Package-DeprecationManager-0.14.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/'], + }), + ('Dist::CheckConflicts', '0.11', { + 'source_tmpl': 'Dist-CheckConflicts-0.11.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DO/DOY/'], + }), + ('Package::Stash', '0.37', { + 'source_tmpl': 'Package-Stash-0.37.tar.gz', + 'source_urls': ['http://www.cpan.org/modules/by-module/Package/DOY/'], + }), + ('Class::Load', '0.23', { + 'source_tmpl': 'Class-Load-0.23.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/E/ET/ETHER/'], + }), + ('TAP::Harness::Env', '3.35', { + 'source_tmpl': 'Test-Harness-3.35.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEONT/'], + }), + ('ExtUtils::Helpers', '0.022', { + 'source_tmpl': 'ExtUtils-Helpers-0.022.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEONT'], + }), + ('ExtUtils::Config', '0.008', { + 'source_tmpl': 'ExtUtils-Config-0.008.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEONT'], + }), + ('ExtUtils::InstallPaths', '0.011', { + 'source_tmpl': 'ExtUtils-InstallPaths-0.011.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEONT'], + }), + ('Module::Build::Tiny', '0.039', { + 'source_tmpl': 'Module-Build-Tiny-0.039.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEONT/'], + }), + ('MRO::Compat', '0.12', { + 'source_tmpl': 'MRO-Compat-0.12.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BO/BOBTFISH/'], + }), + ('Sub::Name', '0.05', { + 'source_tmpl': 'Sub-Name-0.05.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/F/FL/FLORA/'], + }), + ('Eval::Closure', '0.13', { + 'source_tmpl': 'Eval-Closure-0.13.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DO/DOY/'], + }), + ('Sub::Exporter::Progressive', '0.001011', { + 'source_tmpl': 'Sub-Exporter-Progressive-0.001011.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/F/FR/FREW/'], + }), + ('Devel::GlobalDestruction', '0.13', { + 'source_tmpl': 'Devel-GlobalDestruction-0.13.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/H/HA/HAARG/'], + }), + ('boolean', '0.45', { + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IN/INGY/'], + }), + ('Tie::IxHash', '1.23', { + 'source_tmpl': 'Tie-IxHash-1.23.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CH/CHORNY/'], + }), + ('Moose', '2.1405', { + 'source_urls': ['http://www.cpan.org/modules/by-module/MooseX/ETHER/'], + }), + ('Package::Stash::XS', '0.28', { + 'source_tmpl': 'Package-Stash-XS-0.28.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DO/DOY/'], + }), + ('Params::Validate', '1.20', { + 'source_tmpl': 'Params-Validate-1.20.tar.gz', + 'source_urls': ['http://www.cpan.org/modules/by-module/Params/DROLSKY/'], + }), + ('Class::Load::XS', '0.09', { + 'source_tmpl': 'Class-Load-XS-0.09.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/E/ET/ETHER/'], + }), + + # For uoa00001, Zendesk #9076 + ('Math::CDF', '0.1', { + 'source_tmpl': 'Math-CDF-0.1.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/C/CA/CALLAHAN/'], + }), + + ('DateTime::Locale', '0.46', { + 'source_tmpl': 'DateTime-Locale-0.46.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/'], + }), + ('Class::Singleton', '1.4', { + 'source_tmpl': 'Class-Singleton-1.4.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AB/ABW/'], + }), + ('DateTime::TimeZone', '1.92', { + 'source_tmpl': 'DateTime-TimeZone-1.92.tar.gz', + 'source_urls': ['http://www.cpan.org/modules/by-module/DateTime/DROLSKY/'], + }), + ('Test::Warnings', '0.021', { + 'source_tmpl': 'Test-Warnings-0.021.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/E/ET/ETHER/'], + }), + ('Data::Types', '0.09', { + 'source_tmpl': 'Data-Types-0.09.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DW/DWHEELER/'], + }), + ('Exporter::Tiny', '0.042', { + 'source_tmpl': 'Exporter-Tiny-0.042.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TO/TOBYINK/'], + }), + + ('List::AllUtils', '0.09', { + 'source_tmpl': 'List-AllUtils-0.09.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/'], + }), + ('DateTime', '1.20', { + 'source_urls': ['http://www.cpan.org/modules/by-module/DateTime/DROLSKY/'], + }), + ('DateTime::Tiny', '1.04', { + 'source_tmpl': 'DateTime-Tiny-1.04.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AD/ADAMK/'], + }), + ('File::Slurp', '9999.19', { + 'source_tmpl': 'File-Slurp-9999.19.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/U/UR/URI/'], + }), + ('HTTP::Date', '6.02', { + 'source_tmpl': 'HTTP-Date-6.02.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], + }), + ('IO::HTML', '1.001', { + 'source_tmpl': 'IO-HTML-1.001.tar.gz', + 'source_urls': ['http://www.cpan.org/modules/by-module/IO/CJM/'], + }), + ('LWP::MediaTypes', '6.02', { + 'source_tmpl': 'LWP-MediaTypes-6.02.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], + }), + ('URI', '1.69', { + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], + }), + ('Encode::Locale', '1.05', { + 'source_tmpl': 'Encode-Locale-1.05.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], + }), + ('HTTP::Request', '6.06', { + 'source_tmpl': 'HTTP-Message-6.06.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], + }), + ('HTML::Tagset', '3.20', { + 'source_tmpl': 'HTML-Tagset-3.20.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/P/PE/PETDANCE/'], + }), + ('HTML::Entities', '3.71', { + 'source_tmpl': 'HTML-Parser-3.71.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], + }), + ('File::Listing', '6.04', { + 'source_tmpl': 'File-Listing-6.04.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], + }), + ('AnyEvent', '7.09', { + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/'], + }), + ('Devel::CheckCompiler', '0.06', { + 'source_tmpl': 'Devel-CheckCompiler-0.06.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SY/SYOHEX'], + }), + ('File::Copy::Recursive', '0.38', { + 'source_tmpl': 'File-Copy-Recursive-0.38.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DM/DMUEY/'], + }), + ('Cwd::Guard', '0.04', { + 'source_tmpl': 'Cwd-Guard-0.04.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/K/KA/KAZEBURO'], + }), + ('Module::Build::XSUtil', '0.16', { + 'source_tmpl': 'Module-Build-XSUtil-0.16.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/H/HI/HIDEAKIO/'], + }), + ('LWP', '6.13', { + 'source_tmpl': 'libwww-perl-6.13.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], + }), + ('Fennec::Lite', '0.004', { + 'source_tmpl': 'Fennec-Lite-0.004.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/E/EX/EXODIST/'], + }), + ('aliased', '0.31', { + 'source_urls': ['http://cpan.metacpan.org/authors/id/O/OV/OVID/'], + }), + ('Meta::Builder', '0.003', { + 'source_tmpl': 'Meta-Builder-0.003.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/E/EX/EXODIST/'], + }), + ('Exporter::Declare', '0.114', { + 'source_tmpl': 'Exporter-Declare-0.114.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/E/EX/EXODIST/'], + }), + ('Mock::Quick', '1.108', { + 'source_tmpl': 'Mock-Quick-1.108.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/E/EX/EXODIST/'], + }), + ('Test::Exception::LessClever', '0.006', { + 'source_tmpl': 'Test-Exception-LessClever-0.006.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/E/EX/EXODIST/'], + }), + ('Test::LeakTrace', '0.15', { + 'source_tmpl': 'Test-LeakTrace-0.15.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GF/GFUJI/'], + }), + ('Mouse', '2.4.2', { + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GF/GFUJI/'], + }), + ('XML::NamespaceSupport', '1.11', { + 'source_tmpl': 'XML-NamespaceSupport-1.11.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/P/PE/PERIGRIN/'], + }), + ('XML::SAX::Base', '1.08', { + 'source_tmpl': 'XML-SAX-Base-1.08.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GR/GRANTM/'], + }), + ('XML::SAX', '0.99', { + 'source_tmpl': 'XML-SAX-0.99.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GR/GRANTM/'], + }), + ('XML::LibXML', '2.0121', { + 'source_tmpl': 'XML-LibXML-2.0121.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SH/SHLOMIF/'], + }), + ('Clone', '0.38', { + 'source_tmpl': 'Clone-0.38.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GARU'], + }), + ('Config::General', '2.58', { + 'source_tmpl': 'Config-General-2.58.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TL/TLINDEN'], + }), + ('Test::Simple', '0.98', { + 'source_tmpl': 'Test-Simple-0.98_05.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MS/MSCHWERN'], + }), + ('Font::TTF', '1.05', { + 'source_tmpl': 'Font-TTF-1.05.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MH/MHOSKEN'], + }), + ('IO::Tty', '1.12', { + 'source_tmpl': 'IO-Tty-1.12.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TO/TODDR'], + }), + ('Math::Bezier', '0.01', { + 'source_tmpl': 'Math-Bezier-0.01.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AB/ABW'], + }), + ('IPC::Run', '0.94', { + 'source_tmpl': 'IPC-Run-0.94.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TO/TODDR'], + }), + ('Math::Round', '0.07', { + 'source_tmpl': 'Math-Round-0.07.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GR/GROMMEL'], + }), + ('B::LintSubs', '0.06', { + 'source_tmpl': 'B-LintSubs-0.06.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/P/PE/PEVANS'], + }), + ('Math::VecStat', '0.08', { + 'source_tmpl': 'Math-VecStat-0.08.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AS/ASPINELLI'], + }), + ('Test::Most', '0.34', { + 'source_tmpl': 'Test-Most-0.34.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/O/OV/OVID/'], + }), + ('Readonly', '1.04', { + 'source_tmpl': 'Readonly-1.04.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SA/SANKO/'], + }), + ('Regexp::Common', '2013031301', { + 'source_tmpl': 'Regexp-Common-2013031301.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AB/ABIGAIL'], + }), + ('Want', '0.26', { + 'source_tmpl': 'Want-0.26.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RO/ROBIN/'], + }), + ('DBD::SQLite', '1.48', { + 'source_tmpl': 'DBD-SQLite-1.48.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IS/ISHIGAKI/'], + }), + ('Set::IntSpan', '1.19', { + 'source_tmpl': 'Set-IntSpan-1.19.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SW/SWMCD'], + }), + ('forks', '0.36', { + 'source_tmpl': 'forks-0.36.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RY/RYBSKEJ/'], + }), + ('File::Which', '1.09', { + 'source_tmpl': 'File-Which-1.09.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/'], + }), + ('Perl::Unsafe::Signals', '', { + 'source_tmpl': 'Perl-Unsafe-Signals-0.02.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RG/RGARCIA/'], + }), + ('Bit::Vector', '7.4', { + 'source_tmpl': 'Bit-Vector-7.4.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/ST/STBEY/'], + }), + ('Parse::RecDescent', '1.967009', { + 'source_tmpl': 'Parse-RecDescent-1.967009.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JT/JTBRAUN/'], + }), + ('Inline', '0.80', { + 'source_tmpl': 'Inline-0.80.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IN/INGY/'], + }), + ('File::ShareDir::Install', '0.10', { + 'source_tmpl': 'File-ShareDir-Install-0.10.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GW/GWYN/'], + }), + ('Inline::C', '0.76', { + 'source_tmpl': 'Inline-C-0.76.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IN/INGY/'], + }), + ('IO::All', '0.85', { + 'source_tmpl': 'IO-All-0.85.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/F/FR/FREW/'], + }), + ('IO::Prompt', '0.997002', { + 'source_tmpl': 'IO-Prompt-0.997002.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DC/DCONWAY/'], + }), + ('Getopt::Long', '2.47', { + 'source_tmpl': 'Getopt-Long-2.47.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/J/JV/JV/'], + }), + ('AppConfig', '1.66', { + 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AB/ABW/'], + }), + ('Archive::Extract', '0.76', { + 'source_tmpl': 'Archive-Extract-0.76.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BI/BINGOS/'], + }), + ('Archive::Tar', '2.08', { + 'source_tmpl': 'Archive-Tar-2.08.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BI/BINGOS/'], + }), + ('Archive::Zip', '1.57', { + 'source_tmpl': 'Archive-Zip-1.57.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/P/PH/PHRED/'], + }), + ('Authen::SASL', '2.16', { + 'source_tmpl': 'Authen-SASL-2.16.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GB/GBARR/'], + }), + ('B::Lint', '1.20', { + 'source_tmpl': 'B-Lint-1.20.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], + }), + # BioPerl bundle was here + ('Class::Accessor', '0.34', { + 'source_tmpl': 'Class-Accessor-0.34.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/K/KA/KASEI/'], + }), + ('Class::DBI', '3.0.17', { + 'source_tmpl': 'Class-DBI-v3.0.17.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TM/TMTM/'], + }), + ('Class::Inspector', '1.28', { + 'source_tmpl': 'Class-Inspector-1.28.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AD/ADAMK/'], + }), + ('Class::ISA', '0.36', { + 'source_tmpl': 'Class-ISA-0.36.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SM/SMUELLER/'], + }), + ('Class::Trigger', '0.14', { + 'source_tmpl': 'Class-Trigger-0.14.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MI/MIYAGAWA/'], + }), + ('CPANPLUS', '0.9154', { + 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BI/BINGOS/'], + }), + ('Data::Grove', '0.08', { + 'source_tmpl': 'libxml-perl-0.08.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/K/KM/KMACLEOD/'], + }), + ('Data::UUID', '1.220', { + 'source_tmpl': 'Data-UUID-1.220.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], + }), + ('Date::Language', '2.30', { + 'source_tmpl': 'TimeDate-2.30.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GB/GBARR/'], + }), + ('Date::Handler', '1.2', { + 'source_tmpl': 'Date-Handler-1.2.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BB/BBEAUSEJ/'], + }), + ('SQL::Statement', '1.407', { + 'source_tmpl': 'SQL-Statement-1.407.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RE/REHSACK/'], + }), + ('Module::Pluggable', '5.1', { + 'source_tmpl': 'Module-Pluggable-5.1.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SI/SIMONW/'], + }), + ('Digest::HMAC', '1.03', { + 'source_tmpl': 'Digest-HMAC-1.03.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], + }), + ('Digest::SHA1', '2.13', { + 'source_tmpl': 'Digest-SHA1-2.13.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], + }), + ('Email::Date::Format', '1.005', { + 'source_tmpl': 'Email-Date-Format-1.005.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], + }), + ('Error', '0.17024', { + 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/'], + }), + ('Expect', '1.21', { + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RG/RGIERSIG/'], + }), + ('File::CheckTree', '4.42', { + 'source_tmpl': 'File-CheckTree-4.42.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], + }), + ('FreezeThaw', '0.5001', { + 'source_urls': ['http://cpan.metacpan.org/authors/id/I/IL/ILYAZ/modules/'], + }), + ('Git', '0.41', { + 'source_tmpl': 'Git-0.41.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MS/MSOUTH/'], + }), + ('GO::Utils', '0.15', { + 'source_tmpl': 'go-perl-0.15.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CM/CMUNGALL/'], + }), + ('GO', '0.04', { + 'source_tmpl': 'go-db-perl-0.04.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SJ/SJCARBON/'], + }), + ('HTML::Form', '6.03', { + 'source_tmpl': 'HTML-Form-6.03.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], + }), + ('HTTP::Cookies', '6.01', { + 'source_tmpl': 'HTTP-Cookies-6.01.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], + }), + ('HTTP::Daemon', '6.01', { + 'source_tmpl': 'HTTP-Daemon-6.01.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], + }), + ('HTTP::Negotiate', '6.01', { + 'source_tmpl': 'HTTP-Negotiate-6.01.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], + }), + ('IO::Stringy', '2.111', { + 'source_tmpl': 'IO-stringy-2.111.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DS/DSKOLL/'], + }), + ('IO::Socket::SSL', '2.016', { + 'source_tmpl': 'IO-Socket-SSL-2.016.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SU/SULLR/'], + }), + ('JSON', '2.90', { + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MA/MAKAMAKA/'], + }), + ('Log::Message', '0.08', { + 'source_tmpl': 'Log-Message-0.08.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BI/BINGOS/'], + }), + ('Log::Message::Simple', '0.10', { + 'source_tmpl': 'Log-Message-Simple-0.10.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BI/BINGOS/'], + }), + ('Mail::Util', '2.14', { + 'source_tmpl': 'MailTools-2.14.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MA/MARKOV/'], + }), + ('MIME::Types', '2.11', { + 'source_tmpl': 'MIME-Types-2.11.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MA/MARKOV/'], + }), + ('MIME::Lite', '3.030', { + 'source_tmpl': 'MIME-Lite-3.030.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], + }), + ('Net::HTTP', '6.06', { + 'source_tmpl': 'Net-HTTP-6.06.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], + }), + ('Net::SMTP::SSL', '1.01', { + 'source_tmpl': 'Net-SMTP-SSL-1.01.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CW/CWEST/'], + }), + ('Object::Accessor', '0.48', { + 'source_tmpl': 'Object-Accessor-0.48.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BI/BINGOS/'], + }), + ('Pod::LaTeX', '0.61', { + 'source_tmpl': 'Pod-LaTeX-0.61.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TJ/TJENNESS/'], + }), + ('Pod::Plainer', '1.04', { + 'source_tmpl': 'Pod-Plainer-1.04.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RM/RMBARKER/'], + }), + ('Pod::POM', '0.29', { + 'source_tmpl': 'Pod-POM-0.29.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AN/ANDREWF/'], + }), + ('Shell', '0.72', { + 'source_urls': ['http://cpan.metacpan.org/authors/id/F/FE/FERREIRA/'], + }), + ('Statistics::Descriptive', '3.0609', { + 'source_tmpl': 'Statistics-Descriptive-3.0609.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/'], + }), + ('Switch', '2.17', { + 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CH/CHORNY/'], + }), + ('Template', '2.26', { + 'source_tmpl': 'Template-Toolkit-2.26.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AB/ABW/'], + }), + ('Term::UI', '0.46', { + 'source_tmpl': 'Term-UI-0.46.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BI/BINGOS/'], + }), + ('Text::Iconv', '1.7', { + 'source_tmpl': 'Text-Iconv-1.7.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MP/MPIOTR/'], + }), + ('Text::Soundex', '3.04', { + 'source_tmpl': 'Text-Soundex-3.04.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], + }), + ('Time::Piece', '1.30', { + 'source_tmpl': 'Time-Piece-1.30.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], + }), + ('Time::Piece::MySQL', '0.06', { + 'source_tmpl': 'Time-Piece-MySQL-0.06.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/K/KA/KASEI/'], + }), + ('UNIVERSAL::moniker', '0.08', { + 'source_tmpl': 'UNIVERSAL-moniker-0.08.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/K/KA/KASEI/'], + }), + ('version', '0.9912', { + 'source_urls': ['http://cpan.metacpan.org/authors/id/J/JP/JPEACOCK/'], + }), + ('WWW::RobotRules', '6.02', { + 'source_tmpl': 'WWW-RobotRules-6.02.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], + }), + ('XML::SAX::Writer', '0.56', { + 'source_tmpl': 'XML-SAX-Writer-0.56.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/P/PE/PERIGRIN/'], + }), + ('XML::Simple', '2.20', { + 'source_tmpl': 'XML-Simple-2.20.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GR/GRANTM/'], + }), + ('XML::XPath', '1.13', { + 'source_tmpl': 'XML-XPath-1.13.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MS/MSERGEANT/'], + }), + ('DBD::AnyData', '0.110', { + 'source_tmpl': 'DBD-AnyData-0.110.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RE/REHSACK/'], + }), + ('Ima::DBI', '0.35', { + 'source_tmpl': 'Ima-DBI-0.35.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/P/PE/PERRIN/'], + }), + ('DBIx::ContextualFetch', '1.03', { + 'source_tmpl': 'DBIx-ContextualFetch-1.03.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TM/TMTM/'], + }), + ('DBIx::Simple', '1.35', { + 'source_tmpl': 'DBIx-Simple-1.35.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/J/JU/JUERD/'], + }), + ('Term::ReadKey', '2.32', { + 'source_tmpl': 'TermReadKey-2.32.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/J/JS/JSTOWE/'], + 'patches': ['TermReadKey-2.32.patch'], + }), + ('Moo', '2.000001', { + 'source_tmpl': 'Moo-2.000001.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/H/HA/HAARG/'], + }), + ('strictures', '2.000001', { + 'source_tmpl': 'strictures-2.000001.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/H/HA/HAARG/'], + }), + ('File::Find::Rule::Perl', '1.13', { + 'source_tmpl': 'File-Find-Rule-Perl-1.13.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AD/ADAMK/'], + }), + ('Test::Version', '1.002004', { + 'source_tmpl': 'Test-Version-1.002004.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/X/XE/XENO/'], + }), + ('Test::Harness', '3.35', { + 'source_tmpl': 'Test-Harness-3.35.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEONT/'], + }), + ('Import::Into', '1.002004', { + 'source_tmpl': 'Import-Into-1.002004.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/E/ET/ETHER/'], + }), + ('File::Find::Rule', '0.33', { + 'source_tmpl': 'File-Find-Rule-0.33.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RC/RCLAMP/'], + }), + ('Data::Section::Simple', '0.07', { + 'source_tmpl': 'Data-Section-Simple-0.07.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MI/MIYAGAWA/'], + }), + ('Text::Glob', '0.09', { + 'source_tmpl': 'Text-Glob-0.09.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RC/RCLAMP/'], + }), + ('Number::Compare', '0.03', { + 'source_tmpl': 'Number-Compare-0.03.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RC/RCLAMP/'], + }), + ('IPC::Run3', '0.048', { + 'source_tmpl': 'IPC-Run3-0.048.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], + }), + ('Set::Array', '0.30', { + 'source_tmpl': 'Set-Array-0.30.tgz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RS/RSAVAGE/'], + }), + ('Bundle::BioPerl', '2.1.9', { + 'source_tmpl': 'Bundle-BioPerl-2.1.9.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CJ/CJFIELDS/'], + }), + + ('Algorithm::Munkres', '0.08', { + 'source_tmpl': 'Algorithm-Munkres-0.08.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TP/TPEDERSE/'], + }), +# Lots of deps: Carp, Types::Standard etc. +# ('Array::Compare', '2.11', { +# 'source_tmpl': 'Array-Compare-2.11.tar.gz', +# 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DA/DAVECROSS/'], +# }), + ('Graph', '0.96', { + 'source_urls': ['http://cpan.metacpan.org/authors/id/J/JH/JHI/'], + }), + ('Set::Scalar', '1.29', { + 'source_tmpl': 'Set-Scalar-1.29.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DA/DAVIDO/'], + }), + + ('CGI', '4.21', { + 'source_tmpl': 'CGI-4.21.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEEJO/'], + }), + ('Bio::Phylo', '0.58', { + 'source_tmpl': 'Bio-Phylo-0.58.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RV/RVOSA/'], + }), +# ('GD', '2.56', { +# 'source_urls': 'http://cpan.metacpan.org/authors/id/L/LD/LDS/'], +# }), + ('SVG', '2.64', { + 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SZ/SZABGAB/'], + }), + ('XML::DOM', '1.44', { + 'source_tmpl': 'XML-DOM-1.44.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TJ/TJMATHER/'], + }), + ('XML::DOM::XPath', '0.14', { + 'source_tmpl': 'XML-DOM-XPath-0.14.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MI/MIROD/'], + }), + ('XML::Parser::PerlSAX', '0.08', { + 'source_tmpl': 'libxml-perl-0.08.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/K/KM/KMACLEOD/'], + }), + ('XML::Parser', '2.44', { + 'source_tmpl': 'XML-Parser-2.44.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TO/TODDR/'], + }), + ('XML::Twig', '3.49', { + 'source_tmpl': 'XML-Twig-3.49.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MI/MIROD/'], + }), + ('XML::Writer', '0.625', { + 'source_tmpl': 'XML-Writer-0.625.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/J/JO/JOSEPHW/'], + }), + ('XML::DOM', '1.44', { + 'source_tmpl': 'XML-DOM-1.44.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TJ/TJMATHER/'], + }), + ('Spreadsheet::ParseExcel', '0.65', { + 'source_tmpl': 'Spreadsheet-ParseExcel-0.65.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DO/DOUGW/'], + }), + ('XML::DOM::XPath', '0.14', { + 'source_tmpl': 'XML-DOM-XPath-0.14.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MI/MIROD/'], + }), + ('Convert::Binary::C', '0.77', { + 'source_tmpl': 'Convert-Binary-C-0.77.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MH/MHX/'], + }), + ('Sys::SigAction.pm', '0.21', { + 'source_tmpl': 'Sys-SigAction-0.21.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/L/LB/LBAXTER/'], + }), + ('Acme::Damn', '0.06', { + 'source_tmpl': 'Acme-Damn-0.06.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IB/IBB/'], + }), + ('Set::IntervalTree', '0.10', { + 'source_tmpl': 'Set-IntervalTree-0.10.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BE/BENBOOTH/'], + }), + +# Trouble finding libbam.a and bam/bam.h - try Alien::Samtools next +# ('Bio::DB::Sam', '1.41', { +# 'source_tmpl': 'Bio-SamTools-1.41.tar.gz', +# 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LD/LDS/'], +# 'patches': ['Perl-Bio-SamTools.patch'], +# }), + ('HTML::TableExtract', '2.13', { + 'source_tmpl': 'HTML-TableExtract-2.13.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MS/MSISK/'], + }), + + ('Bio::Perl', '1.6.924', { + 'source_tmpl': 'BioPerl-1.6.924.tar.gz', + 'source_urls': ['http://www.cpan.org/modules/by-module/Bio/CJFIELDS/'], + }), +] + +moduleclass = 'lang' diff --git a/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a.eb b/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a.eb new file mode 100644 index 0000000000..dc4e724075 --- /dev/null +++ b/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a.eb @@ -0,0 +1,903 @@ +name = 'Perl' +version = '5.22.0' +use_perl_threads = False + +homepage = 'http://www.perl.org/' +description = """Larry Wall's Practical Extraction and Report Language""" + +toolchain = {'name': 'foss', 'version': '2015a'} +toolchainopts = {'optarch': True, 'pic': True} + +dependencies = [ + ('DB', '6.0.30'), # for DB_File module + ('SQLite', '3.8.9'), # for DBD::SQLite module + ('expat', '2.1.0'), # for XML::Parser I think + ('libxml2', '2.9.2'), # for XML::LibXML + ] + +#builddependencies = [('SAMtools', '0.1.20')] # NOT A LATER VERSION. For Bio::DB::Sam to static link to. + +source_urls = ['http://www.cpan.org/src/5.0'] +sources = [SOURCELOWER_TAR_GZ] +#runtest = 'test' + +exts_list = [ + ('Module::Build', '0.4210', { # std module but recent BioPerl needs a recent version for some reason + 'source_tmpl': 'Module-Build-0.4210.tar.gz', + 'source_urls': ['http://www.cpan.org/modules/by-module/Module/LEONT/'], + }), + ('ExtUtils::MakeMaker', '7.04', { + 'source_tmpl': 'ExtUtils-MakeMaker-7.04.tar.gz', + 'source_urls': ['http://www.cpan.org/modules/by-module/ExtUtils/BINGOS/'], + }), + ('local::lib', '2.000011', { + 'source_tmpl': 'local-lib-2.000011.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], + }), + ('IO::String', '1.08', { + 'source_tmpl': 'IO-String-1.08.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], + }), + ('Data::Stag', '0.14', { + 'source_tmpl': 'Data-Stag-0.14.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CM/CMUNGALL/'], + }), + ('DB_File', '1.835', { + 'source_urls': ['http://www.cpan.org/modules/by-module/DB_File/PMQS/'], + }), + ('DBI', '1.633', { + 'source_urls': ['http://www.cpan.org/modules/by-module/DBI/TIMB/'], + }), + ('Sub::Uplevel', '0.25', { + 'source_tmpl': 'Sub-Uplevel-0.25.tar.gz', + 'source_urls': ['http://www.cpan.org/modules/by-module/Sub/DAGOLDEN/'], + }), + ('Tree::DAG_Node', '1.26', { + 'source_tmpl': 'Tree-DAG_Node-1.26.tgz', + 'source_urls': ['http://www.cpan.org/modules/by-module/Tree/RSAVAGE/'], + }), + ('Try::Tiny', '0.22', { + 'source_tmpl': 'Try-Tiny-0.22.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DO/DOY/'], + }), + ('Devel::StackTrace', '2.00', { + 'source_tmpl': 'Devel-StackTrace-2.00.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/'], + }), + ('Class::Data::Inheritable', '0.08', { + 'source_tmpl': 'Class-Data-Inheritable-0.08.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TM/TMTM/'], + }), + ('Exception::Class', '1.39', { + 'source_tmpl': 'Exception-Class-1.39.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/'], + }), + ('Test::Fatal', '0.014', { + 'source_tmpl': 'Test-Fatal-0.014.tar.gz', + 'source_urls': ['http://www.cpan.org/modules/by-module/Test/RJBS/'], + }), + ('Test::NoWarnings', '1.04', { + 'source_tmpl': 'Test-NoWarnings-1.04.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AD/ADAMK/'], + }), + ('Test::Deep', '0.117', { + 'source_tmpl': 'Test-Deep-0.117.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], + }), + ('Algorithm::Diff', '1.15', { + 'source_tmpl': 'Algorithm-Diff-1.15.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/N/NE/NEDKONZ/'], + }), + ('Text::Diff', '1.41', { + 'source_tmpl': 'Text-Diff-1.41.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/O/OV/OVID/'], + }), + ('Test::Differences', '0.61', { + 'source_tmpl': 'Test-Differences-0.61.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/O/OV/OVID/'], + }), + ('Test::Exception', '0.32', { + 'source_tmpl': 'Test-Exception-0.32.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AD/ADIE/'], + }), + ('Test::Warn', '0.30', { + 'source_tmpl': 'Test-Warn-0.30.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CH/CHORNY/'], + }), + ('Test::Requires', '0.08', { + 'source_tmpl': 'Test-Requires-0.08.tar.gz', + 'source_urls': ['http://www.cpan.org/modules/by-module/Test/TOKUHIROM/'], + }), + ('Test::Tester', '0.109', { + 'source_tmpl': 'Test-Tester-0.109.tar.gz', + 'source_urls': ['http://www.cpan.org/modules/by-module/Test/FDALY/'], + }), + ('File::Slurp::Tiny', '0.003', { + 'source_tmpl': 'File-Slurp-Tiny-0.003.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEONT'], + }), + ('Params::Util', '1.07', { + 'source_tmpl': 'Params-Util-1.07.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AD/ADAMK/'], + }), + ('Sub::Install', '0.928', { + 'source_tmpl': 'Sub-Install-0.928.tar.gz', + 'source_urls': ['http://www.cpan.org/modules/by-module/Sub/RJBS/'], + }), + ('Data::OptList', '0.109', { + 'source_tmpl': 'Data-OptList-0.109.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], + }), + ('Sub::Exporter', '0.987', { + 'source_tmpl': 'Sub-Exporter-0.987.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], + }), + ('Capture::Tiny', '0.30', { + 'source_tmpl': 'Capture-Tiny-0.30.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/'], + }), + ('Test::Output', '1.03', { + 'source_tmpl': 'Test-Output-1.03.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BD/BDFOY/'], + }), + ('Module::Runtime', '0.014', { + 'source_tmpl': 'Module-Runtime-0.014.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/Z/ZE/ZEFRAM/'], + }), + ('Module::Implementation', '0.09', { + 'source_tmpl': 'Module-Implementation-0.09.tar.gz', + 'source_urls': ['http://www.cpan.org/modules/by-module/Module/DROLSKY/'], + }), + ('List::MoreUtils', '0.413', { + 'source_tmpl': 'List-MoreUtils-0.413.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RE/REHSACK/'], + }), + ('Package::DeprecationManager', '0.14', { + 'source_tmpl': 'Package-DeprecationManager-0.14.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/'], + }), + ('Dist::CheckConflicts', '0.11', { + 'source_tmpl': 'Dist-CheckConflicts-0.11.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DO/DOY/'], + }), + ('Package::Stash', '0.37', { + 'source_tmpl': 'Package-Stash-0.37.tar.gz', + 'source_urls': ['http://www.cpan.org/modules/by-module/Package/DOY/'], + }), + ('Class::Load', '0.23', { + 'source_tmpl': 'Class-Load-0.23.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/E/ET/ETHER/'], + }), + ('TAP::Harness::Env', '3.35', { + 'source_tmpl': 'Test-Harness-3.35.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEONT/'], + }), + ('ExtUtils::Helpers', '0.022', { + 'source_tmpl': 'ExtUtils-Helpers-0.022.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEONT'], + }), + ('ExtUtils::Config', '0.008', { + 'source_tmpl': 'ExtUtils-Config-0.008.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEONT'], + }), + ('ExtUtils::InstallPaths', '0.011', { + 'source_tmpl': 'ExtUtils-InstallPaths-0.011.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEONT'], + }), + ('Module::Build::Tiny', '0.039', { + 'source_tmpl': 'Module-Build-Tiny-0.039.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEONT/'], + }), + ('MRO::Compat', '0.12', { + 'source_tmpl': 'MRO-Compat-0.12.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BO/BOBTFISH/'], + }), + ('Sub::Name', '0.05', { + 'source_tmpl': 'Sub-Name-0.05.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/F/FL/FLORA/'], + }), + ('Eval::Closure', '0.13', { + 'source_tmpl': 'Eval-Closure-0.13.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DO/DOY/'], + }), + ('Sub::Exporter::Progressive', '0.001011', { + 'source_tmpl': 'Sub-Exporter-Progressive-0.001011.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/F/FR/FREW/'], + }), + ('Devel::GlobalDestruction', '0.13', { + 'source_tmpl': 'Devel-GlobalDestruction-0.13.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/H/HA/HAARG/'], + }), + ('boolean', '0.45', { + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IN/INGY/'], + }), + ('Tie::IxHash', '1.23', { + 'source_tmpl': 'Tie-IxHash-1.23.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CH/CHORNY/'], + }), + ('Moose', '2.1405', { + 'source_urls': ['http://www.cpan.org/modules/by-module/MooseX/ETHER/'], + }), + ('Package::Stash::XS', '0.28', { + 'source_tmpl': 'Package-Stash-XS-0.28.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DO/DOY/'], + }), + ('Params::Validate', '1.20', { + 'source_tmpl': 'Params-Validate-1.20.tar.gz', + 'source_urls': ['http://www.cpan.org/modules/by-module/Params/DROLSKY/'], + }), + ('Class::Load::XS', '0.09', { + 'source_tmpl': 'Class-Load-XS-0.09.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/E/ET/ETHER/'], + }), + + # For uoa00001, Zendesk #9076 + ('Math::CDF', '0.1', { + 'source_tmpl': 'Math-CDF-0.1.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/C/CA/CALLAHAN/'], + }), + + ('DateTime::Locale', '0.46', { + 'source_tmpl': 'DateTime-Locale-0.46.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/'], + }), + ('Class::Singleton', '1.4', { + 'source_tmpl': 'Class-Singleton-1.4.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AB/ABW/'], + }), + ('DateTime::TimeZone', '1.92', { + 'source_tmpl': 'DateTime-TimeZone-1.92.tar.gz', + 'source_urls': ['http://www.cpan.org/modules/by-module/DateTime/DROLSKY/'], + }), + ('Test::Warnings', '0.021', { + 'source_tmpl': 'Test-Warnings-0.021.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/E/ET/ETHER/'], + }), + ('Data::Types', '0.09', { + 'source_tmpl': 'Data-Types-0.09.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DW/DWHEELER/'], + }), + ('Exporter::Tiny', '0.042', { + 'source_tmpl': 'Exporter-Tiny-0.042.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TO/TOBYINK/'], + }), + + ('List::AllUtils', '0.09', { + 'source_tmpl': 'List-AllUtils-0.09.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/'], + }), + ('DateTime', '1.20', { + 'source_urls': ['http://www.cpan.org/modules/by-module/DateTime/DROLSKY/'], + }), + ('DateTime::Tiny', '1.04', { + 'source_tmpl': 'DateTime-Tiny-1.04.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AD/ADAMK/'], + }), + ('File::Slurp', '9999.19', { + 'source_tmpl': 'File-Slurp-9999.19.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/U/UR/URI/'], + }), + ('HTTP::Date', '6.02', { + 'source_tmpl': 'HTTP-Date-6.02.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], + }), + ('IO::HTML', '1.001', { + 'source_tmpl': 'IO-HTML-1.001.tar.gz', + 'source_urls': ['http://www.cpan.org/modules/by-module/IO/CJM/'], + }), + ('LWP::MediaTypes', '6.02', { + 'source_tmpl': 'LWP-MediaTypes-6.02.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], + }), + ('URI', '1.69', { + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], + }), + ('Encode::Locale', '1.05', { + 'source_tmpl': 'Encode-Locale-1.05.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], + }), + ('HTTP::Request', '6.06', { + 'source_tmpl': 'HTTP-Message-6.06.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], + }), + ('HTML::Tagset', '3.20', { + 'source_tmpl': 'HTML-Tagset-3.20.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/P/PE/PETDANCE/'], + }), + ('HTML::Entities', '3.71', { + 'source_tmpl': 'HTML-Parser-3.71.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], + }), + ('File::Listing', '6.04', { + 'source_tmpl': 'File-Listing-6.04.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], + }), + ('AnyEvent', '7.09', { + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/'], + }), + ('Devel::CheckCompiler', '0.06', { + 'source_tmpl': 'Devel-CheckCompiler-0.06.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SY/SYOHEX'], + }), + ('File::Copy::Recursive', '0.38', { + 'source_tmpl': 'File-Copy-Recursive-0.38.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DM/DMUEY/'], + }), + ('Cwd::Guard', '0.04', { + 'source_tmpl': 'Cwd-Guard-0.04.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/K/KA/KAZEBURO'], + }), + ('Module::Build::XSUtil', '0.16', { + 'source_tmpl': 'Module-Build-XSUtil-0.16.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/H/HI/HIDEAKIO/'], + }), + ('LWP', '6.13', { + 'source_tmpl': 'libwww-perl-6.13.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], + }), + ('Fennec::Lite', '0.004', { + 'source_tmpl': 'Fennec-Lite-0.004.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/E/EX/EXODIST/'], + }), + ('aliased', '0.31', { + 'source_urls': ['http://cpan.metacpan.org/authors/id/O/OV/OVID/'], + }), + ('Meta::Builder', '0.003', { + 'source_tmpl': 'Meta-Builder-0.003.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/E/EX/EXODIST/'], + }), + ('Exporter::Declare', '0.114', { + 'source_tmpl': 'Exporter-Declare-0.114.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/E/EX/EXODIST/'], + }), + ('Mock::Quick', '1.108', { + 'source_tmpl': 'Mock-Quick-1.108.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/E/EX/EXODIST/'], + }), + ('Test::Exception::LessClever', '0.006', { + 'source_tmpl': 'Test-Exception-LessClever-0.006.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/E/EX/EXODIST/'], + }), + ('Test::LeakTrace', '0.15', { + 'source_tmpl': 'Test-LeakTrace-0.15.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GF/GFUJI/'], + }), + ('Mouse', '2.4.2', { + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GF/GFUJI/'], + }), + ('XML::NamespaceSupport', '1.11', { + 'source_tmpl': 'XML-NamespaceSupport-1.11.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/P/PE/PERIGRIN/'], + }), + ('XML::SAX::Base', '1.08', { + 'source_tmpl': 'XML-SAX-Base-1.08.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GR/GRANTM/'], + }), + ('XML::SAX', '0.99', { + 'source_tmpl': 'XML-SAX-0.99.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GR/GRANTM/'], + }), + ('XML::LibXML', '2.0121', { + 'source_tmpl': 'XML-LibXML-2.0121.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SH/SHLOMIF/'], + }), + ('Clone', '0.38', { + 'source_tmpl': 'Clone-0.38.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GARU'], + }), + ('Config::General', '2.58', { + 'source_tmpl': 'Config-General-2.58.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TL/TLINDEN'], + }), + ('Test::Simple', '0.98', { + 'source_tmpl': 'Test-Simple-0.98_05.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MS/MSCHWERN'], + }), + ('Font::TTF', '1.05', { + 'source_tmpl': 'Font-TTF-1.05.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MH/MHOSKEN'], + }), + ('IO::Tty', '1.12', { + 'source_tmpl': 'IO-Tty-1.12.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TO/TODDR'], + }), + ('Math::Bezier', '0.01', { + 'source_tmpl': 'Math-Bezier-0.01.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AB/ABW'], + }), + ('IPC::Run', '0.94', { + 'source_tmpl': 'IPC-Run-0.94.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TO/TODDR'], + }), + ('Math::Round', '0.07', { + 'source_tmpl': 'Math-Round-0.07.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GR/GROMMEL'], + }), + ('B::LintSubs', '0.06', { + 'source_tmpl': 'B-LintSubs-0.06.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/P/PE/PEVANS'], + }), + ('Math::VecStat', '0.08', { + 'source_tmpl': 'Math-VecStat-0.08.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AS/ASPINELLI'], + }), + ('Test::Most', '0.34', { + 'source_tmpl': 'Test-Most-0.34.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/O/OV/OVID/'], + }), + ('Readonly', '1.04', { + 'source_tmpl': 'Readonly-1.04.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SA/SANKO/'], + }), + ('Regexp::Common', '2013031301', { + 'source_tmpl': 'Regexp-Common-2013031301.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AB/ABIGAIL'], + }), + ('Want', '0.26', { + 'source_tmpl': 'Want-0.26.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RO/ROBIN/'], + }), + ('DBD::SQLite', '1.48', { + 'source_tmpl': 'DBD-SQLite-1.48.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IS/ISHIGAKI/'], + }), + ('Set::IntSpan', '1.19', { + 'source_tmpl': 'Set-IntSpan-1.19.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SW/SWMCD'], + }), + ('forks', '0.36', { + 'source_tmpl': 'forks-0.36.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RY/RYBSKEJ/'], + }), + ('File::Which', '1.09', { + 'source_tmpl': 'File-Which-1.09.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/'], + }), + ('Perl::Unsafe::Signals', '', { + 'source_tmpl': 'Perl-Unsafe-Signals-0.02.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RG/RGARCIA/'], + }), + ('Bit::Vector', '7.4', { + 'source_tmpl': 'Bit-Vector-7.4.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/ST/STBEY/'], + }), + ('Parse::RecDescent', '1.967009', { + 'source_tmpl': 'Parse-RecDescent-1.967009.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JT/JTBRAUN/'], + }), + ('Inline', '0.80', { + 'source_tmpl': 'Inline-0.80.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IN/INGY/'], + }), + ('File::ShareDir::Install', '0.10', { + 'source_tmpl': 'File-ShareDir-Install-0.10.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GW/GWYN/'], + }), + ('Inline::C', '0.76', { + 'source_tmpl': 'Inline-C-0.76.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IN/INGY/'], + }), + ('IO::All', '0.85', { + 'source_tmpl': 'IO-All-0.85.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/F/FR/FREW/'], + }), + ('IO::Prompt', '0.997002', { + 'source_tmpl': 'IO-Prompt-0.997002.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DC/DCONWAY/'], + }), + ('Getopt::Long', '2.47', { + 'source_tmpl': 'Getopt-Long-2.47.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/J/JV/JV/'], + }), + ('AppConfig', '1.66', { + 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AB/ABW/'], + }), + ('Archive::Extract', '0.76', { + 'source_tmpl': 'Archive-Extract-0.76.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BI/BINGOS/'], + }), + ('Archive::Tar', '2.08', { + 'source_tmpl': 'Archive-Tar-2.08.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BI/BINGOS/'], + }), + ('Archive::Zip', '1.57', { + 'source_tmpl': 'Archive-Zip-1.57.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/P/PH/PHRED/'], + }), + ('Authen::SASL', '2.16', { + 'source_tmpl': 'Authen-SASL-2.16.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GB/GBARR/'], + }), + ('B::Lint', '1.20', { + 'source_tmpl': 'B-Lint-1.20.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], + }), + # BioPerl bundle was here + ('Class::Accessor', '0.34', { + 'source_tmpl': 'Class-Accessor-0.34.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/K/KA/KASEI/'], + }), + ('Class::DBI', '3.0.17', { + 'source_tmpl': 'Class-DBI-v3.0.17.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TM/TMTM/'], + }), + ('Class::Inspector', '1.28', { + 'source_tmpl': 'Class-Inspector-1.28.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AD/ADAMK/'], + }), + ('Class::ISA', '0.36', { + 'source_tmpl': 'Class-ISA-0.36.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SM/SMUELLER/'], + }), + ('Class::Trigger', '0.14', { + 'source_tmpl': 'Class-Trigger-0.14.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MI/MIYAGAWA/'], + }), + ('CPANPLUS', '0.9154', { + 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BI/BINGOS/'], + }), + ('Data::Grove', '0.08', { + 'source_tmpl': 'libxml-perl-0.08.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/K/KM/KMACLEOD/'], + }), + ('Data::UUID', '1.220', { + 'source_tmpl': 'Data-UUID-1.220.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], + }), + ('Date::Language', '2.30', { + 'source_tmpl': 'TimeDate-2.30.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GB/GBARR/'], + }), + ('Date::Handler', '1.2', { + 'source_tmpl': 'Date-Handler-1.2.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BB/BBEAUSEJ/'], + }), + ('SQL::Statement', '1.407', { + 'source_tmpl': 'SQL-Statement-1.407.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RE/REHSACK/'], + }), + ('Module::Pluggable', '5.1', { + 'source_tmpl': 'Module-Pluggable-5.1.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SI/SIMONW/'], + }), + ('Digest::HMAC', '1.03', { + 'source_tmpl': 'Digest-HMAC-1.03.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], + }), + ('Digest::SHA1', '2.13', { + 'source_tmpl': 'Digest-SHA1-2.13.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], + }), + ('Email::Date::Format', '1.005', { + 'source_tmpl': 'Email-Date-Format-1.005.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], + }), + ('Error', '0.17024', { + 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/'], + }), + ('Expect', '1.21', { + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RG/RGIERSIG/'], + }), + ('File::CheckTree', '4.42', { + 'source_tmpl': 'File-CheckTree-4.42.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], + }), + ('FreezeThaw', '0.5001', { + 'source_urls': ['http://cpan.metacpan.org/authors/id/I/IL/ILYAZ/modules/'], + }), + ('Git', '0.41', { + 'source_tmpl': 'Git-0.41.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MS/MSOUTH/'], + }), + ('GO::Utils', '0.15', { + 'source_tmpl': 'go-perl-0.15.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CM/CMUNGALL/'], + }), + ('GO', '0.04', { + 'source_tmpl': 'go-db-perl-0.04.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SJ/SJCARBON/'], + }), + ('HTML::Form', '6.03', { + 'source_tmpl': 'HTML-Form-6.03.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], + }), + ('HTTP::Cookies', '6.01', { + 'source_tmpl': 'HTTP-Cookies-6.01.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], + }), + ('HTTP::Daemon', '6.01', { + 'source_tmpl': 'HTTP-Daemon-6.01.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], + }), + ('HTTP::Negotiate', '6.01', { + 'source_tmpl': 'HTTP-Negotiate-6.01.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], + }), + ('IO::Stringy', '2.111', { + 'source_tmpl': 'IO-stringy-2.111.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DS/DSKOLL/'], + }), + ('IO::Socket::SSL', '2.016', { + 'source_tmpl': 'IO-Socket-SSL-2.016.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SU/SULLR/'], + }), + ('JSON', '2.90', { + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MA/MAKAMAKA/'], + }), + ('Log::Message', '0.08', { + 'source_tmpl': 'Log-Message-0.08.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BI/BINGOS/'], + }), + ('Log::Message::Simple', '0.10', { + 'source_tmpl': 'Log-Message-Simple-0.10.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BI/BINGOS/'], + }), + ('Mail::Util', '2.14', { + 'source_tmpl': 'MailTools-2.14.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MA/MARKOV/'], + }), + ('MIME::Types', '2.11', { + 'source_tmpl': 'MIME-Types-2.11.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MA/MARKOV/'], + }), + ('MIME::Lite', '3.030', { + 'source_tmpl': 'MIME-Lite-3.030.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], + }), + ('Net::HTTP', '6.06', { + 'source_tmpl': 'Net-HTTP-6.06.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], + }), + ('Net::SMTP::SSL', '1.01', { + 'source_tmpl': 'Net-SMTP-SSL-1.01.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CW/CWEST/'], + }), + ('Object::Accessor', '0.48', { + 'source_tmpl': 'Object-Accessor-0.48.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BI/BINGOS/'], + }), + ('Pod::LaTeX', '0.61', { + 'source_tmpl': 'Pod-LaTeX-0.61.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TJ/TJENNESS/'], + }), + ('Pod::Plainer', '1.04', { + 'source_tmpl': 'Pod-Plainer-1.04.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RM/RMBARKER/'], + }), + ('Pod::POM', '0.29', { + 'source_tmpl': 'Pod-POM-0.29.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AN/ANDREWF/'], + }), + ('Shell', '0.72', { + 'source_urls': ['http://cpan.metacpan.org/authors/id/F/FE/FERREIRA/'], + }), + ('Statistics::Descriptive', '3.0609', { + 'source_tmpl': 'Statistics-Descriptive-3.0609.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/'], + }), + ('Switch', '2.17', { + 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CH/CHORNY/'], + }), + ('Template', '2.26', { + 'source_tmpl': 'Template-Toolkit-2.26.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AB/ABW/'], + }), + ('Term::UI', '0.46', { + 'source_tmpl': 'Term-UI-0.46.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BI/BINGOS/'], + }), + ('Text::Iconv', '1.7', { + 'source_tmpl': 'Text-Iconv-1.7.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MP/MPIOTR/'], + }), + ('Text::Soundex', '3.04', { + 'source_tmpl': 'Text-Soundex-3.04.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], + }), + ('Time::Piece', '1.30', { + 'source_tmpl': 'Time-Piece-1.30.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], + }), + ('Time::Piece::MySQL', '0.06', { + 'source_tmpl': 'Time-Piece-MySQL-0.06.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/K/KA/KASEI/'], + }), + ('UNIVERSAL::moniker', '0.08', { + 'source_tmpl': 'UNIVERSAL-moniker-0.08.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/K/KA/KASEI/'], + }), + ('version', '0.9912', { + 'source_urls': ['http://cpan.metacpan.org/authors/id/J/JP/JPEACOCK/'], + }), + ('WWW::RobotRules', '6.02', { + 'source_tmpl': 'WWW-RobotRules-6.02.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], + }), + ('XML::SAX::Writer', '0.56', { + 'source_tmpl': 'XML-SAX-Writer-0.56.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/P/PE/PERIGRIN/'], + }), + ('XML::Simple', '2.20', { + 'source_tmpl': 'XML-Simple-2.20.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GR/GRANTM/'], + }), + ('XML::XPath', '1.13', { + 'source_tmpl': 'XML-XPath-1.13.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MS/MSERGEANT/'], + }), + ('DBD::AnyData', '0.110', { + 'source_tmpl': 'DBD-AnyData-0.110.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RE/REHSACK/'], + }), + ('Ima::DBI', '0.35', { + 'source_tmpl': 'Ima-DBI-0.35.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/P/PE/PERRIN/'], + }), + ('DBIx::ContextualFetch', '1.03', { + 'source_tmpl': 'DBIx-ContextualFetch-1.03.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TM/TMTM/'], + }), + ('DBIx::Simple', '1.35', { + 'source_tmpl': 'DBIx-Simple-1.35.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/J/JU/JUERD/'], + }), + ('Term::ReadKey', '2.32', { + 'source_tmpl': 'TermReadKey-2.32.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/J/JS/JSTOWE/'], + 'patches': ['TermReadKey-2.32.patch'], + }), + ('Moo', '2.000001', { + 'source_tmpl': 'Moo-2.000001.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/H/HA/HAARG/'], + }), + ('strictures', '2.000001', { + 'source_tmpl': 'strictures-2.000001.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/H/HA/HAARG/'], + }), + ('File::Find::Rule::Perl', '1.13', { + 'source_tmpl': 'File-Find-Rule-Perl-1.13.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AD/ADAMK/'], + }), + ('Test::Version', '1.002004', { + 'source_tmpl': 'Test-Version-1.002004.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/X/XE/XENO/'], + }), + ('Test::Harness', '3.35', { + 'source_tmpl': 'Test-Harness-3.35.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEONT/'], + }), + ('Import::Into', '1.002004', { + 'source_tmpl': 'Import-Into-1.002004.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/E/ET/ETHER/'], + }), + ('File::Find::Rule', '0.33', { + 'source_tmpl': 'File-Find-Rule-0.33.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RC/RCLAMP/'], + }), + ('Data::Section::Simple', '0.07', { + 'source_tmpl': 'Data-Section-Simple-0.07.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MI/MIYAGAWA/'], + }), + ('Text::Glob', '0.09', { + 'source_tmpl': 'Text-Glob-0.09.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RC/RCLAMP/'], + }), + ('Number::Compare', '0.03', { + 'source_tmpl': 'Number-Compare-0.03.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RC/RCLAMP/'], + }), + ('IPC::Run3', '0.048', { + 'source_tmpl': 'IPC-Run3-0.048.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], + }), + ('Set::Array', '0.30', { + 'source_tmpl': 'Set-Array-0.30.tgz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RS/RSAVAGE/'], + }), + ('Bundle::BioPerl', '2.1.9', { + 'source_tmpl': 'Bundle-BioPerl-2.1.9.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CJ/CJFIELDS/'], + }), + + ('Algorithm::Munkres', '0.08', { + 'source_tmpl': 'Algorithm-Munkres-0.08.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TP/TPEDERSE/'], + }), +# Lots of deps: Carp, Types::Standard etc. +# ('Array::Compare', '2.11', { +# 'source_tmpl': 'Array-Compare-2.11.tar.gz', +# 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DA/DAVECROSS/'], +# }), + ('Graph', '0.96', { + 'source_urls': ['http://cpan.metacpan.org/authors/id/J/JH/JHI/'], + }), + ('Set::Scalar', '1.29', { + 'source_tmpl': 'Set-Scalar-1.29.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DA/DAVIDO/'], + }), + + ('CGI', '4.21', { + 'source_tmpl': 'CGI-4.21.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEEJO/'], + }), + ('Bio::Phylo', '0.58', { + 'source_tmpl': 'Bio-Phylo-0.58.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RV/RVOSA/'], + }), +# ('GD', '2.56', { +# 'source_urls': 'http://cpan.metacpan.org/authors/id/L/LD/LDS/'], +# }), + ('SVG', '2.64', { + 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SZ/SZABGAB/'], + }), + ('XML::DOM', '1.44', { + 'source_tmpl': 'XML-DOM-1.44.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TJ/TJMATHER/'], + }), + ('XML::DOM::XPath', '0.14', { + 'source_tmpl': 'XML-DOM-XPath-0.14.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MI/MIROD/'], + }), + ('XML::Parser::PerlSAX', '0.08', { + 'source_tmpl': 'libxml-perl-0.08.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/K/KM/KMACLEOD/'], + }), + ('XML::Parser', '2.44', { + 'source_tmpl': 'XML-Parser-2.44.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TO/TODDR/'], + }), + ('XML::Twig', '3.49', { + 'source_tmpl': 'XML-Twig-3.49.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MI/MIROD/'], + }), + ('XML::Writer', '0.625', { + 'source_tmpl': 'XML-Writer-0.625.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/J/JO/JOSEPHW/'], + }), + ('XML::DOM', '1.44', { + 'source_tmpl': 'XML-DOM-1.44.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TJ/TJMATHER/'], + }), + ('Spreadsheet::ParseExcel', '0.65', { + 'source_tmpl': 'Spreadsheet-ParseExcel-0.65.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DO/DOUGW/'], + }), + ('XML::DOM::XPath', '0.14', { + 'source_tmpl': 'XML-DOM-XPath-0.14.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MI/MIROD/'], + }), + ('Convert::Binary::C', '0.77', { + 'source_tmpl': 'Convert-Binary-C-0.77.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MH/MHX/'], + }), + ('Sys::SigAction.pm', '0.21', { + 'source_tmpl': 'Sys-SigAction-0.21.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/L/LB/LBAXTER/'], + }), + ('Acme::Damn', '0.06', { + 'source_tmpl': 'Acme-Damn-0.06.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IB/IBB/'], + }), + ('Set::IntervalTree', '0.10', { + 'source_tmpl': 'Set-IntervalTree-0.10.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BE/BENBOOTH/'], + }), + +# Trouble finding libbam.a and bam/bam.h - try Alien::Samtools next +# ('Bio::DB::Sam', '1.41', { +# 'source_tmpl': 'Bio-SamTools-1.41.tar.gz', +# 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LD/LDS/'], +# 'patches': ['Perl-Bio-SamTools.patch'], +# }), + ('HTML::TableExtract', '2.13', { + 'source_tmpl': 'HTML-TableExtract-2.13.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MS/MSISK/'], + }), + + ('Bio::Perl', '1.6.924', { + 'source_tmpl': 'BioPerl-1.6.924.tar.gz', + 'source_urls': ['http://www.cpan.org/modules/by-module/Bio/CJFIELDS/'], + }), +] + +moduleclass = 'lang' -- GitLab From b90a1547abec7a46929257ad7197cd48d11497cd Mon Sep 17 00:00:00 2001 From: Yann Sagon Date: Wed, 15 Feb 2017 15:50:27 +0100 Subject: [PATCH 013/608] platanus-1.2.4-foss-2017a --- .../p/Platanus/Platanus-1.2.4-foss-2017a.eb | 25 +++++++++++++++++++ .../p/Platanus/Platanus_new_gcc.patch | 9 +++++++ 2 files changed, 34 insertions(+) create mode 100644 easybuild/easyconfigs/p/Platanus/Platanus-1.2.4-foss-2017a.eb create mode 100644 easybuild/easyconfigs/p/Platanus/Platanus_new_gcc.patch diff --git a/easybuild/easyconfigs/p/Platanus/Platanus-1.2.4-foss-2017a.eb b/easybuild/easyconfigs/p/Platanus/Platanus-1.2.4-foss-2017a.eb new file mode 100644 index 0000000000..d09524d53c --- /dev/null +++ b/easybuild/easyconfigs/p/Platanus/Platanus-1.2.4-foss-2017a.eb @@ -0,0 +1,25 @@ +easyblock = 'MakeCp' + +name = 'Platanus' +version = '1.2.4' + +homepage = 'http://platanus.bio.titech.ac.jp/' +description = """PLATform for Assembling NUcleotide Sequences""" + +toolchain = {'name': 'foss', 'version': '2017a'} +toolchainopts = {'openmp': True} + +source_urls = ['http://platanus.bio.titech.ac.jp/?ddownload=150'] +sources = ['%(name)s_v%(version)s.tar.gz'] + +# fix Makefile to support newer gcc version +patches = ['Platanus_new_gcc.patch'] + +files_to_copy = [(["platanus"],'bin'), "README", "LICENSE"] + +sanity_check_paths = { + 'files': ["bin/platanus"], + 'dirs': [""], +} + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/p/Platanus/Platanus_new_gcc.patch b/easybuild/easyconfigs/p/Platanus/Platanus_new_gcc.patch new file mode 100644 index 0000000000..531c797148 --- /dev/null +++ b/easybuild/easyconfigs/p/Platanus/Platanus_new_gcc.patch @@ -0,0 +1,9 @@ +--- Makefile.o 2015-06-03 07:39:00.000000000 +0200 ++++ Makefile 2017-02-15 15:33:18.000000000 +0100 +@@ -1,5 +1,5 @@ + CXX = g++ +-CXXFLAGS = -std=c++0x -O3 -funroll-loops -Wall -fopenmp -finline-limit-50000 -lm -Dnullptr=0 ++CXXFLAGS = -std=c++0x -O3 -funroll-loops -Wall -fopenmp -finline-limit-50000 -lm -Dnullptr=0 -fpermissive + + + PRG = platanus -- GitLab From e8a9ba660567279d75ccf08f1be320d6663e12a2 Mon Sep 17 00:00:00 2001 From: Yann Sagon Date: Thu, 16 Feb 2017 11:26:35 +0100 Subject: [PATCH 014/608] removed patch, controlling CXXFLAGS in the eb file --- .../easyconfigs/p/Platanus/Platanus-1.2.4-foss-2017a.eb | 7 +++---- easybuild/easyconfigs/p/Platanus/Platanus_new_gcc.patch | 9 --------- 2 files changed, 3 insertions(+), 13 deletions(-) delete mode 100644 easybuild/easyconfigs/p/Platanus/Platanus_new_gcc.patch diff --git a/easybuild/easyconfigs/p/Platanus/Platanus-1.2.4-foss-2017a.eb b/easybuild/easyconfigs/p/Platanus/Platanus-1.2.4-foss-2017a.eb index d09524d53c..47debc3391 100644 --- a/easybuild/easyconfigs/p/Platanus/Platanus-1.2.4-foss-2017a.eb +++ b/easybuild/easyconfigs/p/Platanus/Platanus-1.2.4-foss-2017a.eb @@ -7,14 +7,13 @@ homepage = 'http://platanus.bio.titech.ac.jp/' description = """PLATform for Assembling NUcleotide Sequences""" toolchain = {'name': 'foss', 'version': '2017a'} -toolchainopts = {'openmp': True} +toolchainopts = {'openmp': True, 'cstd': 'c++0x'} + +buildopts = 'CXXFLAGS="$CXXFLAGS -Dnullptr=0 -lm -fpermissive"' source_urls = ['http://platanus.bio.titech.ac.jp/?ddownload=150'] sources = ['%(name)s_v%(version)s.tar.gz'] -# fix Makefile to support newer gcc version -patches = ['Platanus_new_gcc.patch'] - files_to_copy = [(["platanus"],'bin'), "README", "LICENSE"] sanity_check_paths = { diff --git a/easybuild/easyconfigs/p/Platanus/Platanus_new_gcc.patch b/easybuild/easyconfigs/p/Platanus/Platanus_new_gcc.patch deleted file mode 100644 index 531c797148..0000000000 --- a/easybuild/easyconfigs/p/Platanus/Platanus_new_gcc.patch +++ /dev/null @@ -1,9 +0,0 @@ ---- Makefile.o 2015-06-03 07:39:00.000000000 +0200 -+++ Makefile 2017-02-15 15:33:18.000000000 +0100 -@@ -1,5 +1,5 @@ - CXX = g++ --CXXFLAGS = -std=c++0x -O3 -funroll-loops -Wall -fopenmp -finline-limit-50000 -lm -Dnullptr=0 -+CXXFLAGS = -std=c++0x -O3 -funroll-loops -Wall -fopenmp -finline-limit-50000 -lm -Dnullptr=0 -fpermissive - - - PRG = platanus -- GitLab From c859967dea863d871094e07fb7c7f2ba539675c4 Mon Sep 17 00:00:00 2001 From: Adam Huffman Date: Tue, 28 Feb 2017 18:19:18 +0100 Subject: [PATCH 015/608] adding easyconfigs: Python-2.7.13-foss-2016b-bare.eb, Tkinter-2.7.13-foss-2016b-Python-2.7.13-bare.eb --- .../p/Python/Python-2.7.13-foss-2016b-bare.eb | 147 ++++++++++++++++++ ...er-2.7.13-foss-2016b-Python-2.7.13-bare.eb | 30 ++++ 2 files changed, 177 insertions(+) create mode 100644 easybuild/easyconfigs/p/Python/Python-2.7.13-foss-2016b-bare.eb create mode 100755 easybuild/easyconfigs/t/Tkinter/Tkinter-2.7.13-foss-2016b-Python-2.7.13-bare.eb diff --git a/easybuild/easyconfigs/p/Python/Python-2.7.13-foss-2016b-bare.eb b/easybuild/easyconfigs/p/Python/Python-2.7.13-foss-2016b-bare.eb new file mode 100644 index 0000000000..4c330ffc74 --- /dev/null +++ b/easybuild/easyconfigs/p/Python/Python-2.7.13-foss-2016b-bare.eb @@ -0,0 +1,147 @@ +name = 'Python' +version = '2.7.13' +versionsuffix = '-bare' + +homepage = 'http://python.org/' +description = """Python is a programming language that lets you work more quickly and integrate your systems + more effectively. + + This is a version without Tk or X11.""" + +toolchain = {'name': 'foss', 'version': '2016b'} +toolchainopts = {'pic': True} + +source_urls = ['http://www.python.org/ftp/%(namelower)s/%(version)s/'] +sources = [SOURCE_TGZ] + +# python needs bzip2 to build the bz2 package +dependencies = [ + ('bzip2', '1.0.6'), + ('zlib', '1.2.8'), + ('libreadline', '6.3'), + ('ncurses', '6.0'), + ('SQLite', '3.13.0'), + ('GMP', '6.1.2'), + ('libffi', '3.2.1'), + # OS dependency should be preferred if the os version is more recent then this version, + # it's nice to have an up to date openssl for security reasons + # ('OpenSSL', '1.0.2h'), +] + +osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')] + +# order is important! +# package versions updated 9th February 2017 +# using easy_update +# the commented out extensions were added by easy_update but broke the build +exts_list = [ + ('six', '1.10.0', { + 'source_urls': ['https://pypi.python.org/packages/source/s/six/'], + }), + #('packaging', '16.8', { + # 'source_urls': ['https://pypi.python.org/packages/source/p/packaging/'], + #}), + #('pyparsing', '2.1.10', { + # 'source_urls': ['https://pypi.python.org/packages/source/p/pyparsing/'], + #}), + #('appdirs', '1.4.0', { + # 'source_urls': ['https://pypi.python.org/packages/source/a/appdirs/'], + #}), + ('setuptools', '32.3.1', { + 'source_tmpl': '%(name)s-%(version)s.zip', + 'source_urls': ['https://pypi.python.org/packages/source/s/setuptools/'], + }), + ('pip', '9.0.1', { + 'source_urls': ['https://pypi.python.org/packages/source/p/pip/'], + }), + ('nose', '1.3.7', { + 'source_urls': ['https://pypi.python.org/packages/source/n/nose/'], + }), + ('numpy', '1.12.0', { + 'source_tmpl': '%(name)s-%(version)s.zip', + 'source_urls': ['https://pypi.python.org/packages/source/n/numpy'], + }), + ('scipy', '0.18.1', { + 'source_urls': ['https://pypi.python.org/packages/source/s/scipy'], + }), + ('blist', '1.3.6', { + 'source_urls': ['https://pypi.python.org/packages/source/b/blist/'], + }), + ('mpi4py', '2.0.0', { + 'source_urls': ['http://bitbucket.org/mpi4py/mpi4py/downloads/'], + }), + ('paycheck', '1.0.2', { + 'source_urls': ['https://pypi.python.org/packages/source/p/paycheck/'], + }), + ('pbr', '1.10.0', { + 'source_urls': ['https://pypi.python.org/packages/source/p/pbr/'], + }), + ('lockfile', '0.12.2', { + 'source_urls': ['https://pypi.python.org/packages/source/l/lockfile/'], + }), + ('Cython', '0.25.2', { + 'source_urls': ['https://pypi.python.org/packages/source/c/cython/'], + }), + ('dateutil', '2.5.3', { + 'source_tmpl': 'python-%(name)s-%(version)s.tar.gz', + 'source_urls': ['https://pypi.python.org/packages/source/p/python-dateutil/'], + }), + ('deap', '1.0.2', { + 'source_tmpl': '%(name)s-%(version)s.post2.tar.gz', + 'source_urls': ['https://pypi.python.org/packages/source/d/deap/'], + }), + ('decorator', '4.0.11', { + 'source_urls': ['https://pypi.python.org/packages/source/d/decorator/'], + }), + ('arff', '2.1.0', { + 'source_tmpl': 'liac-%(name)s-%(version)s.zip', + 'source_urls': ['https://pypi.python.org/packages/source/l/liac-arff/'], + }), + ('pycrypto', '2.6.1', { + 'modulename': 'Crypto', + 'source_urls': ['http://ftp.dlitz.net/pub/dlitz/crypto/pycrypto/'], + }), + ('ecdsa', '0.13', { + 'source_urls': ['https://pypi.python.org/packages/source/e/ecdsa/'], + }), + ('cryptography', '1.7.2', { + 'source_urls': ['https://pypi.python.org/packages/source/c/cryptography/'], + }), + ('pyasn1', '0.2.2', { + 'source_urls': ['https://pypi.python.org/packages/source/p/pyasn1/'], + }), + ('paramiko', '2.1.1', { + 'source_urls': ['https://pypi.python.org/packages/source/p/paramiko/'], + }), + ('netifaces', '0.10.5', { + 'source_urls': ['https://pypi.python.org/packages/source/n/netifaces'], + }), + ('netaddr', '0.7.19', { + 'source_urls': ['https://pypi.python.org/packages/source/n/netaddr'], + }), + ('funcsigs', '1.0.2', { + 'source_urls': ['https://pypi.python.org/packages/source/f/funcsigs'], + }), + ('mock', '2.0.0', { + 'source_urls': ['https://pypi.python.org/packages/source/m/mock'], + }), + ('pytz', '2016.10', { + 'source_urls': ['https://pypi.python.org/packages/source/p/pytz'], + }), + ('pandas', '0.19.2', { + 'source_urls': ['https://pypi.python.org/packages/source/p/pandas'], + }), + ('enum34', '1.1.6', { + 'modulename': 'enum', + 'source_urls': ['https://pypi.python.org/packages/source/e/enum34'], + }), + ('bitstring', '3.1.5', { + 'source_tmpl': '%(name)s-%(version)s.zip', + 'source_urls': ['https://pypi.python.org/packages/source/b/bitstring'], + }), + ('virtualenv', '15.1.0', { + 'source_urls': ['https://pypi.python.org/packages/source/v/virtualenv'], + }), +] + +moduleclass = 'lang' diff --git a/easybuild/easyconfigs/t/Tkinter/Tkinter-2.7.13-foss-2016b-Python-2.7.13-bare.eb b/easybuild/easyconfigs/t/Tkinter/Tkinter-2.7.13-foss-2016b-Python-2.7.13-bare.eb new file mode 100755 index 0000000000..4f9e88dceb --- /dev/null +++ b/easybuild/easyconfigs/t/Tkinter/Tkinter-2.7.13-foss-2016b-Python-2.7.13-bare.eb @@ -0,0 +1,30 @@ +easyblock = 'EB_TkinterPython' +# TODO: +# only build the Tkinter parts we want +# using further easyblock customisation + +name = 'Tkinter' +version = '2.7.13' +versionsuffix = '-Python-%(version)s-bare' + +homepage = 'http://python.org/' +description = """Tkinter module, built with the Python buildsystem""" + +toolchain = {'name': 'foss', 'version': '2016b'} +toolchainopts = {'pic': True} + +source_urls = ['http://www.python.org/ftp/python/%(version)s/'] +sources = ['Python-%(version)s.tgz'] + +postinstallcmds = [ ' mv %(installdir)s/lib/python%(pyshortver)s/lib-tk %(installdir)s/lib/ && mv %(installdir)s/lib/python%(pyshortver)s/lib-dynload/_tkinter.so %(installdir)s/lib/ && rm -rf %(installdir)s/lib/python%(pyshortver)s/* && mv %(installdir)s/lib/lib-tk %(installdir)s/lib/python%(pyshortver)s/ && mkdir %(installdir)s/lib/python%(pyshortver)s/lib-dynload && mv %(installdir)s/lib/_tkinter.so %(installdir)s/lib/python%(pyshortver)s/lib-dynload && rm %(installdir)s/bin/python ' ] + +dependencies = [ + ('Python', '2.7.13', '-bare'), + ('Tcl', '8.6.5'), + ('Tk', '8.6.5', '-libX11-1.6.3'), + ('xproto', '7.0.28'), +] + +modextrapaths = {'PYTHONPATH': ['lib/python%(pyshortver)s/lib-dynload:lib/python%(pyshortver)s/lib-tk']} + +moduleclass = 'lang' -- GitLab From 3fd0930568babad34af20192ac18bc32d340de68 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Mon, 6 Mar 2017 16:53:13 +1300 Subject: [PATCH 016/608] EasyConfig for ne, the nice editor, with the gimkl 2017a toolchain --- .../easyconfigs/n/ne/ne-3.0.1-gimkl-2017a.eb | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 easybuild/easyconfigs/n/ne/ne-3.0.1-gimkl-2017a.eb diff --git a/easybuild/easyconfigs/n/ne/ne-3.0.1-gimkl-2017a.eb b/easybuild/easyconfigs/n/ne/ne-3.0.1-gimkl-2017a.eb new file mode 100644 index 0000000000..36fd965e66 --- /dev/null +++ b/easybuild/easyconfigs/n/ne/ne-3.0.1-gimkl-2017a.eb @@ -0,0 +1,25 @@ +easyblock = 'ConfigureMake' + +name = 'ne' +version = '3.0.1' + +homepage = 'http://ne.di.unimi.it/' +description = """ne is a free (GPL'd) text editor based on the POSIX standard +that runs (we hope) on almost any UN*X machine. ne is easy to use for the +beginner, but powerful and fully configurable for the wizard, and most sparing +in its resource usage.""" + +toolchain = {'name': 'gimkl', 'version': '2017a'} + +source_urls = ['http://ne.di.unimi.it/'] +sources = [SOURCELOWER_TAR_GZ] + +skipsteps = ['configure'] +installopts = "PREFIX=%(installdir)s" + +sanity_check_paths = { + 'files': ['bin/ne'], + 'dirs': ['share'], +} + +moduleclass = 'tools' -- GitLab From 5addb445e5dc856d4ebe4970d0ab2488db52ec2f Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Mon, 6 Mar 2017 17:41:10 +1300 Subject: [PATCH 017/608] Add explicit ncurses dependency --- easybuild/easyconfigs/n/ne/ne-3.0.1-gimkl-2017a.eb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/easybuild/easyconfigs/n/ne/ne-3.0.1-gimkl-2017a.eb b/easybuild/easyconfigs/n/ne/ne-3.0.1-gimkl-2017a.eb index 36fd965e66..f6ca385967 100644 --- a/easybuild/easyconfigs/n/ne/ne-3.0.1-gimkl-2017a.eb +++ b/easybuild/easyconfigs/n/ne/ne-3.0.1-gimkl-2017a.eb @@ -14,6 +14,10 @@ toolchain = {'name': 'gimkl', 'version': '2017a'} source_urls = ['http://ne.di.unimi.it/'] sources = [SOURCELOWER_TAR_GZ] +dependencies = [ + ('ncurses', '6.0'), +] + skipsteps = ['configure'] installopts = "PREFIX=%(installdir)s" -- GitLab From 3d6abb181ca977ede9e7f108aefa5306de1729c1 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Fri, 10 Mar 2017 13:09:41 +1300 Subject: [PATCH 018/608] Dependencies for Perl --- .../easyconfigs/d/DB/DB-6.0.30-foss-2015a.eb | 18 ++++++++++ .../s/SQLite/SQLite-3.8.9-foss-2015a.eb | 36 +++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 easybuild/easyconfigs/d/DB/DB-6.0.30-foss-2015a.eb create mode 100644 easybuild/easyconfigs/s/SQLite/SQLite-3.8.9-foss-2015a.eb diff --git a/easybuild/easyconfigs/d/DB/DB-6.0.30-foss-2015a.eb b/easybuild/easyconfigs/d/DB/DB-6.0.30-foss-2015a.eb new file mode 100644 index 0000000000..32a7842e44 --- /dev/null +++ b/easybuild/easyconfigs/d/DB/DB-6.0.30-foss-2015a.eb @@ -0,0 +1,18 @@ +name = 'DB' +version = '6.0.30' + +homepage = 'http://www.oracle.com/technetwork/products/berkeleydb' +description = """Berkeley DB enables the development of custom data management solutions, + without the overhead traditionally associated with such custom projects.""" + +toolchain = {'name': 'foss', 'version': '2015a'} + +# download via http://www.oracle.com/technetwork/products/berkeleydb/downloads/, requires registration +sources = [SOURCELOWER_TAR_GZ] + +sanity_check_paths = { + 'files': ["include/db.h"], + 'dirs': [], +} + +moduleclass = 'tools' diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.9-foss-2015a.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.9-foss-2015a.eb new file mode 100644 index 0000000000..45f98b9cdb --- /dev/null +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.9-foss-2015a.eb @@ -0,0 +1,36 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# +# Copyright:: Copyright 2012-2013 University of Luxembourg/Luxembourg Centre for Systems Biomedicine +# Authors:: Fotis Georgatos +# License:: MIT/GPL +# $Id$ +# +# This work implements a part of the HPCBIOS project and is a component of the policy: +# http://hpcbios.readthedocs.org/en/latest/ +## + +name = 'SQLite' +version = '3.8.9' + +easyblock = 'ConfigureMake' + +homepage = 'http://www.hwaci.com/sw/sqlite/' +description = "SQLite: SQL Database Engine in a C Library" + +# eg. http://www.hwaci.com/sw/sqlite/2013/sqlite-autoconf-3080100.tar.gz +source_urls = ['http://www.hwaci.com/sw/sqlite/2013'] +sources = ['sqlite-autoconf-%s0%s0%s00.tar.gz' % tuple(version.split('.'))] # very weird way to calculate your filename + +toolchain = {'name': 'foss', 'version': '2015a'} + +dependencies = [ + ('libreadline', '6.2'), +] + +sanity_check_paths = { + 'files': ['bin/sqlite3'], + 'dirs': [], +} + +moduleclass = 'devel' -- GitLab From 54f70e4c1d48ee5844f94817091e0cd3b343bc9c Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Fri, 10 Mar 2017 13:13:00 +1300 Subject: [PATCH 019/608] Perl and two dependencies for the gimkl-2017a toolchain; includes version updates of Perl extensions --- .../easyconfigs/d/DB/DB-6.2.23-gimkl-2017a.eb | 18 + .../p/Perl/Perl-5.24.1-gimkl-2017a.eb | 1194 +++++++++++++++++ .../s/SAMtools/SAMtools-0.1.19-gimkl-2017a.eb | 21 + 3 files changed, 1233 insertions(+) create mode 100644 easybuild/easyconfigs/d/DB/DB-6.2.23-gimkl-2017a.eb create mode 100644 easybuild/easyconfigs/p/Perl/Perl-5.24.1-gimkl-2017a.eb create mode 100644 easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.19-gimkl-2017a.eb diff --git a/easybuild/easyconfigs/d/DB/DB-6.2.23-gimkl-2017a.eb b/easybuild/easyconfigs/d/DB/DB-6.2.23-gimkl-2017a.eb new file mode 100644 index 0000000000..f6a2ef8db6 --- /dev/null +++ b/easybuild/easyconfigs/d/DB/DB-6.2.23-gimkl-2017a.eb @@ -0,0 +1,18 @@ +name = 'DB' +version = '6.2.23' + +homepage = 'http://www.oracle.com/technetwork/products/berkeleydb' +description = """Berkeley DB enables the development of custom data management solutions, + without the overhead traditionally associated with such custom projects.""" + +toolchain = {'name': 'gimkl', 'version': '2017a'} + +# download via http://www.oracle.com/technetwork/products/berkeleydb/downloads/, requires registration +sources = [SOURCELOWER_TAR_GZ] + +sanity_check_paths = { + 'files': ["include/db.h"], + 'dirs': [], +} + +moduleclass = 'tools' diff --git a/easybuild/easyconfigs/p/Perl/Perl-5.24.1-gimkl-2017a.eb b/easybuild/easyconfigs/p/Perl/Perl-5.24.1-gimkl-2017a.eb new file mode 100644 index 0000000000..d4719d425a --- /dev/null +++ b/easybuild/easyconfigs/p/Perl/Perl-5.24.1-gimkl-2017a.eb @@ -0,0 +1,1194 @@ +name = 'Perl' +version = '5.24.1' +use_perl_threads = False + +homepage = 'http://www.perl.org/' +description = """Larry Wall's Practical Extraction and Report Language""" + +toolchain = {'name': 'gimkl', 'version': '2017a'} +toolchainopts = {'optarch': True, 'pic': True} + +dependencies = [ + ('DB', '6.2.23'), # for DB_File module + ('SQLite', '3.16.2'), # for DBD::SQLite module + ('expat', '2.2.0'), # for XML::Parser I think + ('libxml2', '2.9.4'), # for XML::LibXML +] +# Also zlib / readline via the other dependencies + +builddependencies = [('SAMtools', '0.1.19')] # NOT A LATER VERSION. For Bio::DB::Sam to static link to. + +source_urls = ['http://www.cpan.org/src/5.0'] +sources = [SOURCELOWER_TAR_GZ] + +# We must compile in serial so that Convert::Binary::C is installed +# in a sane manner. +maxparallel = 1 + +#runtest = 'test' # Several modules have extra dependencies for testing + +# Extension versions +acme_damn_version = '0.08' +algorithm_diff_version = '1.1903' +algorithm_munkres_version = '0.08' +aliased_version = '0.34' +anyevent_version = '7.13' +appconfig_version = '1.71' +archive_extract_version = '0.80' +archive_tar_version = '2.24' +archive_zip_version = '1.59' +array_compare_version = '3.0.0' +authen_sasl_version = '2.16' +bioperl_version = '1.007001' +bio_phylo_version = '0.58' +bio_samtools_version = '1.43' +bit_vector_version = '7.4' +boolean_version = '0.46' +bundle_bioperl_version = '2.1.9' +b_lintsubs_version = '0.06' +b_lint_version = '1.20' +capture_tiny_version = '0.46' +carp_version = '1.38' +cgi_version = '4.35' +class_accessor_version = '0.34' +class_data_inheritable_version = '0.08' +class_dbi_version = '3.0.17' +class_inspector_version = '1.31' +class_isa_version = '0.36' +class_load_version = '0.23' +class_load_xs_version = '0.09' +class_singleton_version = '1.5' +class_trigger_version = '0.14' +clone_version = '0.38' +config_general_version = '2.63' +convert_binary_c_version = '0.78' +cpanplus_version = '0.9164' +cwd_guard_version = '0.05' +data_dumper_version = '2.161' +data_optlist_version = '0.110' +data_section_simple_version = '0.07' +data_stag_version = '0.14' +data_types_version = '0.09' +data_uuid_version = '1.221' +datetime_locale_version = '1.14' +datetime_timezone_version = '2.10' +datetime_tiny_version = '1.06' +datetime_version = '1.42' +date_handler_version = '1.2' +dbd_anydata_version = '0.110' +dbd_sqlite_version = '1.54' +dbix_contextualfetch_version = '1.03' +dbix_simple_version = '1.35' +dbi_version = '1.636' +db_file_version = '1.840' +devel_checkcompiler_version = '0.07' +devel_globaldestruction_version = '0.14' +devel_stacktrace_version = '2.02' +digest_hmac_version = '1.03' +digest_sha1_version = '2.13' +dist_checkconflicts_version = '0.11' +email_date_format_version = '1.005' +encode_locale_version = '1.05' +error_version = '0.17024' +eval_closure_version = '0.14' +exception_class_version = '1.42' +expect_pm_version = '1.21' +exporter_declare_version = '0.114' +exporter_tiny_version = '0.044' +extutils_config_version = '0.008' +extutils_helpers_version = '0.026' +extutils_installpaths_version = '0.011' +extutils_makemaker_version = '7.24' +fennec_lite_version = '0.004' +file_checktree_version = '4.42' +file_copy_recursive_version = '0.38' +file_find_rule_perl_version = '1.15' +file_find_rule_version = '0.34' +file_listing_version = '6.04' +file_path_version = '2.12' +file_sharedir_install_version = '0.11' +file_slurp_tiny_version = '0.004' +file_slurp_version = '9999.19' +file_temp_version = '0.2304' +file_which_version = '1.21' +font_ttf_version = '1.06' +forks_version = '0.36' +freezethaw_version = '0.5001' +getopt_long_version = '2.49.1' +git_version = '0.41' +go_db_perl_version = '0.04' +go_perl_version = '0.15' +graph_version = '0.9704' +hash_merge_version = '0.200' +html_form_version = '6.03' +html_parser_version = '3.72' +html_tableextract_version = '2.13' +html_tagset_version = '3.20' +http_cookies_version = '6.01' +http_daemon_version = '6.01' +http_date_version = '6.02' +http_message_version = '6.11' +http_negotiate_version = '6.01' +ima_dbi_version = '0.35' +import_into_version = '1.002005' +inline_c_version = '0.76' +inline_version = '0.80' +io_all_version = '0.86' +io_html_version = '1.001' +io_prompt_version = '0.997004' +io_socket_ssl_version = '2.047' +io_stringy_version = '2.111' +io_string_version = '1.08' +io_tty_version = '1.12' +ipc_run3_version = '0.048' +ipc_run_version = '0.94' +json_version = '2.90' +libxml_perl_version = '0.08' +list_allutils_version = '0.14' +list_moreutils_version = '0.416' +local_lib_version = '2.000019' +logger_simple_version = '2.0' +log_message_simple_version = '0.10' +log_message_version = '0.08' +lwp_mediatypes_version = '6.02' +lwp_version = '6.23' +mailtools_version = '2.18' +math_bezier_version = '0.01' +math_cdf_version = '0.1' +math_round_version = '0.07' +math_vecstat_version = '0.08' +meta_builder_version = '0.003' +mime_lite_version = '3.030' +mime_types_version = '2.13' +mock_quick_version = '1.111' +module_build_tiny_version = '0.039' +module_build_version = '0.4220' +module_build_xsutil_version = '0.16' +module_implementation_version = '0.09' +module_load_conditional_version = '0.68' +module_pluggable_version = '5.2' +module_runtime_version = '0.014' +moose_version = '2.2004' +moo_version = '2.003001' +mouse_version = '2.4.9' +mro_compat_version = '0.12' +net_http_version = '6.13' +net_smtp_ssl_version = '1.04' +number_compare_version = '0.03' +number_compare_version = '0.03' +object_accessor_version = '0.48' +object_insideout_version = '4.04' +package_deprecationmanager_version = '0.17' +package_stash_version = '0.37' +package_stash_xs_version = '0.28' +parallel_forkmanager_version = '1.19' +params_util_version = '1.07' +params_validate_version = '1.26' +parse_recdescent_version = '1.967013' +pathtools_version = '3.62' +perl_unsafe_signals_version = '0.03' +pod_latex_version = '0.61' +pod_plainer_version = '1.04' +pod_pom_version = '2.01' +readonly_version = '2.05' +regexp_common_version = '2016060801' +scalar_list_utils_version = '1.47' +scalar_util_numeric_version = '0.40' +set_array_version = '0.30' +set_intervaltree_version = '0.10' +set_intspan_version = '1.19' +set_scalar_version = '1.29' +shell_version = '0.73' +spreadsheet_parseexcel_version = '0.65' +sql_statement_version = '1.410' +statistics_descriptive_version = '3.0612' +storable_version = '2.51' +strictures_version = '2.000003' +sub_exporter_progressive_version = '0.001013' +sub_exporter_version = '0.987' +sub_install_version = '0.928' +sub_name_version = '0.21' +sub_uplevel_version = '0.2600' +svg_version ='2.64' +switch_version = '2.17' +sys_sigaction_version = '0.23' +template_toolkit_version = '2.26' +term_readkey_version = '2.37' +term_ui_version = '0.46' +test_deep_version = '1.126' +test_differences_version = '0.64' +test_exception_lessclever_version = '0.009' +test_exception_version = '0.43' +test_fatal_version = '0.014' +test_harness_version = '3.36' +test_harness_version = '3.36' +test_leaktrace_version = '0.15' +test_most_version = '0.35' +test_nowarnings_version = '1.04' +test_output_version = '1.03' +test_requires_version = '0.10' +test_simple_version = '1.302078' +test_version_version = '2.05' +test_warnings_version = '0.026' +test_warn_version = '0.32' +text_diff_version = '1.44' +text_glob_version = '0.11' +text_iconv_version = '1.7' +text_soundex_version = '3.05' +tie_ixhash_version = '1.23' +timedate_version = '2.30' +time_piece_mysql_version = '0.06' +time_piece_version = '1.31' +tree_dag_node_version = '1.29' +try_tiny_version = '0.28' +universal_moniker_version = '0.08' +uri_version = '1.71' +version_version = '0.9917' +want_version = '0.29' +www_robotrules_version = '6.02' +xml_dom_version = '1.46' +xml_dom_xpath_version = '0.14' +xml_libxml_version = '2.0128' +xml_namespacesupport_version = '1.11' +xml_parser_version = '2.44' +xml_sax_base_version = '1.08' +xml_sax_version = '0.99' +xml_sax_writer_version = '0.56' +xml_simple_version = '2.22' +xml_twig_version = '3.52' +xml_writer_version = '0.625' +xml_xpath_version = '1.40' +xsloader_version = '0.24' +yaml_version = '1.23' + +exts_list = [ + ('Module::Build', module_build_version, { # std module but recent BioPerl needs a recent version for some reason + 'source_tmpl': 'Module-Build-%s.tar.gz' % module_build_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/L/LE/LEONT/'], + }), + ('ExtUtils::MakeMaker', extutils_makemaker_version, { + 'source_tmpl': 'ExtUtils-MakeMaker-%s.tar.gz' % extutils_makemaker_version, + 'source_urls': ['http://www.cpan.org/modules/by-module/ExtUtils/BINGOS/'], + }), + ('local::lib', local_lib_version, { + 'source_tmpl': 'local-lib-%s.tar.gz' % local_lib_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/H/HA/HAARG/'], + }), + ('IO::String', io_string_version, { + 'source_tmpl': 'IO-String-%s.tar.gz' % io_string_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], + }), + ('Data::Stag', data_stag_version, { + 'source_tmpl': 'Data-Stag-%s.tar.gz' % data_stag_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/C/CM/CMUNGALL/'], + }), + ('DB_File', db_file_version, { + 'source_urls': ['http://www.cpan.org/modules/by-module/DB_File/PMQS/'], + }), + ('DBI', dbi_version, { + 'source_urls': ['http://www.cpan.org/modules/by-module/DBI/TIMB/'], + }), + ('Sub::Uplevel', sub_uplevel_version, { + 'source_tmpl': 'Sub-Uplevel-%s.tar.gz' % sub_uplevel_version, + 'source_urls': ['http://www.cpan.org/modules/by-module/Sub/DAGOLDEN/'], + }), + ('Tree::DAG_Node', tree_dag_node_version, { + 'source_tmpl': 'Tree-DAG_Node-%s.tgz' % tree_dag_node_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RS/RSAVAGE/'], + }), + ('Try::Tiny', try_tiny_version, { + 'source_tmpl': 'Try-Tiny-%s.tar.gz' % try_tiny_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], + }), + ('Devel::StackTrace', devel_stacktrace_version, { + 'source_tmpl': 'Devel-StackTrace-%s.tar.gz' % devel_stacktrace_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/'], + }), + ('Class::Data::Inheritable', class_data_inheritable_version, { + 'source_tmpl': 'Class-Data-Inheritable-%s.tar.gz' % class_data_inheritable_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/T/TM/TMTM/'], + }), + ('Exception::Class', exception_class_version, { + 'source_tmpl': 'Exception-Class-%s.tar.gz' % exception_class_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/'], + }), + ('Test::Fatal', test_fatal_version, { + 'source_tmpl': 'Test-Fatal-%s.tar.gz' % test_fatal_version, + 'source_urls': ['http://www.cpan.org/modules/by-module/Test/RJBS/'], + }), + ('Test::NoWarnings', test_nowarnings_version, { + 'source_tmpl': 'Test-NoWarnings-%s.tar.gz' % test_nowarnings_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/'], + }), + ('Test::Deep', test_deep_version, { + 'source_tmpl': 'Test-Deep-%s.tar.gz' % test_deep_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/'], + }), + ('Algorithm::Diff', algorithm_diff_version, { + 'source_tmpl': 'Algorithm-Diff-%s.tar.gz' % algorithm_diff_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/T/TY/TYEMQ/'], + }), + ('Text::Diff', text_diff_version, { + 'source_tmpl': 'Text-Diff-%s.tar.gz' % text_diff_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/N/NE/NEILB/'], + }), + ('Test::Differences', test_differences_version, { + 'source_tmpl': 'Test-Differences-%s.tar.gz' % test_differences_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DC/DCANTRELL/'], + }), + ('Test::Exception', test_exception_version, { + 'source_tmpl': 'Test-Exception-%s.tar.gz' % test_exception_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/EX/EXODIST/'], + }), + ('Test::Warn', test_warn_version, { + 'source_tmpl': 'Test-Warn-%s.tar.gz' % test_warn_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BI/BIGJ/'], + }), + ('Test::Requires', test_requires_version, { + 'source_tmpl': 'Test-Requires-%s.tar.gz' % test_requires_version, + 'source_urls': ['http://www.cpan.org/modules/by-module/Test/TOKUHIROM/'], + }), + ('Test::Tester', test_simple_version, { + 'source_tmpl': 'Test-Simple-%s.tar.gz' % test_simple_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/EX/EXODIST/'], + }), + ('File::Slurp::Tiny', file_slurp_tiny_version, { + 'source_tmpl': 'File-Slurp-Tiny-%s.tar.gz' % file_slurp_tiny_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/L/LE/LEONT'], + }), + ('Params::Util', params_util_version, { + 'source_tmpl': 'Params-Util-%s.tar.gz' % params_util_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/'], + }), + ('Sub::Install', sub_install_version, { + 'source_tmpl': 'Sub-Install-%s.tar.gz' % sub_install_version, + 'source_urls': ['http://www.cpan.org/modules/by-module/Sub/RJBS/'], + }), + ('Data::OptList', data_optlist_version, { + 'source_tmpl': 'Data-OptList-%s.tar.gz' % data_optlist_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/'], + }), + ('Sub::Exporter', sub_exporter_version, { + 'source_tmpl': 'Sub-Exporter-%s.tar.gz' % sub_exporter_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/'], + }), + ('Capture::Tiny', capture_tiny_version, { + 'source_tmpl': 'Capture-Tiny-%s.tar.gz' % capture_tiny_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/'], + }), + ('Test::Output', test_output_version, { + 'source_tmpl': 'Test-Output-%s.tar.gz' % test_output_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BD/BDFOY/'], + }), + ('Module::Runtime', module_runtime_version, { + 'source_tmpl': 'Module-Runtime-%s.tar.gz' % module_runtime_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/Z/ZE/ZEFRAM/'], + }), + ('Module::Implementation', module_implementation_version, { + 'source_tmpl': 'Module-Implementation-%s.tar.gz' % module_implementation_version, + 'source_urls': ['http://www.cpan.org/modules/by-module/Module/DROLSKY/'], + }), + ('List::MoreUtils', list_moreutils_version, { + 'source_tmpl': 'List-MoreUtils-%s.tar.gz' % list_moreutils_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RE/REHSACK/'], + }), + ('Package::DeprecationManager', package_deprecationmanager_version, { + 'source_tmpl': 'Package-DeprecationManager-%s.tar.gz' % package_deprecationmanager_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/'], + }), + ('Dist::CheckConflicts', dist_checkconflicts_version, { + 'source_tmpl': 'Dist-CheckConflicts-%s.tar.gz' % dist_checkconflicts_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DO/DOY/'], + }), + ('Package::Stash', package_stash_version, { + 'source_tmpl': 'Package-Stash-%s.tar.gz' % package_stash_version, + 'source_urls': ['http://www.cpan.org/modules/by-module/Package/DOY/'], + }), + ('Class::Load', class_load_version, { + 'source_tmpl': 'Class-Load-%s.tar.gz' % class_load_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], + }), + ('TAP::Harness::Env', test_harness_version, { + 'source_tmpl': 'Test-Harness-%s.tar.gz' % test_harness_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/L/LE/LEONT/'], + }), + ('ExtUtils::Helpers', extutils_helpers_version, { + 'source_tmpl': 'ExtUtils-Helpers-%s.tar.gz' % extutils_helpers_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/L/LE/LEONT'], + }), + ('ExtUtils::Config', extutils_config_version, { + 'source_tmpl': 'ExtUtils-Config-%s.tar.gz' % extutils_config_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/L/LE/LEONT'], + }), + ('ExtUtils::InstallPaths', extutils_installpaths_version, { + 'source_tmpl': 'ExtUtils-InstallPaths-%s.tar.gz' % extutils_installpaths_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/L/LE/LEONT'], + }), + ('Module::Build::Tiny', module_build_tiny_version, { + 'source_tmpl': 'Module-Build-Tiny-%s.tar.gz' % module_build_tiny_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/L/LE/LEONT/'], + }), + ('MRO::Compat', mro_compat_version, { + 'source_tmpl': 'MRO-Compat-%s.tar.gz' % mro_compat_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BO/BOBTFISH/'], + }), + ('Sub::Name', sub_name_version, { + 'source_tmpl': 'Sub-Name-%s.tar.gz' % sub_name_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], + }), + ('Eval::Closure', eval_closure_version, { + 'source_tmpl': 'Eval-Closure-%s.tar.gz' % eval_closure_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DO/DOY/'], + }), + ('Sub::Exporter::Progressive', sub_exporter_progressive_version, { + 'source_tmpl': 'Sub-Exporter-Progressive-%s.tar.gz' % sub_exporter_progressive_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/F/FR/FREW/'], + }), + ('Devel::GlobalDestruction', devel_globaldestruction_version, { + 'source_tmpl': 'Devel-GlobalDestruction-%s.tar.gz' % devel_globaldestruction_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/H/HA/HAARG/'], + }), + ('boolean', boolean_version, { + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IN/INGY/'], + }), + ('Tie::IxHash', tie_ixhash_version, { + 'source_tmpl': 'Tie-IxHash-%s.tar.gz' % tie_ixhash_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/C/CH/CHORNY/'], + }), + ('Moose', moose_version, { + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], + }), + ('Package::Stash::XS', package_stash_xs_version, { + 'source_tmpl': 'Package-Stash-XS-%s.tar.gz' % package_stash_xs_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DO/DOY/'], + }), + ('Params::Validate', params_validate_version, { + 'source_tmpl': 'Params-Validate-%s.tar.gz' % params_validate_version, + 'source_urls': ['http://www.cpan.org/modules/by-module/Params/DROLSKY/'], + }), + ('Class::Load::XS', class_load_xs_version, { + 'source_tmpl': 'Class-Load-XS-%s.tar.gz' % class_load_xs_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], + }), + # For uoa00001, Zendesk #9076 + ('Math::CDF', math_cdf_version, { + 'source_tmpl': 'Math-CDF-%s.tar.gz' % math_cdf_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/C/CA/CALLAHAN/'], + }), + ('DateTime::Locale', datetime_locale_version, { + 'source_tmpl': 'DateTime-Locale-%s.tar.gz' % datetime_locale_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/'], + }), + ('Class::Singleton', class_singleton_version, { + 'source_tmpl': 'Class-Singleton-%s.tar.gz' % class_singleton_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SH/SHAY/'], + }), + ('DateTime::TimeZone', datetime_timezone_version, { + 'source_tmpl': 'DateTime-TimeZone-%s.tar.gz' % datetime_timezone_version, + 'source_urls': ['http://www.cpan.org/modules/by-module/DateTime/DROLSKY/'], + }), + ('Test::Warnings', test_warnings_version, { + 'source_tmpl': 'Test-Warnings-%s.tar.gz' % test_warnings_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], + }), + ('Data::Types', data_types_version, { + 'source_tmpl': 'Data-Types-%s.tar.gz' % data_types_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DW/DWHEELER/'], + }), + ('Exporter::Tiny', exporter_tiny_version, { + 'source_tmpl': 'Exporter-Tiny-%s.tar.gz' % exporter_tiny_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/T/TO/TOBYINK/'], + }), + ('List::AllUtils', list_allutils_version, { + 'source_tmpl': 'List-AllUtils-%s.tar.gz' % list_allutils_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/'], + }), + ('DateTime', datetime_version, { + 'source_urls': ['http://www.cpan.org/modules/by-module/DateTime/DROLSKY/'], + }), + ('DateTime::Tiny', datetime_tiny_version, { + 'source_tmpl': 'DateTime-Tiny-%s.tar.gz' % datetime_tiny_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/'], + }), + ('File::Slurp', file_slurp_version, { + 'source_tmpl': 'File-Slurp-%s.tar.gz' % file_slurp_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/U/UR/URI/'], + }), + ('HTTP::Date', http_date_version, { + 'source_tmpl': 'HTTP-Date-%s.tar.gz' % http_date_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], + }), + ('IO::HTML', io_html_version, { + 'source_tmpl': 'IO-HTML-%s.tar.gz' % io_html_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/C/CJ/CJM/'], + }), + ('LWP::MediaTypes', lwp_mediatypes_version, { + 'source_tmpl': 'LWP-MediaTypes-%s.tar.gz' % lwp_mediatypes_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], + }), + ('URI', uri_version, { + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], + }), + ('Encode::Locale', encode_locale_version, { + 'source_tmpl': 'Encode-Locale-%s.tar.gz' % encode_locale_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], + }), + ('HTTP::Request', http_message_version, { + 'source_tmpl': 'HTTP-Message-%s.tar.gz' % http_message_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], + }), + ('HTML::Tagset', html_tagset_version, { + 'source_tmpl': 'HTML-Tagset-%s.tar.gz' % html_tagset_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/P/PE/PETDANCE/'], + }), + ('HTML::Entities', html_parser_version, { + 'source_tmpl': 'HTML-Parser-%s.tar.gz' % html_parser_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], + }), + ('File::Listing', file_listing_version, { + 'source_tmpl': 'File-Listing-%s.tar.gz' % file_listing_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], + }), + ('AnyEvent', anyevent_version, { + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/'], + }), + ('Devel::CheckCompiler', devel_checkcompiler_version, { + 'source_tmpl': 'Devel-CheckCompiler-%s.tar.gz' % devel_checkcompiler_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SY/SYOHEX'], + }), + ('File::Copy::Recursive', file_copy_recursive_version, { + 'source_tmpl': 'File-Copy-Recursive-%s.tar.gz' % file_copy_recursive_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DM/DMUEY/'], + }), + ('Cwd::Guard', cwd_guard_version, { + 'source_tmpl': 'Cwd-Guard-%s.tar.gz' % cwd_guard_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/K/KA/KAZEBURO'], + }), + ('Module::Build::XSUtil', module_build_xsutil_version, { + 'source_tmpl': 'Module-Build-XSUtil-%s.tar.gz' % module_build_xsutil_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/H/HI/HIDEAKIO/'], + }), + ('LWP', lwp_version, { + 'source_tmpl': 'libwww-perl-%s.tar.gz' % lwp_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/O/OA/OALDERS/'], + }), + ('Fennec::Lite', fennec_lite_version, { + 'source_tmpl': 'Fennec-Lite-%s.tar.gz' % fennec_lite_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/EX/EXODIST/'], + }), + ('aliased', aliased_version, { + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], + }), + ('Meta::Builder', meta_builder_version, { + 'source_tmpl': 'Meta-Builder-%s.tar.gz' % meta_builder_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/EX/EXODIST/'], + }), + ('Exporter::Declare', exporter_declare_version, { + 'source_tmpl': 'Exporter-Declare-%s.tar.gz' % exporter_declare_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/EX/EXODIST/'], + }), + ('Mock::Quick', mock_quick_version, { + 'source_tmpl': 'Mock-Quick-%s.tar.gz' % mock_quick_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/EX/EXODIST/'], + }), + ('Test::Exception::LessClever', test_exception_lessclever_version, { + 'source_tmpl': 'Test-Exception-LessClever-%s.tar.gz' % test_exception_lessclever_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], + }), + ('Test::LeakTrace', test_leaktrace_version, { + 'source_tmpl': 'Test-LeakTrace-%s.tar.gz' % test_leaktrace_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GF/GFUJI/'], + }), + ('Mouse', mouse_version, { + 'source_tmpl': 'Mouse-v%s.tar.gz' % mouse_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SY/SYOHEX/'], + }), + ('XML::NamespaceSupport', xml_namespacesupport_version, { + 'source_tmpl': 'XML-NamespaceSupport-%s.tar.gz' % xml_namespacesupport_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/P/PE/PERIGRIN/'], + }), + ('XML::SAX::Base', xml_sax_base_version, { + 'source_tmpl': 'XML-SAX-Base-%s.tar.gz' % xml_sax_base_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GR/GRANTM/'], + }), + ('XML::SAX', xml_sax_version, { + 'source_tmpl': 'XML-SAX-%s.tar.gz' % xml_sax_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GR/GRANTM/'], + }), + ('XML::LibXML', xml_libxml_version, { + 'source_tmpl': 'XML-LibXML-%s.tar.gz' % xml_libxml_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SH/SHLOMIF/'], + }), + ('Clone', clone_version, { + 'source_tmpl': 'Clone-%s.tar.gz' % clone_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GARU'], + }), + ('Parallel::ForkManager', parallel_forkmanager_version, { + 'source_tmpl': 'Parallel-ForkManager-%s.tar.gz' % parallel_forkmanager_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/Y/YA/YANICK/'], + }), + + ('Config::General', config_general_version, { + 'source_tmpl': 'Config-General-%s.tar.gz' % config_general_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/T/TL/TLINDEN/'], + }), + ('Test::Simple', test_simple_version, { + 'source_tmpl': 'Test-Simple-%s.tar.gz' % test_simple_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/EX/EXODIST/'], + }), + + # For Genemark + ('YAML', yaml_version, { + 'source_tmpl': 'YAML-%s.tar.gz' % yaml_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IN/INGY/'], + }), + ('Hash::Merge', hash_merge_version, { + 'source_tmpl': 'Hash-Merge-%s.tar.gz' % hash_merge_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RE/REHSACK/'], + }), + ('Data::Dumper', data_dumper_version, { + 'source_tmpl': 'Data-Dumper-%s.tar.gz' % data_dumper_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SM/SMUELLER/'], + }), + ('Object::InsideOut', object_insideout_version, { + 'source_tmpl': 'Object-InsideOut-%s.tar.gz' % object_insideout_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JD/JDHEDDEN/'], + }), + ('Logger::Simple', logger_simple_version, { + 'source_tmpl': 'Logger-Simple-%s.tar.gz' % logger_simple_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/T/TS/TSTANLEY/'], + }), + ('File::Path', file_path_version, { + 'source_tmpl': 'File-Path-%s.tar.gz' % file_path_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RI/RICHE/'], + }), + ('File::Spec', pathtools_version, { + 'source_tmpl': 'PathTools-%s.tar.gz' % pathtools_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/'], + }), + ('File::Temp', file_temp_version, { + 'source_tmpl': 'File-Temp-%s.tar.gz' % file_temp_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/'], + }), + ('XSLoader', xsloader_version, { + 'source_tmpl': 'XSLoader-%s.tar.gz' % xsloader_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SA/SAPER/'], + }), + ('Carp', carp_version, { + 'source_tmpl': 'Carp-%s.tar.gz' % carp_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/'], + }), + ('Storable', storable_version, { + 'source_tmpl': 'Storable-%s.tar.gz' % storable_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/A/AM/AMS/'], + }), + + ('Font::TTF', font_ttf_version, { + 'source_tmpl': 'Font-TTF-%s.tar.gz' % font_ttf_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BH/BHALLISSY'], + }), + ('IO::Tty', io_tty_version, { + 'source_tmpl': 'IO-Tty-%s.tar.gz' % io_tty_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/T/TO/TODDR/'], + }), + ('Math::Bezier', math_bezier_version, { + 'source_tmpl': 'Math-Bezier-%s.tar.gz' % math_bezier_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/A/AB/ABW'], + }), + ('IPC::Run', ipc_run_version, { + 'source_tmpl': 'IPC-Run-%s.tar.gz' % ipc_run_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/T/TO/TODDR/'], + }), + ('Math::Round', math_round_version, { + 'source_tmpl': 'Math-Round-%s.tar.gz' % math_round_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GR/GROMMEL'], + }), + ('B::LintSubs', b_lintsubs_version, { + 'source_tmpl': 'B-LintSubs-%s.tar.gz' % b_lintsubs_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/P/PE/PEVANS'], + }), + ('Math::VecStat', math_vecstat_version, { + 'source_tmpl': 'Math-VecStat-%s.tar.gz' % math_vecstat_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/A/AS/ASPINELLI'], + }), + ('Test::Most', test_most_version, { + 'source_tmpl': 'Test-Most-%s.tar.gz' % test_most_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/O/OV/OVID/'], + }), + ('Readonly', readonly_version, { + 'source_tmpl': 'Readonly-%s.tar.gz' % readonly_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SA/SANKO/'], + }), + ('Regexp::Common', regexp_common_version, { + 'source_tmpl': 'Regexp-Common-%s.tar.gz' % regexp_common_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/A/AB/ABIGAIL'], + }), + ('Want', want_version, { + 'source_tmpl': 'Want-%s.tar.gz' % want_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RO/ROBIN/'], + }), + ('DBD::SQLite', dbd_sqlite_version, { + 'source_tmpl': 'DBD-SQLite-%s.tar.gz' % dbd_sqlite_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IS/ISHIGAKI/'], + }), + ('Set::IntSpan', set_intspan_version, { + 'source_tmpl': 'Set-IntSpan-%s.tar.gz' % set_intspan_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SW/SWMCD'], + }), + ('forks', forks_version, { + 'source_tmpl': 'forks-%s.tar.gz' % forks_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RY/RYBSKEJ/'], + }), + ('File::Which', file_which_version, { + 'source_tmpl': 'File-Which-%s.tar.gz' % file_which_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/P/PL/PLICEASE/'], + }), + ('Perl::Unsafe::Signals', perl_unsafe_signals_version, { + 'source_tmpl': 'Perl-Unsafe-Signals-%s.tar.gz' % perl_unsafe_signals_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RG/RGARCIA/'], + }), + ('Bit::Vector', bit_vector_version, { + 'source_tmpl': 'Bit-Vector-%s.tar.gz' % bit_vector_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/ST/STBEY/'], + }), + ('Parse::RecDescent', parse_recdescent_version, { + 'source_tmpl': 'Parse-RecDescent-%s.tar.gz' % parse_recdescent_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JT/JTBRAUN/'], + }), + ('Inline', inline_version, { + 'source_tmpl': 'Inline-%s.tar.gz' % inline_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IN/INGY/'], + }), + ('File::ShareDir::Install', file_sharedir_install_version, { + 'source_tmpl': 'File-ShareDir-Install-%s.tar.gz' % file_sharedir_install_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], + }), + ('Inline::C', inline_c_version, { + 'source_tmpl': 'Inline-C-%s.tar.gz' % inline_c_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IN/INGY/'], + }), + ('IO::All', io_all_version, { + 'source_tmpl': 'IO-All-%s.tar.gz' % io_all_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IN/INGY/'], + }), + ('IO::Prompt', io_prompt_version, { + 'source_tmpl': 'IO-Prompt-%s.tar.gz' % io_prompt_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DC/DCONWAY/'], + }), + ('Getopt::Long', getopt_long_version, { + 'source_tmpl': 'Getopt-Long-%s.tar.gz' % getopt_long_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JV/JV/'], + }), + ('AppConfig', appconfig_version, { + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/N/NE/NEILB/'], + }), + ('Archive::Extract', archive_extract_version, { + 'source_tmpl': 'Archive-Extract-%s.tar.gz' % archive_extract_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/'], + }), + ('Archive::Tar', archive_tar_version, { + 'source_tmpl': 'Archive-Tar-%s.tar.gz' % archive_tar_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/'], + }), + ('Archive::Zip', archive_zip_version, { + 'source_tmpl': 'Archive-Zip-%s.tar.gz' % archive_zip_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/P/PH/PHRED/'], + }), + ('Authen::SASL', authen_sasl_version, { + 'source_tmpl': 'Authen-SASL-%s.tar.gz' % authen_sasl_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GB/GBARR/'], + }), + ('B::Lint', b_lint_version, { + 'source_tmpl': 'B-Lint-%s.tar.gz' % b_lint_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/'], + }), + ('Class::Accessor', class_accessor_version, { + 'source_tmpl': 'Class-Accessor-%s.tar.gz' % class_accessor_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/K/KA/KASEI/'], + }), + ('Class::DBI', class_dbi_version, { + 'source_tmpl': 'Class-DBI-v%s.tar.gz' % class_dbi_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/T/TM/TMTM/'], + }), + ('Class::Inspector', class_inspector_version, { + 'source_tmpl': 'Class-Inspector-%s.tar.gz' % class_inspector_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/P/PL/PLICEASE/'], + }), + ('Class::ISA', class_isa_version, { + 'source_tmpl': 'Class-ISA-%s.tar.gz' % class_isa_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SM/SMUELLER/'], + }), + ('Class::Trigger', class_trigger_version, { + 'source_tmpl': 'Class-Trigger-%s.tar.gz' % class_trigger_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MI/MIYAGAWA/'], + }), + ('CPANPLUS', cpanplus_version, { + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/'], + }), + ('Data::Grove', libxml_perl_version, { + 'source_tmpl': 'libxml-perl-%s.tar.gz' % libxml_perl_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/K/KM/KMACLEOD/'], + }), + ('Data::UUID', data_uuid_version, { + 'source_tmpl': 'Data-UUID-%s.tar.gz' % data_uuid_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/'], + }), + ('Date::Language', timedate_version, { + 'source_tmpl': 'TimeDate-%s.tar.gz' % timedate_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GB/GBARR/'], + }), + ('Date::Handler', date_handler_version, { + 'source_tmpl': 'Date-Handler-%s.tar.gz' % date_handler_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BB/BBEAUSEJ/'], + }), + ('SQL::Statement', sql_statement_version, { + 'source_tmpl': 'SQL-Statement-%s.tar.gz' % sql_statement_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RE/REHSACK/'], + }), + ('Module::Pluggable', module_pluggable_version, { + 'source_tmpl': 'Module-Pluggable-%s.tar.gz' % module_pluggable_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SI/SIMONW/'], + }), + ('Digest::HMAC', digest_hmac_version, { + 'source_tmpl': 'Digest-HMAC-%s.tar.gz' % digest_hmac_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], + }), + ('Digest::SHA1', digest_sha1_version, { + 'source_tmpl': 'Digest-SHA1-%s.tar.gz' % digest_sha1_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], + }), + ('Email::Date::Format', email_date_format_version, { + 'source_tmpl': 'Email-Date-Format-%s.tar.gz' % email_date_format_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/'], + }), + ('Error', error_version, { + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SH/SHLOMIF/'], + }), + ('Expect', expect_pm_version, { + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RG/RGIERSIG/'], + }), + ('File::CheckTree', file_checktree_version, { + 'source_tmpl': 'File-CheckTree-%s.tar.gz' % file_checktree_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/'], + }), + ('FreezeThaw', freezethaw_version, { + 'source_tmpl': 'FreezeThaw-%s.tar.gz' % freezethaw_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IL/ILYAZ/modules/'], + }), + ('Git', git_version, { + 'source_tmpl': 'Git-%s.tar.gz' % git_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MS/MSOUTH/'], + }), + ('GO::Utils', go_perl_version, { + 'source_tmpl': 'go-perl-%s.tar.gz' % go_perl_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/C/CM/CMUNGALL/'], + }), + ('GO', go_db_perl_version, { + 'source_tmpl': 'go-db-perl-%s.tar.gz' % go_db_perl_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SJ/SJCARBON/'], + }), + + ('HTML::Form', html_form_version, { + 'source_tmpl': 'HTML-Form-%s.tar.gz' % html_form_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], + }), + ('HTTP::Cookies', http_cookies_version, { + 'source_tmpl': 'HTTP-Cookies-%s.tar.gz' % http_cookies_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], + }), + ('HTTP::Daemon', http_daemon_version, { + 'source_tmpl': 'HTTP-Daemon-%s.tar.gz' % http_daemon_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], + }), + ('HTTP::Negotiate', http_negotiate_version, { + 'source_tmpl': 'HTTP-Negotiate-%s.tar.gz' % http_negotiate_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], + }), + ('IO::Stringy', io_stringy_version, { + 'source_tmpl': 'IO-stringy-%s.tar.gz' % io_stringy_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DS/DSKOLL/'], + }), + ('IO::Socket::SSL', io_socket_ssl_version, { + 'source_tmpl': 'IO-Socket-SSL-%s.tar.gz' % io_socket_ssl_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SU/SULLR/'], + }), + ('JSON', json_version, { + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MA/MAKAMAKA/'], + }), + ('Log::Message', log_message_version, { + 'source_tmpl': 'Log-Message-%s.tar.gz' % log_message_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/'], + }), + ('Log::Message::Simple', log_message_simple_version, { + 'source_tmpl': 'Log-Message-Simple-%s.tar.gz' % log_message_simple_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/'], + }), + ('Mail::Util', mailtools_version, { + 'source_tmpl': 'MailTools-%s.tar.gz' % mailtools_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MA/MARKOV/'], + }), + ('MIME::Types', mime_types_version, { + 'source_tmpl': 'MIME-Types-%s.tar.gz' % mime_types_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MA/MARKOV/'], + }), + ('MIME::Lite', mime_lite_version, { + 'source_tmpl': 'MIME-Lite-%s.tar.gz' % mime_lite_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/'], + }), + ('Net::HTTP', net_http_version, { + 'source_tmpl': 'Net-HTTP-%s.tar.gz' % net_http_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/O/OA/OALDERS/'], + }), + ('Net::SMTP::SSL', net_smtp_ssl_version, { + 'source_tmpl': 'Net-SMTP-SSL-%s.tar.gz' % net_smtp_ssl_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/'], + }), + ('Object::Accessor', object_accessor_version, { + 'source_tmpl': 'Object-Accessor-%s.tar.gz' % object_accessor_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/'], + }), + ('Pod::LaTeX', pod_latex_version, { + 'source_tmpl': 'Pod-LaTeX-%s.tar.gz' % pod_latex_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/T/TJ/TJENNESS/'], + }), + ('Pod::Plainer', pod_plainer_version, { + 'source_tmpl': 'Pod-Plainer-%s.tar.gz' % pod_plainer_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RM/RMBARKER/'], + }), + ('Pod::POM', pod_pom_version, { + 'source_tmpl': 'Pod-POM-%s.tar.gz' % pod_pom_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/N/NE/NEILB/'], + }), + ('Shell', shell_version, { + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/F/FE/FERREIRA/'], + }), + ('Statistics::Descriptive', statistics_descriptive_version, { + 'source_tmpl': 'Statistics-Descriptive-%s.tar.gz' % statistics_descriptive_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SH/SHLOMIF/'], + }), + ('Switch', switch_version, { + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/C/CH/CHORNY/'], + }), + ('Template', template_toolkit_version, { + 'source_tmpl': 'Template-Toolkit-%s.tar.gz' % template_toolkit_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/A/AB/ABW/'], + }), + ('Term::UI', term_ui_version, { + 'source_tmpl': 'Term-UI-%s.tar.gz' % term_ui_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/'], + }), + ('Text::Iconv', text_iconv_version, { + 'source_tmpl': 'Text-Iconv-%s.tar.gz' % text_iconv_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MP/MPIOTR/'], + }), + ('Text::Soundex', text_soundex_version, { + 'source_tmpl': 'Text-Soundex-%s.tar.gz' % text_soundex_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/'], + }), + ('Time::Piece', time_piece_version, { + 'source_tmpl': 'Time-Piece-%s.tar.gz' % time_piece_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ES/ESAYM/'], + }), + ('Time::Piece::MySQL', time_piece_mysql_version, { + 'source_tmpl': 'Time-Piece-MySQL-%s.tar.gz' % time_piece_mysql_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/K/KA/KASEI/'], + }), + ('UNIVERSAL::moniker', universal_moniker_version, { + 'source_tmpl': 'UNIVERSAL-moniker-%s.tar.gz' % universal_moniker_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/K/KA/KASEI/'], + }), + ('version', version_version, { + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JP/JPEACOCK/'], + }), + ('WWW::RobotRules', www_robotrules_version, { + 'source_tmpl': 'WWW-RobotRules-%s.tar.gz' % www_robotrules_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], + }), + ('XML::SAX::Writer', xml_sax_writer_version, { + 'source_tmpl': 'XML-SAX-Writer-%s.tar.gz' % xml_sax_writer_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/P/PE/PERIGRIN/'], + }), + ('XML::Simple', xml_simple_version, { + 'source_tmpl': 'XML-Simple-%s.tar.gz' % xml_simple_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GR/GRANTM/'], + }), + ('XML::XPath', xml_xpath_version, { + 'source_tmpl': 'XML-XPath-%s.tar.gz' % xml_xpath_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MA/MANWAR/'], + }), + ('DBD::AnyData', dbd_anydata_version, { + 'source_tmpl': 'DBD-AnyData-%s.tar.gz' % dbd_anydata_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RE/REHSACK/'], + }), + ('Ima::DBI', ima_dbi_version, { + 'source_tmpl': 'Ima-DBI-%s.tar.gz' % ima_dbi_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/P/PE/PERRIN/'], + }), + ('DBIx::ContextualFetch', dbix_contextualfetch_version, { + 'source_tmpl': 'DBIx-ContextualFetch-%s.tar.gz' % dbix_contextualfetch_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/T/TM/TMTM/'], + }), + ('DBIx::Simple', dbix_simple_version, { + 'source_tmpl': 'DBIx-Simple-%s.tar.gz' % dbix_simple_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JU/JUERD/'], + }), + ('Term::ReadKey', term_readkey_version, { + 'source_tmpl': 'TermReadKey-%s.tar.gz' % term_readkey_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JS/JSTOWE/'], +# 'patches': ['TermReadKey-2.32.patch'], + }), + ('Moo', moo_version, { + 'source_tmpl': 'Moo-%s.tar.gz' % moo_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/H/HA/HAARG/'], + }), + ('strictures', strictures_version, { + 'source_tmpl': 'strictures-%s.tar.gz' % strictures_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/H/HA/HAARG/'], + }), + ('File::Find::Rule::Perl', file_find_rule_perl_version, { + 'source_tmpl': 'File-Find-Rule-Perl-%s.tar.gz' % file_find_rule_perl_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], + }), + ('Test::Version', test_version_version, { + 'source_tmpl': 'Test-Version-%s.tar.gz' % test_version_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/P/PL/PLICEASE/'], + }), + ('Test::Harness', test_harness_version, { + 'source_tmpl': 'Test-Harness-%s.tar.gz' % test_harness_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/L/LE/LEONT/'], + }), + ('Import::Into', import_into_version, { + 'source_tmpl': 'Import-Into-%s.tar.gz' % import_into_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/H/HA/HAARG/'], + }), + ('File::Find::Rule', file_find_rule_version, { + 'source_tmpl': 'File-Find-Rule-%s.tar.gz' % file_find_rule_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RC/RCLAMP/'], + }), + ('Data::Section::Simple', data_section_simple_version, { + 'source_tmpl': 'Data-Section-Simple-%s.tar.gz' % data_section_simple_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MI/MIYAGAWA/'], + }), + ('Text::Glob', text_glob_version, { + 'source_tmpl': 'Text-Glob-%s.tar.gz' % text_glob_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RC/RCLAMP/'], + }), + ('Number::Compare', number_compare_version, { + 'source_tmpl': 'Number-Compare-%s.tar.gz' % number_compare_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RC/RCLAMP/'], + }), + ('IPC::Run3', ipc_run3_version, { + 'source_tmpl': 'IPC-Run3-%s.tar.gz' % ipc_run3_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/'], + }), + ('Set::Array', set_array_version, { + 'source_tmpl': 'Set-Array-%s.tgz' % set_array_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RS/RSAVAGE/'], + }), + ('Bundle::BioPerl', bundle_bioperl_version, { + 'source_tmpl': 'Bundle-BioPerl-%s.tar.gz' % bundle_bioperl_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/C/CJ/CJFIELDS/'], + }), + ('Algorithm::Munkres', algorithm_munkres_version, { + 'source_tmpl': 'Algorithm-Munkres-%s.tar.gz' % algorithm_munkres_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/T/TP/TPEDERSE/'], + }), +# Lots of deps: Types::Standard etc. +# ('Array::Compare', array_compare_version, { +# 'source_tmpl': 'Array-Compare-v%s.tar.gz' % array_compare_version, +# 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DA/DAVECROSS/'], +# }), + ('Graph', graph_version, { + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JH/JHI/'], + }), + ('Set::Scalar', set_scalar_version, { + 'source_tmpl': 'Set-Scalar-%s.tar.gz' % set_scalar_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DA/DAVIDO/'], + }), + ('CGI', cgi_version, { + 'source_tmpl': 'CGI-%s.tar.gz' % cgi_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/L/LE/LEEJO/'], + }), + ('Bio::Phylo', bio_phylo_version, { + 'source_tmpl': 'Bio-Phylo-%s.tar.gz' % bio_phylo_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RV/RVOSA/'], + }), + ('SVG', svg_version, { + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SZ/SZABGAB/'], + }), + ('XML::DOM', xml_dom_version, { + 'source_tmpl': 'XML-DOM-%s.tar.gz' % xml_dom_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/T/TJ/TJMATHER/'], + }), + ('XML::DOM::XPath', xml_dom_xpath_version, { + 'source_tmpl': 'XML-DOM-XPath-%s.tar.gz' % xml_dom_xpath_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MI/MIROD/'], + }), + ('XML::Parser::PerlSAX', libxml_perl_version, { + 'source_tmpl': 'libxml-perl-%s.tar.gz' % libxml_perl_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/K/KM/KMACLEOD/'], + }), + ('XML::Parser', xml_parser_version, { + 'source_tmpl': 'XML-Parser-%s.tar.gz' % xml_parser_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/T/TO/TODDR/'], + }), + ('XML::Twig', xml_twig_version, { + 'source_tmpl': 'XML-Twig-%s.tar.gz' % xml_twig_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MI/MIROD/'], + }), + ('XML::Writer', xml_writer_version, { + 'source_tmpl': 'XML-Writer-%s.tar.gz' % xml_writer_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JO/JOSEPHW/'], + }), + ('Spreadsheet::ParseExcel', spreadsheet_parseexcel_version, { + 'source_tmpl': 'Spreadsheet-ParseExcel-%s.tar.gz' % spreadsheet_parseexcel_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DO/DOUGW/'], + }), + ('Convert::Binary::C', convert_binary_c_version, { + 'source_tmpl': 'Convert-Binary-C-%s.tar.gz' % convert_binary_c_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MH/MHX/'], + }), + ('Sys::SigAction.pm', sys_sigaction_version, { + 'source_tmpl': 'Sys-SigAction-%s.tar.gz' % sys_sigaction_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/L/LB/LBAXTER/'], + }), + ('Acme::Damn', acme_damn_version, { + 'source_tmpl': 'Acme-Damn-%s.tar.gz' % acme_damn_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IB/IBB/'], + }), + ('Set::IntervalTree', set_intervaltree_version, { + 'source_tmpl': 'Set-IntervalTree-%s.tar.gz' % set_intervaltree_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BE/BENBOOTH/'], + }), + ('HTML::TableExtract', html_tableextract_version, { + 'source_tmpl': 'HTML-TableExtract-%s.tar.gz' % html_tableextract_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MS/MSISK/'], + }), + ('Bio::Perl', bioperl_version, { + 'source_tmpl': 'BioPerl-%s.tar.gz' % bioperl_version, + 'source_urls': ['http://www.cpan.org/modules/by-module/Bio/CJFIELDS/'], + }), + ('Bio::DB::Sam', bio_samtools_version, { + 'source_tmpl': 'Bio-SamTools-%s.tar.gz' % bio_samtools_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/L/LD/LDS/'], + 'patches': ['Perl_SamTools_include.patch'], + }), + ('File::Spec::Functions', pathtools_version, { + 'source_tmpl': 'PathTools-%s.tar.gz' % pathtools_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/'], + }), + ('List::Util', scalar_list_utils_version, { + 'source_tmpl': 'Scalar-List-Utils-%s.tar.gz' % scalar_list_utils_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/P/PE/PEVANS/'], + }), + ('Module::Load::Conditional', module_load_conditional_version, { + 'source_tmpl': 'Module-Load-Conditional-%s.tar.gz' % module_load_conditional_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/'], + }), + ('Scalar::Util::Numeric', scalar_util_numeric_version, { + 'source_tmpl': 'Scalar-Util-Numeric-%s.tar.gz' % scalar_util_numeric_version, + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/C/CH/CHOCOLATE/'], + }), +] + +moduleclass = 'lang' diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.19-gimkl-2017a.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.19-gimkl-2017a.eb new file mode 100644 index 0000000000..877294f204 --- /dev/null +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.19-gimkl-2017a.eb @@ -0,0 +1,21 @@ +name = 'SAMtools' +version = '0.1.19' + +homepage = 'http://www.htslib.org/' +description = """SAM Tools provide various utilities for manipulating alignments in the SAM format, + including sorting, merging, indexing and generating alignments in a per-position format.""" + +toolchain = {'name': 'gimkl', 'version': '2017a'} +toolchainopts = {'optarch': True, 'pic': True} + +sources = [SOURCELOWER_TAR_BZ2] +source_urls = [('http://sourceforge.net/projects/samtools/files/%(namelower)s/%(version)s', 'download')] + +patches = ['SAMtools-%(version)s_Makefile-ncurses.patch'] + +dependencies = [ + ('ncurses', '6.0'), + ('zlib', '1.2.11'), +] + +moduleclass = 'bio' -- GitLab From 4c1ce458d807fa27d47c7f301c47abd4c02fdf9d Mon Sep 17 00:00:00 2001 From: Robert Qiao Date: Sun, 12 Mar 2017 11:59:46 +1030 Subject: [PATCH 020/608] style --- easybuild/easyconfigs/h/HTSlib/HTSlib-1.2.1-foss-2016b.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.2.1-foss-2016b.eb b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.2.1-foss-2016b.eb index 66babc415c..a58dae978a 100644 --- a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.2.1-foss-2016b.eb +++ b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.2.1-foss-2016b.eb @@ -32,7 +32,7 @@ dependencies = [ ] sanity_check_paths = { - 'files': ["bin/bgzip", "bin/tabix", "lib/libhts.so"], + 'files': ["bin/bgzip", "bin/tabix", "lib/libhts.%s" % SHLIB_EXT], 'dirs': [], } -- GitLab From fa1ffbce7c441662925f5042a6a427907f0f6285 Mon Sep 17 00:00:00 2001 From: Robert Qiao Date: Sun, 12 Mar 2017 13:14:35 +1030 Subject: [PATCH 021/608] Testing --- .../easyconfigs/p/PileOMeth/PileOMeth-0.1.11-foss-2016b.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 edf4ca1f37..1a66bb0381 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 @@ -6,7 +6,7 @@ # Authors:: Robert Qiao , Exe Escobedo # License:: # -# Notes:: +# Notes:: Testing ### easyblock = 'MakeCp' -- GitLab From 22f34275ebd33b371a33756d06860e01290f056e Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Tue, 14 Mar 2017 12:10:16 +1300 Subject: [PATCH 022/608] libreadline dependency for Perl --- .../libreadline/libreadline-6.2-foss-2015a.eb | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 easybuild/easyconfigs/l/libreadline/libreadline-6.2-foss-2015a.eb diff --git a/easybuild/easyconfigs/l/libreadline/libreadline-6.2-foss-2015a.eb b/easybuild/easyconfigs/l/libreadline/libreadline-6.2-foss-2015a.eb new file mode 100644 index 0000000000..45a556ffec --- /dev/null +++ b/easybuild/easyconfigs/l/libreadline/libreadline-6.2-foss-2015a.eb @@ -0,0 +1,27 @@ +easyblock = 'ConfigureMake' + +name = 'libreadline' +version = '6.2' + +homepage = 'http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html' +description = """The GNU Readline library provides a set of functions for use by applications that + allow users to edit command lines as they are typed in. Both Emacs and vi editing modes are available. + The Readline library includes additional functions to maintain a list of previously-entered command lines, + to recall and perhaps reedit those lines, and perform csh-like history expansion on previous commands.""" + +toolchain = {'name': 'foss', 'version': '2015a'} +toolchainopts = {'pic': True} + +sources = ['readline-%(version)s.tar.gz'] +source_urls = ['http://ftp.gnu.org/gnu/readline'] + +dependencies = [('ncurses', '5.9')] + +sanity_check_paths = { + 'files' : ['lib/libreadline.a', 'lib/libhistory.a'] + + ['include/readline/%s' % x for x in ['chardefs.h', 'history.h', 'keymaps.h', 'readline.h', 'rlconf.h', + 'rlstdc.h', 'rltypedefs.h', 'tilde.h']], + 'dirs' : [], +} + +moduleclass = 'lib' -- GitLab From addeb7730bc97daee66649abeea0fa38e18c01e9 Mon Sep 17 00:00:00 2001 From: Robert Qiao Date: Tue, 14 Mar 2017 19:17:30 +1030 Subject: [PATCH 023/608] Revert "Testing" This reverts commit fa1ffbce7c441662925f5042a6a427907f0f6285. --- .../easyconfigs/p/PileOMeth/PileOMeth-0.1.11-foss-2016b.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 1a66bb0381..edf4ca1f37 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 @@ -6,7 +6,7 @@ # Authors:: Robert Qiao , Exe Escobedo # License:: # -# Notes:: Testing +# Notes:: ### easyblock = 'MakeCp' -- GitLab From 1b637c106ee87738d65c9d15d33774d5e618c237 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Wed, 15 Mar 2017 09:46:39 +1300 Subject: [PATCH 024/608] Remove files related to new gimkl-2017a Perl build --- .../easyconfigs/d/DB/DB-6.2.23-gimkl-2017a.eb | 18 - .../p/Perl/Perl-5.24.1-gimkl-2017a.eb | 1194 ----------------- .../s/SAMtools/SAMtools-0.1.19-gimkl-2017a.eb | 21 - 3 files changed, 1233 deletions(-) delete mode 100644 easybuild/easyconfigs/d/DB/DB-6.2.23-gimkl-2017a.eb delete mode 100644 easybuild/easyconfigs/p/Perl/Perl-5.24.1-gimkl-2017a.eb delete mode 100644 easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.19-gimkl-2017a.eb diff --git a/easybuild/easyconfigs/d/DB/DB-6.2.23-gimkl-2017a.eb b/easybuild/easyconfigs/d/DB/DB-6.2.23-gimkl-2017a.eb deleted file mode 100644 index f6a2ef8db6..0000000000 --- a/easybuild/easyconfigs/d/DB/DB-6.2.23-gimkl-2017a.eb +++ /dev/null @@ -1,18 +0,0 @@ -name = 'DB' -version = '6.2.23' - -homepage = 'http://www.oracle.com/technetwork/products/berkeleydb' -description = """Berkeley DB enables the development of custom data management solutions, - without the overhead traditionally associated with such custom projects.""" - -toolchain = {'name': 'gimkl', 'version': '2017a'} - -# download via http://www.oracle.com/technetwork/products/berkeleydb/downloads/, requires registration -sources = [SOURCELOWER_TAR_GZ] - -sanity_check_paths = { - 'files': ["include/db.h"], - 'dirs': [], -} - -moduleclass = 'tools' diff --git a/easybuild/easyconfigs/p/Perl/Perl-5.24.1-gimkl-2017a.eb b/easybuild/easyconfigs/p/Perl/Perl-5.24.1-gimkl-2017a.eb deleted file mode 100644 index d4719d425a..0000000000 --- a/easybuild/easyconfigs/p/Perl/Perl-5.24.1-gimkl-2017a.eb +++ /dev/null @@ -1,1194 +0,0 @@ -name = 'Perl' -version = '5.24.1' -use_perl_threads = False - -homepage = 'http://www.perl.org/' -description = """Larry Wall's Practical Extraction and Report Language""" - -toolchain = {'name': 'gimkl', 'version': '2017a'} -toolchainopts = {'optarch': True, 'pic': True} - -dependencies = [ - ('DB', '6.2.23'), # for DB_File module - ('SQLite', '3.16.2'), # for DBD::SQLite module - ('expat', '2.2.0'), # for XML::Parser I think - ('libxml2', '2.9.4'), # for XML::LibXML -] -# Also zlib / readline via the other dependencies - -builddependencies = [('SAMtools', '0.1.19')] # NOT A LATER VERSION. For Bio::DB::Sam to static link to. - -source_urls = ['http://www.cpan.org/src/5.0'] -sources = [SOURCELOWER_TAR_GZ] - -# We must compile in serial so that Convert::Binary::C is installed -# in a sane manner. -maxparallel = 1 - -#runtest = 'test' # Several modules have extra dependencies for testing - -# Extension versions -acme_damn_version = '0.08' -algorithm_diff_version = '1.1903' -algorithm_munkres_version = '0.08' -aliased_version = '0.34' -anyevent_version = '7.13' -appconfig_version = '1.71' -archive_extract_version = '0.80' -archive_tar_version = '2.24' -archive_zip_version = '1.59' -array_compare_version = '3.0.0' -authen_sasl_version = '2.16' -bioperl_version = '1.007001' -bio_phylo_version = '0.58' -bio_samtools_version = '1.43' -bit_vector_version = '7.4' -boolean_version = '0.46' -bundle_bioperl_version = '2.1.9' -b_lintsubs_version = '0.06' -b_lint_version = '1.20' -capture_tiny_version = '0.46' -carp_version = '1.38' -cgi_version = '4.35' -class_accessor_version = '0.34' -class_data_inheritable_version = '0.08' -class_dbi_version = '3.0.17' -class_inspector_version = '1.31' -class_isa_version = '0.36' -class_load_version = '0.23' -class_load_xs_version = '0.09' -class_singleton_version = '1.5' -class_trigger_version = '0.14' -clone_version = '0.38' -config_general_version = '2.63' -convert_binary_c_version = '0.78' -cpanplus_version = '0.9164' -cwd_guard_version = '0.05' -data_dumper_version = '2.161' -data_optlist_version = '0.110' -data_section_simple_version = '0.07' -data_stag_version = '0.14' -data_types_version = '0.09' -data_uuid_version = '1.221' -datetime_locale_version = '1.14' -datetime_timezone_version = '2.10' -datetime_tiny_version = '1.06' -datetime_version = '1.42' -date_handler_version = '1.2' -dbd_anydata_version = '0.110' -dbd_sqlite_version = '1.54' -dbix_contextualfetch_version = '1.03' -dbix_simple_version = '1.35' -dbi_version = '1.636' -db_file_version = '1.840' -devel_checkcompiler_version = '0.07' -devel_globaldestruction_version = '0.14' -devel_stacktrace_version = '2.02' -digest_hmac_version = '1.03' -digest_sha1_version = '2.13' -dist_checkconflicts_version = '0.11' -email_date_format_version = '1.005' -encode_locale_version = '1.05' -error_version = '0.17024' -eval_closure_version = '0.14' -exception_class_version = '1.42' -expect_pm_version = '1.21' -exporter_declare_version = '0.114' -exporter_tiny_version = '0.044' -extutils_config_version = '0.008' -extutils_helpers_version = '0.026' -extutils_installpaths_version = '0.011' -extutils_makemaker_version = '7.24' -fennec_lite_version = '0.004' -file_checktree_version = '4.42' -file_copy_recursive_version = '0.38' -file_find_rule_perl_version = '1.15' -file_find_rule_version = '0.34' -file_listing_version = '6.04' -file_path_version = '2.12' -file_sharedir_install_version = '0.11' -file_slurp_tiny_version = '0.004' -file_slurp_version = '9999.19' -file_temp_version = '0.2304' -file_which_version = '1.21' -font_ttf_version = '1.06' -forks_version = '0.36' -freezethaw_version = '0.5001' -getopt_long_version = '2.49.1' -git_version = '0.41' -go_db_perl_version = '0.04' -go_perl_version = '0.15' -graph_version = '0.9704' -hash_merge_version = '0.200' -html_form_version = '6.03' -html_parser_version = '3.72' -html_tableextract_version = '2.13' -html_tagset_version = '3.20' -http_cookies_version = '6.01' -http_daemon_version = '6.01' -http_date_version = '6.02' -http_message_version = '6.11' -http_negotiate_version = '6.01' -ima_dbi_version = '0.35' -import_into_version = '1.002005' -inline_c_version = '0.76' -inline_version = '0.80' -io_all_version = '0.86' -io_html_version = '1.001' -io_prompt_version = '0.997004' -io_socket_ssl_version = '2.047' -io_stringy_version = '2.111' -io_string_version = '1.08' -io_tty_version = '1.12' -ipc_run3_version = '0.048' -ipc_run_version = '0.94' -json_version = '2.90' -libxml_perl_version = '0.08' -list_allutils_version = '0.14' -list_moreutils_version = '0.416' -local_lib_version = '2.000019' -logger_simple_version = '2.0' -log_message_simple_version = '0.10' -log_message_version = '0.08' -lwp_mediatypes_version = '6.02' -lwp_version = '6.23' -mailtools_version = '2.18' -math_bezier_version = '0.01' -math_cdf_version = '0.1' -math_round_version = '0.07' -math_vecstat_version = '0.08' -meta_builder_version = '0.003' -mime_lite_version = '3.030' -mime_types_version = '2.13' -mock_quick_version = '1.111' -module_build_tiny_version = '0.039' -module_build_version = '0.4220' -module_build_xsutil_version = '0.16' -module_implementation_version = '0.09' -module_load_conditional_version = '0.68' -module_pluggable_version = '5.2' -module_runtime_version = '0.014' -moose_version = '2.2004' -moo_version = '2.003001' -mouse_version = '2.4.9' -mro_compat_version = '0.12' -net_http_version = '6.13' -net_smtp_ssl_version = '1.04' -number_compare_version = '0.03' -number_compare_version = '0.03' -object_accessor_version = '0.48' -object_insideout_version = '4.04' -package_deprecationmanager_version = '0.17' -package_stash_version = '0.37' -package_stash_xs_version = '0.28' -parallel_forkmanager_version = '1.19' -params_util_version = '1.07' -params_validate_version = '1.26' -parse_recdescent_version = '1.967013' -pathtools_version = '3.62' -perl_unsafe_signals_version = '0.03' -pod_latex_version = '0.61' -pod_plainer_version = '1.04' -pod_pom_version = '2.01' -readonly_version = '2.05' -regexp_common_version = '2016060801' -scalar_list_utils_version = '1.47' -scalar_util_numeric_version = '0.40' -set_array_version = '0.30' -set_intervaltree_version = '0.10' -set_intspan_version = '1.19' -set_scalar_version = '1.29' -shell_version = '0.73' -spreadsheet_parseexcel_version = '0.65' -sql_statement_version = '1.410' -statistics_descriptive_version = '3.0612' -storable_version = '2.51' -strictures_version = '2.000003' -sub_exporter_progressive_version = '0.001013' -sub_exporter_version = '0.987' -sub_install_version = '0.928' -sub_name_version = '0.21' -sub_uplevel_version = '0.2600' -svg_version ='2.64' -switch_version = '2.17' -sys_sigaction_version = '0.23' -template_toolkit_version = '2.26' -term_readkey_version = '2.37' -term_ui_version = '0.46' -test_deep_version = '1.126' -test_differences_version = '0.64' -test_exception_lessclever_version = '0.009' -test_exception_version = '0.43' -test_fatal_version = '0.014' -test_harness_version = '3.36' -test_harness_version = '3.36' -test_leaktrace_version = '0.15' -test_most_version = '0.35' -test_nowarnings_version = '1.04' -test_output_version = '1.03' -test_requires_version = '0.10' -test_simple_version = '1.302078' -test_version_version = '2.05' -test_warnings_version = '0.026' -test_warn_version = '0.32' -text_diff_version = '1.44' -text_glob_version = '0.11' -text_iconv_version = '1.7' -text_soundex_version = '3.05' -tie_ixhash_version = '1.23' -timedate_version = '2.30' -time_piece_mysql_version = '0.06' -time_piece_version = '1.31' -tree_dag_node_version = '1.29' -try_tiny_version = '0.28' -universal_moniker_version = '0.08' -uri_version = '1.71' -version_version = '0.9917' -want_version = '0.29' -www_robotrules_version = '6.02' -xml_dom_version = '1.46' -xml_dom_xpath_version = '0.14' -xml_libxml_version = '2.0128' -xml_namespacesupport_version = '1.11' -xml_parser_version = '2.44' -xml_sax_base_version = '1.08' -xml_sax_version = '0.99' -xml_sax_writer_version = '0.56' -xml_simple_version = '2.22' -xml_twig_version = '3.52' -xml_writer_version = '0.625' -xml_xpath_version = '1.40' -xsloader_version = '0.24' -yaml_version = '1.23' - -exts_list = [ - ('Module::Build', module_build_version, { # std module but recent BioPerl needs a recent version for some reason - 'source_tmpl': 'Module-Build-%s.tar.gz' % module_build_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/L/LE/LEONT/'], - }), - ('ExtUtils::MakeMaker', extutils_makemaker_version, { - 'source_tmpl': 'ExtUtils-MakeMaker-%s.tar.gz' % extutils_makemaker_version, - 'source_urls': ['http://www.cpan.org/modules/by-module/ExtUtils/BINGOS/'], - }), - ('local::lib', local_lib_version, { - 'source_tmpl': 'local-lib-%s.tar.gz' % local_lib_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/H/HA/HAARG/'], - }), - ('IO::String', io_string_version, { - 'source_tmpl': 'IO-String-%s.tar.gz' % io_string_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], - }), - ('Data::Stag', data_stag_version, { - 'source_tmpl': 'Data-Stag-%s.tar.gz' % data_stag_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/C/CM/CMUNGALL/'], - }), - ('DB_File', db_file_version, { - 'source_urls': ['http://www.cpan.org/modules/by-module/DB_File/PMQS/'], - }), - ('DBI', dbi_version, { - 'source_urls': ['http://www.cpan.org/modules/by-module/DBI/TIMB/'], - }), - ('Sub::Uplevel', sub_uplevel_version, { - 'source_tmpl': 'Sub-Uplevel-%s.tar.gz' % sub_uplevel_version, - 'source_urls': ['http://www.cpan.org/modules/by-module/Sub/DAGOLDEN/'], - }), - ('Tree::DAG_Node', tree_dag_node_version, { - 'source_tmpl': 'Tree-DAG_Node-%s.tgz' % tree_dag_node_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RS/RSAVAGE/'], - }), - ('Try::Tiny', try_tiny_version, { - 'source_tmpl': 'Try-Tiny-%s.tar.gz' % try_tiny_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], - }), - ('Devel::StackTrace', devel_stacktrace_version, { - 'source_tmpl': 'Devel-StackTrace-%s.tar.gz' % devel_stacktrace_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/'], - }), - ('Class::Data::Inheritable', class_data_inheritable_version, { - 'source_tmpl': 'Class-Data-Inheritable-%s.tar.gz' % class_data_inheritable_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/T/TM/TMTM/'], - }), - ('Exception::Class', exception_class_version, { - 'source_tmpl': 'Exception-Class-%s.tar.gz' % exception_class_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/'], - }), - ('Test::Fatal', test_fatal_version, { - 'source_tmpl': 'Test-Fatal-%s.tar.gz' % test_fatal_version, - 'source_urls': ['http://www.cpan.org/modules/by-module/Test/RJBS/'], - }), - ('Test::NoWarnings', test_nowarnings_version, { - 'source_tmpl': 'Test-NoWarnings-%s.tar.gz' % test_nowarnings_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/'], - }), - ('Test::Deep', test_deep_version, { - 'source_tmpl': 'Test-Deep-%s.tar.gz' % test_deep_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/'], - }), - ('Algorithm::Diff', algorithm_diff_version, { - 'source_tmpl': 'Algorithm-Diff-%s.tar.gz' % algorithm_diff_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/T/TY/TYEMQ/'], - }), - ('Text::Diff', text_diff_version, { - 'source_tmpl': 'Text-Diff-%s.tar.gz' % text_diff_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/N/NE/NEILB/'], - }), - ('Test::Differences', test_differences_version, { - 'source_tmpl': 'Test-Differences-%s.tar.gz' % test_differences_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DC/DCANTRELL/'], - }), - ('Test::Exception', test_exception_version, { - 'source_tmpl': 'Test-Exception-%s.tar.gz' % test_exception_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/EX/EXODIST/'], - }), - ('Test::Warn', test_warn_version, { - 'source_tmpl': 'Test-Warn-%s.tar.gz' % test_warn_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BI/BIGJ/'], - }), - ('Test::Requires', test_requires_version, { - 'source_tmpl': 'Test-Requires-%s.tar.gz' % test_requires_version, - 'source_urls': ['http://www.cpan.org/modules/by-module/Test/TOKUHIROM/'], - }), - ('Test::Tester', test_simple_version, { - 'source_tmpl': 'Test-Simple-%s.tar.gz' % test_simple_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/EX/EXODIST/'], - }), - ('File::Slurp::Tiny', file_slurp_tiny_version, { - 'source_tmpl': 'File-Slurp-Tiny-%s.tar.gz' % file_slurp_tiny_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/L/LE/LEONT'], - }), - ('Params::Util', params_util_version, { - 'source_tmpl': 'Params-Util-%s.tar.gz' % params_util_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/'], - }), - ('Sub::Install', sub_install_version, { - 'source_tmpl': 'Sub-Install-%s.tar.gz' % sub_install_version, - 'source_urls': ['http://www.cpan.org/modules/by-module/Sub/RJBS/'], - }), - ('Data::OptList', data_optlist_version, { - 'source_tmpl': 'Data-OptList-%s.tar.gz' % data_optlist_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/'], - }), - ('Sub::Exporter', sub_exporter_version, { - 'source_tmpl': 'Sub-Exporter-%s.tar.gz' % sub_exporter_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/'], - }), - ('Capture::Tiny', capture_tiny_version, { - 'source_tmpl': 'Capture-Tiny-%s.tar.gz' % capture_tiny_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/'], - }), - ('Test::Output', test_output_version, { - 'source_tmpl': 'Test-Output-%s.tar.gz' % test_output_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BD/BDFOY/'], - }), - ('Module::Runtime', module_runtime_version, { - 'source_tmpl': 'Module-Runtime-%s.tar.gz' % module_runtime_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/Z/ZE/ZEFRAM/'], - }), - ('Module::Implementation', module_implementation_version, { - 'source_tmpl': 'Module-Implementation-%s.tar.gz' % module_implementation_version, - 'source_urls': ['http://www.cpan.org/modules/by-module/Module/DROLSKY/'], - }), - ('List::MoreUtils', list_moreutils_version, { - 'source_tmpl': 'List-MoreUtils-%s.tar.gz' % list_moreutils_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RE/REHSACK/'], - }), - ('Package::DeprecationManager', package_deprecationmanager_version, { - 'source_tmpl': 'Package-DeprecationManager-%s.tar.gz' % package_deprecationmanager_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/'], - }), - ('Dist::CheckConflicts', dist_checkconflicts_version, { - 'source_tmpl': 'Dist-CheckConflicts-%s.tar.gz' % dist_checkconflicts_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DO/DOY/'], - }), - ('Package::Stash', package_stash_version, { - 'source_tmpl': 'Package-Stash-%s.tar.gz' % package_stash_version, - 'source_urls': ['http://www.cpan.org/modules/by-module/Package/DOY/'], - }), - ('Class::Load', class_load_version, { - 'source_tmpl': 'Class-Load-%s.tar.gz' % class_load_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], - }), - ('TAP::Harness::Env', test_harness_version, { - 'source_tmpl': 'Test-Harness-%s.tar.gz' % test_harness_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/L/LE/LEONT/'], - }), - ('ExtUtils::Helpers', extutils_helpers_version, { - 'source_tmpl': 'ExtUtils-Helpers-%s.tar.gz' % extutils_helpers_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/L/LE/LEONT'], - }), - ('ExtUtils::Config', extutils_config_version, { - 'source_tmpl': 'ExtUtils-Config-%s.tar.gz' % extutils_config_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/L/LE/LEONT'], - }), - ('ExtUtils::InstallPaths', extutils_installpaths_version, { - 'source_tmpl': 'ExtUtils-InstallPaths-%s.tar.gz' % extutils_installpaths_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/L/LE/LEONT'], - }), - ('Module::Build::Tiny', module_build_tiny_version, { - 'source_tmpl': 'Module-Build-Tiny-%s.tar.gz' % module_build_tiny_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/L/LE/LEONT/'], - }), - ('MRO::Compat', mro_compat_version, { - 'source_tmpl': 'MRO-Compat-%s.tar.gz' % mro_compat_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BO/BOBTFISH/'], - }), - ('Sub::Name', sub_name_version, { - 'source_tmpl': 'Sub-Name-%s.tar.gz' % sub_name_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], - }), - ('Eval::Closure', eval_closure_version, { - 'source_tmpl': 'Eval-Closure-%s.tar.gz' % eval_closure_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DO/DOY/'], - }), - ('Sub::Exporter::Progressive', sub_exporter_progressive_version, { - 'source_tmpl': 'Sub-Exporter-Progressive-%s.tar.gz' % sub_exporter_progressive_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/F/FR/FREW/'], - }), - ('Devel::GlobalDestruction', devel_globaldestruction_version, { - 'source_tmpl': 'Devel-GlobalDestruction-%s.tar.gz' % devel_globaldestruction_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/H/HA/HAARG/'], - }), - ('boolean', boolean_version, { - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IN/INGY/'], - }), - ('Tie::IxHash', tie_ixhash_version, { - 'source_tmpl': 'Tie-IxHash-%s.tar.gz' % tie_ixhash_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/C/CH/CHORNY/'], - }), - ('Moose', moose_version, { - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], - }), - ('Package::Stash::XS', package_stash_xs_version, { - 'source_tmpl': 'Package-Stash-XS-%s.tar.gz' % package_stash_xs_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DO/DOY/'], - }), - ('Params::Validate', params_validate_version, { - 'source_tmpl': 'Params-Validate-%s.tar.gz' % params_validate_version, - 'source_urls': ['http://www.cpan.org/modules/by-module/Params/DROLSKY/'], - }), - ('Class::Load::XS', class_load_xs_version, { - 'source_tmpl': 'Class-Load-XS-%s.tar.gz' % class_load_xs_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], - }), - # For uoa00001, Zendesk #9076 - ('Math::CDF', math_cdf_version, { - 'source_tmpl': 'Math-CDF-%s.tar.gz' % math_cdf_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/C/CA/CALLAHAN/'], - }), - ('DateTime::Locale', datetime_locale_version, { - 'source_tmpl': 'DateTime-Locale-%s.tar.gz' % datetime_locale_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/'], - }), - ('Class::Singleton', class_singleton_version, { - 'source_tmpl': 'Class-Singleton-%s.tar.gz' % class_singleton_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SH/SHAY/'], - }), - ('DateTime::TimeZone', datetime_timezone_version, { - 'source_tmpl': 'DateTime-TimeZone-%s.tar.gz' % datetime_timezone_version, - 'source_urls': ['http://www.cpan.org/modules/by-module/DateTime/DROLSKY/'], - }), - ('Test::Warnings', test_warnings_version, { - 'source_tmpl': 'Test-Warnings-%s.tar.gz' % test_warnings_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], - }), - ('Data::Types', data_types_version, { - 'source_tmpl': 'Data-Types-%s.tar.gz' % data_types_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DW/DWHEELER/'], - }), - ('Exporter::Tiny', exporter_tiny_version, { - 'source_tmpl': 'Exporter-Tiny-%s.tar.gz' % exporter_tiny_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/T/TO/TOBYINK/'], - }), - ('List::AllUtils', list_allutils_version, { - 'source_tmpl': 'List-AllUtils-%s.tar.gz' % list_allutils_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/'], - }), - ('DateTime', datetime_version, { - 'source_urls': ['http://www.cpan.org/modules/by-module/DateTime/DROLSKY/'], - }), - ('DateTime::Tiny', datetime_tiny_version, { - 'source_tmpl': 'DateTime-Tiny-%s.tar.gz' % datetime_tiny_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/'], - }), - ('File::Slurp', file_slurp_version, { - 'source_tmpl': 'File-Slurp-%s.tar.gz' % file_slurp_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/U/UR/URI/'], - }), - ('HTTP::Date', http_date_version, { - 'source_tmpl': 'HTTP-Date-%s.tar.gz' % http_date_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], - }), - ('IO::HTML', io_html_version, { - 'source_tmpl': 'IO-HTML-%s.tar.gz' % io_html_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/C/CJ/CJM/'], - }), - ('LWP::MediaTypes', lwp_mediatypes_version, { - 'source_tmpl': 'LWP-MediaTypes-%s.tar.gz' % lwp_mediatypes_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], - }), - ('URI', uri_version, { - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], - }), - ('Encode::Locale', encode_locale_version, { - 'source_tmpl': 'Encode-Locale-%s.tar.gz' % encode_locale_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], - }), - ('HTTP::Request', http_message_version, { - 'source_tmpl': 'HTTP-Message-%s.tar.gz' % http_message_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], - }), - ('HTML::Tagset', html_tagset_version, { - 'source_tmpl': 'HTML-Tagset-%s.tar.gz' % html_tagset_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/P/PE/PETDANCE/'], - }), - ('HTML::Entities', html_parser_version, { - 'source_tmpl': 'HTML-Parser-%s.tar.gz' % html_parser_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], - }), - ('File::Listing', file_listing_version, { - 'source_tmpl': 'File-Listing-%s.tar.gz' % file_listing_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], - }), - ('AnyEvent', anyevent_version, { - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/'], - }), - ('Devel::CheckCompiler', devel_checkcompiler_version, { - 'source_tmpl': 'Devel-CheckCompiler-%s.tar.gz' % devel_checkcompiler_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SY/SYOHEX'], - }), - ('File::Copy::Recursive', file_copy_recursive_version, { - 'source_tmpl': 'File-Copy-Recursive-%s.tar.gz' % file_copy_recursive_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DM/DMUEY/'], - }), - ('Cwd::Guard', cwd_guard_version, { - 'source_tmpl': 'Cwd-Guard-%s.tar.gz' % cwd_guard_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/K/KA/KAZEBURO'], - }), - ('Module::Build::XSUtil', module_build_xsutil_version, { - 'source_tmpl': 'Module-Build-XSUtil-%s.tar.gz' % module_build_xsutil_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/H/HI/HIDEAKIO/'], - }), - ('LWP', lwp_version, { - 'source_tmpl': 'libwww-perl-%s.tar.gz' % lwp_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/O/OA/OALDERS/'], - }), - ('Fennec::Lite', fennec_lite_version, { - 'source_tmpl': 'Fennec-Lite-%s.tar.gz' % fennec_lite_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/EX/EXODIST/'], - }), - ('aliased', aliased_version, { - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], - }), - ('Meta::Builder', meta_builder_version, { - 'source_tmpl': 'Meta-Builder-%s.tar.gz' % meta_builder_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/EX/EXODIST/'], - }), - ('Exporter::Declare', exporter_declare_version, { - 'source_tmpl': 'Exporter-Declare-%s.tar.gz' % exporter_declare_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/EX/EXODIST/'], - }), - ('Mock::Quick', mock_quick_version, { - 'source_tmpl': 'Mock-Quick-%s.tar.gz' % mock_quick_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/EX/EXODIST/'], - }), - ('Test::Exception::LessClever', test_exception_lessclever_version, { - 'source_tmpl': 'Test-Exception-LessClever-%s.tar.gz' % test_exception_lessclever_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], - }), - ('Test::LeakTrace', test_leaktrace_version, { - 'source_tmpl': 'Test-LeakTrace-%s.tar.gz' % test_leaktrace_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GF/GFUJI/'], - }), - ('Mouse', mouse_version, { - 'source_tmpl': 'Mouse-v%s.tar.gz' % mouse_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SY/SYOHEX/'], - }), - ('XML::NamespaceSupport', xml_namespacesupport_version, { - 'source_tmpl': 'XML-NamespaceSupport-%s.tar.gz' % xml_namespacesupport_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/P/PE/PERIGRIN/'], - }), - ('XML::SAX::Base', xml_sax_base_version, { - 'source_tmpl': 'XML-SAX-Base-%s.tar.gz' % xml_sax_base_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GR/GRANTM/'], - }), - ('XML::SAX', xml_sax_version, { - 'source_tmpl': 'XML-SAX-%s.tar.gz' % xml_sax_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GR/GRANTM/'], - }), - ('XML::LibXML', xml_libxml_version, { - 'source_tmpl': 'XML-LibXML-%s.tar.gz' % xml_libxml_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SH/SHLOMIF/'], - }), - ('Clone', clone_version, { - 'source_tmpl': 'Clone-%s.tar.gz' % clone_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GARU'], - }), - ('Parallel::ForkManager', parallel_forkmanager_version, { - 'source_tmpl': 'Parallel-ForkManager-%s.tar.gz' % parallel_forkmanager_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/Y/YA/YANICK/'], - }), - - ('Config::General', config_general_version, { - 'source_tmpl': 'Config-General-%s.tar.gz' % config_general_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/T/TL/TLINDEN/'], - }), - ('Test::Simple', test_simple_version, { - 'source_tmpl': 'Test-Simple-%s.tar.gz' % test_simple_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/EX/EXODIST/'], - }), - - # For Genemark - ('YAML', yaml_version, { - 'source_tmpl': 'YAML-%s.tar.gz' % yaml_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IN/INGY/'], - }), - ('Hash::Merge', hash_merge_version, { - 'source_tmpl': 'Hash-Merge-%s.tar.gz' % hash_merge_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RE/REHSACK/'], - }), - ('Data::Dumper', data_dumper_version, { - 'source_tmpl': 'Data-Dumper-%s.tar.gz' % data_dumper_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SM/SMUELLER/'], - }), - ('Object::InsideOut', object_insideout_version, { - 'source_tmpl': 'Object-InsideOut-%s.tar.gz' % object_insideout_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JD/JDHEDDEN/'], - }), - ('Logger::Simple', logger_simple_version, { - 'source_tmpl': 'Logger-Simple-%s.tar.gz' % logger_simple_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/T/TS/TSTANLEY/'], - }), - ('File::Path', file_path_version, { - 'source_tmpl': 'File-Path-%s.tar.gz' % file_path_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RI/RICHE/'], - }), - ('File::Spec', pathtools_version, { - 'source_tmpl': 'PathTools-%s.tar.gz' % pathtools_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/'], - }), - ('File::Temp', file_temp_version, { - 'source_tmpl': 'File-Temp-%s.tar.gz' % file_temp_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/'], - }), - ('XSLoader', xsloader_version, { - 'source_tmpl': 'XSLoader-%s.tar.gz' % xsloader_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SA/SAPER/'], - }), - ('Carp', carp_version, { - 'source_tmpl': 'Carp-%s.tar.gz' % carp_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/'], - }), - ('Storable', storable_version, { - 'source_tmpl': 'Storable-%s.tar.gz' % storable_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/A/AM/AMS/'], - }), - - ('Font::TTF', font_ttf_version, { - 'source_tmpl': 'Font-TTF-%s.tar.gz' % font_ttf_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BH/BHALLISSY'], - }), - ('IO::Tty', io_tty_version, { - 'source_tmpl': 'IO-Tty-%s.tar.gz' % io_tty_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/T/TO/TODDR/'], - }), - ('Math::Bezier', math_bezier_version, { - 'source_tmpl': 'Math-Bezier-%s.tar.gz' % math_bezier_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/A/AB/ABW'], - }), - ('IPC::Run', ipc_run_version, { - 'source_tmpl': 'IPC-Run-%s.tar.gz' % ipc_run_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/T/TO/TODDR/'], - }), - ('Math::Round', math_round_version, { - 'source_tmpl': 'Math-Round-%s.tar.gz' % math_round_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GR/GROMMEL'], - }), - ('B::LintSubs', b_lintsubs_version, { - 'source_tmpl': 'B-LintSubs-%s.tar.gz' % b_lintsubs_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/P/PE/PEVANS'], - }), - ('Math::VecStat', math_vecstat_version, { - 'source_tmpl': 'Math-VecStat-%s.tar.gz' % math_vecstat_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/A/AS/ASPINELLI'], - }), - ('Test::Most', test_most_version, { - 'source_tmpl': 'Test-Most-%s.tar.gz' % test_most_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/O/OV/OVID/'], - }), - ('Readonly', readonly_version, { - 'source_tmpl': 'Readonly-%s.tar.gz' % readonly_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SA/SANKO/'], - }), - ('Regexp::Common', regexp_common_version, { - 'source_tmpl': 'Regexp-Common-%s.tar.gz' % regexp_common_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/A/AB/ABIGAIL'], - }), - ('Want', want_version, { - 'source_tmpl': 'Want-%s.tar.gz' % want_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RO/ROBIN/'], - }), - ('DBD::SQLite', dbd_sqlite_version, { - 'source_tmpl': 'DBD-SQLite-%s.tar.gz' % dbd_sqlite_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IS/ISHIGAKI/'], - }), - ('Set::IntSpan', set_intspan_version, { - 'source_tmpl': 'Set-IntSpan-%s.tar.gz' % set_intspan_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SW/SWMCD'], - }), - ('forks', forks_version, { - 'source_tmpl': 'forks-%s.tar.gz' % forks_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RY/RYBSKEJ/'], - }), - ('File::Which', file_which_version, { - 'source_tmpl': 'File-Which-%s.tar.gz' % file_which_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/P/PL/PLICEASE/'], - }), - ('Perl::Unsafe::Signals', perl_unsafe_signals_version, { - 'source_tmpl': 'Perl-Unsafe-Signals-%s.tar.gz' % perl_unsafe_signals_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RG/RGARCIA/'], - }), - ('Bit::Vector', bit_vector_version, { - 'source_tmpl': 'Bit-Vector-%s.tar.gz' % bit_vector_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/ST/STBEY/'], - }), - ('Parse::RecDescent', parse_recdescent_version, { - 'source_tmpl': 'Parse-RecDescent-%s.tar.gz' % parse_recdescent_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JT/JTBRAUN/'], - }), - ('Inline', inline_version, { - 'source_tmpl': 'Inline-%s.tar.gz' % inline_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IN/INGY/'], - }), - ('File::ShareDir::Install', file_sharedir_install_version, { - 'source_tmpl': 'File-ShareDir-Install-%s.tar.gz' % file_sharedir_install_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], - }), - ('Inline::C', inline_c_version, { - 'source_tmpl': 'Inline-C-%s.tar.gz' % inline_c_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IN/INGY/'], - }), - ('IO::All', io_all_version, { - 'source_tmpl': 'IO-All-%s.tar.gz' % io_all_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IN/INGY/'], - }), - ('IO::Prompt', io_prompt_version, { - 'source_tmpl': 'IO-Prompt-%s.tar.gz' % io_prompt_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DC/DCONWAY/'], - }), - ('Getopt::Long', getopt_long_version, { - 'source_tmpl': 'Getopt-Long-%s.tar.gz' % getopt_long_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JV/JV/'], - }), - ('AppConfig', appconfig_version, { - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/N/NE/NEILB/'], - }), - ('Archive::Extract', archive_extract_version, { - 'source_tmpl': 'Archive-Extract-%s.tar.gz' % archive_extract_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/'], - }), - ('Archive::Tar', archive_tar_version, { - 'source_tmpl': 'Archive-Tar-%s.tar.gz' % archive_tar_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/'], - }), - ('Archive::Zip', archive_zip_version, { - 'source_tmpl': 'Archive-Zip-%s.tar.gz' % archive_zip_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/P/PH/PHRED/'], - }), - ('Authen::SASL', authen_sasl_version, { - 'source_tmpl': 'Authen-SASL-%s.tar.gz' % authen_sasl_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GB/GBARR/'], - }), - ('B::Lint', b_lint_version, { - 'source_tmpl': 'B-Lint-%s.tar.gz' % b_lint_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/'], - }), - ('Class::Accessor', class_accessor_version, { - 'source_tmpl': 'Class-Accessor-%s.tar.gz' % class_accessor_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/K/KA/KASEI/'], - }), - ('Class::DBI', class_dbi_version, { - 'source_tmpl': 'Class-DBI-v%s.tar.gz' % class_dbi_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/T/TM/TMTM/'], - }), - ('Class::Inspector', class_inspector_version, { - 'source_tmpl': 'Class-Inspector-%s.tar.gz' % class_inspector_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/P/PL/PLICEASE/'], - }), - ('Class::ISA', class_isa_version, { - 'source_tmpl': 'Class-ISA-%s.tar.gz' % class_isa_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SM/SMUELLER/'], - }), - ('Class::Trigger', class_trigger_version, { - 'source_tmpl': 'Class-Trigger-%s.tar.gz' % class_trigger_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MI/MIYAGAWA/'], - }), - ('CPANPLUS', cpanplus_version, { - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/'], - }), - ('Data::Grove', libxml_perl_version, { - 'source_tmpl': 'libxml-perl-%s.tar.gz' % libxml_perl_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/K/KM/KMACLEOD/'], - }), - ('Data::UUID', data_uuid_version, { - 'source_tmpl': 'Data-UUID-%s.tar.gz' % data_uuid_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/'], - }), - ('Date::Language', timedate_version, { - 'source_tmpl': 'TimeDate-%s.tar.gz' % timedate_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GB/GBARR/'], - }), - ('Date::Handler', date_handler_version, { - 'source_tmpl': 'Date-Handler-%s.tar.gz' % date_handler_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BB/BBEAUSEJ/'], - }), - ('SQL::Statement', sql_statement_version, { - 'source_tmpl': 'SQL-Statement-%s.tar.gz' % sql_statement_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RE/REHSACK/'], - }), - ('Module::Pluggable', module_pluggable_version, { - 'source_tmpl': 'Module-Pluggable-%s.tar.gz' % module_pluggable_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SI/SIMONW/'], - }), - ('Digest::HMAC', digest_hmac_version, { - 'source_tmpl': 'Digest-HMAC-%s.tar.gz' % digest_hmac_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], - }), - ('Digest::SHA1', digest_sha1_version, { - 'source_tmpl': 'Digest-SHA1-%s.tar.gz' % digest_sha1_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], - }), - ('Email::Date::Format', email_date_format_version, { - 'source_tmpl': 'Email-Date-Format-%s.tar.gz' % email_date_format_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/'], - }), - ('Error', error_version, { - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SH/SHLOMIF/'], - }), - ('Expect', expect_pm_version, { - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RG/RGIERSIG/'], - }), - ('File::CheckTree', file_checktree_version, { - 'source_tmpl': 'File-CheckTree-%s.tar.gz' % file_checktree_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/'], - }), - ('FreezeThaw', freezethaw_version, { - 'source_tmpl': 'FreezeThaw-%s.tar.gz' % freezethaw_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IL/ILYAZ/modules/'], - }), - ('Git', git_version, { - 'source_tmpl': 'Git-%s.tar.gz' % git_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MS/MSOUTH/'], - }), - ('GO::Utils', go_perl_version, { - 'source_tmpl': 'go-perl-%s.tar.gz' % go_perl_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/C/CM/CMUNGALL/'], - }), - ('GO', go_db_perl_version, { - 'source_tmpl': 'go-db-perl-%s.tar.gz' % go_db_perl_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SJ/SJCARBON/'], - }), - - ('HTML::Form', html_form_version, { - 'source_tmpl': 'HTML-Form-%s.tar.gz' % html_form_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], - }), - ('HTTP::Cookies', http_cookies_version, { - 'source_tmpl': 'HTTP-Cookies-%s.tar.gz' % http_cookies_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], - }), - ('HTTP::Daemon', http_daemon_version, { - 'source_tmpl': 'HTTP-Daemon-%s.tar.gz' % http_daemon_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], - }), - ('HTTP::Negotiate', http_negotiate_version, { - 'source_tmpl': 'HTTP-Negotiate-%s.tar.gz' % http_negotiate_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], - }), - ('IO::Stringy', io_stringy_version, { - 'source_tmpl': 'IO-stringy-%s.tar.gz' % io_stringy_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DS/DSKOLL/'], - }), - ('IO::Socket::SSL', io_socket_ssl_version, { - 'source_tmpl': 'IO-Socket-SSL-%s.tar.gz' % io_socket_ssl_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SU/SULLR/'], - }), - ('JSON', json_version, { - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MA/MAKAMAKA/'], - }), - ('Log::Message', log_message_version, { - 'source_tmpl': 'Log-Message-%s.tar.gz' % log_message_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/'], - }), - ('Log::Message::Simple', log_message_simple_version, { - 'source_tmpl': 'Log-Message-Simple-%s.tar.gz' % log_message_simple_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/'], - }), - ('Mail::Util', mailtools_version, { - 'source_tmpl': 'MailTools-%s.tar.gz' % mailtools_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MA/MARKOV/'], - }), - ('MIME::Types', mime_types_version, { - 'source_tmpl': 'MIME-Types-%s.tar.gz' % mime_types_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MA/MARKOV/'], - }), - ('MIME::Lite', mime_lite_version, { - 'source_tmpl': 'MIME-Lite-%s.tar.gz' % mime_lite_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/'], - }), - ('Net::HTTP', net_http_version, { - 'source_tmpl': 'Net-HTTP-%s.tar.gz' % net_http_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/O/OA/OALDERS/'], - }), - ('Net::SMTP::SSL', net_smtp_ssl_version, { - 'source_tmpl': 'Net-SMTP-SSL-%s.tar.gz' % net_smtp_ssl_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/'], - }), - ('Object::Accessor', object_accessor_version, { - 'source_tmpl': 'Object-Accessor-%s.tar.gz' % object_accessor_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/'], - }), - ('Pod::LaTeX', pod_latex_version, { - 'source_tmpl': 'Pod-LaTeX-%s.tar.gz' % pod_latex_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/T/TJ/TJENNESS/'], - }), - ('Pod::Plainer', pod_plainer_version, { - 'source_tmpl': 'Pod-Plainer-%s.tar.gz' % pod_plainer_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RM/RMBARKER/'], - }), - ('Pod::POM', pod_pom_version, { - 'source_tmpl': 'Pod-POM-%s.tar.gz' % pod_pom_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/N/NE/NEILB/'], - }), - ('Shell', shell_version, { - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/F/FE/FERREIRA/'], - }), - ('Statistics::Descriptive', statistics_descriptive_version, { - 'source_tmpl': 'Statistics-Descriptive-%s.tar.gz' % statistics_descriptive_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SH/SHLOMIF/'], - }), - ('Switch', switch_version, { - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/C/CH/CHORNY/'], - }), - ('Template', template_toolkit_version, { - 'source_tmpl': 'Template-Toolkit-%s.tar.gz' % template_toolkit_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/A/AB/ABW/'], - }), - ('Term::UI', term_ui_version, { - 'source_tmpl': 'Term-UI-%s.tar.gz' % term_ui_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/'], - }), - ('Text::Iconv', text_iconv_version, { - 'source_tmpl': 'Text-Iconv-%s.tar.gz' % text_iconv_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MP/MPIOTR/'], - }), - ('Text::Soundex', text_soundex_version, { - 'source_tmpl': 'Text-Soundex-%s.tar.gz' % text_soundex_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/'], - }), - ('Time::Piece', time_piece_version, { - 'source_tmpl': 'Time-Piece-%s.tar.gz' % time_piece_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ES/ESAYM/'], - }), - ('Time::Piece::MySQL', time_piece_mysql_version, { - 'source_tmpl': 'Time-Piece-MySQL-%s.tar.gz' % time_piece_mysql_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/K/KA/KASEI/'], - }), - ('UNIVERSAL::moniker', universal_moniker_version, { - 'source_tmpl': 'UNIVERSAL-moniker-%s.tar.gz' % universal_moniker_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/K/KA/KASEI/'], - }), - ('version', version_version, { - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JP/JPEACOCK/'], - }), - ('WWW::RobotRules', www_robotrules_version, { - 'source_tmpl': 'WWW-RobotRules-%s.tar.gz' % www_robotrules_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], - }), - ('XML::SAX::Writer', xml_sax_writer_version, { - 'source_tmpl': 'XML-SAX-Writer-%s.tar.gz' % xml_sax_writer_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/P/PE/PERIGRIN/'], - }), - ('XML::Simple', xml_simple_version, { - 'source_tmpl': 'XML-Simple-%s.tar.gz' % xml_simple_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GR/GRANTM/'], - }), - ('XML::XPath', xml_xpath_version, { - 'source_tmpl': 'XML-XPath-%s.tar.gz' % xml_xpath_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MA/MANWAR/'], - }), - ('DBD::AnyData', dbd_anydata_version, { - 'source_tmpl': 'DBD-AnyData-%s.tar.gz' % dbd_anydata_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RE/REHSACK/'], - }), - ('Ima::DBI', ima_dbi_version, { - 'source_tmpl': 'Ima-DBI-%s.tar.gz' % ima_dbi_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/P/PE/PERRIN/'], - }), - ('DBIx::ContextualFetch', dbix_contextualfetch_version, { - 'source_tmpl': 'DBIx-ContextualFetch-%s.tar.gz' % dbix_contextualfetch_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/T/TM/TMTM/'], - }), - ('DBIx::Simple', dbix_simple_version, { - 'source_tmpl': 'DBIx-Simple-%s.tar.gz' % dbix_simple_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JU/JUERD/'], - }), - ('Term::ReadKey', term_readkey_version, { - 'source_tmpl': 'TermReadKey-%s.tar.gz' % term_readkey_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JS/JSTOWE/'], -# 'patches': ['TermReadKey-2.32.patch'], - }), - ('Moo', moo_version, { - 'source_tmpl': 'Moo-%s.tar.gz' % moo_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/H/HA/HAARG/'], - }), - ('strictures', strictures_version, { - 'source_tmpl': 'strictures-%s.tar.gz' % strictures_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/H/HA/HAARG/'], - }), - ('File::Find::Rule::Perl', file_find_rule_perl_version, { - 'source_tmpl': 'File-Find-Rule-Perl-%s.tar.gz' % file_find_rule_perl_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], - }), - ('Test::Version', test_version_version, { - 'source_tmpl': 'Test-Version-%s.tar.gz' % test_version_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/P/PL/PLICEASE/'], - }), - ('Test::Harness', test_harness_version, { - 'source_tmpl': 'Test-Harness-%s.tar.gz' % test_harness_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/L/LE/LEONT/'], - }), - ('Import::Into', import_into_version, { - 'source_tmpl': 'Import-Into-%s.tar.gz' % import_into_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/H/HA/HAARG/'], - }), - ('File::Find::Rule', file_find_rule_version, { - 'source_tmpl': 'File-Find-Rule-%s.tar.gz' % file_find_rule_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RC/RCLAMP/'], - }), - ('Data::Section::Simple', data_section_simple_version, { - 'source_tmpl': 'Data-Section-Simple-%s.tar.gz' % data_section_simple_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MI/MIYAGAWA/'], - }), - ('Text::Glob', text_glob_version, { - 'source_tmpl': 'Text-Glob-%s.tar.gz' % text_glob_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RC/RCLAMP/'], - }), - ('Number::Compare', number_compare_version, { - 'source_tmpl': 'Number-Compare-%s.tar.gz' % number_compare_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RC/RCLAMP/'], - }), - ('IPC::Run3', ipc_run3_version, { - 'source_tmpl': 'IPC-Run3-%s.tar.gz' % ipc_run3_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/'], - }), - ('Set::Array', set_array_version, { - 'source_tmpl': 'Set-Array-%s.tgz' % set_array_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RS/RSAVAGE/'], - }), - ('Bundle::BioPerl', bundle_bioperl_version, { - 'source_tmpl': 'Bundle-BioPerl-%s.tar.gz' % bundle_bioperl_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/C/CJ/CJFIELDS/'], - }), - ('Algorithm::Munkres', algorithm_munkres_version, { - 'source_tmpl': 'Algorithm-Munkres-%s.tar.gz' % algorithm_munkres_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/T/TP/TPEDERSE/'], - }), -# Lots of deps: Types::Standard etc. -# ('Array::Compare', array_compare_version, { -# 'source_tmpl': 'Array-Compare-v%s.tar.gz' % array_compare_version, -# 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DA/DAVECROSS/'], -# }), - ('Graph', graph_version, { - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JH/JHI/'], - }), - ('Set::Scalar', set_scalar_version, { - 'source_tmpl': 'Set-Scalar-%s.tar.gz' % set_scalar_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DA/DAVIDO/'], - }), - ('CGI', cgi_version, { - 'source_tmpl': 'CGI-%s.tar.gz' % cgi_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/L/LE/LEEJO/'], - }), - ('Bio::Phylo', bio_phylo_version, { - 'source_tmpl': 'Bio-Phylo-%s.tar.gz' % bio_phylo_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RV/RVOSA/'], - }), - ('SVG', svg_version, { - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SZ/SZABGAB/'], - }), - ('XML::DOM', xml_dom_version, { - 'source_tmpl': 'XML-DOM-%s.tar.gz' % xml_dom_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/T/TJ/TJMATHER/'], - }), - ('XML::DOM::XPath', xml_dom_xpath_version, { - 'source_tmpl': 'XML-DOM-XPath-%s.tar.gz' % xml_dom_xpath_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MI/MIROD/'], - }), - ('XML::Parser::PerlSAX', libxml_perl_version, { - 'source_tmpl': 'libxml-perl-%s.tar.gz' % libxml_perl_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/K/KM/KMACLEOD/'], - }), - ('XML::Parser', xml_parser_version, { - 'source_tmpl': 'XML-Parser-%s.tar.gz' % xml_parser_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/T/TO/TODDR/'], - }), - ('XML::Twig', xml_twig_version, { - 'source_tmpl': 'XML-Twig-%s.tar.gz' % xml_twig_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MI/MIROD/'], - }), - ('XML::Writer', xml_writer_version, { - 'source_tmpl': 'XML-Writer-%s.tar.gz' % xml_writer_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JO/JOSEPHW/'], - }), - ('Spreadsheet::ParseExcel', spreadsheet_parseexcel_version, { - 'source_tmpl': 'Spreadsheet-ParseExcel-%s.tar.gz' % spreadsheet_parseexcel_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DO/DOUGW/'], - }), - ('Convert::Binary::C', convert_binary_c_version, { - 'source_tmpl': 'Convert-Binary-C-%s.tar.gz' % convert_binary_c_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MH/MHX/'], - }), - ('Sys::SigAction.pm', sys_sigaction_version, { - 'source_tmpl': 'Sys-SigAction-%s.tar.gz' % sys_sigaction_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/L/LB/LBAXTER/'], - }), - ('Acme::Damn', acme_damn_version, { - 'source_tmpl': 'Acme-Damn-%s.tar.gz' % acme_damn_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IB/IBB/'], - }), - ('Set::IntervalTree', set_intervaltree_version, { - 'source_tmpl': 'Set-IntervalTree-%s.tar.gz' % set_intervaltree_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BE/BENBOOTH/'], - }), - ('HTML::TableExtract', html_tableextract_version, { - 'source_tmpl': 'HTML-TableExtract-%s.tar.gz' % html_tableextract_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MS/MSISK/'], - }), - ('Bio::Perl', bioperl_version, { - 'source_tmpl': 'BioPerl-%s.tar.gz' % bioperl_version, - 'source_urls': ['http://www.cpan.org/modules/by-module/Bio/CJFIELDS/'], - }), - ('Bio::DB::Sam', bio_samtools_version, { - 'source_tmpl': 'Bio-SamTools-%s.tar.gz' % bio_samtools_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/L/LD/LDS/'], - 'patches': ['Perl_SamTools_include.patch'], - }), - ('File::Spec::Functions', pathtools_version, { - 'source_tmpl': 'PathTools-%s.tar.gz' % pathtools_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/'], - }), - ('List::Util', scalar_list_utils_version, { - 'source_tmpl': 'Scalar-List-Utils-%s.tar.gz' % scalar_list_utils_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/P/PE/PEVANS/'], - }), - ('Module::Load::Conditional', module_load_conditional_version, { - 'source_tmpl': 'Module-Load-Conditional-%s.tar.gz' % module_load_conditional_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/'], - }), - ('Scalar::Util::Numeric', scalar_util_numeric_version, { - 'source_tmpl': 'Scalar-Util-Numeric-%s.tar.gz' % scalar_util_numeric_version, - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/C/CH/CHOCOLATE/'], - }), -] - -moduleclass = 'lang' diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.19-gimkl-2017a.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.19-gimkl-2017a.eb deleted file mode 100644 index 877294f204..0000000000 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.19-gimkl-2017a.eb +++ /dev/null @@ -1,21 +0,0 @@ -name = 'SAMtools' -version = '0.1.19' - -homepage = 'http://www.htslib.org/' -description = """SAM Tools provide various utilities for manipulating alignments in the SAM format, - including sorting, merging, indexing and generating alignments in a per-position format.""" - -toolchain = {'name': 'gimkl', 'version': '2017a'} -toolchainopts = {'optarch': True, 'pic': True} - -sources = [SOURCELOWER_TAR_BZ2] -source_urls = [('http://sourceforge.net/projects/samtools/files/%(namelower)s/%(version)s', 'download')] - -patches = ['SAMtools-%(version)s_Makefile-ncurses.patch'] - -dependencies = [ - ('ncurses', '6.0'), - ('zlib', '1.2.11'), -] - -moduleclass = 'bio' -- GitLab From fd9d12a31ff48581a75fe834c0c6bff21e99f62b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Krup=C4=8D=C3=ADk?= Date: Wed, 15 Mar 2017 15:14:09 +0100 Subject: [PATCH 025/608] {tools}Singularity-2.2.1-GCC-6.3.0 added --- .../Singularity-2.2.1-GCC-6.3.0-2.27.eb | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 easybuild/easyconfigs/s/Singularity/Singularity-2.2.1-GCC-6.3.0-2.27.eb diff --git a/easybuild/easyconfigs/s/Singularity/Singularity-2.2.1-GCC-6.3.0-2.27.eb b/easybuild/easyconfigs/s/Singularity/Singularity-2.2.1-GCC-6.3.0-2.27.eb new file mode 100644 index 0000000000..e1e43de48b --- /dev/null +++ b/easybuild/easyconfigs/s/Singularity/Singularity-2.2.1-GCC-6.3.0-2.27.eb @@ -0,0 +1,23 @@ +easyblock = 'ConfigureMake' + +name = 'Singularity' +version = '2.2.1' + +homepage = 'http://gmkurtzer.github.io/singularity' +description = """Singularity is a portable application stack packaging and runtime utility.""" + +toolchain = {'name': 'GCC', 'version': '6.3.0-2.27'} + +source_urls = ['https://github.com/gmkurtzer/singularity/archive/'] +sources = ['%(version)s.tar.gz'] + +builddependencies = [('Autotools', '20150215')] + +preconfigopts = './autogen.sh && ' + +sanity_check_paths = { + 'files': ['bin/run-singularity', 'bin/singularity', 'etc/singularity/singularity.conf', 'libexec/singularity/sexec-suid'], + 'dirs': ['etc', 'libexec/singularity'], +} + +moduleclass = 'tools' -- GitLab From d388e8264a2f10668639379434435e81beb41709 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Krup=C4=8D=C3=ADk?= Date: Wed, 15 Mar 2017 15:20:01 +0100 Subject: [PATCH 026/608] {tools}Singularity-2.2.1-GCC-6.3.0 added comment `next steps after instalations` --- .../s/Singularity/Singularity-2.2.1-GCC-6.3.0-2.27.eb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/easybuild/easyconfigs/s/Singularity/Singularity-2.2.1-GCC-6.3.0-2.27.eb b/easybuild/easyconfigs/s/Singularity/Singularity-2.2.1-GCC-6.3.0-2.27.eb index e1e43de48b..8c36b33253 100644 --- a/easybuild/easyconfigs/s/Singularity/Singularity-2.2.1-GCC-6.3.0-2.27.eb +++ b/easybuild/easyconfigs/s/Singularity/Singularity-2.2.1-GCC-6.3.0-2.27.eb @@ -20,4 +20,10 @@ sanity_check_paths = { 'dirs': ['etc', 'libexec/singularity'], } +# next steps after instalations +# INSTALATION_PATH=your_instalation_path +# chown root:root $INSTALATION_PATH/Singularity/*/etc/singularity/singularity.conf +# chown root:root $INSTALATION_PATH/Singularity/*/libexec/singularity/sexec-suid +# chmod +s $INSTALATION_PATH/Singularity/*/libexec/singularity/sexec-suid + moduleclass = 'tools' -- GitLab From 4849064e9a0ad00a90bdce3cfaa039ef0627ced7 Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 7 Apr 2017 19:05:15 +0930 Subject: [PATCH 027/608] picard updated --- .../p/picard/picard-2.2.4-Java-1.8.0_71.eb | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 easybuild/easyconfigs/p/picard/picard-2.2.4-Java-1.8.0_71.eb diff --git a/easybuild/easyconfigs/p/picard/picard-2.2.4-Java-1.8.0_71.eb b/easybuild/easyconfigs/p/picard/picard-2.2.4-Java-1.8.0_71.eb new file mode 100644 index 0000000000..9208d35f20 --- /dev/null +++ b/easybuild/easyconfigs/p/picard/picard-2.2.4-Java-1.8.0_71.eb @@ -0,0 +1,36 @@ +## +# 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:: +# +# Notes:: +## + + +name = 'picard' +version = '2.2.4' + +homepage = 'http://sourceforge.net/projects/picard' +description = """A set of tools (in Java) for working with next generation sequencing data in the BAM format.""" + +toolchain = {'name': 'dummy', 'version': 'dummy'} + +source_urls = ['https://github.com/broadinstitute/picard/releases/download/%(version)s'] +sources = ['%(name)s-tools-%(version)s.zip'] + +java = 'Java' +javaver = '1.8.0_71' +versionsuffix = '-%s-%s' % (java, javaver) +dependencies = [(java, javaver)] + +sanity_check_paths = { + 'files': ['picard.jar'], + 'dirs': [], +} + +modloadmsg = "To execute picard run: java -jar $EBROOTPICARD/%(name)s.jar" + +moduleclass = 'bio' -- GitLab From 56461268690ba56036c3a01df34157f3a2ced24e Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 7 Apr 2017 22:40:34 +0930 Subject: [PATCH 028/608] Java version changed --- easybuild/easyconfigs/p/picard/picard-2.2.4-Java-1.8.0_71.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/p/picard/picard-2.2.4-Java-1.8.0_71.eb b/easybuild/easyconfigs/p/picard/picard-2.2.4-Java-1.8.0_71.eb index 9208d35f20..bc5e0d5779 100644 --- a/easybuild/easyconfigs/p/picard/picard-2.2.4-Java-1.8.0_71.eb +++ b/easybuild/easyconfigs/p/picard/picard-2.2.4-Java-1.8.0_71.eb @@ -22,7 +22,7 @@ source_urls = ['https://github.com/broadinstitute/picard/releases/download/%(ver sources = ['%(name)s-tools-%(version)s.zip'] java = 'Java' -javaver = '1.8.0_71' +javaver = '1.8.0_92' versionsuffix = '-%s-%s' % (java, javaver) dependencies = [(java, javaver)] -- GitLab From f7cda6667810791d21a725fa2ded135d4d42f6c9 Mon Sep 17 00:00:00 2001 From: Robert Date: Sat, 8 Apr 2017 12:21:00 +0930 Subject: [PATCH 029/608] file name fixed --- ...icard-2.2.4-Java-1.8.0_71.eb => picard-2.2.4-Java-1.8.0_92.eb} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename easybuild/easyconfigs/p/picard/{picard-2.2.4-Java-1.8.0_71.eb => picard-2.2.4-Java-1.8.0_92.eb} (100%) diff --git a/easybuild/easyconfigs/p/picard/picard-2.2.4-Java-1.8.0_71.eb b/easybuild/easyconfigs/p/picard/picard-2.2.4-Java-1.8.0_92.eb similarity index 100% rename from easybuild/easyconfigs/p/picard/picard-2.2.4-Java-1.8.0_71.eb rename to easybuild/easyconfigs/p/picard/picard-2.2.4-Java-1.8.0_92.eb -- GitLab From b630d75714ea12e9e328f1ed517e8b6abd3b7c23 Mon Sep 17 00:00:00 2001 From: Robert Date: Sat, 8 Apr 2017 21:48:13 +0930 Subject: [PATCH 030/608] PyOpenGL easyconfig added --- ...OpenGL-3.1.1a1-foss-2016b-Python-2.7.11.eb | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 easybuild/easyconfigs/p/PyOpenGL/PyOpenGL-3.1.1a1-foss-2016b-Python-2.7.11.eb diff --git a/easybuild/easyconfigs/p/PyOpenGL/PyOpenGL-3.1.1a1-foss-2016b-Python-2.7.11.eb b/easybuild/easyconfigs/p/PyOpenGL/PyOpenGL-3.1.1a1-foss-2016b-Python-2.7.11.eb new file mode 100644 index 0000000000..e76b799546 --- /dev/null +++ b/easybuild/easyconfigs/p/PyOpenGL/PyOpenGL-3.1.1a1-foss-2016b-Python-2.7.11.eb @@ -0,0 +1,42 @@ +## +# 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:: +# +# Notes:: +## + +easyblock = 'PythonPackage' + +name = 'PyOpenGL' +version = '3.1.1a1' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://pyopengl.sourceforge.net' +description = """PyOpenGL is the most common cross platform Python binding to OpenGL and related APIs.""" + +toolchain = {'name': 'foss', 'version': '2016b'} + +source_urls = [PYPI_SOURCE] +sources = [SOURCE_TAR_GZ] + +builddependencies = [ + ('bzip2', '1.0.6'), +] + +dependencies = [ + ('Python', '2.7.12'), + ('Mesa', '12.0.2'), +] + +options = {'modulename': 'OpenGL'} + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages/'], +} + +moduleclass = 'vis' -- GitLab From cf285a2e857c03b7eccba850d44de4194795bac3 Mon Sep 17 00:00:00 2001 From: Robert Date: Sat, 8 Apr 2017 22:02:55 +0930 Subject: [PATCH 031/608] Style fixed --- ...hon-2.7.11.eb => PyOpenGL-3.1.1a1-foss-2016b-Python-2.7.12.eb} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename easybuild/easyconfigs/p/PyOpenGL/{PyOpenGL-3.1.1a1-foss-2016b-Python-2.7.11.eb => PyOpenGL-3.1.1a1-foss-2016b-Python-2.7.12.eb} (100%) diff --git a/easybuild/easyconfigs/p/PyOpenGL/PyOpenGL-3.1.1a1-foss-2016b-Python-2.7.11.eb b/easybuild/easyconfigs/p/PyOpenGL/PyOpenGL-3.1.1a1-foss-2016b-Python-2.7.12.eb similarity index 100% rename from easybuild/easyconfigs/p/PyOpenGL/PyOpenGL-3.1.1a1-foss-2016b-Python-2.7.11.eb rename to easybuild/easyconfigs/p/PyOpenGL/PyOpenGL-3.1.1a1-foss-2016b-Python-2.7.12.eb -- GitLab From 07eb225c270bec1545e9b5cf63753a1f79f5aa7e Mon Sep 17 00:00:00 2001 From: Robert Date: Sat, 8 Apr 2017 22:05:17 +0930 Subject: [PATCH 032/608] lynx easyconfig added --- .../l/lynx/lynx-2.8.9-foss-2016b.eb | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 easybuild/easyconfigs/l/lynx/lynx-2.8.9-foss-2016b.eb diff --git a/easybuild/easyconfigs/l/lynx/lynx-2.8.9-foss-2016b.eb b/easybuild/easyconfigs/l/lynx/lynx-2.8.9-foss-2016b.eb new file mode 100644 index 0000000000..cb6a046e97 --- /dev/null +++ b/easybuild/easyconfigs/l/lynx/lynx-2.8.9-foss-2016b.eb @@ -0,0 +1,33 @@ +## +# 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:: GNU GPLv2 +# +# Notes:: +## + +easyblock = 'ConfigureMake' + +name = 'lynx' +version = '2.8.9' + +description = "lynx is an alphanumeric display oriented World-Wide Web Client" +homepage = 'http://lynx.isc.org/' + +toolchain = {'name': 'foss', 'version': '2016b'} + +source_urls = ['http://invisible-mirror.net/archives/lynx/tarballs'] +sources = ['%(name)s%(version)sdev.11.tar.bz2'] + +dependencies = [ + ('ncurses', '6.0'), +] +sanity_check_paths = { + 'files': ['bin/lynx'], + 'dirs': [], +} + +moduleclass = 'tools' -- GitLab From cfc84bc757447be2c00d78890c4fba64817486a5 Mon Sep 17 00:00:00 2001 From: Robert Date: Wed, 26 Apr 2017 10:59:42 +0930 Subject: [PATCH 033/608] prodigal easyconfig added --- .../prodigal-2.6.2-GCC-4.9.3-binutils-2.25.eb | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 easybuild/easyconfigs/p/prodigal/prodigal-2.6.2-GCC-4.9.3-binutils-2.25.eb diff --git a/easybuild/easyconfigs/p/prodigal/prodigal-2.6.2-GCC-4.9.3-binutils-2.25.eb b/easybuild/easyconfigs/p/prodigal/prodigal-2.6.2-GCC-4.9.3-binutils-2.25.eb new file mode 100644 index 0000000000..300e28ae47 --- /dev/null +++ b/easybuild/easyconfigs/p/prodigal/prodigal-2.6.2-GCC-4.9.3-binutils-2.25.eb @@ -0,0 +1,40 @@ +## +# 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:: GPL-v3.0 +# +# Notes:: +## + + +easyblock = 'MakeCp' + +name = 'prodigal' +version = '2.6.2' + +homepage = 'http://prodigal.ornl.gov/' + +description = """Prodigal (Prokaryotic Dynamic Programming Genefinding Algorithm) is a microbial (bacterial and archaeal) gene finding program developed at Oak Ridge National Laboratory and the University of Tennessee.""" + +toolchain = {'name': 'GCC', 'version': '4.9.3-binutils-2.25'} + +source_urls = ['https://github.com/hyattpd/Prodigal/archive/'] +sources = ['v%(version)s.tar.gz'] +#https://github.com/hyattpd/Prodigal/archive/v2.6.2.tar.gz + +files_to_copy = [ + (['prodigal'], 'bin'), + (['*.h'], 'include'), + (['LICENSE'], 'license'), +] + +sanity_check_paths = { + 'files': ['bin/prodigal'], + 'dirs': ['include', 'license'], +} + +moduleclass = 'bio' + -- GitLab From 6442a465e77fd8e6c5ac2c6b62b94978ef20b422 Mon Sep 17 00:00:00 2001 From: Robert Date: Wed, 10 May 2017 12:12:32 +0930 Subject: [PATCH 034/608] style error corrected --- easybuild/easyconfigs/l/lynx/lynx-2.8.9-foss-2016b.eb | 5 +++-- .../easyconfigs/p/picard/picard-2.2.4-Java-1.8.0_92.eb | 4 +--- .../p/prodigal/prodigal-2.6.2-GCC-4.9.3-binutils-2.25.eb | 7 +++---- 3 files changed, 7 insertions(+), 9 deletions(-) diff --git a/easybuild/easyconfigs/l/lynx/lynx-2.8.9-foss-2016b.eb b/easybuild/easyconfigs/l/lynx/lynx-2.8.9-foss-2016b.eb index cb6a046e97..132cfc359d 100644 --- a/easybuild/easyconfigs/l/lynx/lynx-2.8.9-foss-2016b.eb +++ b/easybuild/easyconfigs/l/lynx/lynx-2.8.9-foss-2016b.eb @@ -3,7 +3,7 @@ # Homepage: https://www.adelaide.edu.au/phoenix/ # # Copyright:: adelaide.edu.au/phoenix -# Authors:: Robert Qiao , Exe Escobedo +# Authors:: Robert Qiao , Exequiel Sepulveda # License:: GNU GPLv2 # # Notes:: @@ -13,9 +13,10 @@ easyblock = 'ConfigureMake' name = 'lynx' version = '2.8.9' +versionsuffix = '-develop' description = "lynx is an alphanumeric display oriented World-Wide Web Client" -homepage = 'http://lynx.isc.org/' +homepage = 'http://lynx.browser.org/' toolchain = {'name': 'foss', 'version': '2016b'} diff --git a/easybuild/easyconfigs/p/picard/picard-2.2.4-Java-1.8.0_92.eb b/easybuild/easyconfigs/p/picard/picard-2.2.4-Java-1.8.0_92.eb index bc5e0d5779..4af929c18d 100644 --- a/easybuild/easyconfigs/p/picard/picard-2.2.4-Java-1.8.0_92.eb +++ b/easybuild/easyconfigs/p/picard/picard-2.2.4-Java-1.8.0_92.eb @@ -4,12 +4,10 @@ # # Copyright:: adelaide.edu.au/phoenix # Authors:: Robert Qiao , Exe Escobedo -# License:: +# License:: MIT # -# Notes:: ## - name = 'picard' version = '2.2.4' diff --git a/easybuild/easyconfigs/p/prodigal/prodigal-2.6.2-GCC-4.9.3-binutils-2.25.eb b/easybuild/easyconfigs/p/prodigal/prodigal-2.6.2-GCC-4.9.3-binutils-2.25.eb index 300e28ae47..e5b64245b5 100644 --- a/easybuild/easyconfigs/p/prodigal/prodigal-2.6.2-GCC-4.9.3-binutils-2.25.eb +++ b/easybuild/easyconfigs/p/prodigal/prodigal-2.6.2-GCC-4.9.3-binutils-2.25.eb @@ -9,7 +9,6 @@ # Notes:: ## - easyblock = 'MakeCp' name = 'prodigal' @@ -17,13 +16,14 @@ version = '2.6.2' homepage = 'http://prodigal.ornl.gov/' -description = """Prodigal (Prokaryotic Dynamic Programming Genefinding Algorithm) is a microbial (bacterial and archaeal) gene finding program developed at Oak Ridge National Laboratory and the University of Tennessee.""" +description = """Prodigal (Prokaryotic Dynamic Programming Genefinding Algorithm) + is a microbial (bacterial and archaeal) gene finding program developed + at Oak Ridge National Laboratory and the University of Tennessee.""" toolchain = {'name': 'GCC', 'version': '4.9.3-binutils-2.25'} source_urls = ['https://github.com/hyattpd/Prodigal/archive/'] sources = ['v%(version)s.tar.gz'] -#https://github.com/hyattpd/Prodigal/archive/v2.6.2.tar.gz files_to_copy = [ (['prodigal'], 'bin'), @@ -37,4 +37,3 @@ sanity_check_paths = { } moduleclass = 'bio' - -- GitLab From 7ffaf3184d592177d1f816179e4a2e003ed986de Mon Sep 17 00:00:00 2001 From: Robert Date: Wed, 10 May 2017 12:29:33 +0930 Subject: [PATCH 035/608] lynx file name corrected --- ...{lynx-2.8.9-foss-2016b.eb => lynx-2.8.9-foss-2016b-develop.eb} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename easybuild/easyconfigs/l/lynx/{lynx-2.8.9-foss-2016b.eb => lynx-2.8.9-foss-2016b-develop.eb} (100%) diff --git a/easybuild/easyconfigs/l/lynx/lynx-2.8.9-foss-2016b.eb b/easybuild/easyconfigs/l/lynx/lynx-2.8.9-foss-2016b-develop.eb similarity index 100% rename from easybuild/easyconfigs/l/lynx/lynx-2.8.9-foss-2016b.eb rename to easybuild/easyconfigs/l/lynx/lynx-2.8.9-foss-2016b-develop.eb -- GitLab From 583d4167050a61ca7a9737d49a17bfd7a38910f6 Mon Sep 17 00:00:00 2001 From: Balazs Hajgato Date: Fri, 12 May 2017 09:53:54 +0200 Subject: [PATCH 036/608] {tools}[intel/2016b] imbalanced-learn 0.2.1 /w Python 2.7.12 (REVIEW) --- ...d-learn-0.2.1-intel-2016b-Python-2.7.12.eb | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 easybuild/easyconfigs/i/imbalanced-learn/imbalanced-learn-0.2.1-intel-2016b-Python-2.7.12.eb diff --git a/easybuild/easyconfigs/i/imbalanced-learn/imbalanced-learn-0.2.1-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/i/imbalanced-learn/imbalanced-learn-0.2.1-intel-2016b-Python-2.7.12.eb new file mode 100644 index 0000000000..6f8572780e --- /dev/null +++ b/easybuild/easyconfigs/i/imbalanced-learn/imbalanced-learn-0.2.1-intel-2016b-Python-2.7.12.eb @@ -0,0 +1,28 @@ +easyblock = 'PythonPackage' + +name = 'imbalanced-learn' +version = '0.2.1' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'https://github.com/scikit-learn-contrib/imbalanced-learn' +description = """imbalanced-learn is a Python package offering a number of re-sampling techniques commonly used in + datasets showing strong between-class imbalance.""" + +toolchain = {'name': 'intel', 'version': '2016b'} + +source_urls = [PYPI_SOURCE] +sources = [SOURCE_TAR_GZ] + +dependencies = [ + ('Python', '2.7.12'), + ('scikit-learn', '0.18.1', versionsuffix), +] + +options = {'modulename': 'imblearn'} + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages'], +} + +moduleclass = 'tools' -- GitLab From e531e19778783ca7f5285c4c8d6dc8b2485b8756 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Fri, 12 May 2017 14:26:56 +0200 Subject: [PATCH 037/608] (re-)bump to v3.3.0.dev0 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cdf0d69c62..85590c2983 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ from distutils import log # recent setuptools versions will *TRANSFORM* something like 'X.Y.Zdev' into 'X.Y.Z.dev0', with a warning like # UserWarning: Normalizing '2.4.0dev' to '2.4.0.dev0' # This causes problems further up the dependency chain... -VERSION = '3.2.1' +VERSION = '3.3.0.dev0' API_VERSION = VERSION.split('.')[0] EB_VERSION = '.'.join(VERSION.split('.')[0:2]) -- GitLab From ee171bc1dce094e97f1862ecc390486b82b7c86f Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Fri, 12 May 2017 14:32:46 +0200 Subject: [PATCH 038/608] adding easyconfigs: EasyBuild-3.2.1.eb --- .../e/EasyBuild/EasyBuild-3.2.1.eb | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.2.1.eb diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.2.1.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.2.1.eb new file mode 100644 index 0000000000..dfebb15dea --- /dev/null +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.2.1.eb @@ -0,0 +1,38 @@ +easyblock = 'EB_EasyBuildMeta' + +name = 'EasyBuild' +version = '3.2.1' + +homepage = 'http://hpcugent.github.com/easybuild/' +description = """EasyBuild is a software build and installation framework + written in Python that allows you to install software in a structured, + repeatable and robust way.""" + +toolchain = {'name': 'dummy', 'version': 'dummy'} + +source_urls = [ + # vsc-install + 'https://pypi.python.org/packages/82/ec/19d85d2bb91b562195d00db9ac82d7529904e7eabc0597720966bf74714f/', + # vsc-base + 'https://pypi.python.org/packages/f7/66/1ff7ecc4a93ba37e063f5bfbe395e95a547b1dec73b017c2724f4475a958/', + # easybuild-framework + 'https://pypi.python.org/packages/77/a2/34beda6176a1c85e99861f6a5e881c3a5c67e68e1edc50258a7d941195e8/', + # easybuild-easyblocks + 'https://pypi.python.org/packages/3d/02/a5d239cbe7dfaecf712edc4aa53192239db174505e81d4c793e20abd96b6/', + # easybuild-easyconfigs + 'https://pypi.python.org/packages/ac/ae/185b876b02b2f2310fe52bb41539d23a00e421e5b19c246779e4b2be03a8/', +] +# order matters a lot, to avoid having dependencies auto-resolved (--no-deps easy_install option doesn't work?) +sources = [ + 'vsc-install-0.10.26.tar.gz', + 'vsc-base-2.5.8.tar.gz', + 'easybuild-framework-%(version)s.tar.gz', + 'easybuild-easyblocks-%(version)s.tar.gz', + 'easybuild-easyconfigs-%(version)s.tar.gz', +] + +# EasyBuild is a (set of) Python packages, so it depends on Python +# usually, we want to use the system Python, so no actual Python dependency is listed +allow_system_deps = [('Python', SYS_PYTHON_VERSION)] + +moduleclass = 'tools' -- GitLab From ee454a4d4305f08f04f7db64e5062d5b3d597a25 Mon Sep 17 00:00:00 2001 From: Ake Sandgren Date: Fri, 12 May 2017 21:00:25 +0200 Subject: [PATCH 039/608] Include patch to find NVML library on Ubuntu for Nvidia driver 367 and 375 --- .../GROMACS/GROMACS-2016.3-goolfc-2017.01.eb | 40 +++++++++++++++++++ ...ACS-2016.3_amend_search_for_nvml_lib.patch | 14 +++++++ 2 files changed, 54 insertions(+) create mode 100644 easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-goolfc-2017.01.eb create mode 100644 easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3_amend_search_for_nvml_lib.patch diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-goolfc-2017.01.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-goolfc-2017.01.eb new file mode 100644 index 0000000000..24d9e0afe2 --- /dev/null +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-goolfc-2017.01.eb @@ -0,0 +1,40 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# +# Copyright:: Copyright 2012-2016 University of Luxembourg / LCSB, Cyprus Institute / CaSToRC, +# Ghent University / The Francis Crick Institute +# Authors:: +# * Wiktor Jurkowski +# * Fotis Georgatos +# * George Tsouloupas +# * Kenneth Hoste +# * Adam Huffman +# License:: MIT/GPL +## + +name = 'GROMACS' +version = '2016.3' + +homepage = 'http://www.gromacs.org' +description = """ +GROMACS is a versatile package to perform molecular dynamics, + i.e. simulate the Newtonian equations of motion for systems with hundreds to millions of particles. + +This is a GPU enabled build, containing both MPI and threadMPI builds. +""" + +toolchain = {'name': 'goolfc', 'version': '2017.01'} +toolchainopts = {'openmp': True, 'usempi': True} + +source_urls = ['ftp://ftp.gromacs.org/pub/gromacs/'] +sources = [SOURCELOWER_TAR_GZ] + +patches = [ + 'GROMACS-%(version)s_amend_search_for_nvml_lib.patch', +] + +builddependencies = [ + ('CMake', '3.7.1'), +] + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3_amend_search_for_nvml_lib.patch b/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3_amend_search_for_nvml_lib.patch new file mode 100644 index 0000000000..8ae9027f34 --- /dev/null +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3_amend_search_for_nvml_lib.patch @@ -0,0 +1,14 @@ +# The NVML library location depends on driver version on Ubuntu +# Åke Sandgren, 2016-10-14 +diff -ru gromacs-2016.orig/cmake/FindNVML.cmake gromacs-2016/cmake/FindNVML.cmake +--- gromacs-2016.orig/cmake/FindNVML.cmake 2016-07-09 02:55:38.000000000 +0200 ++++ gromacs-2016/cmake/FindNVML.cmake 2016-10-14 21:44:08.143648879 +0200 +@@ -96,7 +96,7 @@ + # reasonably set GPU_DEPLOYMENT_KIT_ROOT_DIR to the value they + # passed to the installer, or the root where they later found the + # kit to be installed. Below, we cater for both possibilities. +- set( NVML_LIB_PATHS /usr/lib64 ) ++ set( NVML_LIB_PATHS /usr/lib64 /usr/lib/nvidia-367 /usr/lib/nvidia-375) + if(GPU_DEPLOYMENT_KIT_ROOT_DIR) + list(APPEND NVML_LIB_PATHS + "${GPU_DEPLOYMENT_KIT_ROOT_DIR}/src/gdk/nvml/lib" -- GitLab From 8aeae6284f5fe6bcb0bb5832f4a1ea0ec04ce5e2 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Sun, 14 May 2017 19:39:51 +0200 Subject: [PATCH 040/608] adding easyconfigs: NAMD-2.12-intel-2017a-mpi.eb --- .../n/NAMD/NAMD-2.12-intel-2017a-mpi.eb | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 easybuild/easyconfigs/n/NAMD/NAMD-2.12-intel-2017a-mpi.eb diff --git a/easybuild/easyconfigs/n/NAMD/NAMD-2.12-intel-2017a-mpi.eb b/easybuild/easyconfigs/n/NAMD/NAMD-2.12-intel-2017a-mpi.eb new file mode 100644 index 0000000000..a859f5adf4 --- /dev/null +++ b/easybuild/easyconfigs/n/NAMD/NAMD-2.12-intel-2017a-mpi.eb @@ -0,0 +1,24 @@ +name = 'NAMD' +version = '2.12' +versionsuffix = '-mpi' + +homepage = 'http://www.ks.uiuc.edu/Research/namd/' +description = """NAMD is a parallel molecular dynamics code designed for high-performance simulation of + large biomolecular systems.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'usempi': True, 'pic': True} + +sources = ['NAMD_%(version)s_Source.tar.gz'] + +dependencies = [ + ('Tcl', '8.6.6'), + ('FFTW', '3.3.6'), +] + +# /bin/csh is required by 'config' script +osdependencies = ['tcsh'] + +charm_arch = "mpi-linux-x86_64" + +moduleclass = 'chem' -- GitLab From e75dd82ba959670948e38161852763656350f6c9 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 15 May 2017 10:26:16 +0200 Subject: [PATCH 041/608] style fixes: use single quotes, fix order in toolchainopts --- easybuild/easyconfigs/n/NAMD/NAMD-2.12-intel-2017a-mpi.eb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/n/NAMD/NAMD-2.12-intel-2017a-mpi.eb b/easybuild/easyconfigs/n/NAMD/NAMD-2.12-intel-2017a-mpi.eb index a859f5adf4..fd5bdbb7ed 100644 --- a/easybuild/easyconfigs/n/NAMD/NAMD-2.12-intel-2017a-mpi.eb +++ b/easybuild/easyconfigs/n/NAMD/NAMD-2.12-intel-2017a-mpi.eb @@ -7,7 +7,7 @@ description = """NAMD is a parallel molecular dynamics code designed for high-pe large biomolecular systems.""" toolchain = {'name': 'intel', 'version': '2017a'} -toolchainopts = {'usempi': True, 'pic': True} +toolchainopts = {'pic': True, 'usempi': True} sources = ['NAMD_%(version)s_Source.tar.gz'] @@ -19,6 +19,6 @@ dependencies = [ # /bin/csh is required by 'config' script osdependencies = ['tcsh'] -charm_arch = "mpi-linux-x86_64" +charm_arch = 'mpi-linux-x86_64' moduleclass = 'chem' -- GitLab From 28a58de9d80083c85473f36012476856d93edcb9 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 15 May 2017 11:20:31 +0200 Subject: [PATCH 042/608] adding easyconfigs: STAR-2.5.3a-intel-2017a.eb --- .../s/STAR/STAR-2.5.3a-intel-2017a.eb | 43 +++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 easybuild/easyconfigs/s/STAR/STAR-2.5.3a-intel-2017a.eb diff --git a/easybuild/easyconfigs/s/STAR/STAR-2.5.3a-intel-2017a.eb b/easybuild/easyconfigs/s/STAR/STAR-2.5.3a-intel-2017a.eb new file mode 100644 index 0000000000..7bb56d5efd --- /dev/null +++ b/easybuild/easyconfigs/s/STAR/STAR-2.5.3a-intel-2017a.eb @@ -0,0 +1,43 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# Author: Pablo Escobar Lopez +# sciCORE - University of Basel +# SIB Swiss Institute of Bioinformatics +# Modified by: +# Adam Huffman +# The Francis Crick Institute + +easyblock = 'MakeCp' + +name = 'STAR' +version = '2.5.3a' + +homepage = 'https://github.com/alexdobin/STAR' +description = "STAR aligns RNA-seq reads to a reference genome using uncompressed suffix arrays." + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'openmp': True} + +source_urls = ['https://github.com/alexdobin/STAR/archive/'] +sources = ['%(version)s.tar.gz'] + +dependencies = [ + ('zlib', '1.2.11'), +] + +start_dir = 'source' + +buildopts = ' STAR && make STARlong' + +parallel = 1 + +files_to_copy = [ + (['source/STAR', 'source/STARlong'], 'bin'), + 'CHANGES.md', 'doc', 'extras', 'LICENSE', 'README.md', 'RELEASEnotes.md', +] + +sanity_check_paths = { + 'files': ["bin/STAR", "bin/STARlong"], + 'dirs': [], +} + +moduleclass = 'bio' -- GitLab From 61ed4e7c403d624f0d85b986ff9a3818eb6371a4 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 15 May 2017 11:51:15 +0200 Subject: [PATCH 043/608] adding easyconfigs: Velvet-1.2.10-intel-2017a-mt-kmer_37.eb --- .../Velvet-1.2.10-intel-2017a-mt-kmer_37.eb | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-intel-2017a-mt-kmer_37.eb diff --git a/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-intel-2017a-mt-kmer_37.eb b/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-intel-2017a-mt-kmer_37.eb new file mode 100644 index 0000000000..19b58c6e52 --- /dev/null +++ b/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-intel-2017a-mt-kmer_37.eb @@ -0,0 +1,31 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# +# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA, 2012-2013 The Cyprus Institute +# Authors:: Cedric Laczny , Fotis Georgatos , +# Thekla Loizou , Andreas Panteli +# License:: MIT/GPL +# $Id$ +# +# This work implements a part of the HPCBIOS project and is a component of the policy: +# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html +## + +name = 'Velvet' +version = '1.2.10' +versionsuffix = '-mt-kmer_37' + +homepage = 'http://www.ebi.ac.uk/~zerbino/velvet/' +description = """Sequence assembler for very short reads""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'openmp': True, 'pic': True} + +sources = ['%(namelower)s_%(version)s.tgz'] +source_urls = ['http://www.ebi.ac.uk/~zerbino/%(namelower)s'] + +buildopts = "OPENMP=1 MAXKMERLENGTH=%s LONGSEQUENCES=1" % versionsuffix.split('_')[1] + +postinstallcmds = ["cd contrib/MetaVelvet-1.* && make && cd ../../ && cp -a contrib %(installdir)s/"] + +moduleclass = 'bio' -- GitLab From 7934c12a2e7fc6fd81543a7c8df06a1b6788a6b8 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 15 May 2017 11:52:38 +0200 Subject: [PATCH 044/608] adding easyconfigs: Bpipe-0.9.9.2-intel-2017a.eb, Java-1.8.0_131.eb --- .../b/Bpipe/Bpipe-0.9.9.2-intel-2017a.eb | 21 +++++++++++++++++++ .../easyconfigs/j/Java/Java-1.8.0_131.eb | 15 +++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 easybuild/easyconfigs/b/Bpipe/Bpipe-0.9.9.2-intel-2017a.eb create mode 100644 easybuild/easyconfigs/j/Java/Java-1.8.0_131.eb diff --git a/easybuild/easyconfigs/b/Bpipe/Bpipe-0.9.9.2-intel-2017a.eb b/easybuild/easyconfigs/b/Bpipe/Bpipe-0.9.9.2-intel-2017a.eb new file mode 100644 index 0000000000..b0ee97e8f9 --- /dev/null +++ b/easybuild/easyconfigs/b/Bpipe/Bpipe-0.9.9.2-intel-2017a.eb @@ -0,0 +1,21 @@ +easyblock = 'Tarball' + +name = 'Bpipe' +version = '0.9.9.2' + +homepage = 'http://docs.bpipe.org/' +description = "Bpipe - a tool for running and managing bioinformatics pipelines" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['http://download.bpipe.org/versions/'] +sources = [SOURCELOWER_TAR_GZ] + +dependencies = [('Java', '1.8.0_131', '', True)] + +sanity_check_paths = { + 'files': ['bin/bpipe', 'lib/bpipe.jar'], + 'dirs': [], +} + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/j/Java/Java-1.8.0_131.eb b/easybuild/easyconfigs/j/Java/Java-1.8.0_131.eb new file mode 100644 index 0000000000..2bb2551e95 --- /dev/null +++ b/easybuild/easyconfigs/j/Java/Java-1.8.0_131.eb @@ -0,0 +1,15 @@ +name = 'Java' +version = '1.8.0_131' + +homepage = 'http://java.com/' +description = """Java Platform, Standard Edition (Java SE) lets you develop and deploy + Java applications on desktops and servers.""" + +toolchain = {'name': 'dummy', 'version': 'dummy'} + +# download the tar.gz directly from http://www.oracle.com/technetwork/java/javase/downloads/index.html +(vp, vs) = version.split('_') +altver = '%su%s' % (vp.split('.')[1], vs) +sources = ['jdk-%s-linux-x64.tar.gz' % altver] + +moduleclass = 'lang' -- GitLab From 26cd2367b99136755e104c2dd2b5063f67c5c957 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 15 May 2017 16:19:34 +0200 Subject: [PATCH 045/608] adding easyconfigs: netCDF-4.4.1.1-intel-2017a-HDF5-1.8.18.eb, netCDF-Fortran-4.4.4-intel-2017a-HDF5-1.8.18.eb, netCDF-C++4-4.3.0-intel-2017a-HDF5-1.8.18.eb --- ...tCDF-C++4-4.3.0-intel-2017a-HDF5-1.8.18.eb | 25 +++++++++++++ ...F-Fortran-4.4.4-intel-2017a-HDF5-1.8.18.eb | 18 ++++++++++ .../netCDF-4.4.1.1-intel-2017a-HDF5-1.8.18.eb | 36 +++++++++++++++++++ 3 files changed, 79 insertions(+) create mode 100644 easybuild/easyconfigs/n/netCDF-C++4/netCDF-C++4-4.3.0-intel-2017a-HDF5-1.8.18.eb create mode 100644 easybuild/easyconfigs/n/netCDF-Fortran/netCDF-Fortran-4.4.4-intel-2017a-HDF5-1.8.18.eb create mode 100644 easybuild/easyconfigs/n/netCDF/netCDF-4.4.1.1-intel-2017a-HDF5-1.8.18.eb diff --git a/easybuild/easyconfigs/n/netCDF-C++4/netCDF-C++4-4.3.0-intel-2017a-HDF5-1.8.18.eb b/easybuild/easyconfigs/n/netCDF-C++4/netCDF-C++4-4.3.0-intel-2017a-HDF5-1.8.18.eb new file mode 100644 index 0000000000..62c2012841 --- /dev/null +++ b/easybuild/easyconfigs/n/netCDF-C++4/netCDF-C++4-4.3.0-intel-2017a-HDF5-1.8.18.eb @@ -0,0 +1,25 @@ +easyblock = 'ConfigureMake' + +name = 'netCDF-C++4' +version = '4.3.0' +versionsuffix = '-HDF5-1.8.18' + +homepage = 'http://www.unidata.ucar.edu/software/netcdf/' +description = """NetCDF (network Common Data Form) is a set of software libraries + and machine-independent data formats that support the creation, access, and sharing of array-oriented + scientific data.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'pic': True} + +source_urls = ['https://github.com/Unidata/netcdf-cxx4/archive/'] +sources = ['v%(version)s.tar.gz'] + +dependencies = [('netCDF', '4.4.1.1', versionsuffix)] + +sanity_check_paths = { + 'files': ['include/netcdf', 'lib/libnetcdf_c++4.a', 'lib/libnetcdf_c++4.%s' % SHLIB_EXT], + 'dirs': [], +} + +moduleclass = 'data' diff --git a/easybuild/easyconfigs/n/netCDF-Fortran/netCDF-Fortran-4.4.4-intel-2017a-HDF5-1.8.18.eb b/easybuild/easyconfigs/n/netCDF-Fortran/netCDF-Fortran-4.4.4-intel-2017a-HDF5-1.8.18.eb new file mode 100644 index 0000000000..188697273d --- /dev/null +++ b/easybuild/easyconfigs/n/netCDF-Fortran/netCDF-Fortran-4.4.4-intel-2017a-HDF5-1.8.18.eb @@ -0,0 +1,18 @@ +name = 'netCDF-Fortran' +version = '4.4.4' +versionsuffix = '-HDF5-1.8.18' + +homepage = 'http://www.unidata.ucar.edu/software/netcdf/' +description = """NetCDF (network Common Data Form) is a set of software libraries + and machine-independent data formats that support the creation, access, and sharing of array-oriented + scientific data.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'pic': True} + +source_urls = ['https://github.com/Unidata/netcdf-fortran/archive/'] +sources = ['v%(version)s.tar.gz'] + +dependencies = [('netCDF', '4.4.1.1', versionsuffix)] + +moduleclass = 'data' diff --git a/easybuild/easyconfigs/n/netCDF/netCDF-4.4.1.1-intel-2017a-HDF5-1.8.18.eb b/easybuild/easyconfigs/n/netCDF/netCDF-4.4.1.1-intel-2017a-HDF5-1.8.18.eb new file mode 100644 index 0000000000..8bc6d56640 --- /dev/null +++ b/easybuild/easyconfigs/n/netCDF/netCDF-4.4.1.1-intel-2017a-HDF5-1.8.18.eb @@ -0,0 +1,36 @@ +name = 'netCDF' +version = '4.4.1.1' +hdf5_ver = '1.8.18' +versionsuffix = '-HDF5-%s' % hdf5_ver + +homepage = 'http://www.unidata.ucar.edu/software/netcdf/' +description = """NetCDF (network Common Data Form) is a set of software libraries + and machine-independent data formats that support the creation, access, and sharing of array-oriented + scientific data.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'pic': True, 'usempi': True} + +sources = ['v%(version)s.tar.gz'] +source_urls = [ + 'https://github.com/Unidata/netcdf-c/archive/' +] + +dependencies = [ + ('HDF5', hdf5_ver), + ('cURL', '7.53.1'), + ('Szip', '2.1'), +] + +builddependencies = [ + ('CMake', '3.7.2'), + ('Doxygen', '1.8.13'), +] + +# make sure both static and shared libs are built +configopts = [ + "-DBUILD_SHARED_LIBS=OFF ", + "-DBUILD_SHARED_LIBS=ON ", +] + +moduleclass = 'data' -- GitLab From c134dc6583580744f6a678ec0671352361d19c91 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 15 May 2017 16:52:33 +0200 Subject: [PATCH 046/608] adding easyconfigs: Doris-4.04beta4-intel-2017a.eb, Doris-4.06beta2-intel-2017a.eb --- .../d/Doris/Doris-4.04beta4-intel-2017a.eb | 16 ++++++++++++++++ .../d/Doris/Doris-4.06beta2-intel-2017a.eb | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 easybuild/easyconfigs/d/Doris/Doris-4.04beta4-intel-2017a.eb create mode 100644 easybuild/easyconfigs/d/Doris/Doris-4.06beta2-intel-2017a.eb diff --git a/easybuild/easyconfigs/d/Doris/Doris-4.04beta4-intel-2017a.eb b/easybuild/easyconfigs/d/Doris/Doris-4.04beta4-intel-2017a.eb new file mode 100644 index 0000000000..ad3c1ecff3 --- /dev/null +++ b/easybuild/easyconfigs/d/Doris/Doris-4.04beta4-intel-2017a.eb @@ -0,0 +1,16 @@ +name = 'Doris' +version = '4.04beta4' + +homepage = 'http://doris.tudelft.nl/' +description = "Delft object-oriented radar interferometric software" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['http://doris.tudelft.nl/software/'] +sources = ['doris_v%(version)s.tar.gz'] + +dependencies = [ + ('FFTW', '3.3.6'), +] + +moduleclass = 'geo' diff --git a/easybuild/easyconfigs/d/Doris/Doris-4.06beta2-intel-2017a.eb b/easybuild/easyconfigs/d/Doris/Doris-4.06beta2-intel-2017a.eb new file mode 100644 index 0000000000..190f829952 --- /dev/null +++ b/easybuild/easyconfigs/d/Doris/Doris-4.06beta2-intel-2017a.eb @@ -0,0 +1,16 @@ +name = 'Doris' +version = '4.06beta2' + +homepage = 'http://doris.tudelft.nl/' +description = "Delft object-oriented radar interferometric software" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['http://doris.tudelft.nl/software/'] +sources = ['doris_v%(version)s.tar.gz'] + +dependencies = [ + ('FFTW', '3.3.6'), +] + +moduleclass = 'geo' -- GitLab From b1d528ec317c4f012caf7d34c67ec6f25a6008b5 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 15 May 2017 17:11:22 +0200 Subject: [PATCH 047/608] adding easyconfigs: EricScript-0.5.5-intel-2017a-R-3.4.0.eb, ada-2.0-5-intel-2017a-R-3.4.0.eb, BWA-0.7.15-intel-2017a.eb, SAMtools-1.4.1-intel-2017a.eb, BEDTools-2.26.0-intel-2017a.eb, seqtk-1.2-intel-2017a.eb --- .../a/ada/ada-2.0-5-intel-2017a-R-3.4.0.eb | 22 +++++++++++ .../b/BEDTools/BEDTools-2.26.0-intel-2017a.eb | 33 +++++++++++++++++ .../b/BWA/BWA-0.7.15-intel-2017a.eb | 32 ++++++++++++++++ .../EricScript-0.5.5-intel-2017a-R-3.4.0.eb | 34 +++++++++++++++++ .../s/SAMtools/SAMtools-1.4.1-intel-2017a.eb | 37 +++++++++++++++++++ .../s/seqtk/seqtk-1.2-intel-2017a.eb | 28 ++++++++++++++ 6 files changed, 186 insertions(+) create mode 100644 easybuild/easyconfigs/a/ada/ada-2.0-5-intel-2017a-R-3.4.0.eb create mode 100644 easybuild/easyconfigs/b/BEDTools/BEDTools-2.26.0-intel-2017a.eb create mode 100644 easybuild/easyconfigs/b/BWA/BWA-0.7.15-intel-2017a.eb create mode 100644 easybuild/easyconfigs/e/EricScript/EricScript-0.5.5-intel-2017a-R-3.4.0.eb create mode 100644 easybuild/easyconfigs/s/SAMtools/SAMtools-1.4.1-intel-2017a.eb create mode 100644 easybuild/easyconfigs/s/seqtk/seqtk-1.2-intel-2017a.eb diff --git a/easybuild/easyconfigs/a/ada/ada-2.0-5-intel-2017a-R-3.4.0.eb b/easybuild/easyconfigs/a/ada/ada-2.0-5-intel-2017a-R-3.4.0.eb new file mode 100644 index 0000000000..b1735c68ac --- /dev/null +++ b/easybuild/easyconfigs/a/ada/ada-2.0-5-intel-2017a-R-3.4.0.eb @@ -0,0 +1,22 @@ +easyblock = 'RPackage' + +name = 'ada' +version = '2.0-5' +versionsuffix = '-R-%(rver)s' + +homepage = 'https://cran.r-project.org/web/packages/ada/index.html' +description = "Performs discrete, real, and gentle boost under both exponential and logistic loss on a given data set." + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['https://cran.r-project.org/src/contrib/'] +sources = ['ada_%(version)s.tar.gz'] + +dependencies = [('R', '3.4.0', '-X11-20170314')] + +sanity_check_paths = { + 'files': [], + 'dirs': [name], +} + +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/b/BEDTools/BEDTools-2.26.0-intel-2017a.eb b/easybuild/easyconfigs/b/BEDTools/BEDTools-2.26.0-intel-2017a.eb new file mode 100644 index 0000000000..48be152602 --- /dev/null +++ b/easybuild/easyconfigs/b/BEDTools/BEDTools-2.26.0-intel-2017a.eb @@ -0,0 +1,33 @@ +# Author: Maxime Schmitt, University of Luxembourg +# Author: Adam Huffman, The Francis Crick Institute +# +# Based on the work of: Pablo Escobar Lopez +# Swiss Institute of Bioinformatics (SIB) +# Biozentrum - University of Basel + +easyblock = 'MakeCp' + +name = 'BEDTools' +version = '2.26.0' + +homepage = "https://github.com/arq5x/bedtools2" +description = """The BEDTools utilities allow one to address common genomics tasks such as finding feature overlaps + and computing coverage. The utilities are largely based on four widely-used file formats: BED, GFF/GTF, VCF, + and SAM/BAM.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +# https://github.com/arq5x/bedtools2/releases/download/v2.26.0/bedtools-2.26.0.tar.gz +source_urls = ['https://github.com/arq5x/bedtools2/releases/download/v%(version)s/'] +sources = ['bedtools-%(version)s.tar.gz'] + +buildopts = 'CXX="$CXX"' + +files_to_copy = ["bin", "docs", "data", "genomes", "scripts", "test"] + +sanity_check_paths = { + 'files': ['bin/%s' % x for x in ['bedtools', 'pairToBed', 'mergeBed', 'bedToBam', 'fastaFromBed']], + 'dirs': files_to_copy, +} + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/b/BWA/BWA-0.7.15-intel-2017a.eb b/easybuild/easyconfigs/b/BWA/BWA-0.7.15-intel-2017a.eb new file mode 100644 index 0000000000..04f7fad391 --- /dev/null +++ b/easybuild/easyconfigs/b/BWA/BWA-0.7.15-intel-2017a.eb @@ -0,0 +1,32 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# +# Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA +# Authors:: George Tsouloupas , Fotis Georgatos +# License:: MIT/GPL +# $Id$ +# +# This work implements a part of the HPCBIOS project and is a component of the policy: +# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html +# +# Version >= 0.7.15 +# Author: Adam Huffman +# The Francis Crick Institute +# +# Note that upstream development is mainly at: https://github.com/lh3/bwa +## + +name = 'BWA' +version = '0.7.15' + +homepage = 'http://bio-bwa.sourceforge.net/' +description = """Burrows-Wheeler Aligner (BWA) is an efficient program that aligns + relatively short nucleotide sequences against a long reference sequence such as the human genome.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'pic': True} + +source_urls = ['https://github.com/lh3/%(name)s/archive/'] +sources = ['v%(version)s.tar.gz'] + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/e/EricScript/EricScript-0.5.5-intel-2017a-R-3.4.0.eb b/easybuild/easyconfigs/e/EricScript/EricScript-0.5.5-intel-2017a-R-3.4.0.eb new file mode 100644 index 0000000000..adaed6879a --- /dev/null +++ b/easybuild/easyconfigs/e/EricScript/EricScript-0.5.5-intel-2017a-R-3.4.0.eb @@ -0,0 +1,34 @@ +easyblock = 'Tarball' + +name = 'EricScript' +version = '0.5.5' +versionsuffix = '-R-%(rver)s' + +homepage = 'https://sites.google.com/site/bioericscript/home' +description = "EricScript is a computational framework for the discovery of gene fusions in paired end RNA-seq data." + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [SOURCEFORGE_SOURCE] +sources = [SOURCELOWER_TAR_BZ2] + +dependencies = [ + ('R', '3.4.0', '-X11-20170314'), + ('ada', '2.0-5', versionsuffix), + ('BWA', '0.7.15'), + ('SAMtools', '1.4.1'), + ('BEDTools', '2.26.0'), + ('seqtk', '1.2'), + ('BLAT', '3.5'), +] + +postinstallcmds = ["chmod a+rx %(installdir)s/ericscript.pl"] + +sanity_check_paths = { + 'files': ['ericscript.pl', 'LICENSE', 'README'], + 'dirs': ['lib'], +} + +modextrapaths = {'PATH': ''} + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.4.1-intel-2017a.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.4.1-intel-2017a.eb new file mode 100644 index 0000000000..cd48ea8cde --- /dev/null +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.4.1-intel-2017a.eb @@ -0,0 +1,37 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# +# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA +# Authors:: Robert Schmidt , Cedric Laczny , Fotis Georgatos +# License:: MIT/GPL +# $Id$ +# +# Modified by: Adam Huffman +# The Francis Crick Institute +# +# Modified for version 1.4 by: Kurt Lust, UAntwerpen +# +## +name = 'SAMtools' +version = '1.4.1' + +homepage = 'http://www.htslib.org/' +description = """SAM Tools provide various utilities for manipulating alignments in the SAM format, + including sorting, merging, indexing and generating alignments in a per-position format.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'pic': True} + +source_urls = ['https://github.com/samtools/%(namelower)s/releases/download/%(version)s'] +sources = [SOURCELOWER_TAR_BZ2] + +# The htslib component of SAMtools 1.4 uses zlib, bzip2 and lzma compression. +# The latter is currently provided by XZ. +dependencies = [ + ('ncurses', '6.0'), + ('zlib', '1.2.11'), + ('bzip2', '1.0.6'), + ('XZ', '5.2.3'), +] + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/s/seqtk/seqtk-1.2-intel-2017a.eb b/easybuild/easyconfigs/s/seqtk/seqtk-1.2-intel-2017a.eb new file mode 100644 index 0000000000..d6c74b18dc --- /dev/null +++ b/easybuild/easyconfigs/s/seqtk/seqtk-1.2-intel-2017a.eb @@ -0,0 +1,28 @@ +easyblock = 'MakeCp' + +name = 'seqtk' +version = '1.2' + +homepage = 'https://github.com/lh3/seqtk/' +description = """Seqtk is a fast and lightweight tool for processing sequences in the FASTA or FASTQ format. + It seamlessly parses both FASTA and FASTQ files which can also be optionally compressed by gzip.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +sources = ['v%(version)s.tar.gz'] +source_urls = ['https://github.com/lh3/seqtk/archive/'] + +buildopts = 'CC="$CC" CFLAGS="$CLFAGS"' + +files_to_copy = ["seqtk"] + +sanity_check_paths = { + 'files': files_to_copy, + 'dirs': [], +} + +modextrapaths = { + 'PATH': [''], +} + +moduleclass = 'bio' -- GitLab From e1a4963d905de9962b793beed5336e14098d1577 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 15 May 2017 19:35:34 +0200 Subject: [PATCH 048/608] {data}[intel/2017a] NCL 6.4.0 (+ deps) --- .../ESMF-6.3.0rp1-intel-2017a-HDF5-1.8.18.eb | 32 +++++++ ...0-intel-2017a-Python-2.7.13-HDF5-1.8.18.eb | 49 ++++++++++ .../n/NCL/NCL-6.4.0-intel-2017a.eb | 40 ++++++++ .../n/NCL/NCL-6.4.0_fix-types.patch | 94 +++++++++++++++++++ 4 files changed, 215 insertions(+) create mode 100644 easybuild/easyconfigs/e/ESMF/ESMF-6.3.0rp1-intel-2017a-HDF5-1.8.18.eb create mode 100644 easybuild/easyconfigs/g/GDAL/GDAL-2.2.0-intel-2017a-Python-2.7.13-HDF5-1.8.18.eb create mode 100644 easybuild/easyconfigs/n/NCL/NCL-6.4.0-intel-2017a.eb create mode 100644 easybuild/easyconfigs/n/NCL/NCL-6.4.0_fix-types.patch diff --git a/easybuild/easyconfigs/e/ESMF/ESMF-6.3.0rp1-intel-2017a-HDF5-1.8.18.eb b/easybuild/easyconfigs/e/ESMF/ESMF-6.3.0rp1-intel-2017a-HDF5-1.8.18.eb new file mode 100644 index 0000000000..7d428e69ac --- /dev/null +++ b/easybuild/easyconfigs/e/ESMF/ESMF-6.3.0rp1-intel-2017a-HDF5-1.8.18.eb @@ -0,0 +1,32 @@ +name = 'ESMF' +version = '6.3.0rp1' +versionsuffix = '-HDF5-1.8.18' + +homepage = 'http://sourceforge.net/projects/esmf' +description = """The Earth System Modeling Framework (ESMF) is software for building and coupling weather, + climate, and related models.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'usempi': True} + +source_urls = [SOURCEFORGE_SOURCE] +sources = ['%%(namelower)s_%s_src.tar.gz' % '_'.join(version.split('.'))] + +patches = [ + 'ESMF-6.1.1_libopts.patch', + 'ESMF-%(version)s_fix-file-open-test.patch', +] + +dependencies = [ + ('netCDF', '4.4.1.1', versionsuffix), + ('netCDF-Fortran', '4.4.4', versionsuffix), + ('netCDF-C++4', '4.3.0', versionsuffix), +] + +buildopts = 'ESMF_NETCDF_INCLUDE=$EBROOTNETCDFMINFORTRAN/include ' +buildopts += 'ESMF_NETCDF_LIBS="`nc-config --libs` `nf-config --flibs` `ncxx4-config --libs`"' + +# too parallel causes the build to become really slow +maxparallel = 8 + +moduleclass = 'geo' diff --git a/easybuild/easyconfigs/g/GDAL/GDAL-2.2.0-intel-2017a-Python-2.7.13-HDF5-1.8.18.eb b/easybuild/easyconfigs/g/GDAL/GDAL-2.2.0-intel-2017a-Python-2.7.13-HDF5-1.8.18.eb new file mode 100644 index 0000000000..26dd6f6835 --- /dev/null +++ b/easybuild/easyconfigs/g/GDAL/GDAL-2.2.0-intel-2017a-Python-2.7.13-HDF5-1.8.18.eb @@ -0,0 +1,49 @@ +easyblock = 'ConfigureMake' + +name = 'GDAL' +version = '2.2.0' +hdf5_ver = '1.8.18' +versionsuffix = '-Python-%%(pyver)s-HDF5-%s' % hdf5_ver + +homepage = 'http://www.gdal.org/' +description = """GDAL is a translator library for raster geospatial data formats that is released under an X/MIT style + Open Source license by the Open Source Geospatial Foundation. As a library, it presents a single abstract data model + to the calling application for all supported formats. It also comes with a variety of useful commandline utilities for + data translation and processing.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'usempi': True} + +source_urls = ['http://download.osgeo.org/gdal/%(version)s/'] +sources = [SOURCELOWER_TAR_XZ] +patches = ['GDAL-%(version)s_fix-uchar-definition.patch'] + +dependencies = [ + ('Python', '2.7.13'), + ('netCDF', '4.4.1.1', '-HDF5-%s' % hdf5_ver), + ('expat', '2.2.0'), + ('GEOS', '3.6.1', '-Python-%(pyver)s'), + ('SQLite', '3.17.0'), + ('libxml2', '2.9.4'), + ('libpng', '1.6.29'), + ('libjpeg-turbo', '1.5.1'), + ('JasPer', '1.900.1'), + ('LibTIFF', '4.0.7'), + ('zlib', '1.2.11'), + ('cURL', '7.53.1'), + ('PCRE', '8.40'), +] + +configopts = '--with-expat=$EBROOTEXPAT --with-libz=$EBROOTLIBZ --with-hdf5=$EBROOTHDF5 --with-netcdf=$EBROOTNETCDF' +configopts += ' --with-xml2=$EBROOTLIBXML2 --with-geos=$EBROOTGEOS/bin/geos-config --with-jpeg=$EBROOTLIBJPEGMINTURBO' +configopts += ' --with-png=$EBROOTLIBPNG --with-sqlite3=$EBROOTSQLITE --with-jasper=$EBROOTJASPER' +configopts += ' --with-libtiff=$EBROOTLIBTIFF --with-pcre=$EBROOTPCRE --with-python=$EBROOTPYTHON/bin/python' + +modextrapaths = {'PYTHONPATH': 'lib/python%(pyshortver)s/site-packages'} + +sanity_check_paths = { + 'files': ['lib/libgdal.a', 'lib/libgdal.%s' % SHLIB_EXT], + 'dirs': ['bin', 'include', 'lib/python%(pyshortver)s/site-packages'] +} + +moduleclass = 'data' diff --git a/easybuild/easyconfigs/n/NCL/NCL-6.4.0-intel-2017a.eb b/easybuild/easyconfigs/n/NCL/NCL-6.4.0-intel-2017a.eb new file mode 100644 index 0000000000..69a80fc8ea --- /dev/null +++ b/easybuild/easyconfigs/n/NCL/NCL-6.4.0-intel-2017a.eb @@ -0,0 +1,40 @@ +name = 'NCL' +version = '6.4.0' + +homepage = 'http://www.ncl.ucar.edu' +description = """NCL is an interpreted language designed specifically for scientific data analysis and + visualization.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +#toolchainopts = {'pic': True, 'usempi': True, 'openmp': True} +toolchainopts = {'pic': True, 'openmp': True, 'cstd': 'c99'} + +# download via https://www.earthsystemgrid.org/dataset/ncl.html +sources = ['%(namelower)s_ncarg-%(version)s.tar.gz'] + +patches = ['NCL-%(version)s_fix-types.patch'] + +hdf5_ver = '1.8.18' +dependencies = [ + ('cURL', '7.53.1'), + ('JasPer', '1.900.1'), + ('g2lib', '1.4.0'), + ('g2clib', '1.6.0'), + ('HDF', '4.2.12'), + ('HDF5', hdf5_ver), + ('netCDF', '4.4.1.1', '-HDF5-%s' % hdf5_ver), + ('netCDF-Fortran', '4.4.4', '-HDF5-%s' % hdf5_ver), + ('Szip', '2.1'), + ('freetype', '2.7.1', '-libpng-1.6.29'), + ('zlib', '1.2.11'), + ('GDAL', '2.2.0', '-Python-2.7.13-HDF5-%s' % hdf5_ver), + ('UDUNITS', '2.2.24'), + ('ESMF', '6.3.0rp1', '-HDF5-%s' % hdf5_ver), + ('bzip2', '1.0.6'), + ('cairo', '1.14.8'), + ('libiconv', '1.15'), + ('GSL', '2.3'), +] +builddependencies = [('makedepend', '1.0.5')] + +moduleclass = 'data' diff --git a/easybuild/easyconfigs/n/NCL/NCL-6.4.0_fix-types.patch b/easybuild/easyconfigs/n/NCL/NCL-6.4.0_fix-types.patch new file mode 100644 index 0000000000..ecdfe831e0 --- /dev/null +++ b/easybuild/easyconfigs/n/NCL/NCL-6.4.0_fix-types.patch @@ -0,0 +1,94 @@ +fix compilation problems due to incorrect type +author: Kenneth Hoste (HPC-UGent) +--- ni/src/lib/nfp/SCRIP2KMLW.c.orig 2017-04-21 11:22:11.523861897 +0200 ++++ ni/src/lib/nfp/SCRIP2KMLW.c 2017-04-21 11:22:17.773923222 +0200 +@@ -8,17 +8,17 @@ + NhlErrorTypes SCRIP2KML_W(void) { + /* Defining the Arguments */ + /* Argument # 0 */ +- string * scrip_filename; ++ NclQuark* scrip_filename; + char * c_scrip_filename; + int ncid; + + /* Argument # 1 */ +- string * kml_filename; ++ NclQuark* kml_filename; + char * c_kml_filename; + FILE * fid; + + /* Argument # 2 */ +- string * gridname; ++ NclQuark* gridname; + char * c_gridname; + + /* End of Defining the Arguments */ +@@ -48,7 +48,7 @@ + + /* Getting Arguments values */ + /* Argument # 0 */ +- scrip_filename = (string *) NclGetArgValue( ++ scrip_filename = (NclQuark*) NclGetArgValue( + 0, + 3, + NULL, +@@ -61,7 +61,7 @@ + c_scrip_filename = NrmQuarkToString(*scrip_filename); + + /* Argument # 1 */ +- kml_filename = (string *) NclGetArgValue( ++ kml_filename = (NclQuark*) NclGetArgValue( + 1, + 3, + NULL, +@@ -74,7 +74,7 @@ + c_kml_filename = NrmQuarkToString(*kml_filename); + + /* Argument # 1 */ +- gridname = (string *) NclGetArgValue( ++ gridname = (NclQuark*) NclGetArgValue( + 2, + 3, + NULL, +@@ -212,4 +212,4 @@ + free(grid_corner_lon); + fclose(fid); + return (NhlNOERROR); +-} +\ No newline at end of file ++} +--- ni/src/lib/nfp/Unstruct2KMLW.c.orig 2017-04-21 11:20:50.403067496 +0200 ++++ ni/src/lib/nfp/Unstruct2KMLW.c 2017-04-21 11:21:34.883504667 +0200 +@@ -7,12 +7,12 @@ + NhlErrorTypes Unstruct2KML_W(void) { + /* Defining the Arguments */ + /* Argument # 0 */ +- string * filename; ++ NclQuark* filename; + char * c_filename; + FILE * fid; + + /* Argument # 1 */ +- string * gridname; ++ NclQuark* gridname; + char * c_gridname; + + /* Argument # 2 */ +@@ -50,7 +50,7 @@ + + /* Getting Arguments values */ + /* Argument # 0 */ +- filename = (string *) NclGetArgValue( ++ filename = (NclQuark*) NclGetArgValue( + 0, + 6, + NULL, +@@ -63,7 +63,7 @@ + c_filename = NrmQuarkToString(*filename); + + /* Argument # 1 */ +- gridname = (string *) NclGetArgValue( ++ gridname = (NclQuark*) NclGetArgValue( + 1, + 6, + NULL, -- GitLab From a870c28a01201cd38a21584c6f614e470204f76b Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 15 May 2017 20:56:01 +0200 Subject: [PATCH 049/608] add missing patch file for GDAL 2.2.0 with intel/2017a --- .../g/GDAL/GDAL-2.2.0_fix-uchar-definition.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 easybuild/easyconfigs/g/GDAL/GDAL-2.2.0_fix-uchar-definition.patch diff --git a/easybuild/easyconfigs/g/GDAL/GDAL-2.2.0_fix-uchar-definition.patch b/easybuild/easyconfigs/g/GDAL/GDAL-2.2.0_fix-uchar-definition.patch new file mode 100644 index 0000000000..c876781483 --- /dev/null +++ b/easybuild/easyconfigs/g/GDAL/GDAL-2.2.0_fix-uchar-definition.patch @@ -0,0 +1,11 @@ +add definition for uchar type that is not known by Intel compilers +author: Kenneth Hoste (HPC-UGent) +--- gdal-2.2.0/frmts/jpeg2000/jpeg2000_vsil_io.h.orig 2017-05-15 17:23:31.334324922 +0200 ++++ gdal-2.2.0/frmts/jpeg2000/jpeg2000_vsil_io.h 2017-05-15 17:23:52.134563207 +0200 +@@ -34,4 +34,6 @@ + + jas_stream_t *JPEG2000_VSIL_fopen(const char *filename, const char *mode); + ++#define uchar unsigned char ++ + #endif -- GitLab From f350e79564938b994f09e48b09bdbe88964ab95e Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 16 May 2017 09:30:27 +0200 Subject: [PATCH 050/608] clean up toolchainopts in NCL 6.4.0 easyconfig --- easybuild/easyconfigs/n/NCL/NCL-6.4.0-intel-2017a.eb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/n/NCL/NCL-6.4.0-intel-2017a.eb b/easybuild/easyconfigs/n/NCL/NCL-6.4.0-intel-2017a.eb index 69a80fc8ea..9fa92eb87b 100644 --- a/easybuild/easyconfigs/n/NCL/NCL-6.4.0-intel-2017a.eb +++ b/easybuild/easyconfigs/n/NCL/NCL-6.4.0-intel-2017a.eb @@ -6,8 +6,7 @@ description = """NCL is an interpreted language designed specifically for scient visualization.""" toolchain = {'name': 'intel', 'version': '2017a'} -#toolchainopts = {'pic': True, 'usempi': True, 'openmp': True} -toolchainopts = {'pic': True, 'openmp': True, 'cstd': 'c99'} +toolchainopts = {'cstd': 'c99', 'openmp': True, 'pic': True} # download via https://www.earthsystemgrid.org/dataset/ncl.html sources = ['%(namelower)s_ncarg-%(version)s.tar.gz'] -- GitLab From 9b014dfe78bf42f2c5f26e82868346b9dd0bff48 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 16 May 2017 09:58:11 +0200 Subject: [PATCH 051/608] adding easyconfigs: SCons-2.5.1-intel-2017a.eb --- .../s/SCons/SCons-2.5.1-intel-2017a.eb | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 easybuild/easyconfigs/s/SCons/SCons-2.5.1-intel-2017a.eb diff --git a/easybuild/easyconfigs/s/SCons/SCons-2.5.1-intel-2017a.eb b/easybuild/easyconfigs/s/SCons/SCons-2.5.1-intel-2017a.eb new file mode 100644 index 0000000000..cfdd0743d4 --- /dev/null +++ b/easybuild/easyconfigs/s/SCons/SCons-2.5.1-intel-2017a.eb @@ -0,0 +1,24 @@ +easyblock = 'PythonPackage' + +name = 'SCons' +version = '2.5.1' + +homepage = 'http://www.scons.org/' +description = "SCons is a software construction tool." + +toolchain = {'name': 'intel', 'version': '2017a'} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s'] + +# SCons requires Python 2, rely on system Python so we can use SCons when module for Python 3.x is loaded +allow_system_deps = [('Python', SYS_PYTHON_VERSION)] + +sanity_check_paths = { + 'files': ['bin/scons', 'bin/scons-time', 'bin/sconsign'], + 'dirs': ['lib/%(namelower)s-%(version)s/%(name)s'], +} + +options = {'modulename': False} + +moduleclass = 'devel' -- GitLab From a7191dd886149d7f146737462f4dc79bc6b58d07 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 16 May 2017 10:17:28 +0200 Subject: [PATCH 052/608] adding easyconfigs: SpiceyPy-1.1.1-intel-2017a-Python-3.6.1.eb --- ...SpiceyPy-1.1.1-intel-2017a-Python-3.6.1.eb | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 easybuild/easyconfigs/s/SpiceyPy/SpiceyPy-1.1.1-intel-2017a-Python-3.6.1.eb diff --git a/easybuild/easyconfigs/s/SpiceyPy/SpiceyPy-1.1.1-intel-2017a-Python-3.6.1.eb b/easybuild/easyconfigs/s/SpiceyPy/SpiceyPy-1.1.1-intel-2017a-Python-3.6.1.eb new file mode 100644 index 0000000000..e2776528bd --- /dev/null +++ b/easybuild/easyconfigs/s/SpiceyPy/SpiceyPy-1.1.1-intel-2017a-Python-3.6.1.eb @@ -0,0 +1,22 @@ +easyblock = 'PythonPackage' + +name = 'SpiceyPy' +version = '1.1.1' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'https://github.com/AndrewAnnex/SpiceyPy' +description = "SpiceyPy is a Python wrapper for the NAIF C SPICE Toolkit (N65)" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [PYPI_SOURCE] +sources = [SOURCELOWER_TAR_GZ] + +dependencies = [('Python', '3.6.1')] + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages'], +} + +moduleclass = 'geo' -- GitLab From 34a5f16d1c19c76a6275b1e1e76a735243bce8c8 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 16 May 2017 10:19:34 +0200 Subject: [PATCH 053/608] adding easyconfigs: h5py-2.7.0-intel-2017a-Python-3.6.1-HDF5-1.10.0-patch1.eb --- ...l-2017a-Python-3.6.1-HDF5-1.10.0-patch1.eb | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 easybuild/easyconfigs/h/h5py/h5py-2.7.0-intel-2017a-Python-3.6.1-HDF5-1.10.0-patch1.eb diff --git a/easybuild/easyconfigs/h/h5py/h5py-2.7.0-intel-2017a-Python-3.6.1-HDF5-1.10.0-patch1.eb b/easybuild/easyconfigs/h/h5py/h5py-2.7.0-intel-2017a-Python-3.6.1-HDF5-1.10.0-patch1.eb new file mode 100644 index 0000000000..22fe0fbf91 --- /dev/null +++ b/easybuild/easyconfigs/h/h5py/h5py-2.7.0-intel-2017a-Python-3.6.1-HDF5-1.10.0-patch1.eb @@ -0,0 +1,33 @@ +easyblock = 'PythonPackage' + +name = 'h5py' +version = '2.7.0' +hdf5_ver = '1.10.0-patch1' +versionsuffix = '-Python-%%(pyver)s-HDF5-%s' % hdf5_ver + +homepage = 'http://www.h5py.org/' +description = """HDF5 for Python (h5py) is a general-purpose Python interface to the Hierarchical Data Format library, + version 5. HDF5 is a versatile, mature scientific software library designed for the fast, flexible storage of enormous + amounts of data.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'usempi': True} + +source_urls = [PYPI_SOURCE] +sources = [SOURCE_TAR_GZ] + +# to really use mpi enabled hdf5 we now seem to need a configure step +prebuildopts = ' python setup.py configure --mpi --hdf5=$EBROOTHDF5 && ' + +dependencies = [ + ('Python', '3.6.1'), + ('HDF5', hdf5_ver), + ('pkgconfig', '1.2.2', '-Python-%(pyver)s'), +] + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages/'], +} + +moduleclass = 'data' -- GitLab From efa22960a1721b67796cfac831401c5c0f98d8ee Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 16 May 2017 10:34:27 +0200 Subject: [PATCH 054/608] adding easyconfigs: GDAL-2.2.0-intel-2017a-Python-3.6.1.eb, GEOS-3.6.1-intel-2017a-Python-3.6.1.eb, SWIG-3.0.12-intel-2017a-Python-3.6.1.eb --- .../GDAL-2.2.0-intel-2017a-Python-3.6.1.eb | 48 +++++++++++++++++++ .../GEOS-3.6.1-intel-2017a-Python-3.6.1.eb | 29 +++++++++++ .../SWIG-3.0.12-intel-2017a-Python-3.6.1.eb | 20 ++++++++ 3 files changed, 97 insertions(+) create mode 100644 easybuild/easyconfigs/g/GDAL/GDAL-2.2.0-intel-2017a-Python-3.6.1.eb create mode 100644 easybuild/easyconfigs/g/GEOS/GEOS-3.6.1-intel-2017a-Python-3.6.1.eb create mode 100644 easybuild/easyconfigs/s/SWIG/SWIG-3.0.12-intel-2017a-Python-3.6.1.eb diff --git a/easybuild/easyconfigs/g/GDAL/GDAL-2.2.0-intel-2017a-Python-3.6.1.eb b/easybuild/easyconfigs/g/GDAL/GDAL-2.2.0-intel-2017a-Python-3.6.1.eb new file mode 100644 index 0000000000..0b26815dc5 --- /dev/null +++ b/easybuild/easyconfigs/g/GDAL/GDAL-2.2.0-intel-2017a-Python-3.6.1.eb @@ -0,0 +1,48 @@ +easyblock = 'ConfigureMake' + +name = 'GDAL' +version = '2.2.0' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://www.gdal.org/' +description = """GDAL is a translator library for raster geospatial data formats that is released under an X/MIT style + Open Source license by the Open Source Geospatial Foundation. As a library, it presents a single abstract data model + to the calling application for all supported formats. It also comes with a variety of useful commandline utilities for + data translation and processing.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'usempi': True} + +source_urls = ['http://download.osgeo.org/gdal/%(version)s/'] +sources = [SOURCELOWER_TAR_XZ] +patches = ['GDAL-%(version)s_fix-uchar-definition.patch'] + +dependencies = [ + ('Python', '3.6.1'), + ('netCDF', '4.4.1.1'), + ('expat', '2.2.0'), + ('GEOS', '3.6.1', versionsuffix), + ('SQLite', '3.17.0'), + ('libxml2', '2.9.4'), + ('libpng', '1.6.29'), + ('libjpeg-turbo', '1.5.1'), + ('JasPer', '2.0.12'), + ('LibTIFF', '4.0.7'), + ('zlib', '1.2.11'), + ('cURL', '7.53.1'), + ('PCRE', '8.40'), +] + +configopts = '--with-expat=$EBROOTEXPAT --with-libz=$EBROOTLIBZ --with-hdf5=$EBROOTHDF5 --with-netcdf=$EBROOTNETCDF' +configopts += ' --with-xml2=$EBROOTLIBXML2 --with-geos=$EBROOTGEOS/bin/geos-config --with-jpeg=$EBROOTLIBJPEGMINTURBO' +configopts += ' --with-png=$EBROOTLIBPNG --with-sqlite3=$EBROOTSQLITE --with-jasper=$EBROOTJASPER' +configopts += ' --with-libtiff=$EBROOTLIBTIFF --with-pcre=$EBROOTPCRE --with-python=$EBROOTPYTHON/bin/python' + +modextrapaths = {'PYTHONPATH': 'lib/python%(pyshortver)s/site-packages'} + +sanity_check_paths = { + 'files': ['lib/libgdal.a', 'lib/libgdal.%s' % SHLIB_EXT], + 'dirs': ['bin', 'include', 'lib/python%(pyshortver)s/site-packages'] +} + +moduleclass = 'data' diff --git a/easybuild/easyconfigs/g/GEOS/GEOS-3.6.1-intel-2017a-Python-3.6.1.eb b/easybuild/easyconfigs/g/GEOS/GEOS-3.6.1-intel-2017a-Python-3.6.1.eb new file mode 100644 index 0000000000..786b191d55 --- /dev/null +++ b/easybuild/easyconfigs/g/GEOS/GEOS-3.6.1-intel-2017a-Python-3.6.1.eb @@ -0,0 +1,29 @@ +easyblock = 'ConfigureMake' + +name = 'GEOS' +version = '3.6.1' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://trac.osgeo.org/geos' +description = """GEOS (Geometry Engine - Open Source) is a C++ port of the Java Topology Suite (JTS)""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['http://download.osgeo.org/geos/'] +sources = [SOURCELOWER_TAR_BZ2] +patches = ['GEOS-%(version)s_fix-Python3.patch'] + +dependencies = [('Python', '3.6.1')] + +builddependencies = [('SWIG', '3.0.12', versionsuffix)] + +configopts = '--enable-python' + +modextrapaths = {'PYTHONPATH': 'lib/python%(pyshortver)s/site-packages'} + +sanity_check_paths = { + 'files': ['bin/geos-config', 'lib/libgeos.%s' % SHLIB_EXT, 'lib/libgeos.a', 'include/geos.h'], + 'dirs': ['lib/python%(pyshortver)s/site-packages/geos'], +} + +moduleclass = 'math' diff --git a/easybuild/easyconfigs/s/SWIG/SWIG-3.0.12-intel-2017a-Python-3.6.1.eb b/easybuild/easyconfigs/s/SWIG/SWIG-3.0.12-intel-2017a-Python-3.6.1.eb new file mode 100644 index 0000000000..5c78d52fbe --- /dev/null +++ b/easybuild/easyconfigs/s/SWIG/SWIG-3.0.12-intel-2017a-Python-3.6.1.eb @@ -0,0 +1,20 @@ +name = 'SWIG' +version = '3.0.12' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://www.swig.org/' +description = """SWIG is a software development tool that connects programs written in C and C++ with + a variety of high-level programming languages.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'pic': True} + +source_urls = [SOURCEFORGE_SOURCE] +sources = [SOURCELOWER_TAR_GZ] + +dependencies = [ + ('Python', '3.6.1'), + ('PCRE', '8.40'), +] + +moduleclass = 'devel' -- GitLab From 35513ec7cbaaf931910118fbf7f6567ffb5f5dbb Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 16 May 2017 10:35:59 +0200 Subject: [PATCH 055/608] add missing patch for GEOS --- .../g/GEOS/GEOS-3.6.1_fix-Python3.patch | 65 +++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 easybuild/easyconfigs/g/GEOS/GEOS-3.6.1_fix-Python3.patch diff --git a/easybuild/easyconfigs/g/GEOS/GEOS-3.6.1_fix-Python3.patch b/easybuild/easyconfigs/g/GEOS/GEOS-3.6.1_fix-Python3.patch new file mode 100644 index 0000000000..51d136b71d --- /dev/null +++ b/easybuild/easyconfigs/g/GEOS/GEOS-3.6.1_fix-Python3.patch @@ -0,0 +1,65 @@ +fix configuring with Python 3 +cfr. https://trac.osgeo.org/geos/ticket/774 +--- configure.orig 2016-12-29 17:33:15.229294313 +0100 ++++ configure 2016-12-29 18:33:27.822625611 +0100 +@@ -18329,7 +18329,7 @@ + if ${am_cv_python_version+:} false; then : + $as_echo_n "(cached) " >&6 + else +- am_cv_python_version=`$PYTHON -c "import sys; print sys.version[:3]"` ++ am_cv_python_version=`$PYTHON -c "import sys; print(sys.version[:3])"` + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_version" >&5 + $as_echo "$am_cv_python_version" >&6; } +@@ -18348,7 +18348,7 @@ + if ${am_cv_python_platform+:} false; then : + $as_echo_n "(cached) " >&6 + else +- am_cv_python_platform=`$PYTHON -c "import sys; print sys.platform"` ++ am_cv_python_platform=`$PYTHON -c "import sys; print(sys.platform)"` + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_platform" >&5 + $as_echo "$am_cv_python_platform" >&6; } +@@ -18362,7 +18362,7 @@ + if ${am_cv_python_pythondir+:} false; then : + $as_echo_n "(cached) " >&6 + else +- am_cv_python_pythondir=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib(0,0,prefix='$PYTHON_PREFIX')" 2>/dev/null || ++ am_cv_python_pythondir=`$PYTHON -c "from distutils import sysconfig; print(sysconfig.get_python_lib(0,0,prefix='$PYTHON_PREFIX'))" 2>/dev/null || + echo "$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages"` + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_pythondir" >&5 +@@ -18379,7 +18379,7 @@ + if ${am_cv_python_pyexecdir+:} false; then : + $as_echo_n "(cached) " >&6 + else +- am_cv_python_pyexecdir=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib(1,0,prefix='$PYTHON_EXEC_PREFIX')" 2>/dev/null || ++ am_cv_python_pyexecdir=`$PYTHON -c "from distutils import sysconfig; print(sysconfig.get_python_lib(1,0,prefix='$PYTHON_EXEC_PREFIX'))" 2>/dev/null || + echo "${PYTHON_EXEC_PREFIX}/lib/python${PYTHON_VERSION}/site-packages"` + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_pyexecdir" >&5 +@@ -18448,19 +18448,21 @@ + # Check for Python library path + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Python library path" >&5 + $as_echo_n "checking for Python library path... " >&6; } +- for i in "$base_python_path/lib/python$PYTHON_VERSION/config/" "$base_python_path/lib/python$PYTHON_VERSION/" "$base_python_path/lib/python/config/" "$base_python_path/lib/python/" "$base_python_path/" "$base_python_path/libs/" ; do +- python_path=`find $i -name libpython$PYTHON_VERSION.* -print 2> /dev/null | sed "1q"` ++ for i in "$base_python_path/lib/python$PYTHON_VERSION/config/" "$base_python_path/lib/python$PYTHON_VERSION/" "$base_python_path/lib/python/config/" "$base_python_path/lib/python/" "$base_python_path/" "$base_python_path/libs/" "$base_python_path/lib/" ; do ++ python_path=`find $i -name libpython$PYTHON_VERSION*.so* -print 2> /dev/null | sed "1q"` + if test -n "$python_path" ; then + break + fi + done ++ ++ lpython_name=`python -c "import os; print(os.path.split(\"$python_path\")[1].split(\".so\")[0].split(\"lib\")[1])"` + python_path=`echo $python_path | sed "s,/libpython.*$,,"` + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $python_path" >&5 + $as_echo "$python_path" >&6; } + if test -z "$python_path" ; then + as_fn_error $? "cannot find Python library path" "$LINENO" 5 + fi +- PYTHON_LDFLAGS="-L$python_path -lpython$PYTHON_VERSION" ++ PYTHON_LDFLAGS="-L$python_path -l$lpython_name" + + # + python_site=`echo $base_python_path | sed "s/config/site-packages/"` -- GitLab From 7561b619e73b3afa2cc5bc68c2f35e798f09cbc7 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 16 May 2017 10:37:19 +0200 Subject: [PATCH 056/608] adding easyconfigs: motif-2.3.7-intel-2017a.eb, xbitmaps-1.1.1.eb, flex-2.6.4-GCCcore-6.3.0.eb --- .../f/flex/flex-2.6.4-GCCcore-6.3.0.eb | 24 ++++++++++++ .../m/motif/motif-2.3.7-intel-2017a.eb | 39 +++++++++++++++++++ .../easyconfigs/x/xbitmaps/xbitmaps-1.1.1.eb | 19 +++++++++ 3 files changed, 82 insertions(+) create mode 100644 easybuild/easyconfigs/f/flex/flex-2.6.4-GCCcore-6.3.0.eb create mode 100644 easybuild/easyconfigs/m/motif/motif-2.3.7-intel-2017a.eb create mode 100644 easybuild/easyconfigs/x/xbitmaps/xbitmaps-1.1.1.eb diff --git a/easybuild/easyconfigs/f/flex/flex-2.6.4-GCCcore-6.3.0.eb b/easybuild/easyconfigs/f/flex/flex-2.6.4-GCCcore-6.3.0.eb new file mode 100644 index 0000000000..c864ccaca1 --- /dev/null +++ b/easybuild/easyconfigs/f/flex/flex-2.6.4-GCCcore-6.3.0.eb @@ -0,0 +1,24 @@ +name = 'flex' +version = '2.6.4' + +homepage = 'http://flex.sourceforge.net/' +description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner, + sometimes called a tokenizer, is a program which recognizes lexical patterns in text.""" + +toolchain = {'name': 'GCCcore', 'version': '6.3.0'} +toolchainopts = {'pic': True} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = ['https://github.com/westes/flex/releases/download/v%(version)s/'] + +checksums = ['2882e3179748cc9f9c23ec593d6adc8d'] + +dependencies = [('M4', '1.4.18')] +builddependencies = [ + ('Bison', '3.0.4'), + ('help2man', '1.47.4'), + # use same binutils version that was used when building GCC toolchain + ('binutils', '2.27', '', True), +] + +moduleclass = 'lang' diff --git a/easybuild/easyconfigs/m/motif/motif-2.3.7-intel-2017a.eb b/easybuild/easyconfigs/m/motif/motif-2.3.7-intel-2017a.eb new file mode 100644 index 0000000000..e0ba802b63 --- /dev/null +++ b/easybuild/easyconfigs/m/motif/motif-2.3.7-intel-2017a.eb @@ -0,0 +1,39 @@ +easyblock = 'ConfigureMake' + +name = 'motif' +version = '2.3.7' + +homepage = 'http://motif.ics.com/' +description = """Motif refers to both a graphical user interface (GUI) specification and the widget toolkit for building + applications that follow that specification under the X Window System on Unix and other POSIX-compliant systems. + It was the standard toolkit for the Common Desktop Environment and thus for Unix.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +sources = ['%(name)s-%(version)s.tar.gz'] +source_urls = [SOURCEFORGE_SOURCE] + +dependencies = [ + ('X11', '20170314'), + ('libpng', '1.6.29'), + ('xbitmaps', '1.1.1', '', True), + ('freetype', '2.7.1', '-libpng-1.6.29'), + ('libjpeg-turbo', '1.5.1'), + ('bzip2', '1.0.6'), +] +builddependencies = [ + ('Autotools', '20150215'), + ('flex', '2.6.4'), + ('Bison', '3.0.4'), + ('util-linux', '2.29.2'), +] + +# makefile is not parallel safe +parallel = 1 + +sanity_check_paths = { + 'files': ['lib/libMrm.a', 'lib/libUil.a', 'lib/libXm.a', 'bin/mwm', 'bin/uil', 'bin/xmbind'], + 'dirs': ['include/Mrm', 'include/uil', 'include/X11', 'include/Xm'], +} + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/x/xbitmaps/xbitmaps-1.1.1.eb b/easybuild/easyconfigs/x/xbitmaps/xbitmaps-1.1.1.eb new file mode 100644 index 0000000000..b56ca14110 --- /dev/null +++ b/easybuild/easyconfigs/x/xbitmaps/xbitmaps-1.1.1.eb @@ -0,0 +1,19 @@ +easyblock = 'ConfigureMake' + +name = 'xbitmaps' +version = '1.1.1' + +homepage = "http://www.freedesktop.org/wiki/Software/xlibs" +description = """provides bitmaps for x""" + +toolchain = {'name': 'dummy', 'version': 'dummy'} + +sources = [SOURCE_TAR_GZ] +source_urls = [XORG_DATA_SOURCE] + +sanity_check_paths = { + 'files': ['include/X11/bitmaps/gray'], + 'dirs': [] +} + +moduleclass = 'devel' -- GitLab From 0377a1294cf02a92a3163d815860a572958fba73 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 16 May 2017 11:49:06 +0200 Subject: [PATCH 057/608] {bio}[intel/2017a] TopHat 2.1.1 --- .../t/TopHat/TopHat-2.1.1-intel-2017a.eb | 41 +++++++++++++++++++ .../TopHat-2.1.1_fix-templating-error.patch | 13 ++++++ 2 files changed, 54 insertions(+) create mode 100644 easybuild/easyconfigs/t/TopHat/TopHat-2.1.1-intel-2017a.eb create mode 100644 easybuild/easyconfigs/t/TopHat/TopHat-2.1.1_fix-templating-error.patch diff --git a/easybuild/easyconfigs/t/TopHat/TopHat-2.1.1-intel-2017a.eb b/easybuild/easyconfigs/t/TopHat/TopHat-2.1.1-intel-2017a.eb new file mode 100644 index 0000000000..f3be80ad62 --- /dev/null +++ b/easybuild/easyconfigs/t/TopHat/TopHat-2.1.1-intel-2017a.eb @@ -0,0 +1,41 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# Author: Pablo Escobar Lopez +# Swiss Institute of Bioinformatics +# Biozentrum - University of Basel +# Modified by: Adam Huffman +# The Francis Crick Institute + +easyblock = 'ConfigureMake' + +name = 'TopHat' +version = '2.1.1' + +homepage = 'http://ccb.jhu.edu/software/tophat/' +description = """TopHat is a fast splice junction mapper for RNA-Seq reads.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'pic': True, 'cstd': 'c++11'} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = ['http://ccb.jhu.edu/software/tophat/downloads/'] + +patches = [ + 'tophat-2.0.13-zlib.patch', + 'TopHat-2.1.1_fix-templating-error.patch', +] + +dependencies = [ + ('Boost', '1.64.0'), + ('zlib', '1.2.11'), +] + +configopts = '--with-boost=$EBROOTBOOST' + +parallel = 1 + +sanity_check_paths = { + 'files': ['bin/tophat'], + 'dirs': [], +} + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/t/TopHat/TopHat-2.1.1_fix-templating-error.patch b/easybuild/easyconfigs/t/TopHat/TopHat-2.1.1_fix-templating-error.patch new file mode 100644 index 0000000000..0abcfeeb26 --- /dev/null +++ b/easybuild/easyconfigs/t/TopHat/TopHat-2.1.1_fix-templating-error.patch @@ -0,0 +1,13 @@ +fix templating compilation error, let type inference do its job +authors: Kenneth Hoste (HPC-UGent), Ward Poelmans (VUB) +--- tophat-2.1.1/src/tophat_reports.cpp.orig 2017-05-16 11:24:21.776900497 +0200 ++++ tophat-2.1.1/src/tophat_reports.cpp 2017-05-16 11:25:31.958523978 +0200 +@@ -2705,7 +2705,7 @@ + junction_stat.gtf_match = true; + junction_stat.accepted = true; + +- gtf_junctions.insert(make_pair(Junction(ref_id, left_coord, right_coord, antisense), junction_stat)); ++ gtf_junctions.insert(make_pair(Junction(ref_id, left_coord, right_coord, antisense), junction_stat)); + } + } + fprintf(stderr, "Loaded %d GFF junctions from %s.\n", (int)(gtf_junctions.size()), gtf_juncs.c_str()); -- GitLab From 0650f1b517d052a4e93fc7b4a99b8d5e421402fd Mon Sep 17 00:00:00 2001 From: Pablo Escobar Date: Tue, 16 May 2017 13:45:29 +0200 Subject: [PATCH 058/608] adding easyconfigs: SeqAn-2.3.2-foss-2016b.eb --- .../s/SeqAn/SeqAn-2.3.2-foss-2016b.eb | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 easybuild/easyconfigs/s/SeqAn/SeqAn-2.3.2-foss-2016b.eb diff --git a/easybuild/easyconfigs/s/SeqAn/SeqAn-2.3.2-foss-2016b.eb b/easybuild/easyconfigs/s/SeqAn/SeqAn-2.3.2-foss-2016b.eb new file mode 100644 index 0000000000..28c6b25215 --- /dev/null +++ b/easybuild/easyconfigs/s/SeqAn/SeqAn-2.3.2-foss-2016b.eb @@ -0,0 +1,37 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# Author: Pablo Escobar Lopez +# sciCORE - University of Basel +# SIB Swiss Institute of Bioinformatics + +easyblock = "CMakeMake" + +name = 'SeqAn' +version = '2.3.2' + +homepage = 'https://www.seqan.de/' +description = """SeqAn is an open source C++ library of efficient algorithms and data structures + for the analysis of sequences with the focus on biological data""" + +# GCC > 5 required. https://github.com/seqan/seqan#prerequisites +toolchain = {'name': 'foss', 'version': '2016b'} + +source_urls = ['https://github.com/seqan/seqan/archive/'] +sources = ['%(namelower)s-v%(version)s.tar.gz'] + +# CMake > 3 required. CMake >= 3.4 recommended +builddependencies = [('CMake', '3.4.3')] + +dependencies = [ + ('zlib', '1.2.8'), + ('bzip2', '1.0.6') +] + +separate_build_dir = True + +sanity_check_paths = { + 'files': ["bin/%s" % x for x in ["gustaf_mate_joining", "mason_materializer", "mason_variator", "rabema_prepare_sam", + "seqan_tcoffee", "s4_join", "samcat", "splazers", "yara_mapper"]], + 'dirs': [], +} + +moduleclass = 'bio' -- GitLab From dc8ce7b3d0b19c872e7539e880dfaee4786e8553 Mon Sep 17 00:00:00 2001 From: Pablo Escobar Lopez Date: Tue, 16 May 2017 15:04:01 +0200 Subject: [PATCH 059/608] update CMake dependency to 3.7.2 --- easybuild/easyconfigs/s/SeqAn/SeqAn-2.3.2-foss-2016b.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/s/SeqAn/SeqAn-2.3.2-foss-2016b.eb b/easybuild/easyconfigs/s/SeqAn/SeqAn-2.3.2-foss-2016b.eb index 28c6b25215..b89f6044b4 100644 --- a/easybuild/easyconfigs/s/SeqAn/SeqAn-2.3.2-foss-2016b.eb +++ b/easybuild/easyconfigs/s/SeqAn/SeqAn-2.3.2-foss-2016b.eb @@ -19,7 +19,7 @@ source_urls = ['https://github.com/seqan/seqan/archive/'] sources = ['%(namelower)s-v%(version)s.tar.gz'] # CMake > 3 required. CMake >= 3.4 recommended -builddependencies = [('CMake', '3.4.3')] +builddependencies = [('CMake', '3.7.2')] dependencies = [ ('zlib', '1.2.8'), -- GitLab From ebf4e914abd70d84f09a56acc1c20c3d638a10e6 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 16 May 2017 17:07:13 +0200 Subject: [PATCH 060/608] adding easyconfigs: NCO-4.6.6-intel-2017a.eb, ANTLR-2.7.7-intel-2017a-Python-2.7.13.eb, libdap-3.18.1-intel-2017a.eb, LibUUID-1.0.3-intel-2017a.eb --- .../ANTLR-2.7.7-intel-2017a-Python-2.7.13.eb | 32 +++++++++++++++++ .../l/LibUUID/LibUUID-1.0.3-intel-2017a.eb | 19 ++++++++++ .../l/libdap/libdap-3.18.1-intel-2017a.eb | 32 +++++++++++++++++ .../n/NCO/NCO-4.6.6-intel-2017a.eb | 35 +++++++++++++++++++ 4 files changed, 118 insertions(+) create mode 100644 easybuild/easyconfigs/a/ANTLR/ANTLR-2.7.7-intel-2017a-Python-2.7.13.eb create mode 100644 easybuild/easyconfigs/l/LibUUID/LibUUID-1.0.3-intel-2017a.eb create mode 100644 easybuild/easyconfigs/l/libdap/libdap-3.18.1-intel-2017a.eb create mode 100644 easybuild/easyconfigs/n/NCO/NCO-4.6.6-intel-2017a.eb diff --git a/easybuild/easyconfigs/a/ANTLR/ANTLR-2.7.7-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/a/ANTLR/ANTLR-2.7.7-intel-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..e00f225a13 --- /dev/null +++ b/easybuild/easyconfigs/a/ANTLR/ANTLR-2.7.7-intel-2017a-Python-2.7.13.eb @@ -0,0 +1,32 @@ +easyblock = 'ConfigureMake' + +name = 'ANTLR' +version = '2.7.7' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://www.antlr2.org/' +description = """ANTLR, ANother Tool for Language Recognition, (formerly PCCTS) + is a language tool that provides a framework for constructing recognizers, + compilers, and translators from grammatical descriptions containing + Java, C#, C++, or Python actions.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['http://www.antlr2.org/download/'] +sources = [SOURCELOWER_TAR_GZ] + +patches = ['%(name)s-%(version)s_includes.patch'] + +dependencies = [ + ('Java', '1.8.0_131', '', True), + ('Python', '2.7.13'), +] + +configopts = '--disable-examples --disable-csharp ' + +sanity_check_paths = { + 'files': ['bin/antlr', 'bin/antlr-config'], + 'dirs': ['include'], +} + +moduleclass = 'tools' diff --git a/easybuild/easyconfigs/l/LibUUID/LibUUID-1.0.3-intel-2017a.eb b/easybuild/easyconfigs/l/LibUUID/LibUUID-1.0.3-intel-2017a.eb new file mode 100644 index 0000000000..a50ce3901e --- /dev/null +++ b/easybuild/easyconfigs/l/LibUUID/LibUUID-1.0.3-intel-2017a.eb @@ -0,0 +1,19 @@ +easyblock = 'ConfigureMake' + +name = 'LibUUID' +version = '1.0.3' + +homepage = 'http://sourceforge.net/projects/libuuid/' +description = """Portable uuid C library""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [SOURCEFORGE_SOURCE] +sources = [SOURCELOWER_TAR_GZ] + +sanity_check_paths = { + 'files': ['include/uuid/uuid.h', 'lib/libuuid.a', 'lib/libuuid.%s' % SHLIB_EXT], + 'dirs': [], +} + +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/l/libdap/libdap-3.18.1-intel-2017a.eb b/easybuild/easyconfigs/l/libdap/libdap-3.18.1-intel-2017a.eb new file mode 100644 index 0000000000..437ea556cf --- /dev/null +++ b/easybuild/easyconfigs/l/libdap/libdap-3.18.1-intel-2017a.eb @@ -0,0 +1,32 @@ +easyblock = 'ConfigureMake' + +name = 'libdap' +version = '3.18.1' + +homepage = 'http://opendap.org/download/libdap' +description = """A C++ SDK which contains an implementation of DAP 2.0 + and the development versions of DAP3, up to 3.4. + This includes both Client- and Server-side support classes.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['http://www.opendap.org/pub/source/'] +sources = [SOURCE_TAR_GZ] + +builddependencies = [ + ('Bison', '3.0.4'), + ('flex', '2.6.4'), +] + +dependencies = [ + ('cURL', '7.53.1'), + ('libxml2', '2.9.4'), + ('LibUUID', '1.0.3'), +] + +sanity_check_paths = { + 'files': ['bin/getdap', 'bin/getdap4', 'bin/dap-config', 'lib/libdap.a', 'lib/libdap.%s' % SHLIB_EXT], + 'dirs': ['include'], +} + +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/n/NCO/NCO-4.6.6-intel-2017a.eb b/easybuild/easyconfigs/n/NCO/NCO-4.6.6-intel-2017a.eb new file mode 100644 index 0000000000..b9edf1373e --- /dev/null +++ b/easybuild/easyconfigs/n/NCO/NCO-4.6.6-intel-2017a.eb @@ -0,0 +1,35 @@ +easyblock = 'ConfigureMake' + +name = 'NCO' +version = '4.6.6' + +homepage = "http://nco.sourceforge.net" +description = """manipulates and analyzes data stored in netCDF-accessible formats, including DAP, HDF4, and HDF5""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['http://nco.sourceforge.net/src'] +sources = [SOURCELOWER_TAR_GZ] + +builddependencies = [ + ('Bison', '3.0.4'), + ('flex', '2.6.4'), +] + +dependencies = [ + ('UDUNITS', '2.2.24'), + ('expat', '2.2.0'), + ('ANTLR', '2.7.7', '-Python-2.7.13'), + ('libdap', '3.18.1'), + ('GSL', '2.3'), + ('netCDF', '4.4.1.1', '-HDF5-1.8.18'), +] + +sanity_check_paths = { + 'files': ['bin/nc%s' % x for x in ('ap', 'ap2', 'atted', 'bo', 'diff', 'ea', 'ecat', 'es', + 'flint', 'ks', 'pdq', 'ra', 'rcat', 'rename', 'wa')] + + ['lib/libnco.a', 'lib/libnco.%s' % SHLIB_EXT, 'lib/libnco_c++.a', 'lib/libnco_c++.%s' % SHLIB_EXT], + 'dirs': ['include'], +} + +moduleclass = 'tools' -- GitLab From 06bbccbc6a65622a729a53d4d1b9555487911510 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 16 May 2017 17:43:36 +0200 Subject: [PATCH 061/608] {data}[intel/2017a] CDO 1.8.1 + YAXT 0.5.1 --- .../c/CDO/CDO-1.8.1-intel-2017a.eb | 31 +++++++++++++++++++ .../y/YAXT/YAXT-0.5.1-intel-2017a.eb | 23 ++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 easybuild/easyconfigs/c/CDO/CDO-1.8.1-intel-2017a.eb create mode 100644 easybuild/easyconfigs/y/YAXT/YAXT-0.5.1-intel-2017a.eb diff --git a/easybuild/easyconfigs/c/CDO/CDO-1.8.1-intel-2017a.eb b/easybuild/easyconfigs/c/CDO/CDO-1.8.1-intel-2017a.eb new file mode 100644 index 0000000000..f6f33ffc90 --- /dev/null +++ b/easybuild/easyconfigs/c/CDO/CDO-1.8.1-intel-2017a.eb @@ -0,0 +1,31 @@ +easyblock = 'ConfigureMake' + +name = 'CDO' +version = '1.8.1' + +homepage = 'https://code.zmaw.de/projects/cdo' +description = """CDO is a collection of command line Operators to manipulate and analyse Climate and NWP model Data.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'pic': True, 'usempi': True} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = ['https://code.zmaw.de/attachments/download/14271/'] +checksums = ['54498438de788f245d47499efad7966c'] + +dependencies = [ + ('HDF5', '1.8.18'), + ('netCDF', '4.4.1.1', '-HDF5-1.8.18'), + ('YAXT', '0.5.1'), +] + +configopts = "--with-hdf5=$EBROOTHDF5 --with-netcdf=$EBROOTNETCDF" +# fix for linking issues with HDF5 libraries for libcdi, should link with both -lnetcdf and -lhdf5_hl -lhdf5 +prebuildopts = "find libcdi -name Makefile | xargs sed -i 's/^\(LIBS.*\)/\\1 -lhdf5_hl -lhdf5/g' && " + +sanity_check_paths = { + 'files': ['bin/cdo'], + 'dirs': [], +} + +moduleclass = 'data' diff --git a/easybuild/easyconfigs/y/YAXT/YAXT-0.5.1-intel-2017a.eb b/easybuild/easyconfigs/y/YAXT/YAXT-0.5.1-intel-2017a.eb new file mode 100644 index 0000000000..4cdb872a2c --- /dev/null +++ b/easybuild/easyconfigs/y/YAXT/YAXT-0.5.1-intel-2017a.eb @@ -0,0 +1,23 @@ +easyblock = 'ConfigureMake' + +name = 'YAXT' +version = '0.5.1' + +homepage = 'https://www.dkrz.de/redmine/projects/yaxt' +description = "Yet Another eXchange Tool" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'usempi': True} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = ['https://www.dkrz.de/redmine/attachments/download/473/'] +checksums = ['2176c5b1096146e58163656b9d83c0b3'] + +configopts = 'FC="$F90" FCFLAGS="$F90FLAGS -cpp"' + +sanity_check_paths = { + 'files': ['include/yaxt.h', 'include/yaxt.mod', 'lib/libyaxt.a', 'lib/libyaxt.%s' % SHLIB_EXT], + 'dirs': ['include/xt'], +} + +moduleclass = 'tools' -- GitLab From 0c48bec1e62a5778a068bd6bb9acdd3e4952f610 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 16 May 2017 19:44:51 +0200 Subject: [PATCH 062/608] simplify patching of libcdi Makefiles in CDO easyconfig --- easybuild/easyconfigs/c/CDO/CDO-1.8.1-intel-2017a.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/c/CDO/CDO-1.8.1-intel-2017a.eb b/easybuild/easyconfigs/c/CDO/CDO-1.8.1-intel-2017a.eb index f6f33ffc90..1e3e7c4c76 100644 --- a/easybuild/easyconfigs/c/CDO/CDO-1.8.1-intel-2017a.eb +++ b/easybuild/easyconfigs/c/CDO/CDO-1.8.1-intel-2017a.eb @@ -21,7 +21,7 @@ dependencies = [ configopts = "--with-hdf5=$EBROOTHDF5 --with-netcdf=$EBROOTNETCDF" # fix for linking issues with HDF5 libraries for libcdi, should link with both -lnetcdf and -lhdf5_hl -lhdf5 -prebuildopts = "find libcdi -name Makefile | xargs sed -i 's/^\(LIBS.*\)/\\1 -lhdf5_hl -lhdf5/g' && " +prebuildopts = "find libcdi -name Makefile | xargs sed -i 's/-lnetcdf -lnetcdf/-lnetcdf -lhdf5_hl -lhdf5/g' && " sanity_check_paths = { 'files': ['bin/cdo'], -- GitLab From 4aebea8ec5da414b987f37af99914dddb715ca4b Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 16 May 2017 21:47:14 +0200 Subject: [PATCH 063/608] use 'git diff --name-only' and $TRAVIS_COMMIT_RANGE in Travis config to get list of changed files --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 07cebed738..2fcb5e365f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -40,5 +40,7 @@ install: - if [ ! -z $LMOD_VERSION ]; then source $(which install_eb_dep.sh) lua-5.1.4.8 $HOME; fi - if [ ! -z $LMOD_VERSION ]; then source $(which install_eb_dep.sh) Lmod-${LMOD_VERSION} $HOME; fi script: + - echo $TRAVIS_COMMIT_RANGE + - cd $TRAVIS_BUILD_DIR; git diff --name-only $(echo $TRAVIS_COMMIT_RANGE | sed 's/\.//'); cd - > /dev/null - export PYTHONPATH=$TRAVIS_BUILD_DIR - python -O -m test.easyconfigs.suite -- GitLab From bd23642e2d2c6686caaef2b752817389437509a4 Mon Sep 17 00:00:00 2001 From: jrbosch Date: Wed, 17 May 2017 09:36:48 -0400 Subject: [PATCH 064/608] add FFmpeg easyconfig with support to x265 and LAME --- .../f/FFmpeg/FFmpeg-3.3.1-foss-2016b.eb | 34 +++++++++++++++++++ .../l/LAME/LAME-3.99.5-foss-2016b.eb | 30 ++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 easybuild/easyconfigs/f/FFmpeg/FFmpeg-3.3.1-foss-2016b.eb create mode 100644 easybuild/easyconfigs/l/LAME/LAME-3.99.5-foss-2016b.eb diff --git a/easybuild/easyconfigs/f/FFmpeg/FFmpeg-3.3.1-foss-2016b.eb b/easybuild/easyconfigs/f/FFmpeg/FFmpeg-3.3.1-foss-2016b.eb new file mode 100644 index 0000000000..374f64671c --- /dev/null +++ b/easybuild/easyconfigs/f/FFmpeg/FFmpeg-3.3.1-foss-2016b.eb @@ -0,0 +1,34 @@ +easyblock = 'ConfigureMake' + +name = 'FFmpeg' +version = '3.3.1' + +homepage = 'https://www.ffmpeg.org/' +description = """A complete, cross-platform solution to record, convert and stream audio and video.""" + +toolchain = {'name': 'foss', 'version': '2016b'} + +sources = [SOURCELOWER_TAR_BZ2] +source_urls = ['http://ffmpeg.org/releases/'] + +dependencies = [ + ('NASM', '2.12.02'), + ('zlib', '1.2.8'), + ('bzip2', '1.0.6'), + ('x264', '20160614'), + ('x265', '2.4'), + ('LAME', '3.99.5'), + ('X11', '20160819'), +] + +configopts = '--enable-pic --enable-shared --enable-gpl --enable-version3 --enable-nonfree --cc="$CC" --cxx="$CXX" ' +configopts += '--enable-libx264 --enable-libx265 --enable-libmp3lame' + +sanity_check_paths = { + 'files': ['bin/ff%s' % x for x in ['mpeg', 'probe', 'server']] + + ['lib/lib%s.%s' % (x, y) for x in ['avdevice', 'avfilter', 'avformat', 'avcodec', 'postproc', + 'swresample', 'swscale', 'avutil'] for y in [SHLIB_EXT, 'a']], + 'dirs': ['include'] +} + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/l/LAME/LAME-3.99.5-foss-2016b.eb b/easybuild/easyconfigs/l/LAME/LAME-3.99.5-foss-2016b.eb new file mode 100644 index 0000000000..042510cf2a --- /dev/null +++ b/easybuild/easyconfigs/l/LAME/LAME-3.99.5-foss-2016b.eb @@ -0,0 +1,30 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# +# Author: Stephane Thiell +### + +easyblock = 'ConfigureMake' + +name = 'LAME' +version = '3.99.5' + +homepage = 'http://lame.sourceforge.net/' +description = """LAME is a high quality MPEG Audio Layer III (MP3) encoder licensed under the LGPL.""" + +toolchain = {'name': 'foss', 'version': '2016b'} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = ['https://sourceforge.net/projects/lame/files/lame/%(version_major_minor)s/'] + +dependencies = [('ncurses', '6.0')] + +# configure is broken: add workaround to find libncurses... +configure_cmd_prefix = "FRONTEND_LDADD='-L${EBROOTNCURSES}/lib' " + +sanity_check_paths = { + 'files': ['bin/lame', 'include/lame/lame.h', 'lib/libmp3lame.%s' % SHLIB_EXT], + 'dirs': [], +} + +moduleclass = 'data' -- GitLab From 0c5e71d70e1d1ec068990eff100d8e053a267dd4 Mon Sep 17 00:00:00 2001 From: Pablo Escobar Date: Wed, 17 May 2017 15:46:08 +0200 Subject: [PATCH 065/608] adding easyconfigs: MUMmer-4.0.0beta-goolf-1.7.20.eb --- .../m/MUMmer/MUMmer-4.0.0beta-goolf-1.7.20.eb | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 easybuild/easyconfigs/m/MUMmer/MUMmer-4.0.0beta-goolf-1.7.20.eb diff --git a/easybuild/easyconfigs/m/MUMmer/MUMmer-4.0.0beta-goolf-1.7.20.eb b/easybuild/easyconfigs/m/MUMmer/MUMmer-4.0.0beta-goolf-1.7.20.eb new file mode 100644 index 0000000000..8471838376 --- /dev/null +++ b/easybuild/easyconfigs/m/MUMmer/MUMmer-4.0.0beta-goolf-1.7.20.eb @@ -0,0 +1,23 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# Author: Pablo Escobar Lopez +# sciCORE - University of Basel +# SIB Swiss Institute of Bioinformatics + +easyblock = 'ConfigureMake' + +name = 'MUMmer' +version = '4.0.0beta' + +homepage = 'http://mummer.sourceforge.net/' +description = """MUMmer is a system for rapidly aligning entire genomes, + whether in complete or draft form. AMOS makes use of it.""" + +toolchain = {'name': 'goolf', 'version': '1.7.20'} +toolchainopts = {'openmp': True} + +source_urls = ['https://github.com/gmarcais/mummer/releases/download/v%(version)s/'] +sources = ['%(namelower)s-%(version)s.tar.gz'] + +patches = ['mummer-%(version)s.patch'] + +moduleclass = 'bio' -- GitLab From 8e1bf1c361216cb5bc75de261cdc612704e3bdd9 Mon Sep 17 00:00:00 2001 From: Pablo Escobar Date: Wed, 17 May 2017 15:52:41 +0200 Subject: [PATCH 066/608] added mummer patch --- .../easyconfigs/m/MUMmer/mummer-4.0.0beta.patch | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 easybuild/easyconfigs/m/MUMmer/mummer-4.0.0beta.patch diff --git a/easybuild/easyconfigs/m/MUMmer/mummer-4.0.0beta.patch b/easybuild/easyconfigs/m/MUMmer/mummer-4.0.0beta.patch new file mode 100644 index 0000000000..b95c705ef8 --- /dev/null +++ b/easybuild/easyconfigs/m/MUMmer/mummer-4.0.0beta.patch @@ -0,0 +1,15 @@ +Fix a compilation error in version 4.0.0beta +https://github.com/gmarcais/mummer/issues/7 + +diff -ru mummer-4.0.0beta.orig/src/essaMEM/mummer.cpp mummer-4.0.0beta/src/essaMEM/mummer.cpp +--- mummer-4.0.0beta.orig/src/essaMEM/mummer.cpp 2017-04-06 19:49:04.000000000 +0200 ++++ mummer-4.0.0beta/src/essaMEM/mummer.cpp 2017-05-17 15:36:51.998784593 +0200 +@@ -218,7 +218,7 @@ + case 22: + #ifdef VERSION + std::cout << VERSION << '\n'; +-#elif ++#else + std::cout << "\n"; + #endif + exit(0); -- GitLab From a9e81f5a5670c4b90ed5cc8f10243742b554c14e Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 17 May 2017 17:40:01 +0200 Subject: [PATCH 067/608] adding easyconfigs: gmpy2-2.0.8-intel-2017a-Python-2.7.13.eb, MPC-1.0.3-intel-2017a.eb --- .../gmpy2-2.0.8-intel-2017a-Python-2.7.13.eb | 27 ++++++++++++++++ .../m/MPC/MPC-1.0.3-intel-2017a.eb | 32 +++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 easybuild/easyconfigs/g/gmpy2/gmpy2-2.0.8-intel-2017a-Python-2.7.13.eb create mode 100644 easybuild/easyconfigs/m/MPC/MPC-1.0.3-intel-2017a.eb diff --git a/easybuild/easyconfigs/g/gmpy2/gmpy2-2.0.8-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/g/gmpy2/gmpy2-2.0.8-intel-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..d82b9f3a9d --- /dev/null +++ b/easybuild/easyconfigs/g/gmpy2/gmpy2-2.0.8-intel-2017a-Python-2.7.13.eb @@ -0,0 +1,27 @@ +easyblock = 'PythonPackage' + +name = 'gmpy2' +version = '2.0.8' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'https://github.com/aleaxit/gmpy' +description = "GMP/MPIR, MPFR, and MPC interface to Python 2.6+ and 3.x" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [PYPI_SOURCE] +sources = [SOURCE_ZIP] + +dependencies = [ + ('Python', '2.7.13'), + ('GMP', '6.1.2'), + ('MPFR', '3.1.5'), + ('MPC', '1.0.3'), +] + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages'], +} + +moduleclass = 'math' diff --git a/easybuild/easyconfigs/m/MPC/MPC-1.0.3-intel-2017a.eb b/easybuild/easyconfigs/m/MPC/MPC-1.0.3-intel-2017a.eb new file mode 100644 index 0000000000..5bddb3e5d5 --- /dev/null +++ b/easybuild/easyconfigs/m/MPC/MPC-1.0.3-intel-2017a.eb @@ -0,0 +1,32 @@ +easyblock = 'ConfigureMake' + +name = 'MPC' +version = '1.0.3' + +homepage = 'http://www.multiprecision.org/' +description = """Gnu Mpc is a C library for the arithmetic of + complex numbers with arbitrarily high precision and correct + rounding of the result. It extends the principles of the IEEE-754 + standard for fixed precision real floating point numbers to + complex numbers, providing well-defined semantics for every + operation. At the same time, speed of operation at high precision + is a major design goal.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['http://www.multiprecision.org/mpc/download/'] +sources = [SOURCELOWER_TAR_GZ] + +dependencies = [ + ('GMP', '6.1.2'), + ('MPFR', '3.1.5'), +] + +runtest = 'check' + +sanity_check_paths = { + 'files': ['lib/libmpc.%s' % SHLIB_EXT, 'include/mpc.h'], + 'dirs': [] +} + +moduleclass = 'math' -- GitLab From 0933fa668c99dee172f6ddae2d7349654c35dee6 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 18 May 2017 09:14:09 +0200 Subject: [PATCH 068/608] adding easyconfigs: scikit-learn-0.18.1-intel-2017a-Python-2.7.13.eb, matplotlib-2.0.2-intel-2017a-Python-2.7.13.eb --- ...plotlib-2.0.2-intel-2017a-Python-2.7.13.eb | 43 +++++++++++++++++++ ...-learn-0.18.1-intel-2017a-Python-2.7.13.eb | 30 +++++++++++++ 2 files changed, 73 insertions(+) create mode 100644 easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-intel-2017a-Python-2.7.13.eb create mode 100755 easybuild/easyconfigs/s/scikit-learn/scikit-learn-0.18.1-intel-2017a-Python-2.7.13.eb diff --git a/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-intel-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..fa289dd53b --- /dev/null +++ b/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-intel-2017a-Python-2.7.13.eb @@ -0,0 +1,43 @@ +easyblock = 'Bundle' + +name = 'matplotlib' +version = '2.0.2' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://matplotlib.org' +description = """matplotlib is a python 2D plotting library which produces publication quality figures in a variety of + hardcopy formats and interactive environments across platforms. matplotlib can be used in python scripts, the python + and ipython shell, web application servers, and six graphical user interface toolkits.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +# this is a bundle of Python packages +exts_defaultclass = 'PythonPackage' + +dependencies = [ + ('Python', '2.7.13'), + ('freetype', '2.7.1'), +] + +exts_list = [ + ('Cycler', '0.10.0', { + 'modulename': 'cycler', + 'source_urls': ['https://pypi.python.org/packages/source/C/Cycler'], + 'source_tmpl': 'cycler-%(version)s.tar.gz', + }), + (name, version, { + 'source_urls': ['https://pypi.python.org/packages/source/m/matplotlib'], + }), +] + +# specify that Bundle easyblock should run a full sanity check, rather than just trying to load the module +full_sanity_check = True + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages'], +} + +modextrapaths = {'PYTHONPATH': ['lib/python%(pyshortver)s/site-packages']} + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/s/scikit-learn/scikit-learn-0.18.1-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/s/scikit-learn/scikit-learn-0.18.1-intel-2017a-Python-2.7.13.eb new file mode 100755 index 0000000000..388e0e3afa --- /dev/null +++ b/easybuild/easyconfigs/s/scikit-learn/scikit-learn-0.18.1-intel-2017a-Python-2.7.13.eb @@ -0,0 +1,30 @@ +easyblock = 'PythonPackage' + +name = 'scikit-learn' +version = '0.18.1' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://scikit-learn.org/stable/index.html' +description = """Scikit-learn integrates machine learning algorithms in the tightly-knit scientific Python world, +building upon numpy, scipy, and matplotlib. As a machine-learning module, +it provides versatile tools for data mining and analysis in any field of science and engineering. +It strives to be simple and efficient, accessible to everybody, and reusable in various contexts.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [PYPI_SOURCE] +sources = [SOURCE_TAR_GZ] + +dependencies = [ + ('Python', '2.7.13'), + ('matplotlib', '2.0.2', versionsuffix), +] + +options = {'modulename': 'sklearn'} + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages/sklearn'], +} + +moduleclass = 'data' -- GitLab From 2bfb83215f61d130c7363fcd8412e4ed09b961da Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 18 May 2017 09:19:36 +0200 Subject: [PATCH 069/608] adding easyconfigs: statsmodels-0.8.0-intel-2017a-Python-2.7.13.eb --- ...smodels-0.8.0-intel-2017a-Python-2.7.13.eb | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 easybuild/easyconfigs/s/statsmodels/statsmodels-0.8.0-intel-2017a-Python-2.7.13.eb diff --git a/easybuild/easyconfigs/s/statsmodels/statsmodels-0.8.0-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/s/statsmodels/statsmodels-0.8.0-intel-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..85483b0005 --- /dev/null +++ b/easybuild/easyconfigs/s/statsmodels/statsmodels-0.8.0-intel-2017a-Python-2.7.13.eb @@ -0,0 +1,36 @@ +easyblock = 'Bundle' + +name = 'statsmodels' +version = '0.8.0' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://statsmodels.sourceforge.net/' +description = """Statsmodels is a Python module that allows users to explore data, estimate statistical models, +and perform statistical tests.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +# this is a bundle of Python packages +exts_defaultclass = 'PythonPackage' + +dependencies = [('Python', '2.7.13')] + +exts_list = [ + ('patsy', '0.4.1', { + 'source_urls': ['https://pypi.python.org/packages/source/p/patsy'], + 'source_tmpl': 'patsy-%(version)s.zip', + }), + (name, version, { + 'source_urls': ['https://pypi.python.org/packages/source/statsmodels'], + 'source_tmpl': 'statsmodels-%(version)s.tar.gz', + }), +] + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages'], +} + +modextrapaths = {'PYTHONPATH': ['lib/python%(pyshortver)s/site-packages']} + +moduleclass = 'math' -- GitLab From 7b5e6e94f527f488a3a966a7cc397c250fa2ddf2 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 18 May 2017 09:20:21 +0200 Subject: [PATCH 070/608] fix typo in statsmodels source url (/sources/ -> /source/) --- .../s/statsmodels/statsmodels-0.6.1-intel-2016b-Python-3.5.2.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/s/statsmodels/statsmodels-0.6.1-intel-2016b-Python-3.5.2.eb b/easybuild/easyconfigs/s/statsmodels/statsmodels-0.6.1-intel-2016b-Python-3.5.2.eb index 435f33a3bd..484c222815 100644 --- a/easybuild/easyconfigs/s/statsmodels/statsmodels-0.6.1-intel-2016b-Python-3.5.2.eb +++ b/easybuild/easyconfigs/s/statsmodels/statsmodels-0.6.1-intel-2016b-Python-3.5.2.eb @@ -21,7 +21,7 @@ exts_list = [ 'source_tmpl': 'patsy-%(version)s.zip', }), (name, version, { - 'source_urls': ['https://pypi.python.org/packages/sources/statsmodels'], + 'source_urls': ['https://pypi.python.org/packages/source/statsmodels'], 'source_tmpl': 'statsmodels-%(version)s.zip', }), ] -- GitLab From d76b99582a77ec30e760a41563bb7c12a398c0c9 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 18 May 2017 11:25:50 +0200 Subject: [PATCH 071/608] adding easyconfigs: gnuplot-5.0.6-intel-2017a.eb, Pango-1.40.5-intel-2017a.eb, libgd-2.2.4-intel-2017a.eb, libcerf-1.5-intel-2017a.eb, HarfBuzz-1.3.1-intel-2017a.eb, GObject-Introspection-1.52.0-intel-2017a.eb --- ...Object-Introspection-1.52.0-intel-2017a.eb | 47 +++++++++++++++++++ .../g/gnuplot/gnuplot-5.0.6-intel-2017a.eb | 42 +++++++++++++++++ .../h/HarfBuzz/HarfBuzz-1.3.1-intel-2017a.eb | 34 ++++++++++++++ .../l/libcerf/libcerf-1.5-intel-2017a.eb | 28 +++++++++++ .../l/libgd/libgd-2.2.4-intel-2017a.eb | 26 ++++++++++ .../p/Pango/Pango-1.40.5-intel-2017a.eb | 31 ++++++++++++ 6 files changed, 208 insertions(+) create mode 100644 easybuild/easyconfigs/g/GObject-Introspection/GObject-Introspection-1.52.0-intel-2017a.eb create mode 100644 easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.6-intel-2017a.eb create mode 100644 easybuild/easyconfigs/h/HarfBuzz/HarfBuzz-1.3.1-intel-2017a.eb create mode 100644 easybuild/easyconfigs/l/libcerf/libcerf-1.5-intel-2017a.eb create mode 100644 easybuild/easyconfigs/l/libgd/libgd-2.2.4-intel-2017a.eb create mode 100644 easybuild/easyconfigs/p/Pango/Pango-1.40.5-intel-2017a.eb diff --git a/easybuild/easyconfigs/g/GObject-Introspection/GObject-Introspection-1.52.0-intel-2017a.eb b/easybuild/easyconfigs/g/GObject-Introspection/GObject-Introspection-1.52.0-intel-2017a.eb new file mode 100644 index 0000000000..804872f657 --- /dev/null +++ b/easybuild/easyconfigs/g/GObject-Introspection/GObject-Introspection-1.52.0-intel-2017a.eb @@ -0,0 +1,47 @@ +easyblock = 'ConfigureMake' + +name = 'GObject-Introspection' +version = '1.52.0' + +homepage = 'https://wiki.gnome.org/GObjectIntrospection/' +description = """GObject introspection is a middleware layer between C libraries + (using GObject) and language bindings. The C library can be scanned at + compile time and generate a metadata file, in addition to the actual + native C library. Then at runtime, language bindings can read this + metadata and automatically provide bindings to call into the C library.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [FTPGNOME_SOURCE] +sources = [SOURCELOWER_TAR_XZ] + +dependencies = [ + ('Python', '2.7.13'), + ('GLib', '2.52.0'), + ('libffi', '3.2.1'), +] + +builddependencies = [ + ('Autotools', '20150215'), + ('flex', '2.6.4'), + ('Bison', '3.0.4'), + ('cairo', '1.14.8'), +] + +preconfigopts = "env GI_SCANNER_DISABLE_CACHE=true " + +# avoid using hard-coded path to 'python' in shebang of scripts +buildopts = "PYTHON=python" + +modextrapaths = { + 'GI_TYPELIB_PATH': 'share', + 'XDG_DATA_DIRS': 'share', +} + +sanity_check_paths = { + 'files': ['bin/g-ir-%s' % x for x in ['annotation-tool', 'compiler', 'generate', 'scanner']] + + ['lib/libgirepository-1.0.%s' % x for x in ['so', 'a']], + 'dirs': ['include', 'share'] +} + +moduleclass = 'devel' diff --git a/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.6-intel-2017a.eb b/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.6-intel-2017a.eb new file mode 100644 index 0000000000..22b8ccefa5 --- /dev/null +++ b/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.6-intel-2017a.eb @@ -0,0 +1,42 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# +# Copyright:: Copyright 2012-2013 University of Luxembourg/Luxembourg Centre for Systems Biomedicine +# Authors:: Fotis Georgatos +# License:: MIT/GPL +# $Id$ +# +# This work implements a part of the HPCBIOS project and is a component of the policy: +# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-97.html +## +easyblock = 'ConfigureMake' + +name = 'gnuplot' +version = '5.0.6' + +homepage = 'http://gnuplot.sourceforge.net/' +description = """Portable interactive, function plotting utility""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +sources = [SOURCE_TAR_GZ] +source_urls = [('http://sourceforge.net/projects/gnuplot/files', 'download')] + +dependencies = [ + ('cairo', '1.14.8'), + ('libjpeg-turbo', '1.5.1'), + ('libpng', '1.6.29'), + ('libgd', '2.2.4'), + ('Pango', '1.40.5'), + ('libcerf', '1.5'), + ('Qt', '4.8.7'), +] + +configopts = '--with-qt=qt4 ' + +sanity_check_paths = { + 'files': ['bin/gnuplot'], + 'dirs': [] +} + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/h/HarfBuzz/HarfBuzz-1.3.1-intel-2017a.eb b/easybuild/easyconfigs/h/HarfBuzz/HarfBuzz-1.3.1-intel-2017a.eb new file mode 100644 index 0000000000..58049805dd --- /dev/null +++ b/easybuild/easyconfigs/h/HarfBuzz/HarfBuzz-1.3.1-intel-2017a.eb @@ -0,0 +1,34 @@ +easyblock = 'ConfigureMake' + +name = 'HarfBuzz' +version = '1.3.1' + +homepage = 'http://www.freedesktop.org/wiki/Software/HarfBuzz' +description = """HarfBuzz is an OpenType text shaping engine.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['http://www.freedesktop.org/software/harfbuzz/release/'] +sources = [SOURCELOWER_TAR_BZ2] + +dependencies = [ + ('GLib', '2.52.0'), + ('cairo', '1.14.8'), + ('freetype', '2.7.1', '-libpng-1.6.29'), +] + +builddependencies = [('GObject-Introspection', '1.52.0')] + +configopts = "--enable-introspection=yes --with-gobject=yes --enable-static --enable-shared --with-cairo " + +modextrapaths = { + 'GI_TYPELIB_PATH': 'share', + 'XDG_DATA_DIRS': 'share', +} + +sanity_check_paths = { + 'files': ['lib/libharfbuzz.%s' % SHLIB_EXT, 'bin/hb-view'], + 'dirs': [] +} + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/l/libcerf/libcerf-1.5-intel-2017a.eb b/easybuild/easyconfigs/l/libcerf/libcerf-1.5-intel-2017a.eb new file mode 100644 index 0000000000..3c7483ca6e --- /dev/null +++ b/easybuild/easyconfigs/l/libcerf/libcerf-1.5-intel-2017a.eb @@ -0,0 +1,28 @@ +easyblock = 'ConfigureMake' + +name = 'libcerf' +version = '1.5' + +homepage = 'http://gnuplot.sourceforge.net/' +description = """libcerf is a self-contained numeric library that provides an efficient and accurate + implementation of complex error functions, along with Dawson, Faddeeva, and Voigt functions.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +sources = [SOURCE_TGZ] +source_urls = [ + 'http://apps.jcns.fz-juelich.de/src/libcerf/', + 'http://apps.jcns.fz-juelich.de/src/libcerf/old', +] + +builddependencies = [ + ('Autotools', '20150215'), + ('libtool', '2.4.6'), +] + +sanity_check_paths = { + 'files': ['lib/libcerf.%s' % SHLIB_EXT], + 'dirs': [] +} + +moduleclass = 'math' diff --git a/easybuild/easyconfigs/l/libgd/libgd-2.2.4-intel-2017a.eb b/easybuild/easyconfigs/l/libgd/libgd-2.2.4-intel-2017a.eb new file mode 100644 index 0000000000..1a8de80eb4 --- /dev/null +++ b/easybuild/easyconfigs/l/libgd/libgd-2.2.4-intel-2017a.eb @@ -0,0 +1,26 @@ +easyblock = 'ConfigureMake' + +name = 'libgd' +version = '2.2.4' + +homepage = 'https://libgd.github.io/' +description = "GD is an open source code library for the dynamic creation of images by programmers." + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['https://github.com/libgd/libgd/releases/download/gd-%(version)s/'] +sources = [SOURCELOWER_TAR_GZ] + +dependencies = [ + ('fontconfig', '2.12.1', '-libpng-1.6.29'), + ('libjpeg-turbo', '1.5.1'), + ('libpng', '1.6.29'), + ('zlib', '1.2.11'), +] + +sanity_check_paths = { + 'files': ["lib/libgd.a", "lib/libgd.%s" % SHLIB_EXT], + 'dirs': ["bin", "include"], +} + +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/p/Pango/Pango-1.40.5-intel-2017a.eb b/easybuild/easyconfigs/p/Pango/Pango-1.40.5-intel-2017a.eb new file mode 100644 index 0000000000..d7561a197b --- /dev/null +++ b/easybuild/easyconfigs/p/Pango/Pango-1.40.5-intel-2017a.eb @@ -0,0 +1,31 @@ +easyblock = 'ConfigureMake' + +name = 'Pango' +version = '1.40.5' + +homepage = 'http://www.pango.org/' +description = """Pango is a library for laying out and rendering of text, with an emphasis on internationalization. +Pango can be used anywhere that text layout is needed, though most of the work on Pango so far has been done in the +context of the GTK+ widget toolkit. Pango forms the core of text and font handling for GTK+-2.x.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [FTPGNOME_SOURCE] +sources = [SOURCELOWER_TAR_XZ] + +dependencies = [ + ('X11', '20170314'), + ('GLib', '2.52.0'), + ('cairo', '1.14.8'), + ('HarfBuzz', '1.3.1'), +] + +builddependencies = [('GObject-Introspection', '1.52.0')] + +configopts = "--disable-silent-rules --enable-introspection=yes --enable-static --enable-shared " + +modextrapaths = { + 'XDG_DATA_DIRS': 'share', +} + +moduleclass = 'vis' -- GitLab From ca675cca030fd8a76cc631816f5b128da4555daf Mon Sep 17 00:00:00 2001 From: Ward Poelmans Date: Thu, 18 May 2017 12:08:14 +0200 Subject: [PATCH 072/608] Bump FSL to intel/2017a --- .../f/FSL/FSL-5.0.9-intel-2017a.eb | 24 +++++++++++++ .../f/freeglut/freeglut-3.0.0-intel-2017a.eb | 35 +++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 easybuild/easyconfigs/f/FSL/FSL-5.0.9-intel-2017a.eb create mode 100644 easybuild/easyconfigs/f/freeglut/freeglut-3.0.0-intel-2017a.eb diff --git a/easybuild/easyconfigs/f/FSL/FSL-5.0.9-intel-2017a.eb b/easybuild/easyconfigs/f/FSL/FSL-5.0.9-intel-2017a.eb new file mode 100644 index 0000000000..34a1890fcb --- /dev/null +++ b/easybuild/easyconfigs/f/FSL/FSL-5.0.9-intel-2017a.eb @@ -0,0 +1,24 @@ +name = 'FSL' +version = '5.0.9' + +homepage = 'http://www.fmrib.ox.ac.uk/fsl/' +description = """FSL is a comprehensive library of analysis tools for FMRI, MRI and DTI brain imaging data.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ["http://www.fmrib.ox.ac.uk/fsldownloads/"] +sources = ['%(namelower)s-%(version)s-sources.tar.gz'] + +patches = [ + 'FSL-%(version)s_makefile_fixes.patch', + 'FSL-%(version)s_missing_lib.patch', + 'FSL_icc_nan-inf_fix.patch', +] + +dependencies = [ + ('freeglut', '3.0.0'), + ('expat', '2.2.0'), + ('zlib', '1.2.11'), +] + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/f/freeglut/freeglut-3.0.0-intel-2017a.eb b/easybuild/easyconfigs/f/freeglut/freeglut-3.0.0-intel-2017a.eb new file mode 100644 index 0000000000..3d404c8658 --- /dev/null +++ b/easybuild/easyconfigs/f/freeglut/freeglut-3.0.0-intel-2017a.eb @@ -0,0 +1,35 @@ +easyblock = 'CMakeMake' + +name = 'freeglut' +version = '3.0.0' + +homepage = 'http://freeglut.sourceforge.net/' +description = "freeglut is a completely OpenSourced alternative to the OpenGL Utility Toolkit (GLUT) library." + +toolchain = {'name': 'intel', 'version': '2017a'} + +sources = [SOURCE_TAR_GZ] +source_urls = ['http://prdownloads.sourceforge.net/%(name)s'] + +builddependencies = [('CMake', '3.8.0')] + +dependencies = [ + ('X11', '20170314'), + ('libGLU', '9.0.0'), + ('Mesa', '17.0.2'), +] + +configopts = ' -DX11_X11_LIB="$EBROOTX11/lib/libX11.so" ' +configopts += ' -DX11_X11_INCLUDE_PATH="$EBROOTX11/include/X11" ' +configopts += ' -DX11_Xext_LIB="$EBROOTX11/lib/libXext.so" ' +configopts += ' -DX11_Xrandr_LIB="$EBROOTX11/lib/libXrandr.so" ' +configopts += ' -DX11_Xrandr_INCLUDE_PATH="$EBROOTX11/include/X11/extensions/" ' +configopts += ' -DX11_Xi_LIB="$EBROOTX11/lib/libXrandr.so" ' +configopts += ' -DX11_Xi_INCLUDE_PATH="$EBROOTX11/include/X11/extensions/" ' + +sanity_check_paths = { + 'files': [('lib/libglut.a', 'lib64/libglut.a'), ('lib/libglut.%s' % SHLIB_EXT, 'lib64/libglut.%s' % SHLIB_EXT)], + 'dirs': ['include/GL'], +} + +moduleclass = 'lib' -- GitLab From 8a6b28c55b1bd5cc8e88bb7cd1a11b2084cafcff Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 18 May 2017 13:14:31 +0200 Subject: [PATCH 073/608] adding easyconfigs: Octave-4.2.1-intel-2017a.eb, arpack-ng-3.5.0-intel-2017a.eb, FLTK-1.3.4-intel-2017a.eb, GLPK-4.61-intel-2017a.eb, GL2PS-1.4.0-intel-2017a.eb, Qhull-2015.2-intel-2017a.eb, qrupdate-1.1.2-intel-2017a.eb, GraphicsMagick-1.3.25-intel-2017a.eb, freeglut-3.0.0-intel-2017a.eb, gperf-3.0.4-intel-2017a.eb, xprop-1.2.2-intel-2017a.eb --- .../arpack-ng/arpack-ng-3.5.0-intel-2017a.eb | 25 +++++++ .../f/FLTK/FLTK-1.3.4-intel-2017a.eb | 36 ++++++++++ .../f/freeglut/freeglut-3.0.0-intel-2017a.eb | 35 ++++++++++ .../g/GL2PS/GL2PS-1.4.0-intel-2017a.eb | 32 +++++++++ .../g/GLPK/GLPK-4.61-intel-2017a.eb | 28 ++++++++ .../GraphicsMagick-1.3.25-intel-2017a.eb | 39 +++++++++++ .../g/gperf/gperf-3.0.4-intel-2017a.eb | 22 +++++++ .../o/Octave/Octave-4.2.1-intel-2017a.eb | 65 +++++++++++++++++++ .../q/Qhull/Qhull-2015.2-intel-2017a.eb | 36 ++++++++++ .../q/qrupdate/qrupdate-1.1.2-intel-2017a.eb | 28 ++++++++ .../x/xprop/xprop-1.2.2-intel-2017a.eb | 30 +++++++++ 11 files changed, 376 insertions(+) create mode 100644 easybuild/easyconfigs/a/arpack-ng/arpack-ng-3.5.0-intel-2017a.eb create mode 100644 easybuild/easyconfigs/f/FLTK/FLTK-1.3.4-intel-2017a.eb create mode 100644 easybuild/easyconfigs/f/freeglut/freeglut-3.0.0-intel-2017a.eb create mode 100644 easybuild/easyconfigs/g/GL2PS/GL2PS-1.4.0-intel-2017a.eb create mode 100644 easybuild/easyconfigs/g/GLPK/GLPK-4.61-intel-2017a.eb create mode 100644 easybuild/easyconfigs/g/GraphicsMagick/GraphicsMagick-1.3.25-intel-2017a.eb create mode 100644 easybuild/easyconfigs/g/gperf/gperf-3.0.4-intel-2017a.eb create mode 100644 easybuild/easyconfigs/o/Octave/Octave-4.2.1-intel-2017a.eb create mode 100644 easybuild/easyconfigs/q/Qhull/Qhull-2015.2-intel-2017a.eb create mode 100644 easybuild/easyconfigs/q/qrupdate/qrupdate-1.1.2-intel-2017a.eb create mode 100644 easybuild/easyconfigs/x/xprop/xprop-1.2.2-intel-2017a.eb diff --git a/easybuild/easyconfigs/a/arpack-ng/arpack-ng-3.5.0-intel-2017a.eb b/easybuild/easyconfigs/a/arpack-ng/arpack-ng-3.5.0-intel-2017a.eb new file mode 100644 index 0000000000..c2f959831c --- /dev/null +++ b/easybuild/easyconfigs/a/arpack-ng/arpack-ng-3.5.0-intel-2017a.eb @@ -0,0 +1,25 @@ +easyblock = 'ConfigureMake' + +name = 'arpack-ng' +version = '3.5.0' + +homepage = 'http://forge.scilab.org/index.php/p/arpack-ng/' +description = """ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'pic': True, 'usempi': True} + +source_urls = ['https://github.com/opencollab/arpack-ng/archive/'] +sources = ['%(version)s.tar.gz'] + +builddependencies = [('Autotools', '20150215')] + +preconfigopts = "sh bootstrap && " +configopts = '--with-pic --with-blas="$LIBBLAS" --with-lapack="$LIBLAPACK"' + +sanity_check_paths = { + 'files': ["lib/libarpack.a", "lib/libarpack.%s" % SHLIB_EXT], + 'dirs': [] +} + +moduleclass = 'numlib' diff --git a/easybuild/easyconfigs/f/FLTK/FLTK-1.3.4-intel-2017a.eb b/easybuild/easyconfigs/f/FLTK/FLTK-1.3.4-intel-2017a.eb new file mode 100644 index 0000000000..95391e1838 --- /dev/null +++ b/easybuild/easyconfigs/f/FLTK/FLTK-1.3.4-intel-2017a.eb @@ -0,0 +1,36 @@ +# +# author: Dina Mahmoud Ibrahim ( Cairo University ) +# +easyblock = 'ConfigureMake' + +name = 'FLTK' +version = '1.3.4' + +homepage = 'http://www.fltk.org' +description = """FLTK is a cross-platform C++ GUI toolkit for UNIX/Linux (X11), Microsoft Windows, + and MacOS X. FLTK provides modern GUI functionality without the bloat and supports 3D graphics via OpenGL + and its built-in GLUT emulation.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'optarch': True, 'pic': True} + +sources = ['%(namelower)s-%(version)s-source.tar.gz'] +source_urls = ['http://fltk.org/pub/%(namelower)s/%(version)s/'] + +configopts = '--enable-shared --enable-threads --enable-xft' + +dependencies = [ + ('Mesa', '17.0.2'), + ('libGLU', '9.0.0'), + ('libpng', '1.6.29'), + ('libjpeg-turbo', '1.5.1'), + ('xprop', '1.2.2'), + ('zlib', '1.2.11'), +] + +sanity_check_paths = { + 'files': ['bin/fltk-config', 'bin/fluid', 'lib/libfltk.a', 'lib/libfltk.%s' % SHLIB_EXT], + 'dirs': ['lib'], +} + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/f/freeglut/freeglut-3.0.0-intel-2017a.eb b/easybuild/easyconfigs/f/freeglut/freeglut-3.0.0-intel-2017a.eb new file mode 100644 index 0000000000..64f67b2563 --- /dev/null +++ b/easybuild/easyconfigs/f/freeglut/freeglut-3.0.0-intel-2017a.eb @@ -0,0 +1,35 @@ +easyblock = 'CMakeMake' + +name = 'freeglut' +version = '3.0.0' + +homepage = 'http://freeglut.sourceforge.net/' +description = "freeglut is a completely OpenSourced alternative to the OpenGL Utility Toolkit (GLUT) library." + +toolchain = {'name': 'intel', 'version': '2017a'} + +sources = [SOURCE_TAR_GZ] +source_urls = ['http://prdownloads.sourceforge.net/%(name)s'] + +builddependencies = [('CMake', '3.8.1')] + +dependencies = [ + ('X11', '20170314'), + ('libGLU', '9.0.0'), + ('Mesa', '17.0.2'), +] + +configopts = ' -DX11_X11_LIB="$EBROOTX11/lib/libX11.so" ' +configopts += ' -DX11_X11_INCLUDE_PATH="$EBROOTX11/include/X11" ' +configopts += ' -DX11_Xext_LIB="$EBROOTX11/lib/libXext.so" ' +configopts += ' -DX11_Xrandr_LIB="$EBROOTX11/lib/libXrandr.so" ' +configopts += ' -DX11_Xrandr_INCLUDE_PATH="$EBROOTX11/include/X11/extensions/" ' +configopts += ' -DX11_Xi_LIB="$EBROOTX11/lib/libXrandr.so" ' +configopts += ' -DX11_Xi_INCLUDE_PATH="$EBROOTX11/include/X11/extensions/" ' + +sanity_check_paths = { + 'files': [('lib/libglut.a', 'lib64/libglut.a'), ('lib/libglut.%s' % SHLIB_EXT, 'lib64/libglut.%s' % SHLIB_EXT)], + 'dirs': ['include/GL'], +} + +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/g/GL2PS/GL2PS-1.4.0-intel-2017a.eb b/easybuild/easyconfigs/g/GL2PS/GL2PS-1.4.0-intel-2017a.eb new file mode 100644 index 0000000000..a2bcb6dc02 --- /dev/null +++ b/easybuild/easyconfigs/g/GL2PS/GL2PS-1.4.0-intel-2017a.eb @@ -0,0 +1,32 @@ +easyblock = 'CMakeMake' + +name = 'GL2PS' +version = '1.4.0' + +homepage = 'http://www.geuz.org/gl2ps/' +description = """GL2PS: an OpenGL to PostScript printing library""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['http://geuz.org/gl2ps/src/'] +sources = [SOURCELOWER_TGZ] + +builddependencies = [ + ('CMake', '3.8.1'), +] + +dependencies = [ + ('X11', '20170314'), + ('Mesa', '17.0.2'), + ('libGLU', '9.0.0'), + ('freeglut', '3.0.0'), + ('libpng', '1.6.29'), + ('zlib', '1.2.11'), +] + +sanity_check_paths = { + 'files': ['include/gl2ps.h', 'lib/libgl2ps.so'], + 'dirs': [] +} + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/g/GLPK/GLPK-4.61-intel-2017a.eb b/easybuild/easyconfigs/g/GLPK/GLPK-4.61-intel-2017a.eb new file mode 100644 index 0000000000..28b87558fc --- /dev/null +++ b/easybuild/easyconfigs/g/GLPK/GLPK-4.61-intel-2017a.eb @@ -0,0 +1,28 @@ +easyblock = 'ConfigureMake' + +name = 'GLPK' +version = '4.61' + +homepage = 'https://www.gnu.org/software/glpk/' +description = """The GLPK (GNU Linear Programming Kit) package is intended for + solving large-scale linear programming (LP), + mixed integer programming (MIP), and other related problems. + It is a set of routines written in ANSI C + and organized in the form of a callable library.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = ['http://ftp.gnu.org/gnu/%(namelower)s/'] + +dependencies = [('GMP', '6.1.2')] + +configopts = "--with-gmp" + +sanity_check_paths = { + 'files': ['bin/glpsol', 'include/glpk.h'] + + ['lib/libglpk.%s' % x for x in [SHLIB_EXT, 'a']], + 'dirs': [], +} + +moduleclass = 'tools' diff --git a/easybuild/easyconfigs/g/GraphicsMagick/GraphicsMagick-1.3.25-intel-2017a.eb b/easybuild/easyconfigs/g/GraphicsMagick/GraphicsMagick-1.3.25-intel-2017a.eb new file mode 100644 index 0000000000..e1b8b64f3a --- /dev/null +++ b/easybuild/easyconfigs/g/GraphicsMagick/GraphicsMagick-1.3.25-intel-2017a.eb @@ -0,0 +1,39 @@ +easyblock = 'ConfigureMake' + +name = 'GraphicsMagick' +version = '1.3.25' + +homepage = 'http://www.graphicsmagick.org/' +description = """GraphicsMagick is the swiss army knife of image processing.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'pic': True} + +source_urls = [ + SOURCEFORGE_SOURCE, + 'ftp://ftp.graphicsmagick.org/pub/GraphicsMagick/%(version_major_minor)s/', +] +sources = [SOURCE_TAR_GZ] + +patches = ['%(name)s-%(version)s_intel.patch'] + +builddependencies = [ + ('libtool', '2.4.6'), +] + +dependencies = [ + ('X11', '20170314'), + ('bzip2', '1.0.6'), + ('freetype', '2.7.1', '-libpng-1.6.29'), + ('libpng', '1.6.29'), + ('libjpeg-turbo', '1.5.1'), + ('LibTIFF', '4.0.7'), + ('libxml2', '2.9.4'), + ('XZ', '5.2.3'), + ('zlib', '1.2.11'), + ('Ghostscript', '9.21'), +] + +modextrapaths = {'CPATH': ['include/GraphicsMagick']} + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/g/gperf/gperf-3.0.4-intel-2017a.eb b/easybuild/easyconfigs/g/gperf/gperf-3.0.4-intel-2017a.eb new file mode 100644 index 0000000000..6b56add6d5 --- /dev/null +++ b/easybuild/easyconfigs/g/gperf/gperf-3.0.4-intel-2017a.eb @@ -0,0 +1,22 @@ +easyblock = 'ConfigureMake' + +name = 'gperf' +version = '3.0.4' + +homepage = 'http://www.gnu.org/software/gperf/' +description = """GNU gperf is a perfect hash function generator. For a given list of strings, it produces a hash + function and hash table, in form of C or C++ code, for looking up a value depending on the input string. The hash + function is perfect, which means that the hash table has no collisions, and the hash table lookup needs a single + string comparison only.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [GNU_SOURCE] +sources = [SOURCELOWER_TAR_GZ] + +sanity_check_paths = { + 'files': ['bin/gperf'], + 'dirs': [] +} + +moduleclass = 'devel' diff --git a/easybuild/easyconfigs/o/Octave/Octave-4.2.1-intel-2017a.eb b/easybuild/easyconfigs/o/Octave/Octave-4.2.1-intel-2017a.eb new file mode 100644 index 0000000000..b28e83ac96 --- /dev/null +++ b/easybuild/easyconfigs/o/Octave/Octave-4.2.1-intel-2017a.eb @@ -0,0 +1,65 @@ +easyblock = 'ConfigureMake' + +name = 'Octave' +version = '4.2.1' + +homepage = 'http://www.gnu.org/software/octave/' +description = """GNU Octave is a high-level interpreted language, primarily intended for numerical computations.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [GNU_SOURCE] +sources = [SOURCELOWER_TAR_GZ] + +patches = ['%(name)s-%(version)s_intel.patch'] + +builddependencies = [ + ('Bison', '3.0.4'), + ('flex', '2.6.4'), + ('Autotools', '20150215'), + ('libtool', '2.4.6'), + ('gperf', '3.0.4'), +] + +dependencies = [ + ('X11', '20170314'), + ('PCRE', '8.40'), + ('ncurses', '6.0'), + ('libreadline', '6.3'), + ('arpack-ng', '3.5.0'), + ('cURL', '7.53.1'), + ('FLTK', '1.3.4'), + ('fontconfig', '2.12.1', '-libpng-1.6.29'), + ('freetype', '2.7.1', '-libpng-1.6.29'), + ('GLPK', '4.61'), + ('GL2PS', '1.4.0'), + ('gnuplot', '5.0.6'), + ('Java', '1.8.0_131', '', True), + ('zlib', '1.2.11'), + ('Mesa', '17.0.2'), + ('libGLU', '9.0.0'), + ('Qhull', '2015.2'), + ('Qt5', '5.8.0'), + ('HDF5', '1.8.18', '-serial'), + ('qrupdate', '1.1.2'), + ('SuiteSparse', '4.5.5', '-METIS-5.1.0'), + ('GraphicsMagick', '1.3.25'), + ('FFTW', '3.3.6'), +] + +configopts = 'MOC=$EBROOTQT5/bin/moc ' +configopts += 'UIC=$EBROOTQT5/bin/uic ' +configopts += 'RCC=$EBROOTQT5/bin/rcc ' +configopts += 'LRELEASE=$EBROOTQT5/bin/lrelease ' +configopts += '--with-blas="$LIBBLAS" --with-lapack="$LIBLAPACK" --disable-docs ' +# correct for both GCC and Intel compilers +configopts += '--enable-fortran-calling-convention=gfortran' + +sanity_check_paths = { + 'files': ['bin/octave'], + 'dirs': [] +} + +sanity_check_commands = [('octave', '--eval "1+2"')] + +moduleclass = 'math' diff --git a/easybuild/easyconfigs/q/Qhull/Qhull-2015.2-intel-2017a.eb b/easybuild/easyconfigs/q/Qhull/Qhull-2015.2-intel-2017a.eb new file mode 100644 index 0000000000..a35971ec3e --- /dev/null +++ b/easybuild/easyconfigs/q/Qhull/Qhull-2015.2-intel-2017a.eb @@ -0,0 +1,36 @@ +easyblock = 'CMakeMake' + +name = 'Qhull' +version = '2015.2' + +homepage = 'http://www.qhull.org' +description = """ +Qhull computes the convex hull, Delaunay triangulation, Voronoi diagram, halfspace intersection about a point, +furthest-site Delaunay triangulation, and furthest-site Voronoi diagram. The source code runs in 2-d, 3-d, 4-d, +and higher dimensions. Qhull implements the Quickhull algorithm for computing the convex hull. +""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +sources = ['%(namelower)s-%(version_major)s-src-7.%(version_minor)s.0.tgz'] +source_urls = ['http://www.qhull.org/download/'] + +patches = [ + 'Qhull-%(version)s-intel-fix.patch', + 'Qhull_pkgconfig.patch', +] + +builddependencies = [('CMake', '3.8.1')] + +sanity_check_paths = { + 'files': ['bin/qhull', 'lib/libqhull.%s' % SHLIB_EXT, 'lib/pkgconfig/qhull.pc'], + 'dirs': [], +} + +modextrapaths = { + 'CPATH': ['qhull/include'], +} + +parallel = 1 + +moduleclass = 'math' diff --git a/easybuild/easyconfigs/q/qrupdate/qrupdate-1.1.2-intel-2017a.eb b/easybuild/easyconfigs/q/qrupdate/qrupdate-1.1.2-intel-2017a.eb new file mode 100644 index 0000000000..4f82f6763a --- /dev/null +++ b/easybuild/easyconfigs/q/qrupdate/qrupdate-1.1.2-intel-2017a.eb @@ -0,0 +1,28 @@ +easyblock = 'MakeCp' + +name = 'qrupdate' +version = '1.1.2' + +homepage = 'https://sourceforge.net/projects/qrupdate/' +description = """qrupdate is a Fortran library for fast updates of QR and Cholesky decompositions.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'pic': True} + +sources = [SOURCE_TAR_GZ] +source_urls = [SOURCEFORGE_SOURCE] + +patches = ['%(name)s-%(version)s_makeconf.patch'] + +buildopts = 'lib' + +files_to_copy = [(['libqrupdate.a'], 'lib')] + +sanity_check_paths = { + 'files': ['lib/libqrupdate.a'], + 'dirs': [], +} + +parallel = 1 + +moduleclass = 'numlib' diff --git a/easybuild/easyconfigs/x/xprop/xprop-1.2.2-intel-2017a.eb b/easybuild/easyconfigs/x/xprop/xprop-1.2.2-intel-2017a.eb new file mode 100644 index 0000000000..773d17a26f --- /dev/null +++ b/easybuild/easyconfigs/x/xprop/xprop-1.2.2-intel-2017a.eb @@ -0,0 +1,30 @@ +easyblock = 'ConfigureMake' + +name = 'xprop' +version = '1.2.2' + +homepage = "http://www.x.org/wiki/" +description = """The xprop utility is for displaying window and font properties in an X server. + One window or font is selected using the command line arguments or possibly + in the case of a window, by clicking on the desired window. A list of + properties is then given, possibly with formatting information.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +sources = [SOURCE_TAR_GZ] +source_urls = ['http://ftp.x.org/archive/individual/app/'] + +builddependencies = [ + ('pkg-config', '0.29.1'), +] + +dependencies = [ + ('X11', '20170314'), +] + +sanity_check_paths = { + 'files': ['bin/xprop'], + 'dirs': [], +} + +moduleclass = 'vis' -- GitLab From 603325793bfd941b1aaeb1a26400880125cdedf5 Mon Sep 17 00:00:00 2001 From: Balazs Hajgato Date: Thu, 18 May 2017 19:37:19 +0200 Subject: [PATCH 074/608] {math}[binary] MATLAB 2017a (REVIEW) --- .../easyconfigs/m/MATLAB/MATLAB-2017a.eb | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 easybuild/easyconfigs/m/MATLAB/MATLAB-2017a.eb diff --git a/easybuild/easyconfigs/m/MATLAB/MATLAB-2017a.eb b/easybuild/easyconfigs/m/MATLAB/MATLAB-2017a.eb new file mode 100644 index 0000000000..04d37d4f1e --- /dev/null +++ b/easybuild/easyconfigs/m/MATLAB/MATLAB-2017a.eb @@ -0,0 +1,22 @@ +name = 'MATLAB' +version = '2017a' + +homepage = 'http://www.mathworks.com/products/matlab' +description = """MATLAB is a high-level language and interactive environment + that enables you to perform computationally intensive tasks faster than with + traditional programming languages such as C, C++, and Fortran.""" + +toolchain = {'name': 'dummy', 'version': ''} + +# be sure to copy both DVD content to the SAME directory, +# including the hidden files, especially .dvd1 and .dvd2 +sources = [SOURCELOWER_TAR_GZ] + +dependencies = [('Java', '1.8.0_121')] + +import os +license_server = os.getenv('EB_MATLAB_LICENSE_SERVER', 'license.example.com') +license_server_port = os.getenv('EB_MATLAB_LICENSE_SERVER_PORT', '00000') +key = os.getenv('EB_MATLAB_KEY', '00000-00000-00000-00000-00000-00000-00000-00000-00000-00000') + +moduleclass = 'math' -- GitLab From 372b412676c7564c9f93360d7e897bd05491e24d Mon Sep 17 00:00:00 2001 From: Ward Poelmans Date: Fri, 19 May 2017 12:27:56 +0200 Subject: [PATCH 075/608] Keras/2.0.4 for Python 2.7.13 --- .../Keras-2.0.4-intel-2017a-Python-2.7.13.eb | 28 +++++++++++++++++++ .../Theano-0.9.0-intel-2017a-Python-2.7.13.eb | 23 +++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 easybuild/easyconfigs/k/Keras/Keras-2.0.4-intel-2017a-Python-2.7.13.eb create mode 100644 easybuild/easyconfigs/t/Theano/Theano-0.9.0-intel-2017a-Python-2.7.13.eb diff --git a/easybuild/easyconfigs/k/Keras/Keras-2.0.4-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/k/Keras/Keras-2.0.4-intel-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..7f78e14b8d --- /dev/null +++ b/easybuild/easyconfigs/k/Keras/Keras-2.0.4-intel-2017a-Python-2.7.13.eb @@ -0,0 +1,28 @@ +easyblock = 'PythonPackage' + +name = 'Keras' +version = '2.0.4' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'https://keras.io/' +description = """Keras is a minimalist, highly modular neural networks library, written in Python and +capable of running on top of either TensorFlow or Theano.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [PYPI_SOURCE] +sources = [SOURCE_TAR_GZ] + +dependencies = [ + ('Python', '2.7.13'), + ('Theano', '0.9.0', versionsuffix), + ('h5py', '2.7.0', '%(versionsuffix)s'), + ('PyYAML', '3.12', versionsuffix), +] + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages'], +} + +moduleclass = 'math' diff --git a/easybuild/easyconfigs/t/Theano/Theano-0.9.0-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/t/Theano/Theano-0.9.0-intel-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..6119fbb576 --- /dev/null +++ b/easybuild/easyconfigs/t/Theano/Theano-0.9.0-intel-2017a-Python-2.7.13.eb @@ -0,0 +1,23 @@ +easyblock = 'PythonPackage' + +name = 'Theano' +version = '0.9.0' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://deeplearning.net/software/theano' +description = """Theano is a Python library that allows you to define, optimize, +and evaluate mathematical expressions involving multi-dimensional arrays efficiently.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [PYPI_SOURCE] +sources = [SOURCE_TAR_GZ] + +dependencies = [('Python', '2.7.13')] + +sanity_check_paths = { + 'files': ['bin/theano-cache', 'bin/theano-nose'], + 'dirs': ['lib/python%(pyshortver)s/site-packages'], +} + +moduleclass = 'math' -- GitLab From c026c35e54a606aa89c99bcb1f4f50c62cfe535c Mon Sep 17 00:00:00 2001 From: Ward Poelmans Date: Fri, 19 May 2017 12:44:11 +0200 Subject: [PATCH 076/608] Switch default backend to Theano for keras --- .../k/Keras/Keras-2.0.4-intel-2017a-Python-2.7.13.eb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/easybuild/easyconfigs/k/Keras/Keras-2.0.4-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/k/Keras/Keras-2.0.4-intel-2017a-Python-2.7.13.eb index 7f78e14b8d..b475663604 100644 --- a/easybuild/easyconfigs/k/Keras/Keras-2.0.4-intel-2017a-Python-2.7.13.eb +++ b/easybuild/easyconfigs/k/Keras/Keras-2.0.4-intel-2017a-Python-2.7.13.eb @@ -20,6 +20,9 @@ dependencies = [ ('PyYAML', '3.12', versionsuffix), ] +# it defaults to Tensorflow +modextravars = {'KERAS_BACKEND': 'theano'} + sanity_check_paths = { 'files': [], 'dirs': ['lib/python%(pyshortver)s/site-packages'], -- GitLab From 0ff5782bb6b544645a89f85b268e3811a17ec77f Mon Sep 17 00:00:00 2001 From: Ward Poelmans Date: Fri, 19 May 2017 13:53:35 +0200 Subject: [PATCH 077/608] Sync Py3 and Py2 easyconfigs of Keras --- .../k/Keras/Keras-2.0.4-intel-2017a-Python-3.6.1.eb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/easybuild/easyconfigs/k/Keras/Keras-2.0.4-intel-2017a-Python-3.6.1.eb b/easybuild/easyconfigs/k/Keras/Keras-2.0.4-intel-2017a-Python-3.6.1.eb index 45f0be1e64..d338fae1c9 100644 --- a/easybuild/easyconfigs/k/Keras/Keras-2.0.4-intel-2017a-Python-3.6.1.eb +++ b/easybuild/easyconfigs/k/Keras/Keras-2.0.4-intel-2017a-Python-3.6.1.eb @@ -20,6 +20,9 @@ dependencies = [ ('PyYAML', '3.12', versionsuffix), ] +# it defaults to Tensorflow +modextravars = {'KERAS_BACKEND': 'theano'} + sanity_check_paths = { 'files': [], 'dirs': ['lib/python%(pyshortver)s/site-packages'], -- GitLab From bb1e24a58fbdf67a53ff89fe0bef88ca2926a58c Mon Sep 17 00:00:00 2001 From: Ward Poelmans Date: Fri, 19 May 2017 15:25:59 +0200 Subject: [PATCH 078/608] FSL/5.0.10 for intel/2017a --- .../f/FSL/FSL-5.0.10-intel-2017a.eb | 33 + .../f/FSL/FSL-5.0.10_build_extras.patch | 13 + .../f/FSL/FSL-5.0.10_makefile_fixes.patch | 605 ++++++++++++++++++ .../g/GLibmm/GLibmm-2.53.1.1-intel-2017a.eb | 24 + .../libsigc++/libsigc++-2.10.0-intel-2017a.eb | 20 + .../l/libxml++/libxml++-2.91.3-intel-2017a.eb | 24 + 6 files changed, 719 insertions(+) create mode 100644 easybuild/easyconfigs/f/FSL/FSL-5.0.10-intel-2017a.eb create mode 100644 easybuild/easyconfigs/f/FSL/FSL-5.0.10_build_extras.patch create mode 100644 easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch create mode 100644 easybuild/easyconfigs/g/GLibmm/GLibmm-2.53.1.1-intel-2017a.eb create mode 100644 easybuild/easyconfigs/l/libsigc++/libsigc++-2.10.0-intel-2017a.eb create mode 100644 easybuild/easyconfigs/l/libxml++/libxml++-2.91.3-intel-2017a.eb diff --git a/easybuild/easyconfigs/f/FSL/FSL-5.0.10-intel-2017a.eb b/easybuild/easyconfigs/f/FSL/FSL-5.0.10-intel-2017a.eb new file mode 100644 index 0000000000..b6760b7e06 --- /dev/null +++ b/easybuild/easyconfigs/f/FSL/FSL-5.0.10-intel-2017a.eb @@ -0,0 +1,33 @@ +name = 'FSL' +version = '5.0.10' + +homepage = 'http://www.fmrib.ox.ac.uk/fsl/' +description = """FSL is a comprehensive library of analysis tools for FMRI, MRI and DTI brain imaging data.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ["http://www.fmrib.ox.ac.uk/fsldownloads/"] +sources = ['%(namelower)s-%(version)s-sources.tar.gz'] + +patches = [ + 'FSL-%(version)s_makefile_fixes.patch', + 'FSL-5.0.9_missing_lib.patch', + 'FSL_icc_nan-inf_fix.patch', + 'FSL-%(version)s_build_extras.patch', +] + +dependencies = [ + ('Boost', '1.63.0', '-Python-2.7.13'), + ('libgd', '2.2.4'), + ('libxml++', '2.91.3'), + ('SQLite', '3.13.0'), + ('libpng', '1.6.29'), + ('Tk', '8.6.6'), + ('GLibmm', '2.53.1.1'), + ('NLopt', '2.4.2'), + ('freeglut', '3.0.0'), + ('expat', '2.2.0'), + ('zlib', '1.2.11'), +] + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/f/FSL/FSL-5.0.10_build_extras.patch b/easybuild/easyconfigs/f/FSL/FSL-5.0.10_build_extras.patch new file mode 100644 index 0000000000..ac663c9852 --- /dev/null +++ b/easybuild/easyconfigs/f/FSL/FSL-5.0.10_build_extras.patch @@ -0,0 +1,13 @@ +# only build thing we don't provide with EasyBuild +diff -ur fsl/extras/build fsl.new/extras/build +--- fsl/extras/build 2016-11-15 15:30:21.000000000 +0100 ++++ fsl.new/extras/build 2017-05-19 15:21:07.321630239 +0200 +@@ -106,6 +106,8 @@ + fi + PROJECTS="${PROJECTS} libgd libgdc libprob libcprob newmat cprob newran fftw" + PROJECTS="${PROJECTS} boost libxml2-2.9.2 libxml++-2.34.0 libsqlite libnlopt ../include/armawrap/dummy_newmat" ++# For EasyBuild: ++PROJECTS="libprob libcprob newmat cprob newran" + for projname in $PROJECTS; do + if [ -d $FSLESRCDIR/$projname ] ; then + buildIt $FSLESRCDIR $projname 1 diff --git a/easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch b/easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch new file mode 100644 index 0000000000..8808344d6f --- /dev/null +++ b/easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch @@ -0,0 +1,605 @@ +patch out hardcoded compiler names and options +author: kenneth hoste (hpc-ugent) +diff -ur fsl.orig/config/apple-darwin10-gcc4.2/systemvars.mk fsl/config/apple-darwin10-gcc4.2/systemvars.mk +--- fsl.orig/config/apple-darwin10-gcc4.2/systemvars.mk 2009-11-03 18:02:14.000000000 +0100 ++++ fsl/config/apple-darwin10-gcc4.2/systemvars.mk 2017-05-18 13:54:40.446975876 +0200 +@@ -3,8 +3,8 @@ + + # Compiler dependent variables + +-CC = cc +-CXX = c++ ++CC := ${CC} ++CXX := ${CXX} + CSTATICFLAGS = + CXXSTATICFLAGS = + +@@ -15,7 +15,7 @@ + + DEPENDFLAGS = -MM + +-OPTFLAGS = -O3 -fexpensive-optimizations ++OPTFLAGS := ${CFLAGS} -wd803 + MACHDBGFLAGS = -g + GNU_ANSI_FLAGS = -Wall -Wno-long-long -ansi -pedantic + SGI_ANSI_FLAGS = -ansi -fullwarn +Only in fsl/config/apple-darwin10-gcc4.2: systemvars.mk.orig +diff -ur fsl.orig/config/apple-darwin11-gcc4.2/systemvars.mk fsl/config/apple-darwin11-gcc4.2/systemvars.mk +--- fsl.orig/config/apple-darwin11-gcc4.2/systemvars.mk 2012-03-21 12:30:53.000000000 +0100 ++++ fsl/config/apple-darwin11-gcc4.2/systemvars.mk 2017-05-18 13:54:40.446975876 +0200 +@@ -15,7 +15,7 @@ + + DEPENDFLAGS = -MM + +-OPTFLAGS = -O3 ++OPTFLAGS := -O3 -wd803 + MACHDBGFLAGS = -g + GNU_ANSI_FLAGS = -Wall -Wno-long-long -ansi -pedantic + ANSI_FLAGS = ${GNU_ANSI_FLAGS} +Only in fsl/config/apple-darwin11-gcc4.2: systemvars.mk.orig +diff -ur fsl.orig/config/apple-darwin12-gcc4.2/systemvars.mk fsl/config/apple-darwin12-gcc4.2/systemvars.mk +--- fsl.orig/config/apple-darwin12-gcc4.2/systemvars.mk 2013-04-09 18:00:32.000000000 +0200 ++++ fsl/config/apple-darwin12-gcc4.2/systemvars.mk 2017-05-18 13:54:40.446975876 +0200 +@@ -15,7 +15,7 @@ + + DEPENDFLAGS = -MM + +-OPTFLAGS = -O3 ++OPTFLAGS := -O3 -wd803 + MACHDBGFLAGS = -g + GNU_ANSI_FLAGS = -Wall -Wno-long-long -ansi -pedantic + ANSI_FLAGS = ${GNU_ANSI_FLAGS} +Only in fsl/config/apple-darwin12-gcc4.2: systemvars.mk.orig +diff -ur fsl.orig/config/apple-darwin7-gcc3.1/systemvars.mk fsl/config/apple-darwin7-gcc3.1/systemvars.mk +--- fsl.orig/config/apple-darwin7-gcc3.1/systemvars.mk 2007-07-13 13:00:20.000000000 +0200 ++++ fsl/config/apple-darwin7-gcc3.1/systemvars.mk 2017-05-18 13:54:40.446975876 +0200 +@@ -7,8 +7,8 @@ + + # Compiler dependent variables + +-CC = cc +-CXX = c++ ++CC := ${CC} ++CXX := ${CXX} + CSTATICFLAGS = + CXXSTATICFLAGS = + +@@ -17,7 +17,7 @@ + + DEPENDFLAGS = -MM + +-OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} ++OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 + MACHDBGFLAGS = -g + GNU_ANSI_FLAGS = -traditional-cpp -Wall -Wno-long-long -Wno-long-double -ansi -pedantic + SGI_ANSI_FLAGS = -ansi -fullwarn +Only in fsl/config/apple-darwin7-gcc3.1: systemvars.mk.orig +diff -ur fsl.orig/config/apple-darwin7-gcc3.3/systemvars.mk fsl/config/apple-darwin7-gcc3.3/systemvars.mk +--- fsl.orig/config/apple-darwin7-gcc3.3/systemvars.mk 2007-07-13 13:00:20.000000000 +0200 ++++ fsl/config/apple-darwin7-gcc3.3/systemvars.mk 2017-05-18 13:54:40.446975876 +0200 +@@ -7,8 +7,8 @@ + + # Compiler dependent variables + +-CC = cc +-CXX = c++ ++CC := ${CC} ++CXX := ${CXX} + CSTATICFLAGS = + CXXSTATICFLAGS = + +@@ -17,7 +17,7 @@ + + DEPENDFLAGS = -MM + +-OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} ++OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 + MACHDBGFLAGS = -g + GNU_ANSI_FLAGS = -Wall -Wno-long-long -Wno-long-double -ansi -pedantic + SGI_ANSI_FLAGS = -ansi -fullwarn +Only in fsl/config/apple-darwin7-gcc3.3: systemvars.mk.orig +diff -ur fsl.orig/config/apple-darwin8-gcc4.0/systemvars.mk fsl/config/apple-darwin8-gcc4.0/systemvars.mk +--- fsl.orig/config/apple-darwin8-gcc4.0/systemvars.mk 2007-12-19 15:40:57.000000000 +0100 ++++ fsl/config/apple-darwin8-gcc4.0/systemvars.mk 2017-05-18 13:54:40.446975876 +0200 +@@ -3,8 +3,8 @@ + + # Compiler dependent variables + +-CC = cc +-CXX = c++ ++CC := ${CC} ++CXX := ${CXX} + CSTATICFLAGS = + CXXSTATICFLAGS = + +@@ -17,7 +17,7 @@ + + DEPENDFLAGS = -MM + +-OPTFLAGS = -O3 -fexpensive-optimizations ++OPTFLAGS := ${CFLAGS} -wd803 + MACHDBGFLAGS = -g + GNU_ANSI_FLAGS = -Wall -Wno-long-long -Wno-long-double -ansi -pedantic + SGI_ANSI_FLAGS = -ansi -fullwarn +Only in fsl/config/apple-darwin8-gcc4.0: systemvars.mk.orig +diff -ur fsl.orig/config/apple-darwin9-gcc4.0/systemvars.mk fsl/config/apple-darwin9-gcc4.0/systemvars.mk +--- fsl.orig/config/apple-darwin9-gcc4.0/systemvars.mk 2007-12-19 15:33:53.000000000 +0100 ++++ fsl/config/apple-darwin9-gcc4.0/systemvars.mk 2017-05-18 13:54:40.446975876 +0200 +@@ -3,8 +3,8 @@ + + # Compiler dependent variables + +-CC = cc +-CXX = c++ ++CC := ${CC} ++CXX := ${CXX} + CSTATICFLAGS = + CXXSTATICFLAGS = + +@@ -17,7 +17,7 @@ + + DEPENDFLAGS = -MM + +-OPTFLAGS = -O3 -fexpensive-optimizations ++OPTFLAGS := ${CFLAGS} -wd803 + MACHDBGFLAGS = -g + GNU_ANSI_FLAGS = -Wall -Wno-long-long -Wno-long-double -ansi -pedantic + SGI_ANSI_FLAGS = -ansi -fullwarn +Only in fsl/config/apple-darwin9-gcc4.0: systemvars.mk.orig +diff -ur fsl.orig/config/generic/systemvars.mk fsl/config/generic/systemvars.mk +--- fsl.orig/config/generic/systemvars.mk 2007-07-13 13:00:20.000000000 +0200 ++++ fsl/config/generic/systemvars.mk 2017-05-18 13:54:40.446975876 +0200 +@@ -16,8 +16,8 @@ + + # Compiler dependent variables + +-CC = gcc +-CXX = c++ ++CC := ${CC} ++CXX := ${CXX} + CSTATICFLAGS = -static + CXXSTATICFLAGS = -static + +@@ -25,7 +25,7 @@ + + DEPENDFLAGS = -MM + +-OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} ++OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 + MACHDBGFLAGS = + GNU_ANSI_FLAGS = -Wall -ansi -pedantic + SGI_ANSI_FLAGS = -ansi -fullwarn +Only in fsl/config/generic: systemvars.mk.orig +diff -ur fsl.orig/config/gnu_64-gcc4.4/systemvars.mk fsl/config/gnu_64-gcc4.4/systemvars.mk +--- fsl.orig/config/gnu_64-gcc4.4/systemvars.mk 2011-04-19 10:47:52.000000000 +0200 ++++ fsl/config/gnu_64-gcc4.4/systemvars.mk 2017-05-18 13:54:40.446975876 +0200 +@@ -27,7 +27,7 @@ + + DEPENDFLAGS = -MM + +-OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} ++OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 + MACHDBGFLAGS = -g + GNU_ANSI_FLAGS = -Wall -ansi -pedantic -Wno-long-long + SGI_ANSI_FLAGS = -ansi -fullwarn +Only in fsl/config/gnu_64-gcc4.4: systemvars.mk.orig +diff -ur fsl.orig/config/i686-pc-cygwin-gcc3.2/systemvars.mk fsl/config/i686-pc-cygwin-gcc3.2/systemvars.mk +--- fsl.orig/config/i686-pc-cygwin-gcc3.2/systemvars.mk 2007-07-13 13:00:20.000000000 +0200 ++++ fsl/config/i686-pc-cygwin-gcc3.2/systemvars.mk 2017-05-18 13:54:40.446975876 +0200 +@@ -18,8 +18,8 @@ + + # Compiler dependent variables + +-CC = gcc-2 +-CXX = c++-2 ++CC := ${CC} ++CXX := ${CXX} + CSTATICFLAGS = -static + CXXSTATICFLAGS = -static + +@@ -27,7 +27,7 @@ + + DEPENDFLAGS = -MM + +-OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} ++OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 + MACHDBGFLAGS = -g + GNU_ANSI_FLAGS = -Wall -ansi -pedantic -Wno-deprecated + SGI_ANSI_FLAGS = -ansi -fullwarn +Only in fsl/config/i686-pc-cygwin-gcc3.2: systemvars.mk.orig +diff -ur fsl.orig/config/i686-pc-cygwin-gcc3.3/systemvars.mk fsl/config/i686-pc-cygwin-gcc3.3/systemvars.mk +--- fsl.orig/config/i686-pc-cygwin-gcc3.3/systemvars.mk 2007-07-13 13:00:20.000000000 +0200 ++++ fsl/config/i686-pc-cygwin-gcc3.3/systemvars.mk 2017-05-18 13:54:40.447975880 +0200 +@@ -18,8 +18,8 @@ + + # Compiler dependent variables + +-CC = gcc +-CXX = c++ ++CC := ${CC} ++CXX := ${CXX} + CSTATICFLAGS = -static + CXXSTATICFLAGS = -static + +@@ -27,7 +27,7 @@ + + DEPENDFLAGS = -MM + +-OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} ++OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 + MACHDBGFLAGS = -g + GNU_ANSI_FLAGS = -Wall -ansi -pedantic -Wno-deprecated + SGI_ANSI_FLAGS = -ansi -fullwarn +Only in fsl/config/i686-pc-cygwin-gcc3.3: systemvars.mk.orig +diff -ur fsl.orig/config/i686-pc-cygwin-gcc3.4/systemvars.mk fsl/config/i686-pc-cygwin-gcc3.4/systemvars.mk +--- fsl.orig/config/i686-pc-cygwin-gcc3.4/systemvars.mk 2007-07-13 13:00:20.000000000 +0200 ++++ fsl/config/i686-pc-cygwin-gcc3.4/systemvars.mk 2017-05-18 13:54:40.447975880 +0200 +@@ -18,8 +18,8 @@ + + # Compiler dependent variables + +-CC = gcc +-CXX = c++ ++CC := ${CC} ++CXX := ${CXX} + CSTATICFLAGS = -static + CXXSTATICFLAGS = -static + +@@ -27,7 +27,7 @@ + + DEPENDFLAGS = -MM + +-OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} ++OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 + MACHDBGFLAGS = -g + GNU_ANSI_FLAGS = -Wall -ansi -pedantic -Wno-deprecated + SGI_ANSI_FLAGS = -ansi -fullwarn +Only in fsl/config/i686-pc-cygwin-gcc3.4: systemvars.mk.orig +diff -ur fsl.orig/config/linux_32-gcc2.96/systemvars.mk fsl/config/linux_32-gcc2.96/systemvars.mk +--- fsl.orig/config/linux_32-gcc2.96/systemvars.mk 2007-07-25 17:21:07.000000000 +0200 ++++ fsl/config/linux_32-gcc2.96/systemvars.mk 2017-05-18 13:54:40.447975880 +0200 +@@ -18,8 +18,8 @@ + + # Compiler dependent variables + +-CC = gcc +-CXX = c++ ++CC := ${CC} ++CXX := ${CXX} + CSTATICFLAGS = -static + CXXSTATICFLAGS = -static + +@@ -27,7 +27,7 @@ + + DEPENDFLAGS = -MM + +-OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} ++OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 + MACHDBGFLAGS = -g + GNU_ANSI_FLAGS = -Wall -ansi -pedantic + SGI_ANSI_FLAGS = -ansi -fullwarn +Only in fsl/config/linux_32-gcc2.96: systemvars.mk.orig +diff -ur fsl.orig/config/linux_32-gcc3.2/systemvars.mk fsl/config/linux_32-gcc3.2/systemvars.mk +--- fsl.orig/config/linux_32-gcc3.2/systemvars.mk 2007-07-25 17:21:08.000000000 +0200 ++++ fsl/config/linux_32-gcc3.2/systemvars.mk 2017-05-18 13:54:40.447975880 +0200 +@@ -18,8 +18,8 @@ + + # Compiler dependent variables + +-CC = gcc +-CXX = c++ ++CC := ${CC} ++CXX := ${CXX} + CSTATICFLAGS = -static + CXXSTATICFLAGS = -static + +@@ -27,7 +27,7 @@ + + DEPENDFLAGS = -MM + +-OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} ++OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 + MACHDBGFLAGS = -g + GNU_ANSI_FLAGS = -Wall -ansi -pedantic + SGI_ANSI_FLAGS = -ansi -fullwarn +Only in fsl/config/linux_32-gcc3.2: systemvars.mk.orig +diff -ur fsl.orig/config/linux_32-gcc3.3/systemvars.mk fsl/config/linux_32-gcc3.3/systemvars.mk +--- fsl.orig/config/linux_32-gcc3.3/systemvars.mk 2007-07-25 17:21:09.000000000 +0200 ++++ fsl/config/linux_32-gcc3.3/systemvars.mk 2017-05-18 13:54:40.447975880 +0200 +@@ -18,8 +18,8 @@ + + # Compiler dependent variables + +-CC = gcc +-CXX = c++ ++CC := ${CC} ++CXX := ${CXX} + CSTATICFLAGS = -static + CXXSTATICFLAGS = -static + +@@ -27,7 +27,7 @@ + + DEPENDFLAGS = -MM + +-OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} ++OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 + MACHDBGFLAGS = -g + GNU_ANSI_FLAGS = -Wall -ansi -pedantic -Wno-long-long + SGI_ANSI_FLAGS = -ansi -fullwarn +Only in fsl/config/linux_32-gcc3.3: systemvars.mk.orig +diff -ur fsl.orig/config/linux_32-gcc3.4/systemvars.mk fsl/config/linux_32-gcc3.4/systemvars.mk +--- fsl.orig/config/linux_32-gcc3.4/systemvars.mk 2007-07-25 17:21:10.000000000 +0200 ++++ fsl/config/linux_32-gcc3.4/systemvars.mk 2017-05-18 13:54:40.447975880 +0200 +@@ -18,8 +18,8 @@ + + # Compiler dependent variables + +-CC = gcc +-CXX = c++ ++CC := ${CC} ++CXX := ${CXX} + CSTATICFLAGS = -static + CXXSTATICFLAGS = -static + +@@ -27,7 +27,7 @@ + + DEPENDFLAGS = -MM + +-OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} ++OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 + MACHDBGFLAGS = -g + GNU_ANSI_FLAGS = -Wall -ansi -pedantic -Wno-long-long + SGI_ANSI_FLAGS = -ansi -fullwarn +Only in fsl/config/linux_32-gcc3.4: systemvars.mk.orig +diff -ur fsl.orig/config/linux_32-gcc4.0/systemvars.mk fsl/config/linux_32-gcc4.0/systemvars.mk +--- fsl.orig/config/linux_32-gcc4.0/systemvars.mk 2007-07-25 17:21:11.000000000 +0200 ++++ fsl/config/linux_32-gcc4.0/systemvars.mk 2017-05-18 13:54:40.447975880 +0200 +@@ -18,8 +18,8 @@ + + # Compiler dependent variables + +-CC = gcc +-CXX = c++ ++CC := ${CC} ++CXX := ${CXX} + CSTATICFLAGS = -static + CXXSTATICFLAGS = -static + +@@ -27,7 +27,7 @@ + + DEPENDFLAGS = -MM + +-OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} ++OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 + MACHDBGFLAGS = -g + GNU_ANSI_FLAGS = -Wall -ansi -pedantic + SGI_ANSI_FLAGS = -ansi -fullwarn +Only in fsl/config/linux_32-gcc4.0: systemvars.mk.orig +diff -ur fsl.orig/config/linux_32-gcc4.1/systemvars.mk fsl/config/linux_32-gcc4.1/systemvars.mk +--- fsl.orig/config/linux_32-gcc4.1/systemvars.mk 2012-04-20 11:37:28.000000000 +0200 ++++ fsl/config/linux_32-gcc4.1/systemvars.mk 2017-05-18 13:54:40.447975880 +0200 +@@ -18,8 +18,8 @@ + + # Compiler dependent variables + +-CC = gcc +-CXX = c++ ++CC := ${CC} ++CXX := ${CXX} + CSTATICFLAGS = -static + CXXSTATICFLAGS = -static + +@@ -27,7 +27,7 @@ + + DEPENDFLAGS = -MM + +-OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} ++OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 + MACHDBGFLAGS = -g + GNU_ANSI_FLAGS = -Wall -ansi -pedantic -Wno-long-long + SGI_ANSI_FLAGS = -ansi -fullwarn +Only in fsl/config/linux_32-gcc4.1: systemvars.mk.orig +diff -ur fsl.orig/config/linux_64-gcc3.4/systemvars.mk fsl/config/linux_64-gcc3.4/systemvars.mk +--- fsl.orig/config/linux_64-gcc3.4/systemvars.mk 2007-07-25 17:21:12.000000000 +0200 ++++ fsl/config/linux_64-gcc3.4/systemvars.mk 2017-05-18 13:54:40.447975880 +0200 +@@ -18,8 +18,8 @@ + + # Compiler dependent variables + +-CC = gcc +-CXX = c++ ++CC := ${CC} ++CXX := ${CXX} + CSTATICFLAGS = -static + CXXSTATICFLAGS = -static + +@@ -27,7 +27,7 @@ + + DEPENDFLAGS = -MM + +-OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} ++OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 + MACHDBGFLAGS = -g + GNU_ANSI_FLAGS = -Wall -ansi -pedantic -Wno-long-long + SGI_ANSI_FLAGS = -ansi -fullwarn +Only in fsl/config/linux_64-gcc3.4: systemvars.mk.orig +diff -ur fsl.orig/config/linux_64-gcc4.0/systemvars.mk fsl/config/linux_64-gcc4.0/systemvars.mk +--- fsl.orig/config/linux_64-gcc4.0/systemvars.mk 2007-07-25 17:21:13.000000000 +0200 ++++ fsl/config/linux_64-gcc4.0/systemvars.mk 2017-05-18 13:54:40.447975880 +0200 +@@ -18,8 +18,8 @@ + + # Compiler dependent variables + +-CC = gcc +-CXX = c++ ++CC := ${CC} ++CXX := ${CXX} + CSTATICFLAGS = -static + CXXSTATICFLAGS = -static + +@@ -27,7 +27,7 @@ + + DEPENDFLAGS = -MM + +-OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} ++OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 + MACHDBGFLAGS = -g + GNU_ANSI_FLAGS = -Wall -ansi -pedantic -Wno-long-long + SGI_ANSI_FLAGS = -ansi -fullwarn +Only in fsl/config/linux_64-gcc4.0: systemvars.mk.orig +diff -ur fsl.orig/config/linux_64-gcc4.1/systemvars.mk fsl/config/linux_64-gcc4.1/systemvars.mk +--- fsl.orig/config/linux_64-gcc4.1/systemvars.mk 2007-07-25 11:19:45.000000000 +0200 ++++ fsl/config/linux_64-gcc4.1/systemvars.mk 2017-05-18 13:54:40.447975880 +0200 +@@ -18,8 +18,8 @@ + + # Compiler dependent variables + +-CC = gcc +-CXX = c++ ++CC := ${CC} ++CXX := ${CXX} + CSTATICFLAGS = -static + CXXSTATICFLAGS = -static + +@@ -27,7 +27,7 @@ + + DEPENDFLAGS = -MM + +-OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} ++OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 + MACHDBGFLAGS = -g + GNU_ANSI_FLAGS = -Wall -ansi -pedantic -Wno-long-long + SGI_ANSI_FLAGS = -ansi -fullwarn +Only in fsl/config/linux_64-gcc4.1: systemvars.mk.orig +diff -ur fsl.orig/config/linux_64-gcc4.2/systemvars.mk fsl/config/linux_64-gcc4.2/systemvars.mk +--- fsl.orig/config/linux_64-gcc4.2/systemvars.mk 2008-06-26 15:25:42.000000000 +0200 ++++ fsl/config/linux_64-gcc4.2/systemvars.mk 2017-05-18 13:54:40.447975880 +0200 +@@ -18,8 +18,8 @@ + + # Compiler dependent variables + +-CC = gcc +-CXX = c++ ++CC := ${CC} ++CXX := ${CXX} + CSTATICFLAGS = -static + CXXSTATICFLAGS = -static + +@@ -27,7 +27,7 @@ + + DEPENDFLAGS = -MM + +-OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} ++OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 + MACHDBGFLAGS = -g + GNU_ANSI_FLAGS = -Wall -ansi -pedantic -Wno-long-long + SGI_ANSI_FLAGS = -ansi -fullwarn +Only in fsl/config/linux_64-gcc4.2: systemvars.mk.orig +diff -ur fsl.orig/config/linux_64-gcc4.4/systemvars.mk fsl/config/linux_64-gcc4.4/systemvars.mk +--- fsl.orig/config/linux_64-gcc4.4/systemvars.mk 2017-01-20 16:47:17.000000000 +0100 ++++ fsl/config/linux_64-gcc4.4/systemvars.mk 2017-05-18 13:57:25.995699462 +0200 +@@ -18,8 +18,8 @@ + + # Compiler dependent variables + +-CC = gcc +-CXX = c++ ++CC := ${CC} ++CXX := ${CXX} + CXX11 = scl enable devtoolset-2 -- c++ + CSTATICFLAGS = -static + CXXSTATICFLAGS = -static +@@ -30,7 +30,7 @@ + + DEPENDFLAGS = -MM + +-OPTFLAGS = -g -O3 -fexpensive-optimizations ${ARCHFLAGS} ++OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 + MACHDBGFLAGS = -g + GNU_ANSI_FLAGS = -Wall -ansi -pedantic -Wno-long-long + SGI_ANSI_FLAGS = -ansi -fullwarn +Only in fsl/config/linux_64-gcc4.4: systemvars.mk.orig +Only in fsl/config/linux_64-gcc4.4: systemvars.mk.rej +diff -ur fsl.orig/config/sparc-solaris2.8-gcc2.95/systemvars.mk fsl/config/sparc-solaris2.8-gcc2.95/systemvars.mk +--- fsl.orig/config/sparc-solaris2.8-gcc2.95/systemvars.mk 2007-07-13 13:00:21.000000000 +0200 ++++ fsl/config/sparc-solaris2.8-gcc2.95/systemvars.mk 2017-05-18 13:54:40.448975885 +0200 +@@ -5,14 +5,14 @@ + + # Compiler dependent variables + +-CC = gcc +-CXX = c++ ++CC := ${CC} ++CXX := ${CXX} + + ARCHFLAGS = -mv8 -ffast-math -fomit-frame-pointer + + DEPENDFLAGS = -MM + +-OPTFLAGS = -O6 -fexpensive-optimizations ${ARCHFLAGS} ++OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 + MACHDBGFLAGS = + GNU_ANSI_FLAGS = -Wall -ansi -pedantic + SGI_ANSI_FLAGS = -ansi -fullwarn +Only in fsl/config/sparc-solaris2.8-gcc2.95: systemvars.mk.orig +diff -ur fsl.orig/config/sparc-solaris2.9-gcc2.95/systemvars.mk fsl/config/sparc-solaris2.9-gcc2.95/systemvars.mk +--- fsl.orig/config/sparc-solaris2.9-gcc2.95/systemvars.mk 2007-07-13 13:00:21.000000000 +0200 ++++ fsl/config/sparc-solaris2.9-gcc2.95/systemvars.mk 2017-05-18 13:54:40.448975885 +0200 +@@ -5,14 +5,14 @@ + + # Compiler dependent variables + +-CC = gcc +-CXX = c++ ++CC := ${CC} ++CXX := ${CXX} + + ARCHFLAGS = -mv8 -ffast-math -fomit-frame-pointer + ARCHLDFLAGS = -static + DEPENDFLAGS = -MM + +-OPTFLAGS = -O6 -fexpensive-optimizations ${ARCHFLAGS} ++OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 + MACHDBGFLAGS = + GNU_ANSI_FLAGS = -Wall -ansi -pedantic + SGI_ANSI_FLAGS = -ansi -fullwarn +Only in fsl/config/sparc-solaris2.9-gcc2.95: systemvars.mk.orig +diff -ur fsl.orig/src/film/Makefile fsl/src/film/Makefile +--- fsl.orig/src/film/Makefile 2017-04-20 17:01:43.000000000 +0200 ++++ fsl/src/film/Makefile 2017-05-18 13:54:40.448975885 +0200 +@@ -28,7 +28,7 @@ + ${CXX} ${CXXFLAGS} ${LDFLAGS} -o $@ ${OBJS} ftoz.o ${LIBS} + + film_gls:${OBJS} film_gls.o +- ${CXX} ${CXXFLAGS} ${LDFLAGS} -o $@ ${OBJS} film_gls.o ${LIBS} -l giftiio ++ ${CXX} ${CXXFLAGS} ${LDFLAGS} -o $@ ${OBJS} film_gls.o ${LIBS} -lgiftiio + + film_gls_res:${OBJS} film_gls_res.o + ${CXX} ${CXXFLAGS} ${LDFLAGS} -o $@ ${OBJS} film_gls_res.o ${LIBS} +Only in fsl/src/film: Makefile.orig +diff -ur fsl.orig/src/libmeshutils/Makefile fsl/src/libmeshutils/Makefile +--- fsl.orig/src/libmeshutils/Makefile 2012-07-23 15:25:20.000000000 +0200 ++++ fsl/src/libmeshutils/Makefile 2017-05-18 13:54:40.448975885 +0200 +@@ -3,7 +3,7 @@ + + PROJNAME = meshUtils + +-LD_LIBRARY_PATH=${FSLDIR}/lib ++#LD_LIBRARY_PATH=${FSLDIR}/lib + + USRINCFLAGS = -I${INC_NEWMAT} -I${INC_ZLIB} -I${INC_PROB} -I${INC_BOOST} + USRLDFLAGS = -L${LIB_PROB} -L${LIB_NEWMAT} -L${LIB_ZLIB} +Only in fsl/src/libmeshutils: Makefile.orig +diff -ur fsl.orig/src/melodic/Makefile fsl/src/melodic/Makefile +--- fsl.orig/src/melodic/Makefile 2016-09-01 17:24:32.000000000 +0200 ++++ fsl/src/melodic/Makefile 2017-05-18 13:54:40.448975885 +0200 +@@ -3,7 +3,7 @@ + include ${FSLCONFDIR}/default.mk + + OPTFLAGS = -O3 -Wno-deprecated -ggdb +-OPTFLAGS_alphaev6-dec-osf5.0-gcc2.95.2 = -O3 -mieee -mfp-trap-mode=sui ++#OPTFLAGS_alphaev6-dec-osf5.0-gcc2.95.2 = -O3 -mieee -mfp-trap-mode=sui + + PROJNAME = melodic + +Only in fsl/src/melodic: Makefile.orig diff --git a/easybuild/easyconfigs/g/GLibmm/GLibmm-2.53.1.1-intel-2017a.eb b/easybuild/easyconfigs/g/GLibmm/GLibmm-2.53.1.1-intel-2017a.eb new file mode 100644 index 0000000000..b9e19ec518 --- /dev/null +++ b/easybuild/easyconfigs/g/GLibmm/GLibmm-2.53.1.1-intel-2017a.eb @@ -0,0 +1,24 @@ +easyblock = 'ConfigureMake' + +name = 'GLibmm' +version = '2.53.1.1' + +homepage = 'http://www.gtk.org/' +description = """GLib is one of the base libraries of the GTK+ project""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'optarch': True, 'pic': True} + +source_urls = ['http://ftp.gnome.org/pub/gnome/sources/glibmm/%(version_major_minor)s/'] +sources = ['%(namelower)s-%(version)s.tar.xz'] + +dependencies = [ + ('GLib', '2.52.0'), + ('libsigc++', '2.10.0'), +] + +sanity_check_paths = { + 'files': ['lib/libglibmm-2.5.%s' % SHLIB_EXT], + 'dirs': [], +} +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/l/libsigc++/libsigc++-2.10.0-intel-2017a.eb b/easybuild/easyconfigs/l/libsigc++/libsigc++-2.10.0-intel-2017a.eb new file mode 100644 index 0000000000..bb4e33f915 --- /dev/null +++ b/easybuild/easyconfigs/l/libsigc++/libsigc++-2.10.0-intel-2017a.eb @@ -0,0 +1,20 @@ +easyblock = 'ConfigureMake' + +name = 'libsigc++' +version = '2.10.0' + +homepage = 'http://www.gtk.org/' +description = """The libsigc++ package implements a typesafe callback system for standard C++.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'optarch': True, 'pic': True} + +source_urls = ['http://ftp.gnome.org/pub/gnome/sources/%(name)s/%(version_major_minor)s/'] +sources = ['%(namelower)s-%(version)s.tar.xz'] + +sanity_check_paths = { + 'files': ['lib/libsigc-2.0.%s' % SHLIB_EXT], + 'dirs': [], +} + +moduleclass = 'devel' diff --git a/easybuild/easyconfigs/l/libxml++/libxml++-2.91.3-intel-2017a.eb b/easybuild/easyconfigs/l/libxml++/libxml++-2.91.3-intel-2017a.eb new file mode 100644 index 0000000000..8e9c13f200 --- /dev/null +++ b/easybuild/easyconfigs/l/libxml++/libxml++-2.91.3-intel-2017a.eb @@ -0,0 +1,24 @@ +easyblock = 'ConfigureMake' + +name = 'libxml++' +version = '2.91.3' + +homepage = 'http://libxmlplusplus.sourceforge.net' +description = """ libxml++ is a C++ wrapper for the libxml XML parser library. """ + +toolchain = {'name': 'intel', 'version': '2017a'} + +sources = [SOURCE_TAR_XZ] +source_urls = ['http://www.example.com'] + +dependencies = [ + ('libxml2', '2.9.4'), + ('GLibmm', '2.53.1.1'), +] + +sanity_check_paths = { + 'files': [], + 'dirs': ["."] +} + +moduleclass = 'lib' -- GitLab From f28aafad75d4bb0e567b219ba26fd4d4e4687141 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Sat, 20 May 2017 10:35:16 +0200 Subject: [PATCH 079/608] get list of added/modified files using 'git diff --name-only' in Travis config --- .travis.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2fcb5e365f..accc9427b8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,8 +39,13 @@ install: - if [ ! -z $ENV_MOD_VERSION ]; then source $(which install_eb_dep.sh) modules-${ENV_MOD_VERSION} $HOME; fi - if [ ! -z $LMOD_VERSION ]; then source $(which install_eb_dep.sh) lua-5.1.4.8 $HOME; fi - if [ ! -z $LMOD_VERSION ]; then source $(which install_eb_dep.sh) Lmod-${LMOD_VERSION} $HOME; fi +before_script: + - cd $TRAVIS_BUILD_DIR + # pull in develop so we can diff against it + - git fetch -v origin ${TRAVIS_BRANCH}:${TRAVIS_BRANCH} + # get list of filenames for modified/added files, use '...' to compare with merge base of develop and branch + - git diff --name-only --diff-filter=AM ${TRAVIS_BRANCH}...HEAD script: - - echo $TRAVIS_COMMIT_RANGE - - cd $TRAVIS_BUILD_DIR; git diff --name-only $(echo $TRAVIS_COMMIT_RANGE | sed 's/\.//'); cd - > /dev/null + - cd $HOME - export PYTHONPATH=$TRAVIS_BUILD_DIR - python -O -m test.easyconfigs.suite -- GitLab From d32172cde98fb79987a55f4abca094f33f5caa64 Mon Sep 17 00:00:00 2001 From: Ward Poelmans Date: Sun, 21 May 2017 20:41:43 +0200 Subject: [PATCH 080/608] Update Tkinter easyconfigs --- ...er-2.7.13-foss-2016b-Python-2.7.13-bare.eb | 9 +------- ...kinter-2.7.13-intel-2017a-Python-2.7.13.eb | 21 +++++++++++++++++++ 2 files changed, 22 insertions(+), 8 deletions(-) mode change 100755 => 100644 easybuild/easyconfigs/t/Tkinter/Tkinter-2.7.13-foss-2016b-Python-2.7.13-bare.eb create mode 100644 easybuild/easyconfigs/t/Tkinter/Tkinter-2.7.13-intel-2017a-Python-2.7.13.eb diff --git a/easybuild/easyconfigs/t/Tkinter/Tkinter-2.7.13-foss-2016b-Python-2.7.13-bare.eb b/easybuild/easyconfigs/t/Tkinter/Tkinter-2.7.13-foss-2016b-Python-2.7.13-bare.eb old mode 100755 new mode 100644 index 4f9e88dceb..9870eab580 --- a/easybuild/easyconfigs/t/Tkinter/Tkinter-2.7.13-foss-2016b-Python-2.7.13-bare.eb +++ b/easybuild/easyconfigs/t/Tkinter/Tkinter-2.7.13-foss-2016b-Python-2.7.13-bare.eb @@ -1,11 +1,8 @@ easyblock = 'EB_TkinterPython' -# TODO: -# only build the Tkinter parts we want -# using further easyblock customisation name = 'Tkinter' version = '2.7.13' -versionsuffix = '-Python-%(version)s-bare' +versionsuffix = '-Python-%(pyver)s-bare' homepage = 'http://python.org/' description = """Tkinter module, built with the Python buildsystem""" @@ -16,8 +13,6 @@ toolchainopts = {'pic': True} source_urls = ['http://www.python.org/ftp/python/%(version)s/'] sources = ['Python-%(version)s.tgz'] -postinstallcmds = [ ' mv %(installdir)s/lib/python%(pyshortver)s/lib-tk %(installdir)s/lib/ && mv %(installdir)s/lib/python%(pyshortver)s/lib-dynload/_tkinter.so %(installdir)s/lib/ && rm -rf %(installdir)s/lib/python%(pyshortver)s/* && mv %(installdir)s/lib/lib-tk %(installdir)s/lib/python%(pyshortver)s/ && mkdir %(installdir)s/lib/python%(pyshortver)s/lib-dynload && mv %(installdir)s/lib/_tkinter.so %(installdir)s/lib/python%(pyshortver)s/lib-dynload && rm %(installdir)s/bin/python ' ] - dependencies = [ ('Python', '2.7.13', '-bare'), ('Tcl', '8.6.5'), @@ -25,6 +20,4 @@ dependencies = [ ('xproto', '7.0.28'), ] -modextrapaths = {'PYTHONPATH': ['lib/python%(pyshortver)s/lib-dynload:lib/python%(pyshortver)s/lib-tk']} - moduleclass = 'lang' diff --git a/easybuild/easyconfigs/t/Tkinter/Tkinter-2.7.13-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/t/Tkinter/Tkinter-2.7.13-intel-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..8b9e8501c9 --- /dev/null +++ b/easybuild/easyconfigs/t/Tkinter/Tkinter-2.7.13-intel-2017a-Python-2.7.13.eb @@ -0,0 +1,21 @@ +easyblock = 'EB_TkinterPython' + +name = 'Tkinter' +version = '2.7.13' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://python.org/' +description = """Tkinter module, built with the Python buildsystem""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'pic': True} + +source_urls = ['http://www.python.org/ftp/python/%(version)s/'] +sources = ['Python-%(version)s.tgz'] + +dependencies = [ + ('Python', '2.7.13'), + ('Tk', '8.6.6'), +] + +moduleclass = 'lang' -- GitLab From 7e22d56d6410cfbf87668110ff23823ee58d8f05 Mon Sep 17 00:00:00 2001 From: Ward Poelmans Date: Mon, 22 May 2017 09:36:41 +0200 Subject: [PATCH 081/608] Use new name easyblock tkinter --- .../t/Tkinter/Tkinter-2.7.13-foss-2016b-Python-2.7.13-bare.eb | 2 -- .../t/Tkinter/Tkinter-2.7.13-intel-2017a-Python-2.7.13.eb | 2 -- 2 files changed, 4 deletions(-) diff --git a/easybuild/easyconfigs/t/Tkinter/Tkinter-2.7.13-foss-2016b-Python-2.7.13-bare.eb b/easybuild/easyconfigs/t/Tkinter/Tkinter-2.7.13-foss-2016b-Python-2.7.13-bare.eb index 9870eab580..79e3c82386 100644 --- a/easybuild/easyconfigs/t/Tkinter/Tkinter-2.7.13-foss-2016b-Python-2.7.13-bare.eb +++ b/easybuild/easyconfigs/t/Tkinter/Tkinter-2.7.13-foss-2016b-Python-2.7.13-bare.eb @@ -1,5 +1,3 @@ -easyblock = 'EB_TkinterPython' - name = 'Tkinter' version = '2.7.13' versionsuffix = '-Python-%(pyver)s-bare' diff --git a/easybuild/easyconfigs/t/Tkinter/Tkinter-2.7.13-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/t/Tkinter/Tkinter-2.7.13-intel-2017a-Python-2.7.13.eb index 8b9e8501c9..a9547d3014 100644 --- a/easybuild/easyconfigs/t/Tkinter/Tkinter-2.7.13-intel-2017a-Python-2.7.13.eb +++ b/easybuild/easyconfigs/t/Tkinter/Tkinter-2.7.13-intel-2017a-Python-2.7.13.eb @@ -1,5 +1,3 @@ -easyblock = 'EB_TkinterPython' - name = 'Tkinter' version = '2.7.13' versionsuffix = '-Python-%(pyver)s' -- GitLab From 0aeb00c035456e42dc385cc3ec05efa3d8507684 Mon Sep 17 00:00:00 2001 From: Balazs Hajgato Date: Mon, 22 May 2017 12:03:03 +0200 Subject: [PATCH 082/608] {vis}[intel/2017a] matplotlib 2.0.2 Python 2.7.13 w/ Qt 4.8.7 --- ....0.2-intel-2017a-Python-2.7.13-Qt-4.8.7.eb | 46 +++++++++++++++++++ .../PyQt-4.12-intel-2017a-Python-2.7.13.eb | 37 +++++++++++++++ .../SIP-4.19.2-intel-2017a-Python-2.7.13.eb | 30 ++++++++++++ 3 files changed, 113 insertions(+) create mode 100644 easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-intel-2017a-Python-2.7.13-Qt-4.8.7.eb create mode 100644 easybuild/easyconfigs/p/PyQt/PyQt-4.12-intel-2017a-Python-2.7.13.eb create mode 100644 easybuild/easyconfigs/s/SIP/SIP-4.19.2-intel-2017a-Python-2.7.13.eb diff --git a/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-intel-2017a-Python-2.7.13-Qt-4.8.7.eb b/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-intel-2017a-Python-2.7.13-Qt-4.8.7.eb new file mode 100644 index 0000000000..591cb38e66 --- /dev/null +++ b/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-intel-2017a-Python-2.7.13-Qt-4.8.7.eb @@ -0,0 +1,46 @@ +easyblock = 'Bundle' + +name = 'matplotlib' +version = '2.0.2' +qtver = '4.8.7' +versionsuffix = '-Python-%%(pyver)s-Qt-%s' % qtver + +homepage = 'http://matplotlib.org' +description = """matplotlib is a python 2D plotting library which produces publication quality figures in a variety of + hardcopy formats and interactive environments across platforms. matplotlib can be used in python scripts, the python + and ipython shell, web application servers, and six graphical user interface toolkits.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +# this is a bundle of Python packages +exts_defaultclass = 'PythonPackage' + +dependencies = [ + ('Python', '2.7.13'), + ('Qt', qtver), + ('PyQt', '4.12', '-Python-%(pyver)s'), + ('freetype', '2.7.1', '-libpng-1.6.29'), +] + +exts_list = [ + ('Cycler', '0.10.0', { + 'modulename': 'cycler', + 'source_urls': ['https://pypi.python.org/packages/source/C/Cycler'], + 'source_tmpl': 'cycler-%(version)s.tar.gz', + }), + (name, version, { + 'source_urls': ['https://pypi.python.org/packages/source/m/matplotlib'], + }), +] + +# specify that Bundle easyblock should run a full sanity check, rather than just trying to load the module +full_sanity_check = True + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages'], +} + +modextrapaths = {'PYTHONPATH': ['lib/python%(pyshortver)s/site-packages']} + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/p/PyQt/PyQt-4.12-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/p/PyQt/PyQt-4.12-intel-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..d5c9f991a7 --- /dev/null +++ b/easybuild/easyconfigs/p/PyQt/PyQt-4.12-intel-2017a-Python-2.7.13.eb @@ -0,0 +1,37 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# Author: Bart Verleye +# Center for eResearch, Auckland +easyblock = 'ConfigureMakePythonPackage' + +name = 'PyQt' +version = '4.12' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://www.riverbankcomputing.co.uk/software/pyqt' +description = """PyQt is a set of Python v2 and v3 bindings for Digia's Qt application framework.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['http://sourceforge.net/projects/pyqt/files/PyQt4/PyQt-%(version)s'] +sources = ['PyQt4_gpl_x11-%(version)s.tar.gz'] + +dependencies = [ + ('Python', '2.7.13'), + ('SIP', '4.19.2', versionsuffix), + ('Qt', '4.8.7'), +] + +configopts = "configure-ng.py --confirm-license" +configopts += " --destdir=%(installdir)s/lib/python%(pyshortver)s/site-packages " +configopts += " --sipdir=%(installdir)s/share/sip/PyQt%(version_major)s" + +options = {'modulename': '%(name)s%(version_major)s'} + +modextrapaths = {'PYTHONPATH': 'lib/python%(pyshortver)s/site-packages'} + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages/%(name)s%(version_major)s'], +} + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/s/SIP/SIP-4.19.2-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/s/SIP/SIP-4.19.2-intel-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..c113a20dd9 --- /dev/null +++ b/easybuild/easyconfigs/s/SIP/SIP-4.19.2-intel-2017a-Python-2.7.13.eb @@ -0,0 +1,30 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# Author: Bart Verleye +# Center for eResearch, Auckland +easyblock = 'ConfigureMakePythonPackage' + +name = 'SIP' +version = '4.19.2' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://www.riverbankcomputing.com/software/sip/' +description = """SIP is a tool that makes it very easy to create Python bindings for C and C++ libraries.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = ['http://sourceforge.net/projects/pyqt/files/sip/sip-%(version)s'] + +dependencies = [('Python', '2.7.13')] + +configopts = "configure.py --bindir %(installdir)s/bin --incdir %(installdir)s/include " +configopts += "--destdir %(installdir)s/lib/python%(pyshortver)s/site-packages" + +sanity_check_paths = { + 'files': ['bin/sip', 'include/sip.h'] + + ['lib/python%%(pyshortver)s/site-packages/%s' % x + for x in ['sip.%s' % SHLIB_EXT, 'sipconfig.py', 'sipdistutils.py']], + 'dirs': [], +} + +moduleclass = 'lang' -- GitLab From e96f924206f4f47c0d775f00daab621fbedb8d22 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Tue, 23 May 2017 13:59:20 +1200 Subject: [PATCH 083/608] Removed commented out references to SamTools --- .../easyconfigs/p/Perl/Perl-5.22.0-foss-2015a-mt.eb | 9 --------- .../easyconfigs/p/Perl/Perl-5.22.0-foss-2015a.eb | 11 +---------- 2 files changed, 1 insertion(+), 19 deletions(-) diff --git a/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a-mt.eb b/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a-mt.eb index 43dbd48785..1311c9dfcc 100644 --- a/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a-mt.eb +++ b/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a-mt.eb @@ -16,8 +16,6 @@ dependencies = [ ('libxml2', '2.9.2'), # for XML::LibXML ] -#builddependencies = [('SAMtools', '0.1.20')] # NOT A LATER VERSION. For Bio::DB::Sam to static link to. - source_urls = ['http://www.cpan.org/src/5.0'] sources = [SOURCELOWER_TAR_GZ] #runtest = 'test' @@ -883,13 +881,6 @@ exts_list = [ 'source_tmpl': 'Set-IntervalTree-0.10.tar.gz', 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BE/BENBOOTH/'], }), - -# Trouble finding libbam.a and bam/bam.h - try Alien::Samtools next -# ('Bio::DB::Sam', '1.41', { -# 'source_tmpl': 'Bio-SamTools-1.41.tar.gz', -# 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LD/LDS/'], -# 'patches': ['Perl-Bio-SamTools.patch'], -# }), ('HTML::TableExtract', '2.13', { 'source_tmpl': 'HTML-TableExtract-2.13.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MS/MSISK/'], diff --git a/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a.eb b/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a.eb index dc4e724075..0443d98f0a 100644 --- a/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a.eb +++ b/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a.eb @@ -13,9 +13,7 @@ dependencies = [ ('SQLite', '3.8.9'), # for DBD::SQLite module ('expat', '2.1.0'), # for XML::Parser I think ('libxml2', '2.9.2'), # for XML::LibXML - ] - -#builddependencies = [('SAMtools', '0.1.20')] # NOT A LATER VERSION. For Bio::DB::Sam to static link to. +] source_urls = ['http://www.cpan.org/src/5.0'] sources = [SOURCELOWER_TAR_GZ] @@ -882,13 +880,6 @@ exts_list = [ 'source_tmpl': 'Set-IntervalTree-0.10.tar.gz', 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BE/BENBOOTH/'], }), - -# Trouble finding libbam.a and bam/bam.h - try Alien::Samtools next -# ('Bio::DB::Sam', '1.41', { -# 'source_tmpl': 'Bio-SamTools-1.41.tar.gz', -# 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LD/LDS/'], -# 'patches': ['Perl-Bio-SamTools.patch'], -# }), ('HTML::TableExtract', '2.13', { 'source_tmpl': 'HTML-TableExtract-2.13.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MS/MSISK/'], -- GitLab From abe1231ab912c5880b7c9506b59fd55e0d36d1cd Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 23 May 2017 10:42:23 +0200 Subject: [PATCH 084/608] adding easyconfigs: BUSCO-2.0.1-intel-2017a-Python-2.7.13.eb, AUGUSTUS-3.2.3-intel-2017a-Python-2.7.13.eb, BLAST+-2.6.0-intel-2017a-Python-2.7.13.eb, EMBOSS-6.6.0-intel-2017a.eb, lpsolve-5.5.2.5-intel-2017a.eb, libharu-2.3.0-intel-2017a.eb --- ...UGUSTUS-3.2.3-intel-2017a-Python-2.7.13.eb | 42 +++++++++++++++ .../BLAST+-2.6.0-intel-2017a-Python-2.7.13.eb | 54 +++++++++++++++++++ .../BUSCO-2.0.1-intel-2017a-Python-2.7.13.eb | 31 +++++++++++ .../e/EMBOSS/EMBOSS-6.6.0-intel-2017a.eb | 48 +++++++++++++++++ .../l/libharu/libharu-2.3.0-intel-2017a.eb | 39 ++++++++++++++ .../l/lpsolve/lpsolve-5.5.2.5-intel-2017a.eb | 32 +++++++++++ 6 files changed, 246 insertions(+) create mode 100644 easybuild/easyconfigs/a/AUGUSTUS/AUGUSTUS-3.2.3-intel-2017a-Python-2.7.13.eb create mode 100644 easybuild/easyconfigs/b/BLAST+/BLAST+-2.6.0-intel-2017a-Python-2.7.13.eb create mode 100644 easybuild/easyconfigs/b/BUSCO/BUSCO-2.0.1-intel-2017a-Python-2.7.13.eb create mode 100644 easybuild/easyconfigs/e/EMBOSS/EMBOSS-6.6.0-intel-2017a.eb create mode 100644 easybuild/easyconfigs/l/libharu/libharu-2.3.0-intel-2017a.eb create mode 100644 easybuild/easyconfigs/l/lpsolve/lpsolve-5.5.2.5-intel-2017a.eb diff --git a/easybuild/easyconfigs/a/AUGUSTUS/AUGUSTUS-3.2.3-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/a/AUGUSTUS/AUGUSTUS-3.2.3-intel-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..e754db2e6d --- /dev/null +++ b/easybuild/easyconfigs/a/AUGUSTUS/AUGUSTUS-3.2.3-intel-2017a-Python-2.7.13.eb @@ -0,0 +1,42 @@ +easyblock = 'ConfigureMake' + +name = 'AUGUSTUS' +version = '3.2.3' +versionsuffix = '-Python-2.7.13' + +homepage = 'http://bioinf.uni-greifswald.de/augustus/' +description = "AUGUSTUS is a program that predicts genes in eukaryotic genomic sequences" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['http://bioinf.uni-greifswald.de/augustus/binaries/'] +sources = [SOURCELOWER_TAR_GZ] +patches = ['AUGUSTUS-%(version)s_fix-hardcoding.patch'] + +dependencies = [ + ('zlib', '1.2.11'), + ('Boost', '1.63.0', versionsuffix), + ('SQLite', '3.17.0'), + ('GSL', '2.3'), + ('SuiteSparse', '4.5.5', '-ParMETIS-4.0.3'), + ('lpsolve', '5.5.2.5'), + ('BamTools', '2.4.1'), +] + +skipsteps = ['configure'] + +prebuildopts = "unset LDFLAGS && unset LIBS && " +buildopts = 'COMPGENEPRED=true SQLITE=true ZIPINPUT=true CXX="$CXX" LINK.cc="$CXX"' +installopts = 'INSTALLDIR=%(installdir)s' + +sanity_check_paths = { + 'files': ['bin/aln2wig', 'bin/augustus', 'bin/bam2hints', 'bin/bam2wig', 'bin/espoca', 'bin/etraining', + 'bin/fastBlockSearch', 'bin/filterBam', 'bin/getSeq', 'bin/homGeneMapping', 'bin/joingenes', + 'bin/load2sqlitedb', 'bin/prepareAlign'], + 'dirs': ['config', 'scripts'], +} + +modextrapaths = {'PATH': 'scripts'} +modextravars = {'AUGUSTUS_CONFIG_PATH': '%(installdir)s/config'} + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.6.0-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.6.0-intel-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..c6ba2de331 --- /dev/null +++ b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.6.0-intel-2017a-Python-2.7.13.eb @@ -0,0 +1,54 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# +# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA +# Authors:: Fotis Georgatos , Kenneth Hoste (UGent) +# License:: MIT/GPL +# $Id$ +# +# This work implements a part of the HPCBIOS project and is a component of the policy: +# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html +## + +easyblock = 'ConfigureMake' + +name = 'BLAST+' +version = '2.6.0' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://blast.ncbi.nlm.nih.gov/' +description = """Basic Local Alignment Search Tool, or BLAST, is an algorithm + for comparing primary biological sequence information, such as the amino-acid + sequences of different proteins or the nucleotides of DNA sequences.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'cstd': 'c++14'} + +sources = ['ncbi-blast-%(version)s+-src.tar.gz'] +source_urls = ['http://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/%(version)s/'] +patches = [ + 'BLAST+-2.2.30_ictce-fixes.patch', + 'BLAST+.patch', +] + +dependencies = [ + ('zlib', '1.2.11'), + ('bzip2', '1.0.6'), + ('PCRE', '8.40'), + ('Python', '2.7.13'), + ('Boost', '1.63.0', versionsuffix), + ('GMP', '6.1.2'), + ('libpng', '1.6.29'), + ('libjpeg-turbo', '1.5.1'), +] + +configopts = "--with-64 --with-z=$EBROOTZLIB --with-bz2=$EBROOTBZIP2 --with-pcre=$EBROOTPCRE " +configopts += "--with-python=$EBROOTPYTHON --with-boost=$EBROOTBOOST --with-gmp=$EBROOTGMP --with-png=$EBROOTLIBPNG " +configopts += "--with-jpeg=$EBROOTLIBJPEGMINTURBO " + +sanity_check_paths = { + 'files': ['bin/blastn', 'bin/blastp', 'bin/blastx'], + 'dirs': [] +} + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/b/BUSCO/BUSCO-2.0.1-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/b/BUSCO/BUSCO-2.0.1-intel-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..3c812eb0fb --- /dev/null +++ b/easybuild/easyconfigs/b/BUSCO/BUSCO-2.0.1-intel-2017a-Python-2.7.13.eb @@ -0,0 +1,31 @@ +easyblock = 'Tarball' + +name = 'BUSCO' +version = '2.0.1' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://busco.ezlab.org/' +description = "BUSCO: assessing genome assembly and annotation completeness with single-copy orthologs" + +toolchain = {'name': 'intel', 'version': '2017a'} + +# download via https://gitlab.com/ezlab/busco/repository/archive.tar.gz?ref=2.0.1 +# rename to busco-2.0.1.tar.gz +sources = [SOURCELOWER_TAR_GZ] + +dependencies = [ + ('Python', '2.7.13'), + ('BLAST+', '2.6.0', versionsuffix), + ('HMMER', '3.1b2'), + ('AUGUSTUS', '3.2.3', versionsuffix), + ('EMBOSS', '6.6.0'), +] + +sanity_check_paths = { + 'files': ['BUSCO.py', 'BUSCO_plot.py'], + 'dirs': ['sample_data'], +} + +modextrapaths = {'PATH': '.'} + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/e/EMBOSS/EMBOSS-6.6.0-intel-2017a.eb b/easybuild/easyconfigs/e/EMBOSS/EMBOSS-6.6.0-intel-2017a.eb new file mode 100644 index 0000000000..d6fa49965a --- /dev/null +++ b/easybuild/easyconfigs/e/EMBOSS/EMBOSS-6.6.0-intel-2017a.eb @@ -0,0 +1,48 @@ +# authors: Kenneth Hoste (Ghent University), George Tsouloupas , Fotis Georgatos +# +# This work implements a part of the HPCBIOS project and is a component of the policy: +# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html +# foss-2016b modified by: +# Adam Huffman +# The Francis Crick Institute + +easyblock = 'ConfigureMake' + +name = 'EMBOSS' +version = '6.6.0' + +homepage = 'http://emboss.sourceforge.net/' +description = """EMBOSS is 'The European Molecular Biology Open Software Suite'. + EMBOSS is a free Open Source software analysis package specially developed for + the needs of the molecular biology (e.g. EMBnet) user community.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [ + 'ftp://emboss.open-bio.org/pub/EMBOSS/', + 'ftp://emboss.open-bio.org/pub/EMBOSS/old/%(version_major_minor)s.0', +] + +sources = [SOURCE_TAR_GZ] + +patches = ['EMBOSS_disable-embossupdate.patch'] + +dependencies = [ + ('libharu', '2.3.0'), + ('Java', '1.7.0_80', '', True), +] + +configopts = " --with-hpdf=$EBROOTLIBHARU " + +# jemboss.jar does not build in a parallel build +parallel = 1 + +sanity_check_paths = { + 'files': ['bin/%s' % x for x in ['seqret', 'aligncopy', 'profit', 'prophet']] + + ['lib/lib%s.a' % x for x in ['acd', 'ajax', 'ajaxdb', 'ajaxg', 'eexpat', 'ensembl', + 'epcre', 'eplplot', 'ezlib', 'nucleus']] + + ['share/EMBOSS/jemboss/lib/jemboss.jar'], + 'dirs': [], +} + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/l/libharu/libharu-2.3.0-intel-2017a.eb b/easybuild/easyconfigs/l/libharu/libharu-2.3.0-intel-2017a.eb new file mode 100644 index 0000000000..b87a22de76 --- /dev/null +++ b/easybuild/easyconfigs/l/libharu/libharu-2.3.0-intel-2017a.eb @@ -0,0 +1,39 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# +# Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA +# Authors:: George Tsouloupas , Fotis Georgatos +# License:: MIT/GPL +# $Id$ +# +# This work implements a part of the HPCBIOS project and is a component of the policy: +# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html +## +# Modified for foss-2016b by: +# Adam Huffman +# The Francis Crick Institute + +easyblock = 'CMakeMake' + +name = 'libharu' +version = '2.3.0' + +homepage = 'http://libharu.org/' +description = """libHaru is a free, cross platform, open source library for generating PDF files.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [' https://github.com/libharu/libharu/archive/'] +sources = ['RELEASE_%s.tar.gz' % '_'.join(version.split('.'))] + +dependencies = [('libpng', '1.6.29')] + +builddependencies = [('CMake', '3.8.1')] + +parallel = 1 + +sanity_check_paths = { + 'files': ['lib/libhpdf.%s' % SHLIB_EXT], + 'dirs': ['if', 'include', 'lib'] +} + +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/l/lpsolve/lpsolve-5.5.2.5-intel-2017a.eb b/easybuild/easyconfigs/l/lpsolve/lpsolve-5.5.2.5-intel-2017a.eb new file mode 100644 index 0000000000..3ca32aeeb9 --- /dev/null +++ b/easybuild/easyconfigs/l/lpsolve/lpsolve-5.5.2.5-intel-2017a.eb @@ -0,0 +1,32 @@ +easyblock = 'CmdCp' + +name = 'lpsolve' +version = '5.5.2.5' + +homepage = 'https://sourceforge.net/projects/lpsolve/' +description = "Mixed Integer Linear Programming (MILP) solver" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [SOURCEFORGE_SOURCE] +sources = ['lp_solve_%(version)s_source.tar.gz'] + +lpsolve_ver = '%(version_major)s%(version_minor)s' +start_dir = 'lpsolve%s' % lpsolve_ver + +comp_cmd = 'sed -i "s/^c=.*/c=\'$CC\'/g" ccc && sed -i "s/^opts=.*/opts=\'$CFLAGS\'/g" ccc && ' +comp_cmd += "sh ccc" +cmds_map = [('.*', comp_cmd)] + +lpsolve_libname = 'liblpsolve%s' % lpsolve_ver +files_to_copy = [ + (['bin/ux64/%s.a' % lpsolve_libname, 'bin/ux64/%s.%s' % (lpsolve_libname, SHLIB_EXT)], 'lib'), + (['../lp*.h'], 'include'), +] + +sanity_check_paths = { + 'files': ['lib/%s.a' % lpsolve_libname, 'lib/%s.%s' % (lpsolve_libname, SHLIB_EXT)], + 'dirs': ['include'], +} + +moduleclass = 'math' -- GitLab From 009634088181bae31d3a6d27883b45fe34246b2a Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 23 May 2017 10:43:47 +0200 Subject: [PATCH 085/608] add patch for AUGUSTUS --- .../AUGUSTUS-3.2.3_fix-hardcoding.patch | 57 +++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 easybuild/easyconfigs/a/AUGUSTUS/AUGUSTUS-3.2.3_fix-hardcoding.patch diff --git a/easybuild/easyconfigs/a/AUGUSTUS/AUGUSTUS-3.2.3_fix-hardcoding.patch b/easybuild/easyconfigs/a/AUGUSTUS/AUGUSTUS-3.2.3_fix-hardcoding.patch new file mode 100644 index 0000000000..85bff50668 --- /dev/null +++ b/easybuild/easyconfigs/a/AUGUSTUS/AUGUSTUS-3.2.3_fix-hardcoding.patch @@ -0,0 +1,57 @@ +fix hardcoded compiler names in Makefile + don't try to link binaries in /usr/local/bin +author: Kenneth Hoste (HPC-UGent) +--- augustus-3.2.3/auxprogs/compileSpliceCands/Makefile.orig 2017-05-02 20:40:04.471986962 +0200 ++++ augustus-3.2.3/auxprogs/compileSpliceCands/Makefile 2017-05-02 20:40:30.812468384 +0200 +@@ -1,8 +1,8 @@ + compileSpliceCands : compileSpliceCands.o list.h list.o +- gcc $(LDFLAGS) -o compileSpliceCands compileSpliceCands.o list.o; ++ $(CC) $(LDFLAGS) -o compileSpliceCands compileSpliceCands.o list.o; + # cp compileSpliceCands ../../bin + compileSpliceCands.o : compileSpliceCands.c +- gcc -Wall -pedantic -ansi $(CPPFLAGS) -c compileSpliceCands.c ++ $(CC) -Wall -pedantic -ansi $(CPPFLAGS) -c compileSpliceCands.c + + all : compileSpliceCands + +--- augustus-3.2.3/auxprogs/homGeneMapping/src/Makefile.orig 2017-05-04 10:12:47.633497259 +0200 ++++ augustus-3.2.3/auxprogs/homGeneMapping/src/Makefile 2017-05-04 10:12:56.313614398 +0200 +@@ -7,7 +7,7 @@ + # database access for retrieval of hints + # SQLITE = true + +-CC = g++ ++CC = $(CXX) + + # Notes: - "-Wno-sign-compare" eliminates a high number of warnings (see footnote below). Please adopt + # a strict signed-only usage strategy to avoid mistakes since we are not warned about this. +--- augustus-3.2.3/auxprogs/joingenes/Makefile.orig 2017-05-04 10:46:28.700811811 +0200 ++++ augustus-3.2.3/auxprogs/joingenes/Makefile 2017-05-04 10:46:35.380911653 +0200 +@@ -1,4 +1,4 @@ +-CC=g++ ++CC=$(CXX) + CFLAGS=-Wall -std=gnu++0x + + all: joingenes +--- augustus-3.2.3/Makefile.orig 2017-05-04 09:54:03.568352171 +0200 ++++ augustus-3.2.3/Makefile 2017-05-04 09:54:11.968330382 +0200 +@@ -17,13 +17,13 @@ + install: + install -d $(INSTALLDIR) + cp -a config bin scripts $(INSTALLDIR) +- ln -sf $(INSTALLDIR)/bin/augustus /usr/local/bin/augustus +- ln -sf $(INSTALLDIR)/bin/etraining /usr/local/bin/etraining +- ln -sf $(INSTALLDIR)/bin/prepareAlign /usr/local/bin/prepareAlign +- ln -sf $(INSTALLDIR)/bin/fastBlockSearch /usr/local/bin/fastBlockSearch +- ln -sf $(INSTALLDIR)/bin/load2db /usr/local/bin/load2db +- ln -sf $(INSTALLDIR)/bin/getSeq /usr/local/bin/getSeq +- ln -sf $(INSTALLDIR)/bin/espoca /usr/local/bin/espoca ++ #ln -sf $(INSTALLDIR)/bin/augustus /usr/local/bin/augustus ++ #ln -sf $(INSTALLDIR)/bin/etraining /usr/local/bin/etraining ++ #ln -sf $(INSTALLDIR)/bin/prepareAlign /usr/local/bin/prepareAlign ++ #ln -sf $(INSTALLDIR)/bin/fastBlockSearch /usr/local/bin/fastBlockSearch ++ #ln -sf $(INSTALLDIR)/bin/load2db /usr/local/bin/load2db ++ #ln -sf $(INSTALLDIR)/bin/getSeq /usr/local/bin/getSeq ++ #ln -sf $(INSTALLDIR)/bin/espoca /usr/local/bin/espoca + + # for internal purposes: + release: -- GitLab From 4d22e9d52139428d75e141a502bae918e19608d8 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 23 May 2017 10:46:59 +0200 Subject: [PATCH 086/608] add patch for BLAST+ 2.6.0 (based on patch provided in #4195) --- .../BLAST+-2.6.0-intel-2017a-Python-2.7.13.eb | 2 +- .../b/BLAST+/BLAST+-2.6.0_fix-make-install.patch | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 easybuild/easyconfigs/b/BLAST+/BLAST+-2.6.0_fix-make-install.patch diff --git a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.6.0-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.6.0-intel-2017a-Python-2.7.13.eb index c6ba2de331..37ae5901c6 100644 --- a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.6.0-intel-2017a-Python-2.7.13.eb +++ b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.6.0-intel-2017a-Python-2.7.13.eb @@ -28,7 +28,7 @@ sources = ['ncbi-blast-%(version)s+-src.tar.gz'] source_urls = ['http://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/%(version)s/'] patches = [ 'BLAST+-2.2.30_ictce-fixes.patch', - 'BLAST+.patch', + 'BLAST+-%(version)s_fix-make-install.patch', ] dependencies = [ diff --git a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.6.0_fix-make-install.patch b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.6.0_fix-make-install.patch new file mode 100644 index 0000000000..61dc64608e --- /dev/null +++ b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.6.0_fix-make-install.patch @@ -0,0 +1,14 @@ +fix 'make install-toolkit' by copying header files in 'common' separately +patch created by Kenneth Hoste (HPC-UGent), based on patch by Kurt Lust (UAntwerpen) +--- ncbi-blast-2.6.0+-src/c++/src/build-system/Makefile.in.top.orig 2017-05-22 13:35:40.236430282 +0200 ++++ ncbi-blast-2.6.0+-src/c++/src/build-system/Makefile.in.top 2017-05-22 13:38:37.179080048 +0200 +@@ -51,7 +51,8 @@ + done + cd $(includedir0) && find * -name CVS -prune -o -print |\ + cpio -pd $(pincludedir) +- $(INSTALL) -m 644 $(incdir)/* $(pincludedir) ++ $(INSTALL) -m 644 $(incdir)/*.h $(pincludedir) ++ $(INSTALL) -m 644 $(incdir)/common/*.h $(pincludedir)/common + ## set up appropriate build and status directories somewhere under $(libdir)? + + install-gbench: -- GitLab From 2a15c267ab3ac4492f437d0d76b8233db0a8a31b Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 23 May 2017 15:05:32 +0200 Subject: [PATCH 087/608] adding easyconfigs: Spyder-3.1.4-intel-2017a-Python-2.7.13.eb, PyQt5-5.8.2-intel-2017a-Python-2.7.13.eb, SIP-4.19.2-intel-2017a-Python-2.7.13.eb --- .../PyQt5-5.8.2-intel-2017a-Python-2.7.13.eb | 34 +++++ .../SIP-4.19.2-intel-2017a-Python-2.7.13.eb | 30 +++++ .../Spyder-3.1.4-intel-2017a-Python-2.7.13.eb | 117 ++++++++++++++++++ 3 files changed, 181 insertions(+) create mode 100644 easybuild/easyconfigs/p/PyQt5/PyQt5-5.8.2-intel-2017a-Python-2.7.13.eb create mode 100644 easybuild/easyconfigs/s/SIP/SIP-4.19.2-intel-2017a-Python-2.7.13.eb create mode 100644 easybuild/easyconfigs/s/Spyder/Spyder-3.1.4-intel-2017a-Python-2.7.13.eb diff --git a/easybuild/easyconfigs/p/PyQt5/PyQt5-5.8.2-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/p/PyQt5/PyQt5-5.8.2-intel-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..60a9bfec1e --- /dev/null +++ b/easybuild/easyconfigs/p/PyQt5/PyQt5-5.8.2-intel-2017a-Python-2.7.13.eb @@ -0,0 +1,34 @@ +easyblock = 'ConfigureMakePythonPackage' + +name = 'PyQt5' +version = '5.8.2' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://www.riverbankcomputing.co.uk/software/pyqt' +description = """PyQt5 is a set of Python bindings for v5 of the Qt application framework from The Qt Company.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['http://sourceforge.net/projects/pyqt/files/PyQt5/PyQt-%(version)s'] +sources = ['%(name)s_gpl-%(version)s.tar.gz'] + +dependencies = [ + ('Python', '2.7.13'), + ('SIP', '4.19.2', versionsuffix), + ('Qt5', '5.8.0'), +] + +configopts = "configure.py --confirm-license" +configopts += " --destdir=%(installdir)s/lib/python%(pyshortver)s/site-packages " +configopts += " --no-sip-files" + +options = {'modulename': '%(name)s'} + +modextrapaths = {'PYTHONPATH': 'lib/python%(pyshortver)s/site-packages'} + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages/%(name)s'], +} + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/s/SIP/SIP-4.19.2-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/s/SIP/SIP-4.19.2-intel-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..c113a20dd9 --- /dev/null +++ b/easybuild/easyconfigs/s/SIP/SIP-4.19.2-intel-2017a-Python-2.7.13.eb @@ -0,0 +1,30 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# Author: Bart Verleye +# Center for eResearch, Auckland +easyblock = 'ConfigureMakePythonPackage' + +name = 'SIP' +version = '4.19.2' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://www.riverbankcomputing.com/software/sip/' +description = """SIP is a tool that makes it very easy to create Python bindings for C and C++ libraries.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = ['http://sourceforge.net/projects/pyqt/files/sip/sip-%(version)s'] + +dependencies = [('Python', '2.7.13')] + +configopts = "configure.py --bindir %(installdir)s/bin --incdir %(installdir)s/include " +configopts += "--destdir %(installdir)s/lib/python%(pyshortver)s/site-packages" + +sanity_check_paths = { + 'files': ['bin/sip', 'include/sip.h'] + + ['lib/python%%(pyshortver)s/site-packages/%s' % x + for x in ['sip.%s' % SHLIB_EXT, 'sipconfig.py', 'sipdistutils.py']], + 'dirs': [], +} + +moduleclass = 'lang' diff --git a/easybuild/easyconfigs/s/Spyder/Spyder-3.1.4-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/s/Spyder/Spyder-3.1.4-intel-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..148b4a94d1 --- /dev/null +++ b/easybuild/easyconfigs/s/Spyder/Spyder-3.1.4-intel-2017a-Python-2.7.13.eb @@ -0,0 +1,117 @@ +easyblock = 'Bundle' + +name = 'Spyder' +version = '3.1.4' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'https://github.com/spyder-ide/spyder' +description = """Spyder is an interactive Python development environment providing MATLAB-like features in a simple + and light-weighted software.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +dependencies = [ + ('Python', '2.7.13'), + ('PyQt5', '5.8.2', versionsuffix), + ('PyZMQ', '16.0.2', versionsuffix + '-zmq4'), +] + +exts_defaultclass = 'PythonPackage' +exts_filter = ("python -c 'import %(ext_name)s'", '') + +exts_list = [ + ('qtconsole', '4.3.0', { + 'source_urls': ['https://pypi.python.org/packages/source/q/qtconsole'], + }), + ('rope', '0.10.5', { + 'source_urls': ['https://pypi.python.org/packages/source/r/rope'], + }), + ('jedi', '0.10.2', { + 'source_urls': ['https://pypi.python.org/packages/source/j/jedi'], + }), + ('pyflakes', '1.5.0', { + 'source_urls': ['https://pypi.python.org/packages/source/p/pyflakes'], + }), + ('Sphinx', '1.6.1', { + 'source_urls': ['https://pypi.python.org/packages/source/s/Sphinx'], + }), + ('Pygments', '2.2.0', { + 'source_urls': ['https://pypi.python.org/packages/source/P/Pygments'], + }), + ('pylint', '1.7.1', { + 'source_urls': ['https://pypi.python.org/packages/source/p/pylint'], + }), + ('pep8', '1.7.0', { + 'source_urls': ['https://pypi.python.org/packages/source/p/pep8'], + }), + ('psutil', '5.2.2', { + 'source_urls': ['https://pypi.python.org/packages/source/p/psutil'], + }), + ('ipython_genutils', '0.2.0', { + 'source_urls': ['https://pypi.python.org/packages/source/i/ipython_genutils/'], + }), + ('traitlets', '4.3.2', { + 'source_urls': ['https://pypi.python.org/packages/source/t/traitlets/'], + }), + ('jsonschema', '2.6.0', { + 'source_urls': ['https://pypi.python.org/packages/source/j/jsonschema/'], + }), + ('nbformat', '4.3.0', { + 'source_urls': ['https://pypi.python.org/packages/source/n/nbformat/'], + }), + ('configparser', '3.5.0', { + 'source_urls': ['https://pypi.python.org/packages/source/c/configparser/'], + 'patches': ['configparser-3.5.0_no-backports-namespace.patch'], + 'use_pip': True, + }), + ('entrypoints', '0.2.2', { + 'source_urls': ['https://pypi.python.org/packages/source/e/entrypoints/'], + 'source_tmpl': 'entrypoints-%(version)s-py2.py3-none-any.whl', + 'unpack_sources': False, + 'use_pip': True, + }), + ('pandocfilters', '1.4.1', { + 'source_urls': ['https://pypi.python.org/packages/source/p/pandocfilters/'], + }), + ('testpath', '0.3', { + 'source_urls': ['https://pypi.python.org/packages/py2.py3/t/testpath/'], + 'source_tmpl': 'testpath-%(version)s-py2.py3-none-any.whl', + 'unpack_sources': False, + 'use_pip': True, + }), + ('nbconvert', '5.1.1', { + 'source_urls': ['https://pypi.python.org/packages/source/n/nbconvert'], + 'use_pip': True, + }), + ('QtAwesome', '0.4.4', { + 'source_urls': ['https://pypi.python.org/packages/source/Q/QtAwesome'], + 'prebuildopts': "rm -r qtawesome/tests/__pycache__ && ", + }), + ('pickleshare', '0.7.4', { + 'source_urls': ['https://pypi.python.org/packages/source/p/pickleshare'], + }), + ('QtPy', '1.2.1', { + 'source_urls': ['https://pypi.python.org/packages/source/Q/QtPy'], + }), + ('chardet', '3.0.3', { + 'source_urls': ['https://pypi.python.org/packages/source/c/chardet'], + }), + ('numpydoc', '0.6.0', { + 'source_urls': ['https://pypi.python.org/packages/source/n/numpydoc'], + }), + (name.lower(), version, { + 'source_urls': ['https://pypi.python.org/packages/source/s/spyder'], + }), +] + +# specify that Bundle easyblock should run a full sanity check, rather than just trying to load the module +full_sanity_check = True + +sanity_check_paths = { + 'files': ['bin/spyder'], + 'dirs': ['lib/python%(pyshortver)s/site-packages'], +} + +modextrapaths = {'PYTHONPATH': ['lib/python%(pyshortver)s/site-packages']} + +moduleclass = 'tools' -- GitLab From ae42b680550622152b1ae579352285c80394ebbe Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 23 May 2017 15:20:20 +0200 Subject: [PATCH 088/608] add tuneR, seewave, soundecology extensions for R 3.4.0 (+ libsndfile as dep) --- .../libsndfile-1.0.28-intel-2017a.eb | 20 +++++++++++++++++++ .../r/R/R-3.4.0-intel-2017a-X11-20170314.eb | 14 ++++++++++++- 2 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 easybuild/easyconfigs/l/libsndfile/libsndfile-1.0.28-intel-2017a.eb diff --git a/easybuild/easyconfigs/l/libsndfile/libsndfile-1.0.28-intel-2017a.eb b/easybuild/easyconfigs/l/libsndfile/libsndfile-1.0.28-intel-2017a.eb new file mode 100644 index 0000000000..0912c1995f --- /dev/null +++ b/easybuild/easyconfigs/l/libsndfile/libsndfile-1.0.28-intel-2017a.eb @@ -0,0 +1,20 @@ +easyblock = 'ConfigureMake' + +name = 'libsndfile' +version = '1.0.28' + +homepage = 'http://www.mega-nerd.com/libsndfile' +description = """Libsndfile is a C library for reading and writing files containing sampled sound + (such as MS Windows WAV and the Apple/SGI AIFF format) through one standard library interface.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['http://www.mega-nerd.com/libsndfile/files/'] +sources = [SOURCE_TAR_GZ] + +sanity_check_paths = { + 'files': ['include/sndfile.h', 'include/sndfile.hh', 'lib/libsndfile.a', 'lib/libsndfile.%s' % SHLIB_EXT], + 'dirs': ['bin'], +} + +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb b/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb index 949ed58bbb..94a8307cc4 100644 --- a/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb +++ b/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb @@ -44,6 +44,8 @@ dependencies = [ ('PROJ', '4.9.3'), # for rgdal ('GMP', '6.1.2'), # for igraph ('NLopt', '2.4.2'), # for nloptr + ('FFTW', '3.3.6'), # for fftw + ('libsndfile', '1.0.28'), # for seewave # OS dependency should be preferred if the os version is more recent then this version, # it's nice to have an up to date openssl for security reasons # ('OpenSSL', '1.0.2h'), @@ -508,7 +510,17 @@ exts_list = [ ('purrr', '0.2.2', ext_options), ('downloader', '0.4', ext_options), ('imager', '0.40.2', dict(ext_options.items() + [('patches', ['imager-0.40.2_icpc-wd308.patch'])])), + ('pracma', '2.0.4', ext_options), + ('signal', '0.7-6', ext_options), + ('tuneR', '1.3.2', ext_options), + ('pastecs', '1.3-18', ext_options), + ('audio', '0.1-5', ext_options), + ('fftw', '1.0-4', ext_options), + ('seewave', '2.0.5', ext_options), + ('gsw', '1.0-3', ext_options), + ('oce', '0.9-21', ext_options), + ('ineq', '0.2-13', ext_options), + ('soundecology', '1.3.2', ext_options), ] moduleclass = 'lang' - -- GitLab From e69694e926d3426f654dcfd7f67cd72b63430d22 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 23 May 2017 15:22:50 +0200 Subject: [PATCH 089/608] add missing patch for configparser --- ...gparser-3.5.0_no-backports-namespace.patch | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 easybuild/easyconfigs/s/Spyder/configparser-3.5.0_no-backports-namespace.patch diff --git a/easybuild/easyconfigs/s/Spyder/configparser-3.5.0_no-backports-namespace.patch b/easybuild/easyconfigs/s/Spyder/configparser-3.5.0_no-backports-namespace.patch new file mode 100644 index 0000000000..6deccec5e6 --- /dev/null +++ b/easybuild/easyconfigs/s/Spyder/configparser-3.5.0_no-backports-namespace.patch @@ -0,0 +1,31 @@ +don't let configparser define 'backports' namespace, since that interferes with other packaging that provide stuff in 'backports' + +patch obtained from https://github.com/NIXOS/nixpkgs/blob/master/pkgs/development/python-modules/configparser/0001-namespace-fix.patch +see also https://bitbucket.org/ambv/configparser/issues/17/importerror-when-used-with-other-backports +diff --git a/setup.py b/setup.py +index 3b07823..63ed25d 100644 +--- a/setup.py ++++ b/setup.py +@@ -42,7 +42,6 @@ setup( + py_modules=modules, + package_dir={'': 'src'}, + packages=find_packages('src'), +- namespace_packages=['backports'], + include_package_data=True, + zip_safe=False, + install_requires=requirements, +diff --git a/src/backports/__init__.py b/src/backports/__init__.py +index f84d25c..febdb2f 100644 +--- a/src/backports/__init__.py ++++ b/src/backports/__init__.py +@@ -3,9 +3,3 @@ + + from pkgutil import extend_path + __path__ = extend_path(__path__, __name__) +- +-try: +- import pkg_resources +- pkg_resources.declare_namespace(__name__) +-except ImportError: +- pass +-- -- GitLab From 3de6edbdf821c34fe4397a9ec4ffa16d0bc1e3c5 Mon Sep 17 00:00:00 2001 From: Ward Poelmans Date: Tue, 23 May 2017 16:04:22 +0200 Subject: [PATCH 090/608] Drop testing easyconfigs --- .../p/Python/Python-2.7.13-foss-2016b-bare.eb | 147 ------------------ ...er-2.7.13-foss-2016b-Python-2.7.13-bare.eb | 21 --- 2 files changed, 168 deletions(-) delete mode 100644 easybuild/easyconfigs/p/Python/Python-2.7.13-foss-2016b-bare.eb delete mode 100644 easybuild/easyconfigs/t/Tkinter/Tkinter-2.7.13-foss-2016b-Python-2.7.13-bare.eb diff --git a/easybuild/easyconfigs/p/Python/Python-2.7.13-foss-2016b-bare.eb b/easybuild/easyconfigs/p/Python/Python-2.7.13-foss-2016b-bare.eb deleted file mode 100644 index 4c330ffc74..0000000000 --- a/easybuild/easyconfigs/p/Python/Python-2.7.13-foss-2016b-bare.eb +++ /dev/null @@ -1,147 +0,0 @@ -name = 'Python' -version = '2.7.13' -versionsuffix = '-bare' - -homepage = 'http://python.org/' -description = """Python is a programming language that lets you work more quickly and integrate your systems - more effectively. - - This is a version without Tk or X11.""" - -toolchain = {'name': 'foss', 'version': '2016b'} -toolchainopts = {'pic': True} - -source_urls = ['http://www.python.org/ftp/%(namelower)s/%(version)s/'] -sources = [SOURCE_TGZ] - -# python needs bzip2 to build the bz2 package -dependencies = [ - ('bzip2', '1.0.6'), - ('zlib', '1.2.8'), - ('libreadline', '6.3'), - ('ncurses', '6.0'), - ('SQLite', '3.13.0'), - ('GMP', '6.1.2'), - ('libffi', '3.2.1'), - # OS dependency should be preferred if the os version is more recent then this version, - # it's nice to have an up to date openssl for security reasons - # ('OpenSSL', '1.0.2h'), -] - -osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')] - -# order is important! -# package versions updated 9th February 2017 -# using easy_update -# the commented out extensions were added by easy_update but broke the build -exts_list = [ - ('six', '1.10.0', { - 'source_urls': ['https://pypi.python.org/packages/source/s/six/'], - }), - #('packaging', '16.8', { - # 'source_urls': ['https://pypi.python.org/packages/source/p/packaging/'], - #}), - #('pyparsing', '2.1.10', { - # 'source_urls': ['https://pypi.python.org/packages/source/p/pyparsing/'], - #}), - #('appdirs', '1.4.0', { - # 'source_urls': ['https://pypi.python.org/packages/source/a/appdirs/'], - #}), - ('setuptools', '32.3.1', { - 'source_tmpl': '%(name)s-%(version)s.zip', - 'source_urls': ['https://pypi.python.org/packages/source/s/setuptools/'], - }), - ('pip', '9.0.1', { - 'source_urls': ['https://pypi.python.org/packages/source/p/pip/'], - }), - ('nose', '1.3.7', { - 'source_urls': ['https://pypi.python.org/packages/source/n/nose/'], - }), - ('numpy', '1.12.0', { - 'source_tmpl': '%(name)s-%(version)s.zip', - 'source_urls': ['https://pypi.python.org/packages/source/n/numpy'], - }), - ('scipy', '0.18.1', { - 'source_urls': ['https://pypi.python.org/packages/source/s/scipy'], - }), - ('blist', '1.3.6', { - 'source_urls': ['https://pypi.python.org/packages/source/b/blist/'], - }), - ('mpi4py', '2.0.0', { - 'source_urls': ['http://bitbucket.org/mpi4py/mpi4py/downloads/'], - }), - ('paycheck', '1.0.2', { - 'source_urls': ['https://pypi.python.org/packages/source/p/paycheck/'], - }), - ('pbr', '1.10.0', { - 'source_urls': ['https://pypi.python.org/packages/source/p/pbr/'], - }), - ('lockfile', '0.12.2', { - 'source_urls': ['https://pypi.python.org/packages/source/l/lockfile/'], - }), - ('Cython', '0.25.2', { - 'source_urls': ['https://pypi.python.org/packages/source/c/cython/'], - }), - ('dateutil', '2.5.3', { - 'source_tmpl': 'python-%(name)s-%(version)s.tar.gz', - 'source_urls': ['https://pypi.python.org/packages/source/p/python-dateutil/'], - }), - ('deap', '1.0.2', { - 'source_tmpl': '%(name)s-%(version)s.post2.tar.gz', - 'source_urls': ['https://pypi.python.org/packages/source/d/deap/'], - }), - ('decorator', '4.0.11', { - 'source_urls': ['https://pypi.python.org/packages/source/d/decorator/'], - }), - ('arff', '2.1.0', { - 'source_tmpl': 'liac-%(name)s-%(version)s.zip', - 'source_urls': ['https://pypi.python.org/packages/source/l/liac-arff/'], - }), - ('pycrypto', '2.6.1', { - 'modulename': 'Crypto', - 'source_urls': ['http://ftp.dlitz.net/pub/dlitz/crypto/pycrypto/'], - }), - ('ecdsa', '0.13', { - 'source_urls': ['https://pypi.python.org/packages/source/e/ecdsa/'], - }), - ('cryptography', '1.7.2', { - 'source_urls': ['https://pypi.python.org/packages/source/c/cryptography/'], - }), - ('pyasn1', '0.2.2', { - 'source_urls': ['https://pypi.python.org/packages/source/p/pyasn1/'], - }), - ('paramiko', '2.1.1', { - 'source_urls': ['https://pypi.python.org/packages/source/p/paramiko/'], - }), - ('netifaces', '0.10.5', { - 'source_urls': ['https://pypi.python.org/packages/source/n/netifaces'], - }), - ('netaddr', '0.7.19', { - 'source_urls': ['https://pypi.python.org/packages/source/n/netaddr'], - }), - ('funcsigs', '1.0.2', { - 'source_urls': ['https://pypi.python.org/packages/source/f/funcsigs'], - }), - ('mock', '2.0.0', { - 'source_urls': ['https://pypi.python.org/packages/source/m/mock'], - }), - ('pytz', '2016.10', { - 'source_urls': ['https://pypi.python.org/packages/source/p/pytz'], - }), - ('pandas', '0.19.2', { - 'source_urls': ['https://pypi.python.org/packages/source/p/pandas'], - }), - ('enum34', '1.1.6', { - 'modulename': 'enum', - 'source_urls': ['https://pypi.python.org/packages/source/e/enum34'], - }), - ('bitstring', '3.1.5', { - 'source_tmpl': '%(name)s-%(version)s.zip', - 'source_urls': ['https://pypi.python.org/packages/source/b/bitstring'], - }), - ('virtualenv', '15.1.0', { - 'source_urls': ['https://pypi.python.org/packages/source/v/virtualenv'], - }), -] - -moduleclass = 'lang' diff --git a/easybuild/easyconfigs/t/Tkinter/Tkinter-2.7.13-foss-2016b-Python-2.7.13-bare.eb b/easybuild/easyconfigs/t/Tkinter/Tkinter-2.7.13-foss-2016b-Python-2.7.13-bare.eb deleted file mode 100644 index 79e3c82386..0000000000 --- a/easybuild/easyconfigs/t/Tkinter/Tkinter-2.7.13-foss-2016b-Python-2.7.13-bare.eb +++ /dev/null @@ -1,21 +0,0 @@ -name = 'Tkinter' -version = '2.7.13' -versionsuffix = '-Python-%(pyver)s-bare' - -homepage = 'http://python.org/' -description = """Tkinter module, built with the Python buildsystem""" - -toolchain = {'name': 'foss', 'version': '2016b'} -toolchainopts = {'pic': True} - -source_urls = ['http://www.python.org/ftp/python/%(version)s/'] -sources = ['Python-%(version)s.tgz'] - -dependencies = [ - ('Python', '2.7.13', '-bare'), - ('Tcl', '8.6.5'), - ('Tk', '8.6.5', '-libX11-1.6.3'), - ('xproto', '7.0.28'), -] - -moduleclass = 'lang' -- GitLab From 3a1774cff1fcb0b5d67c56e5f856c9676431b142 Mon Sep 17 00:00:00 2001 From: Ward Poelmans Date: Tue, 23 May 2017 17:45:12 +0200 Subject: [PATCH 091/608] Add VTK/7.1.1 --- .../VTK-7.1.1-intel-2017a-Python-2.7.13.eb | 59 +++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 easybuild/easyconfigs/v/VTK/VTK-7.1.1-intel-2017a-Python-2.7.13.eb diff --git a/easybuild/easyconfigs/v/VTK/VTK-7.1.1-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/v/VTK/VTK-7.1.1-intel-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..79963c3515 --- /dev/null +++ b/easybuild/easyconfigs/v/VTK/VTK-7.1.1-intel-2017a-Python-2.7.13.eb @@ -0,0 +1,59 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# +# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA +# Authors:: Fotis Georgatos +# License:: MIT/GPL +# $Id$ +# +# This work implements a part of the HPCBIOS project and is a component of the policy: +# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-97.html +## + +easyblock = 'CMakeMake' + +name = 'VTK' +version = '7.1.1' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://www.vtk.org' +description = """The Visualization Toolkit (VTK) is an open-source, freely available software system for + 3D computer graphics, image processing and visualization. VTK consists of a C++ class library and several + interpreted interface layers including Tcl/Tk, Java, and Python. VTK supports a wide variety of visualization + algorithms including: scalar, vector, tensor, texture, and volumetric methods; and advanced modeling techniques + such as: implicit modeling, polygon reduction, mesh smoothing, cutting, contouring, and Delaunay triangulation.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['http://www.vtk.org/files/release/%(version_major_minor)s'] +sources = [ + SOURCE_TAR_GZ, + '%(name)sData-%(version)s.tar.gz', +] + +builddependencies = [('CMake', '3.8.0')] + +dependencies = [ + ('Python', '2.7.13'), + ('libGLU', '9.0.0'), + ('X11', '20170314'), +] + +configopts = "-DOPENGL_glu_LIBRARY=$EBROOTLIBGLU/lib/libGLU.%s " % SHLIB_EXT +configopts += "-DOPENGL_gl_LIBRARY=$EBROOTMESA/lib/libGL.%s " % SHLIB_EXT +configopts += "-DOPENGL_INCLUDE_DIR=$EBROOTMESA/include -DVTK_WRAP_PYTHON=ON " +configopts += "-DPYTHON_LIBRARY=$EBROOTPYTHON/lib/libpython%%(pyshortver)s.%s " % SHLIB_EXT +configopts += " -DPYTHON_INCLUDE_DIR=$EBROOTPYTHON/include/python%(pyshortver)s " +preinstallopts = "mkdir -p %(installdir)s/lib/python%(pyshortver)s/site-packages/ && " +preinstallopts += "export PYTHONPATH=%(installdir)s/lib/python%(pyshortver)s/site-packages:$PYTHONPATH && " + +modextrapaths = {'PYTHONPATH': ['lib/python%(pyshortver)s/site-packages']} + +sanity_check_paths = { + 'files': ['bin/vtk%s-%%(version_major_minor)s' % x for x in ['EncodeString', 'HashSource']], + 'dirs': ['lib/python%(pyshortver)s/site-packages/', 'include/vtk-%(version_major_minor)s'], +} + +sanity_check_commands = [('python', "-c 'import %(namelower)s'")] + +moduleclass = 'vis' -- GitLab From e49f01daadc3275835be0ddfafb68785c1a744dc Mon Sep 17 00:00:00 2001 From: Ward Poelmans Date: Tue, 23 May 2017 17:49:59 +0200 Subject: [PATCH 092/608] Fix FSL to actually build --- .../f/FSL/FSL-5.0.10-intel-2017a.eb | 6 +- .../f/FSL/FSL-5.0.10_build_extras.patch | 2 +- .../f/FSL/FSL-5.0.10_makefile_fixes.patch | 758 +++++------------- .../g/GLibmm/GLibmm-2.53.1.1-intel-2017a.eb | 24 - .../libsigc++/libsigc++-2.10.0-intel-2017a.eb | 20 - .../l/libxml++/libxml++-2.91.3-intel-2017a.eb | 24 - 6 files changed, 213 insertions(+), 621 deletions(-) delete mode 100644 easybuild/easyconfigs/g/GLibmm/GLibmm-2.53.1.1-intel-2017a.eb delete mode 100644 easybuild/easyconfigs/l/libsigc++/libsigc++-2.10.0-intel-2017a.eb delete mode 100644 easybuild/easyconfigs/l/libxml++/libxml++-2.91.3-intel-2017a.eb diff --git a/easybuild/easyconfigs/f/FSL/FSL-5.0.10-intel-2017a.eb b/easybuild/easyconfigs/f/FSL/FSL-5.0.10-intel-2017a.eb index b6760b7e06..5ba9750bf3 100644 --- a/easybuild/easyconfigs/f/FSL/FSL-5.0.10-intel-2017a.eb +++ b/easybuild/easyconfigs/f/FSL/FSL-5.0.10-intel-2017a.eb @@ -19,15 +19,15 @@ patches = [ dependencies = [ ('Boost', '1.63.0', '-Python-2.7.13'), ('libgd', '2.2.4'), - ('libxml++', '2.91.3'), - ('SQLite', '3.13.0'), + ('libxml2', '2.9.4'), + ('SQLite', '3.17.0'), ('libpng', '1.6.29'), ('Tk', '8.6.6'), - ('GLibmm', '2.53.1.1'), ('NLopt', '2.4.2'), ('freeglut', '3.0.0'), ('expat', '2.2.0'), ('zlib', '1.2.11'), + ('VTK', '7.1.1', '-Python-2.7.13'), ] moduleclass = 'bio' diff --git a/easybuild/easyconfigs/f/FSL/FSL-5.0.10_build_extras.patch b/easybuild/easyconfigs/f/FSL/FSL-5.0.10_build_extras.patch index ac663c9852..d545a66031 100644 --- a/easybuild/easyconfigs/f/FSL/FSL-5.0.10_build_extras.patch +++ b/easybuild/easyconfigs/f/FSL/FSL-5.0.10_build_extras.patch @@ -7,7 +7,7 @@ diff -ur fsl/extras/build fsl.new/extras/build PROJECTS="${PROJECTS} libgd libgdc libprob libcprob newmat cprob newran fftw" PROJECTS="${PROJECTS} boost libxml2-2.9.2 libxml++-2.34.0 libsqlite libnlopt ../include/armawrap/dummy_newmat" +# For EasyBuild: -+PROJECTS="libprob libcprob newmat cprob newran" ++PROJECTS="libprob libcprob newmat cprob newran libxml++-2.34.0 libgdc" for projname in $PROJECTS; do if [ -d $FSLESRCDIR/$projname ] ; then buildIt $FSLESRCDIR $projname 1 diff --git a/easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch b/easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch index 8808344d6f..ca470e4c17 100644 --- a/easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch +++ b/easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch @@ -1,605 +1,265 @@ -patch out hardcoded compiler names and options -author: kenneth hoste (hpc-ugent) -diff -ur fsl.orig/config/apple-darwin10-gcc4.2/systemvars.mk fsl/config/apple-darwin10-gcc4.2/systemvars.mk ---- fsl.orig/config/apple-darwin10-gcc4.2/systemvars.mk 2009-11-03 18:02:14.000000000 +0100 -+++ fsl/config/apple-darwin10-gcc4.2/systemvars.mk 2017-05-18 13:54:40.446975876 +0200 -@@ -3,8 +3,8 @@ - - # Compiler dependent variables - --CC = cc --CXX = c++ -+CC := ${CC} -+CXX := ${CXX} - CSTATICFLAGS = - CXXSTATICFLAGS = - -@@ -15,7 +15,7 @@ - - DEPENDFLAGS = -MM - --OPTFLAGS = -O3 -fexpensive-optimizations -+OPTFLAGS := ${CFLAGS} -wd803 - MACHDBGFLAGS = -g - GNU_ANSI_FLAGS = -Wall -Wno-long-long -ansi -pedantic - SGI_ANSI_FLAGS = -ansi -fullwarn -Only in fsl/config/apple-darwin10-gcc4.2: systemvars.mk.orig -diff -ur fsl.orig/config/apple-darwin11-gcc4.2/systemvars.mk fsl/config/apple-darwin11-gcc4.2/systemvars.mk ---- fsl.orig/config/apple-darwin11-gcc4.2/systemvars.mk 2012-03-21 12:30:53.000000000 +0100 -+++ fsl/config/apple-darwin11-gcc4.2/systemvars.mk 2017-05-18 13:54:40.446975876 +0200 -@@ -15,7 +15,7 @@ - - DEPENDFLAGS = -MM - --OPTFLAGS = -O3 -+OPTFLAGS := -O3 -wd803 - MACHDBGFLAGS = -g - GNU_ANSI_FLAGS = -Wall -Wno-long-long -ansi -pedantic - ANSI_FLAGS = ${GNU_ANSI_FLAGS} -Only in fsl/config/apple-darwin11-gcc4.2: systemvars.mk.orig -diff -ur fsl.orig/config/apple-darwin12-gcc4.2/systemvars.mk fsl/config/apple-darwin12-gcc4.2/systemvars.mk ---- fsl.orig/config/apple-darwin12-gcc4.2/systemvars.mk 2013-04-09 18:00:32.000000000 +0200 -+++ fsl/config/apple-darwin12-gcc4.2/systemvars.mk 2017-05-18 13:54:40.446975876 +0200 -@@ -15,7 +15,7 @@ - - DEPENDFLAGS = -MM - --OPTFLAGS = -O3 -+OPTFLAGS := -O3 -wd803 - MACHDBGFLAGS = -g - GNU_ANSI_FLAGS = -Wall -Wno-long-long -ansi -pedantic - ANSI_FLAGS = ${GNU_ANSI_FLAGS} -Only in fsl/config/apple-darwin12-gcc4.2: systemvars.mk.orig -diff -ur fsl.orig/config/apple-darwin7-gcc3.1/systemvars.mk fsl/config/apple-darwin7-gcc3.1/systemvars.mk ---- fsl.orig/config/apple-darwin7-gcc3.1/systemvars.mk 2007-07-13 13:00:20.000000000 +0200 -+++ fsl/config/apple-darwin7-gcc3.1/systemvars.mk 2017-05-18 13:54:40.446975876 +0200 -@@ -7,8 +7,8 @@ - - # Compiler dependent variables - --CC = cc --CXX = c++ -+CC := ${CC} -+CXX := ${CXX} - CSTATICFLAGS = - CXXSTATICFLAGS = - -@@ -17,7 +17,7 @@ - - DEPENDFLAGS = -MM - --OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} -+OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 - MACHDBGFLAGS = -g - GNU_ANSI_FLAGS = -traditional-cpp -Wall -Wno-long-long -Wno-long-double -ansi -pedantic - SGI_ANSI_FLAGS = -ansi -fullwarn -Only in fsl/config/apple-darwin7-gcc3.1: systemvars.mk.orig -diff -ur fsl.orig/config/apple-darwin7-gcc3.3/systemvars.mk fsl/config/apple-darwin7-gcc3.3/systemvars.mk ---- fsl.orig/config/apple-darwin7-gcc3.3/systemvars.mk 2007-07-13 13:00:20.000000000 +0200 -+++ fsl/config/apple-darwin7-gcc3.3/systemvars.mk 2017-05-18 13:54:40.446975876 +0200 -@@ -7,8 +7,8 @@ - - # Compiler dependent variables - --CC = cc --CXX = c++ -+CC := ${CC} -+CXX := ${CXX} - CSTATICFLAGS = - CXXSTATICFLAGS = - -@@ -17,7 +17,7 @@ - - DEPENDFLAGS = -MM - --OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} -+OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 - MACHDBGFLAGS = -g - GNU_ANSI_FLAGS = -Wall -Wno-long-long -Wno-long-double -ansi -pedantic - SGI_ANSI_FLAGS = -ansi -fullwarn -Only in fsl/config/apple-darwin7-gcc3.3: systemvars.mk.orig -diff -ur fsl.orig/config/apple-darwin8-gcc4.0/systemvars.mk fsl/config/apple-darwin8-gcc4.0/systemvars.mk ---- fsl.orig/config/apple-darwin8-gcc4.0/systemvars.mk 2007-12-19 15:40:57.000000000 +0100 -+++ fsl/config/apple-darwin8-gcc4.0/systemvars.mk 2017-05-18 13:54:40.446975876 +0200 -@@ -3,8 +3,8 @@ - - # Compiler dependent variables - --CC = cc --CXX = c++ -+CC := ${CC} -+CXX := ${CXX} - CSTATICFLAGS = - CXXSTATICFLAGS = - -@@ -17,7 +17,7 @@ - - DEPENDFLAGS = -MM - --OPTFLAGS = -O3 -fexpensive-optimizations -+OPTFLAGS := ${CFLAGS} -wd803 - MACHDBGFLAGS = -g - GNU_ANSI_FLAGS = -Wall -Wno-long-long -Wno-long-double -ansi -pedantic - SGI_ANSI_FLAGS = -ansi -fullwarn -Only in fsl/config/apple-darwin8-gcc4.0: systemvars.mk.orig -diff -ur fsl.orig/config/apple-darwin9-gcc4.0/systemvars.mk fsl/config/apple-darwin9-gcc4.0/systemvars.mk ---- fsl.orig/config/apple-darwin9-gcc4.0/systemvars.mk 2007-12-19 15:33:53.000000000 +0100 -+++ fsl/config/apple-darwin9-gcc4.0/systemvars.mk 2017-05-18 13:54:40.446975876 +0200 -@@ -3,8 +3,8 @@ - - # Compiler dependent variables - --CC = cc --CXX = c++ -+CC := ${CC} -+CXX := ${CXX} - CSTATICFLAGS = - CXXSTATICFLAGS = - -@@ -17,7 +17,7 @@ - - DEPENDFLAGS = -MM - --OPTFLAGS = -O3 -fexpensive-optimizations -+OPTFLAGS := ${CFLAGS} -wd803 - MACHDBGFLAGS = -g - GNU_ANSI_FLAGS = -Wall -Wno-long-long -Wno-long-double -ansi -pedantic - SGI_ANSI_FLAGS = -ansi -fullwarn -Only in fsl/config/apple-darwin9-gcc4.0: systemvars.mk.orig +# This fixes the build system of FSL. It now (mostly) uses EB. +# Ward Poelmans +diff -ur fsl.orig/config/common/vars.mk fsl/config/common/vars.mk +--- fsl.orig/config/common/vars.mk 2016-05-24 17:44:11.000000000 +0200 ++++ fsl/config/common/vars.mk 2017-05-23 10:19:55.325628385 +0200 +@@ -24,14 +24,14 @@ + USRCFLAGS = + USRCXXFLAGS = + +-LDFLAGS = ${ARCHLDFLAGS} ${USRLDFLAGS} -L. -L${DEVLIBDIR} -L${LIBDIR} ++LDFLAGS = ${EBVARLDFLAGS} ${ARCHLDFLAGS} ${USRLDFLAGS} -L. -L${DEVLIBDIR} -L${LIBDIR} + +-AccumulatedIncFlags = -I${INC_BOOST} ${USRINCFLAGS} -I. -I${DEVINCDIR} -I${INCDIR} ++AccumulatedIncFlags = ${EBVARCPPFLAGS} -I${INC_BOOST} ${USRINCFLAGS} -I. -I${DEVINCDIR} -I${INCDIR} + +-CFLAGS = ${ANSI_FLAGS} ${ANSI_CFLAGS} ${DBGFLAGS} ${USEDCSTATICFLAGS} ${USRCFLAGS} ${ARCHFLAGS} ${OPTFLAGS} \ ++CFLAGS = ${EBVARCFLAGS} ${ANSI_FLAGS} ${ANSI_CFLAGS} ${DBGFLAGS} ${USEDCSTATICFLAGS} ${USRCFLAGS} ${ARCHFLAGS} ${OPTFLAGS} \ + ${AccumulatedIncFlags} + +-CXXFLAGS = ${ANSI_FLAGS} ${ANSI_CXXFLAGS} ${DBGFLAGS} ${USEDCXXSTATICFLAGS} ${USRCXXFLAGS} ${ARCHFLAGS} ${OPTFLAGS} \ ++CXXFLAGS = ${EBVARCXXFLAGS} ${ANSI_FLAGS} ${ANSI_CXXFLAGS} ${DBGFLAGS} ${USEDCXXSTATICFLAGS} ${USRCXXFLAGS} ${ARCHFLAGS} ${OPTFLAGS} \ + ${AccumulatedIncFlags} + + HFILES = *.h diff -ur fsl.orig/config/generic/systemvars.mk fsl/config/generic/systemvars.mk --- fsl.orig/config/generic/systemvars.mk 2007-07-13 13:00:20.000000000 +0200 -+++ fsl/config/generic/systemvars.mk 2017-05-18 13:54:40.446975876 +0200 ++++ fsl/config/generic/systemvars.mk 2017-05-22 14:26:37.819705455 +0200 @@ -16,8 +16,8 @@ - + # Compiler dependent variables - + -CC = gcc -CXX = c++ +CC := ${CC} +CXX := ${CXX} CSTATICFLAGS = -static CXXSTATICFLAGS = -static - + @@ -25,7 +25,7 @@ - + DEPENDFLAGS = -MM - + -OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} +OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 MACHDBGFLAGS = GNU_ANSI_FLAGS = -Wall -ansi -pedantic SGI_ANSI_FLAGS = -ansi -fullwarn -Only in fsl/config/generic: systemvars.mk.orig -diff -ur fsl.orig/config/gnu_64-gcc4.4/systemvars.mk fsl/config/gnu_64-gcc4.4/systemvars.mk ---- fsl.orig/config/gnu_64-gcc4.4/systemvars.mk 2011-04-19 10:47:52.000000000 +0200 -+++ fsl/config/gnu_64-gcc4.4/systemvars.mk 2017-05-18 13:54:40.446975876 +0200 -@@ -27,7 +27,7 @@ - - DEPENDFLAGS = -MM - --OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} -+OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 - MACHDBGFLAGS = -g - GNU_ANSI_FLAGS = -Wall -ansi -pedantic -Wno-long-long - SGI_ANSI_FLAGS = -ansi -fullwarn -Only in fsl/config/gnu_64-gcc4.4: systemvars.mk.orig -diff -ur fsl.orig/config/i686-pc-cygwin-gcc3.2/systemvars.mk fsl/config/i686-pc-cygwin-gcc3.2/systemvars.mk ---- fsl.orig/config/i686-pc-cygwin-gcc3.2/systemvars.mk 2007-07-13 13:00:20.000000000 +0200 -+++ fsl/config/i686-pc-cygwin-gcc3.2/systemvars.mk 2017-05-18 13:54:40.446975876 +0200 -@@ -18,8 +18,8 @@ - - # Compiler dependent variables - --CC = gcc-2 --CXX = c++-2 -+CC := ${CC} -+CXX := ${CXX} - CSTATICFLAGS = -static - CXXSTATICFLAGS = -static - -@@ -27,7 +27,7 @@ - - DEPENDFLAGS = -MM - --OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} -+OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 - MACHDBGFLAGS = -g - GNU_ANSI_FLAGS = -Wall -ansi -pedantic -Wno-deprecated - SGI_ANSI_FLAGS = -ansi -fullwarn -Only in fsl/config/i686-pc-cygwin-gcc3.2: systemvars.mk.orig -diff -ur fsl.orig/config/i686-pc-cygwin-gcc3.3/systemvars.mk fsl/config/i686-pc-cygwin-gcc3.3/systemvars.mk ---- fsl.orig/config/i686-pc-cygwin-gcc3.3/systemvars.mk 2007-07-13 13:00:20.000000000 +0200 -+++ fsl/config/i686-pc-cygwin-gcc3.3/systemvars.mk 2017-05-18 13:54:40.447975880 +0200 -@@ -18,8 +18,8 @@ - - # Compiler dependent variables - --CC = gcc --CXX = c++ -+CC := ${CC} -+CXX := ${CXX} - CSTATICFLAGS = -static - CXXSTATICFLAGS = -static - -@@ -27,7 +27,7 @@ - - DEPENDFLAGS = -MM - --OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} -+OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 - MACHDBGFLAGS = -g - GNU_ANSI_FLAGS = -Wall -ansi -pedantic -Wno-deprecated - SGI_ANSI_FLAGS = -ansi -fullwarn -Only in fsl/config/i686-pc-cygwin-gcc3.3: systemvars.mk.orig -diff -ur fsl.orig/config/i686-pc-cygwin-gcc3.4/systemvars.mk fsl/config/i686-pc-cygwin-gcc3.4/systemvars.mk ---- fsl.orig/config/i686-pc-cygwin-gcc3.4/systemvars.mk 2007-07-13 13:00:20.000000000 +0200 -+++ fsl/config/i686-pc-cygwin-gcc3.4/systemvars.mk 2017-05-18 13:54:40.447975880 +0200 -@@ -18,8 +18,8 @@ - - # Compiler dependent variables - --CC = gcc --CXX = c++ -+CC := ${CC} -+CXX := ${CXX} - CSTATICFLAGS = -static - CXXSTATICFLAGS = -static - -@@ -27,7 +27,7 @@ - - DEPENDFLAGS = -MM - --OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} -+OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 - MACHDBGFLAGS = -g - GNU_ANSI_FLAGS = -Wall -ansi -pedantic -Wno-deprecated - SGI_ANSI_FLAGS = -ansi -fullwarn -Only in fsl/config/i686-pc-cygwin-gcc3.4: systemvars.mk.orig -diff -ur fsl.orig/config/linux_32-gcc2.96/systemvars.mk fsl/config/linux_32-gcc2.96/systemvars.mk ---- fsl.orig/config/linux_32-gcc2.96/systemvars.mk 2007-07-25 17:21:07.000000000 +0200 -+++ fsl/config/linux_32-gcc2.96/systemvars.mk 2017-05-18 13:54:40.447975880 +0200 -@@ -18,8 +18,8 @@ - - # Compiler dependent variables - --CC = gcc --CXX = c++ -+CC := ${CC} -+CXX := ${CXX} - CSTATICFLAGS = -static - CXXSTATICFLAGS = -static - -@@ -27,7 +27,7 @@ - - DEPENDFLAGS = -MM - --OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} -+OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 - MACHDBGFLAGS = -g - GNU_ANSI_FLAGS = -Wall -ansi -pedantic - SGI_ANSI_FLAGS = -ansi -fullwarn -Only in fsl/config/linux_32-gcc2.96: systemvars.mk.orig -diff -ur fsl.orig/config/linux_32-gcc3.2/systemvars.mk fsl/config/linux_32-gcc3.2/systemvars.mk ---- fsl.orig/config/linux_32-gcc3.2/systemvars.mk 2007-07-25 17:21:08.000000000 +0200 -+++ fsl/config/linux_32-gcc3.2/systemvars.mk 2017-05-18 13:54:40.447975880 +0200 -@@ -18,8 +18,8 @@ - - # Compiler dependent variables - --CC = gcc --CXX = c++ -+CC := ${CC} -+CXX := ${CXX} - CSTATICFLAGS = -static - CXXSTATICFLAGS = -static - -@@ -27,7 +27,7 @@ - - DEPENDFLAGS = -MM - --OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} -+OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 - MACHDBGFLAGS = -g - GNU_ANSI_FLAGS = -Wall -ansi -pedantic - SGI_ANSI_FLAGS = -ansi -fullwarn -Only in fsl/config/linux_32-gcc3.2: systemvars.mk.orig -diff -ur fsl.orig/config/linux_32-gcc3.3/systemvars.mk fsl/config/linux_32-gcc3.3/systemvars.mk ---- fsl.orig/config/linux_32-gcc3.3/systemvars.mk 2007-07-25 17:21:09.000000000 +0200 -+++ fsl/config/linux_32-gcc3.3/systemvars.mk 2017-05-18 13:54:40.447975880 +0200 -@@ -18,8 +18,8 @@ - - # Compiler dependent variables - --CC = gcc --CXX = c++ -+CC := ${CC} -+CXX := ${CXX} - CSTATICFLAGS = -static - CXXSTATICFLAGS = -static - -@@ -27,7 +27,7 @@ - - DEPENDFLAGS = -MM - --OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} -+OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 - MACHDBGFLAGS = -g - GNU_ANSI_FLAGS = -Wall -ansi -pedantic -Wno-long-long - SGI_ANSI_FLAGS = -ansi -fullwarn -Only in fsl/config/linux_32-gcc3.3: systemvars.mk.orig -diff -ur fsl.orig/config/linux_32-gcc3.4/systemvars.mk fsl/config/linux_32-gcc3.4/systemvars.mk ---- fsl.orig/config/linux_32-gcc3.4/systemvars.mk 2007-07-25 17:21:10.000000000 +0200 -+++ fsl/config/linux_32-gcc3.4/systemvars.mk 2017-05-18 13:54:40.447975880 +0200 -@@ -18,8 +18,8 @@ - - # Compiler dependent variables - --CC = gcc --CXX = c++ -+CC := ${CC} -+CXX := ${CXX} - CSTATICFLAGS = -static - CXXSTATICFLAGS = -static - -@@ -27,7 +27,7 @@ - - DEPENDFLAGS = -MM - --OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} -+OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 - MACHDBGFLAGS = -g - GNU_ANSI_FLAGS = -Wall -ansi -pedantic -Wno-long-long - SGI_ANSI_FLAGS = -ansi -fullwarn -Only in fsl/config/linux_32-gcc3.4: systemvars.mk.orig -diff -ur fsl.orig/config/linux_32-gcc4.0/systemvars.mk fsl/config/linux_32-gcc4.0/systemvars.mk ---- fsl.orig/config/linux_32-gcc4.0/systemvars.mk 2007-07-25 17:21:11.000000000 +0200 -+++ fsl/config/linux_32-gcc4.0/systemvars.mk 2017-05-18 13:54:40.447975880 +0200 -@@ -18,8 +18,8 @@ - - # Compiler dependent variables - --CC = gcc --CXX = c++ -+CC := ${CC} -+CXX := ${CXX} - CSTATICFLAGS = -static - CXXSTATICFLAGS = -static - -@@ -27,7 +27,7 @@ - - DEPENDFLAGS = -MM - --OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} -+OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 - MACHDBGFLAGS = -g - GNU_ANSI_FLAGS = -Wall -ansi -pedantic - SGI_ANSI_FLAGS = -ansi -fullwarn -Only in fsl/config/linux_32-gcc4.0: systemvars.mk.orig -diff -ur fsl.orig/config/linux_32-gcc4.1/systemvars.mk fsl/config/linux_32-gcc4.1/systemvars.mk ---- fsl.orig/config/linux_32-gcc4.1/systemvars.mk 2012-04-20 11:37:28.000000000 +0200 -+++ fsl/config/linux_32-gcc4.1/systemvars.mk 2017-05-18 13:54:40.447975880 +0200 -@@ -18,8 +18,8 @@ - - # Compiler dependent variables - --CC = gcc --CXX = c++ -+CC := ${CC} -+CXX := ${CXX} - CSTATICFLAGS = -static - CXXSTATICFLAGS = -static - -@@ -27,7 +27,7 @@ - - DEPENDFLAGS = -MM - --OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} -+OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 - MACHDBGFLAGS = -g - GNU_ANSI_FLAGS = -Wall -ansi -pedantic -Wno-long-long - SGI_ANSI_FLAGS = -ansi -fullwarn -Only in fsl/config/linux_32-gcc4.1: systemvars.mk.orig -diff -ur fsl.orig/config/linux_64-gcc3.4/systemvars.mk fsl/config/linux_64-gcc3.4/systemvars.mk ---- fsl.orig/config/linux_64-gcc3.4/systemvars.mk 2007-07-25 17:21:12.000000000 +0200 -+++ fsl/config/linux_64-gcc3.4/systemvars.mk 2017-05-18 13:54:40.447975880 +0200 -@@ -18,8 +18,8 @@ - - # Compiler dependent variables - --CC = gcc --CXX = c++ -+CC := ${CC} -+CXX := ${CXX} - CSTATICFLAGS = -static - CXXSTATICFLAGS = -static - -@@ -27,7 +27,7 @@ - - DEPENDFLAGS = -MM - --OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} -+OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 - MACHDBGFLAGS = -g - GNU_ANSI_FLAGS = -Wall -ansi -pedantic -Wno-long-long - SGI_ANSI_FLAGS = -ansi -fullwarn -Only in fsl/config/linux_64-gcc3.4: systemvars.mk.orig -diff -ur fsl.orig/config/linux_64-gcc4.0/systemvars.mk fsl/config/linux_64-gcc4.0/systemvars.mk ---- fsl.orig/config/linux_64-gcc4.0/systemvars.mk 2007-07-25 17:21:13.000000000 +0200 -+++ fsl/config/linux_64-gcc4.0/systemvars.mk 2017-05-18 13:54:40.447975880 +0200 -@@ -18,8 +18,8 @@ - - # Compiler dependent variables - --CC = gcc --CXX = c++ -+CC := ${CC} -+CXX := ${CXX} - CSTATICFLAGS = -static - CXXSTATICFLAGS = -static - -@@ -27,7 +27,7 @@ - - DEPENDFLAGS = -MM - --OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} -+OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 - MACHDBGFLAGS = -g - GNU_ANSI_FLAGS = -Wall -ansi -pedantic -Wno-long-long - SGI_ANSI_FLAGS = -ansi -fullwarn -Only in fsl/config/linux_64-gcc4.0: systemvars.mk.orig -diff -ur fsl.orig/config/linux_64-gcc4.1/systemvars.mk fsl/config/linux_64-gcc4.1/systemvars.mk ---- fsl.orig/config/linux_64-gcc4.1/systemvars.mk 2007-07-25 11:19:45.000000000 +0200 -+++ fsl/config/linux_64-gcc4.1/systemvars.mk 2017-05-18 13:54:40.447975880 +0200 -@@ -18,8 +18,8 @@ - - # Compiler dependent variables - --CC = gcc --CXX = c++ -+CC := ${CC} -+CXX := ${CXX} - CSTATICFLAGS = -static - CXXSTATICFLAGS = -static - -@@ -27,7 +27,7 @@ - - DEPENDFLAGS = -MM - --OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} -+OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 - MACHDBGFLAGS = -g - GNU_ANSI_FLAGS = -Wall -ansi -pedantic -Wno-long-long - SGI_ANSI_FLAGS = -ansi -fullwarn -Only in fsl/config/linux_64-gcc4.1: systemvars.mk.orig -diff -ur fsl.orig/config/linux_64-gcc4.2/systemvars.mk fsl/config/linux_64-gcc4.2/systemvars.mk ---- fsl.orig/config/linux_64-gcc4.2/systemvars.mk 2008-06-26 15:25:42.000000000 +0200 -+++ fsl/config/linux_64-gcc4.2/systemvars.mk 2017-05-18 13:54:40.447975880 +0200 -@@ -18,8 +18,8 @@ - - # Compiler dependent variables - --CC = gcc --CXX = c++ -+CC := ${CC} -+CXX := ${CXX} - CSTATICFLAGS = -static - CXXSTATICFLAGS = -static - -@@ -27,7 +27,7 @@ - - DEPENDFLAGS = -MM - --OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} -+OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 - MACHDBGFLAGS = -g - GNU_ANSI_FLAGS = -Wall -ansi -pedantic -Wno-long-long - SGI_ANSI_FLAGS = -ansi -fullwarn -Only in fsl/config/linux_64-gcc4.2: systemvars.mk.orig -diff -ur fsl.orig/config/linux_64-gcc4.4/systemvars.mk fsl/config/linux_64-gcc4.4/systemvars.mk ---- fsl.orig/config/linux_64-gcc4.4/systemvars.mk 2017-01-20 16:47:17.000000000 +0100 -+++ fsl/config/linux_64-gcc4.4/systemvars.mk 2017-05-18 13:57:25.995699462 +0200 -@@ -18,8 +18,8 @@ - +diff -ur fsl.orig/config/linux_64-gcc4.8/externallibs.mk fsl/config/linux_64-gcc4.8/externallibs.mk +--- fsl.orig/config/linux_64-gcc4.8/externallibs.mk 2017-02-18 13:20:05.000000000 +0100 ++++ fsl/config/linux_64-gcc4.8/externallibs.mk 2017-05-23 17:11:51.141583678 +0200 +@@ -15,7 +15,7 @@ + INC_GDC = ${FSLEXTINC}/libgdc + + # LIBXML2 library +-INC_XML2 = ${FSLEXTINC}/libxml2 ++INC_XML2 = ${EBROOTLIBXML2} + + # LIBXML++ library + INC_XML++ = ${FSLEXTINC}/libxml++-2.6 +@@ -49,12 +49,12 @@ + INC_ZLIB = /usr/include + + # BOOST library +-BOOSTDIR = ${FSLEXTINC}/boost +-LIB_BOOST = ${BOOSTDIR} +-INC_BOOST = ${BOOSTDIR} ++BOOSTDIR = ${EBROOTBOOST} ++LIB_BOOST = ${BOOSTDIR}/lib ++INC_BOOST = ${BOOSTDIR}/include + + # QT library +-QTDIR = /usr/lib/qt3 ++QTDIR = ${EBROOTQT} + LIB_QT = ${QTDIR}/lib + INC_QT = ${QTDIR}/include + +@@ -64,10 +64,10 @@ + INC_QWT = ${QWTDIR}/include + + # FFTW3 library +-LIB_FFTW3 = ${FSLEXTLIB} +-INC_FFTW3 = ${FSLEXTINC}/fftw3 ++LIB_FFTW3 = ${EBVARFFTW_LIB_DIR} ++INC_FFTW3 = ${EBVARFFTW_INC_DIR} + + # VTK library +-VTKDIR_INC = /home/fs0/cowboy/var/caper_linux_64-gcc4.4/VTK7/include/vtk-7.0 +-VTKDIR_LIB = /home/fs0/cowboy/var/caper_linux_64-gcc4.4/VTK7/lib +-VTKSUFFIX = -7.0 +\ No newline at end of file ++VTKDIR_INC = ${EBROOTVTK}/include/vtk-7.1 ++VTKDIR_LIB = ${EBROOTVTK}/lib ++VTKSUFFIX = -7.1 +diff -ur fsl.orig/config/linux_64-gcc4.8/systemvars.mk fsl/config/linux_64-gcc4.8/systemvars.mk +--- fsl.orig/config/linux_64-gcc4.8/systemvars.mk 2017-02-18 13:20:05.000000000 +0100 ++++ fsl/config/linux_64-gcc4.8/systemvars.mk 2017-05-22 15:09:39.988913330 +0200 +@@ -8,7 +8,7 @@ + CP = /bin/cp + MV = /bin/mv + INSTALL = install -p +-TCLSH = ${FSLDIR}/bin/fsltclsh ++TCLSH = tclsh + RANLIB = echo + + FSLML = ${FSLDIR}/bin/fslml +@@ -18,9 +18,9 @@ + # Compiler dependent variables - + -CC = gcc -CXX = c++ +-CXX11 = scl enable devtoolset-2 -- c++ +CC := ${CC} +CXX := ${CXX} - CXX11 = scl enable devtoolset-2 -- c++ ++CXX11 = ${CXX} -std=c++11 CSTATICFLAGS = -static CXXSTATICFLAGS = -static -@@ -30,7 +30,7 @@ - + +@@ -30,16 +30,16 @@ + DEPENDFLAGS = -MM - + -OPTFLAGS = -g -O3 -fexpensive-optimizations ${ARCHFLAGS} -+OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 ++OPTFLAGS := ${OPTFLAGS} ${ARCHFLAGS} -wd803 MACHDBGFLAGS = -g GNU_ANSI_FLAGS = -Wall -ansi -pedantic -Wno-long-long SGI_ANSI_FLAGS = -ansi -fullwarn -Only in fsl/config/linux_64-gcc4.4: systemvars.mk.orig -Only in fsl/config/linux_64-gcc4.4: systemvars.mk.rej -diff -ur fsl.orig/config/sparc-solaris2.8-gcc2.95/systemvars.mk fsl/config/sparc-solaris2.8-gcc2.95/systemvars.mk ---- fsl.orig/config/sparc-solaris2.8-gcc2.95/systemvars.mk 2007-07-13 13:00:21.000000000 +0200 -+++ fsl/config/sparc-solaris2.8-gcc2.95/systemvars.mk 2017-05-18 13:54:40.448975885 +0200 -@@ -5,14 +5,14 @@ - - # Compiler dependent variables - --CC = gcc --CXX = c++ -+CC := ${CC} -+CXX := ${CXX} - - ARCHFLAGS = -mv8 -ffast-math -fomit-frame-pointer - - DEPENDFLAGS = -MM - --OPTFLAGS = -O6 -fexpensive-optimizations ${ARCHFLAGS} -+OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 - MACHDBGFLAGS = - GNU_ANSI_FLAGS = -Wall -ansi -pedantic - SGI_ANSI_FLAGS = -ansi -fullwarn -Only in fsl/config/sparc-solaris2.8-gcc2.95: systemvars.mk.orig -diff -ur fsl.orig/config/sparc-solaris2.9-gcc2.95/systemvars.mk fsl/config/sparc-solaris2.9-gcc2.95/systemvars.mk ---- fsl.orig/config/sparc-solaris2.9-gcc2.95/systemvars.mk 2007-07-13 13:00:21.000000000 +0200 -+++ fsl/config/sparc-solaris2.9-gcc2.95/systemvars.mk 2017-05-18 13:54:40.448975885 +0200 -@@ -5,14 +5,14 @@ - - # Compiler dependent variables - --CC = gcc --CXX = c++ -+CC := ${CC} -+CXX := ${CXX} - - ARCHFLAGS = -mv8 -ffast-math -fomit-frame-pointer - ARCHLDFLAGS = -static - DEPENDFLAGS = -MM - --OPTFLAGS = -O6 -fexpensive-optimizations ${ARCHFLAGS} -+OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 - MACHDBGFLAGS = - GNU_ANSI_FLAGS = -Wall -ansi -pedantic - SGI_ANSI_FLAGS = -ansi -fullwarn -Only in fsl/config/sparc-solaris2.9-gcc2.95: systemvars.mk.orig + ANSI_FLAGS = ${GNU_ANSI_FLAGS} + + # CUDA development environment +-CUDA_INSTALLATION = /opt/cuda-7.5 ++CUDA_INSTALLATION = ${EBROOTCUDA} + GENCODE_FLAGS = $(shell ${FSLDIR}/config/common/supportedGencodes.sh ${CUDA_INSTALLATION}) + LIB_CUDA = ${CUDA_INSTALLATION}/lib64 + INC_CUDA = ${CUDA_INSTALLATION}/include + NVCC = ${CUDA_INSTALLATION}/bin/nvcc +-NVCC11=scl enable devtoolset-2 -- ${CUDA_INSTALLATION}/bin/nvcc ++NVCC11= ${CUDA_INSTALLATION}/bin/nvcc +diff -ur fsl.orig/etc/fslconf/fsl.csh fsl/etc/fslconf/fsl.csh +--- fsl.orig/etc/fslconf/fsl.csh 2014-05-19 16:54:10.000000000 +0200 ++++ fsl/etc/fslconf/fsl.csh 2017-05-22 14:31:34.251256565 +0200 +@@ -25,7 +25,7 @@ + # The following variables specify paths for programs and can be changed + # or replaced by different programs ( e.g. FSLDISPLAY=open for MacOSX) + +-setenv FSLTCLSH $FSLDIR/bin/fsltclsh ++setenv FSLTCLSH tclsh + setenv FSLWISH $FSLDIR/bin/fslwish + + # The following variables are used for running code in parallel across +diff -ur fsl.orig/etc/fslconf/fsl-devel.sh fsl/etc/fslconf/fsl-devel.sh +--- fsl.orig/etc/fslconf/fsl-devel.sh 2014-05-19 16:54:10.000000000 +0200 ++++ fsl/etc/fslconf/fsl-devel.sh 2017-05-22 14:31:41.437318420 +0200 +@@ -26,7 +26,7 @@ + # The following variables specify paths for programs and can be changed + # or replaced by different programs ( e.g. FSLDISPLAY=open for MacOSX) + +-FSLTCLSH=$FSLDIR/bin/fsltclsh ++FSLTCLSH=tclsh + FSLWISH=$FSLDIR/bin/fslwish + + export FSLTCLSH FSLWISH +diff -ur fsl.orig/etc/fslconf/fsl.sh fsl/etc/fslconf/fsl.sh +--- fsl.orig/etc/fslconf/fsl.sh 2014-05-19 16:54:10.000000000 +0200 ++++ fsl/etc/fslconf/fsl.sh 2017-05-22 14:31:28.729209032 +0200 +@@ -26,7 +26,7 @@ + # The following variables specify paths for programs and can be changed + # or replaced by different programs ( e.g. FSLDISPLAY=open for MacOSX) + +-FSLTCLSH=$FSLDIR/bin/fsltclsh ++FSLTCLSH=tclsh + FSLWISH=$FSLDIR/bin/fslwish + + export FSLTCLSH FSLWISH +diff -ur fsl.orig/extras/src/libxml++-2.34.0/libxml++/io/istreamparserinputbuffer.cc fsl/extras/src/libxml++-2.34.0/libxml++/io/istreamparserinputbuffer.cc +--- fsl.orig/extras/src/libxml++-2.34.0/libxml++/io/istreamparserinputbuffer.cc 2010-12-15 11:41:27.000000000 +0100 ++++ fsl/extras/src/libxml++-2.34.0/libxml++/io/istreamparserinputbuffer.cc 2017-05-22 15:01:50.430868138 +0200 +@@ -39,6 +39,6 @@ + + bool IStreamParserInputBuffer::do_close() + { +- return input_; ++ return static_cast(input_); + } + } +diff -ur fsl.orig/extras/src/libxml++-2.34.0/libxml++/io/ostreamoutputbuffer.cc fsl/extras/src/libxml++-2.34.0/libxml++/io/ostreamoutputbuffer.cc +--- fsl.orig/extras/src/libxml++-2.34.0/libxml++/io/ostreamoutputbuffer.cc 2010-12-15 11:41:27.000000000 +0100 ++++ fsl/extras/src/libxml++-2.34.0/libxml++/io/ostreamoutputbuffer.cc 2017-05-22 15:01:50.431868146 +0200 +@@ -29,13 +29,13 @@ + // here we rely on the ostream implicit conversion to boolean, to know if the stream can be used and/or if the write succeded. + if(output_) + output_.write(buffer, len); +- return output_; ++ return static_cast(output_); + } + + bool OStreamOutputBuffer::do_close() + { + if(output_) + output_.flush(); +- return output_; ++ return static_cast(output_); + } + } diff -ur fsl.orig/src/film/Makefile fsl/src/film/Makefile --- fsl.orig/src/film/Makefile 2017-04-20 17:01:43.000000000 +0200 -+++ fsl/src/film/Makefile 2017-05-18 13:54:40.448975885 +0200 ++++ fsl/src/film/Makefile 2017-05-22 14:26:37.820705464 +0200 @@ -28,7 +28,7 @@ ${CXX} ${CXXFLAGS} ${LDFLAGS} -o $@ ${OBJS} ftoz.o ${LIBS} - + film_gls:${OBJS} film_gls.o - ${CXX} ${CXXFLAGS} ${LDFLAGS} -o $@ ${OBJS} film_gls.o ${LIBS} -l giftiio + ${CXX} ${CXXFLAGS} ${LDFLAGS} -o $@ ${OBJS} film_gls.o ${LIBS} -lgiftiio - + film_gls_res:${OBJS} film_gls_res.o ${CXX} ${CXXFLAGS} ${LDFLAGS} -o $@ ${OBJS} film_gls_res.o ${LIBS} Only in fsl/src/film: Makefile.orig diff -ur fsl.orig/src/libmeshutils/Makefile fsl/src/libmeshutils/Makefile --- fsl.orig/src/libmeshutils/Makefile 2012-07-23 15:25:20.000000000 +0200 -+++ fsl/src/libmeshutils/Makefile 2017-05-18 13:54:40.448975885 +0200 ++++ fsl/src/libmeshutils/Makefile 2017-05-22 14:26:37.820705464 +0200 @@ -3,7 +3,7 @@ - + PROJNAME = meshUtils - + -LD_LIBRARY_PATH=${FSLDIR}/lib +#LD_LIBRARY_PATH=${FSLDIR}/lib - - USRINCFLAGS = -I${INC_NEWMAT} -I${INC_ZLIB} -I${INC_PROB} -I${INC_BOOST} + + USRINCFLAGS = -I${INC_NEWMAT} -I${INC_ZLIB} -I${INC_PROB} -I${INC_BOOST} USRLDFLAGS = -L${LIB_PROB} -L${LIB_NEWMAT} -L${LIB_ZLIB} Only in fsl/src/libmeshutils: Makefile.orig diff -ur fsl.orig/src/melodic/Makefile fsl/src/melodic/Makefile --- fsl.orig/src/melodic/Makefile 2016-09-01 17:24:32.000000000 +0200 -+++ fsl/src/melodic/Makefile 2017-05-18 13:54:40.448975885 +0200 ++++ fsl/src/melodic/Makefile 2017-05-22 14:26:37.820705464 +0200 @@ -3,7 +3,7 @@ include ${FSLCONFDIR}/default.mk - + OPTFLAGS = -O3 -Wno-deprecated -ggdb -OPTFLAGS_alphaev6-dec-osf5.0-gcc2.95.2 = -O3 -mieee -mfp-trap-mode=sui +#OPTFLAGS_alphaev6-dec-osf5.0-gcc2.95.2 = -O3 -mieee -mfp-trap-mode=sui - + PROJNAME = melodic - + Only in fsl/src/melodic: Makefile.orig +diff -ur fsl.orig/src/mist-clean/Makefile fsl/src/mist-clean/Makefile +--- fsl.orig/src/mist-clean/Makefile 2017-04-20 14:17:54.000000000 +0200 ++++ fsl/src/mist-clean/Makefile 2017-05-23 16:14:14.034077875 +0200 +@@ -2,15 +2,15 @@ + + NLOPT_INC = ${FSLEXTINC} + NLOPT_LIB = ${FSLEXTLIB} +-SQLITE_INC = ${FSLEXTINC}/libsqlite +-SQLITE_LIB = ${FSLEXTLIB} ++SQLITE_INC = ${EBROOTSQLITE}/include ++SQLITE_LIB = ${EBROOTSQLITE}/lib + + PROJNAME = mist + + XFILES = mist/mist + SCRIPTS = bin/mist_1_train bin/mist_2_fit bin/mist_FA_reg bin/mist_display bin/mist_mesh_utils + +-USRCXXFLAGS = -std=c++11 ++USRCXXFLAGS = -std=c++11 -DBOOST_LOG_DYN_LINK + USRINCFLAGS = -I${FSLDIR}/include/newimage -I${INC_NEWMAT} -I${INC_ZLIB} -I${INC_GDC} -I${INC_GD} -I${SQLITE_INC} -I${NLOPT_INC} -I${VTKDIR_INC} -Icommon + USRLDFLAGS = -L${LIB_NEWMAT} -L${LIB_ZLIB} -L${LIB_BOOST} -L${LIB_GDC} -L${LIB_GD} -L${NLOPT_LIB} -L${VTKDIR_LIB} + diff --git a/easybuild/easyconfigs/g/GLibmm/GLibmm-2.53.1.1-intel-2017a.eb b/easybuild/easyconfigs/g/GLibmm/GLibmm-2.53.1.1-intel-2017a.eb deleted file mode 100644 index b9e19ec518..0000000000 --- a/easybuild/easyconfigs/g/GLibmm/GLibmm-2.53.1.1-intel-2017a.eb +++ /dev/null @@ -1,24 +0,0 @@ -easyblock = 'ConfigureMake' - -name = 'GLibmm' -version = '2.53.1.1' - -homepage = 'http://www.gtk.org/' -description = """GLib is one of the base libraries of the GTK+ project""" - -toolchain = {'name': 'intel', 'version': '2017a'} -toolchainopts = {'optarch': True, 'pic': True} - -source_urls = ['http://ftp.gnome.org/pub/gnome/sources/glibmm/%(version_major_minor)s/'] -sources = ['%(namelower)s-%(version)s.tar.xz'] - -dependencies = [ - ('GLib', '2.52.0'), - ('libsigc++', '2.10.0'), -] - -sanity_check_paths = { - 'files': ['lib/libglibmm-2.5.%s' % SHLIB_EXT], - 'dirs': [], -} -moduleclass = 'vis' diff --git a/easybuild/easyconfigs/l/libsigc++/libsigc++-2.10.0-intel-2017a.eb b/easybuild/easyconfigs/l/libsigc++/libsigc++-2.10.0-intel-2017a.eb deleted file mode 100644 index bb4e33f915..0000000000 --- a/easybuild/easyconfigs/l/libsigc++/libsigc++-2.10.0-intel-2017a.eb +++ /dev/null @@ -1,20 +0,0 @@ -easyblock = 'ConfigureMake' - -name = 'libsigc++' -version = '2.10.0' - -homepage = 'http://www.gtk.org/' -description = """The libsigc++ package implements a typesafe callback system for standard C++.""" - -toolchain = {'name': 'intel', 'version': '2017a'} -toolchainopts = {'optarch': True, 'pic': True} - -source_urls = ['http://ftp.gnome.org/pub/gnome/sources/%(name)s/%(version_major_minor)s/'] -sources = ['%(namelower)s-%(version)s.tar.xz'] - -sanity_check_paths = { - 'files': ['lib/libsigc-2.0.%s' % SHLIB_EXT], - 'dirs': [], -} - -moduleclass = 'devel' diff --git a/easybuild/easyconfigs/l/libxml++/libxml++-2.91.3-intel-2017a.eb b/easybuild/easyconfigs/l/libxml++/libxml++-2.91.3-intel-2017a.eb deleted file mode 100644 index 8e9c13f200..0000000000 --- a/easybuild/easyconfigs/l/libxml++/libxml++-2.91.3-intel-2017a.eb +++ /dev/null @@ -1,24 +0,0 @@ -easyblock = 'ConfigureMake' - -name = 'libxml++' -version = '2.91.3' - -homepage = 'http://libxmlplusplus.sourceforge.net' -description = """ libxml++ is a C++ wrapper for the libxml XML parser library. """ - -toolchain = {'name': 'intel', 'version': '2017a'} - -sources = [SOURCE_TAR_XZ] -source_urls = ['http://www.example.com'] - -dependencies = [ - ('libxml2', '2.9.4'), - ('GLibmm', '2.53.1.1'), -] - -sanity_check_paths = { - 'files': [], - 'dirs': ["."] -} - -moduleclass = 'lib' -- GitLab From 2c0d4a6304f7ab97cc7077bb16d508ae81f70386 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 23 May 2017 20:24:16 +0200 Subject: [PATCH 093/608] adding easyconfigs: matplotlib-2.0.2-intel-2017a-Python-2.7.13-libpng-1.6.29.eb --- ...intel-2017a-Python-2.7.13-libpng-1.6.29.eb | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-intel-2017a-Python-2.7.13-libpng-1.6.29.eb diff --git a/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-intel-2017a-Python-2.7.13-libpng-1.6.29.eb b/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-intel-2017a-Python-2.7.13-libpng-1.6.29.eb new file mode 100644 index 0000000000..5b2a328b11 --- /dev/null +++ b/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-intel-2017a-Python-2.7.13-libpng-1.6.29.eb @@ -0,0 +1,44 @@ +easyblock = 'Bundle' + +name = 'matplotlib' +version = '2.0.2' +libpng_ver = '1.6.29' +versionsuffix = '-Python-%%(pyver)s-libpng-%s' % libpng_ver + +homepage = 'http://matplotlib.org' +description = """matplotlib is a python 2D plotting library which produces publication quality figures in a variety of + hardcopy formats and interactive environments across platforms. matplotlib can be used in python scripts, the python + and ipython shell, web application servers, and six graphical user interface toolkits.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +# this is a bundle of Python packages +exts_defaultclass = 'PythonPackage' + +dependencies = [ + ('Python', '2.7.13'), + ('freetype', '2.7.1', '-libpng-%s' % libpng_ver), +] + +exts_list = [ + ('Cycler', '0.10.0', { + 'modulename': 'cycler', + 'source_urls': ['https://pypi.python.org/packages/source/C/Cycler'], + 'source_tmpl': 'cycler-%(version)s.tar.gz', + }), + (name, version, { + 'source_urls': ['https://pypi.python.org/packages/source/m/matplotlib'], + }), +] + +# specify that Bundle easyblock should run a full sanity check, rather than just trying to load the module +full_sanity_check = True + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages'], +} + +modextrapaths = {'PYTHONPATH': ['lib/python%(pyshortver)s/site-packages']} + +moduleclass = 'vis' -- GitLab From ef5a7c15c0843b4459a249852b5da027ee368a20 Mon Sep 17 00:00:00 2001 From: Ward Poelmans Date: Tue, 23 May 2017 21:47:12 +0200 Subject: [PATCH 094/608] Drop testing easyconfig --- .../f/FSL/FSL-5.0.9-intel-2017a.eb | 24 ------------------- 1 file changed, 24 deletions(-) delete mode 100644 easybuild/easyconfigs/f/FSL/FSL-5.0.9-intel-2017a.eb diff --git a/easybuild/easyconfigs/f/FSL/FSL-5.0.9-intel-2017a.eb b/easybuild/easyconfigs/f/FSL/FSL-5.0.9-intel-2017a.eb deleted file mode 100644 index 34a1890fcb..0000000000 --- a/easybuild/easyconfigs/f/FSL/FSL-5.0.9-intel-2017a.eb +++ /dev/null @@ -1,24 +0,0 @@ -name = 'FSL' -version = '5.0.9' - -homepage = 'http://www.fmrib.ox.ac.uk/fsl/' -description = """FSL is a comprehensive library of analysis tools for FMRI, MRI and DTI brain imaging data.""" - -toolchain = {'name': 'intel', 'version': '2017a'} - -source_urls = ["http://www.fmrib.ox.ac.uk/fsldownloads/"] -sources = ['%(namelower)s-%(version)s-sources.tar.gz'] - -patches = [ - 'FSL-%(version)s_makefile_fixes.patch', - 'FSL-%(version)s_missing_lib.patch', - 'FSL_icc_nan-inf_fix.patch', -] - -dependencies = [ - ('freeglut', '3.0.0'), - ('expat', '2.2.0'), - ('zlib', '1.2.11'), -] - -moduleclass = 'bio' -- GitLab From 6dc1b3764473357dfec073a64bbd1ce6d68934e5 Mon Sep 17 00:00:00 2001 From: Ward Poelmans Date: Tue, 23 May 2017 22:17:41 +0200 Subject: [PATCH 095/608] Fix patch --- .../f/FSL/FSL-5.0.10_makefile_fixes.patch | 37 ++++++++++++------- 1 file changed, 24 insertions(+), 13 deletions(-) diff --git a/easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch b/easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch index ca470e4c17..a9d93a90d7 100644 --- a/easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch +++ b/easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch @@ -2,7 +2,7 @@ # Ward Poelmans diff -ur fsl.orig/config/common/vars.mk fsl/config/common/vars.mk --- fsl.orig/config/common/vars.mk 2016-05-24 17:44:11.000000000 +0200 -+++ fsl/config/common/vars.mk 2017-05-23 10:19:55.325628385 +0200 ++++ fsl/config/common/vars.mk 2017-05-23 22:14:37.138797842 +0200 @@ -24,14 +24,14 @@ USRCFLAGS = USRCXXFLAGS = @@ -22,9 +22,10 @@ diff -ur fsl.orig/config/common/vars.mk fsl/config/common/vars.mk ${AccumulatedIncFlags} HFILES = *.h +Only in fsl/config/common: vars.mk.orig diff -ur fsl.orig/config/generic/systemvars.mk fsl/config/generic/systemvars.mk --- fsl.orig/config/generic/systemvars.mk 2007-07-13 13:00:20.000000000 +0200 -+++ fsl/config/generic/systemvars.mk 2017-05-22 14:26:37.819705455 +0200 ++++ fsl/config/generic/systemvars.mk 2017-05-23 22:14:37.139797850 +0200 @@ -16,8 +16,8 @@ # Compiler dependent variables @@ -45,9 +46,10 @@ diff -ur fsl.orig/config/generic/systemvars.mk fsl/config/generic/systemvars.mk MACHDBGFLAGS = GNU_ANSI_FLAGS = -Wall -ansi -pedantic SGI_ANSI_FLAGS = -ansi -fullwarn +Only in fsl/config/generic: systemvars.mk.orig diff -ur fsl.orig/config/linux_64-gcc4.8/externallibs.mk fsl/config/linux_64-gcc4.8/externallibs.mk --- fsl.orig/config/linux_64-gcc4.8/externallibs.mk 2017-02-18 13:20:05.000000000 +0100 -+++ fsl/config/linux_64-gcc4.8/externallibs.mk 2017-05-23 17:11:51.141583678 +0200 ++++ fsl/config/linux_64-gcc4.8/externallibs.mk 2017-05-23 22:15:51.535436754 +0200 @@ -15,7 +15,7 @@ INC_GDC = ${FSLEXTINC}/libgdc @@ -91,9 +93,11 @@ diff -ur fsl.orig/config/linux_64-gcc4.8/externallibs.mk fsl/config/linux_64-gcc +VTKDIR_INC = ${EBROOTVTK}/include/vtk-7.1 +VTKDIR_LIB = ${EBROOTVTK}/lib +VTKSUFFIX = -7.1 +Only in fsl/config/linux_64-gcc4.8: externallibs.mk.orig +Only in fsl/config/linux_64-gcc4.8: externallibs.mk.rej diff -ur fsl.orig/config/linux_64-gcc4.8/systemvars.mk fsl/config/linux_64-gcc4.8/systemvars.mk --- fsl.orig/config/linux_64-gcc4.8/systemvars.mk 2017-02-18 13:20:05.000000000 +0100 -+++ fsl/config/linux_64-gcc4.8/systemvars.mk 2017-05-22 15:09:39.988913330 +0200 ++++ fsl/config/linux_64-gcc4.8/systemvars.mk 2017-05-23 22:14:37.139797850 +0200 @@ -8,7 +8,7 @@ CP = /bin/cp MV = /bin/mv @@ -136,9 +140,10 @@ diff -ur fsl.orig/config/linux_64-gcc4.8/systemvars.mk fsl/config/linux_64-gcc4. NVCC = ${CUDA_INSTALLATION}/bin/nvcc -NVCC11=scl enable devtoolset-2 -- ${CUDA_INSTALLATION}/bin/nvcc +NVCC11= ${CUDA_INSTALLATION}/bin/nvcc +Only in fsl/config/linux_64-gcc4.8: systemvars.mk.orig diff -ur fsl.orig/etc/fslconf/fsl.csh fsl/etc/fslconf/fsl.csh --- fsl.orig/etc/fslconf/fsl.csh 2014-05-19 16:54:10.000000000 +0200 -+++ fsl/etc/fslconf/fsl.csh 2017-05-22 14:31:34.251256565 +0200 ++++ fsl/etc/fslconf/fsl.csh 2017-05-23 22:14:37.139797850 +0200 @@ -25,7 +25,7 @@ # The following variables specify paths for programs and can be changed # or replaced by different programs ( e.g. FSLDISPLAY=open for MacOSX) @@ -148,9 +153,10 @@ diff -ur fsl.orig/etc/fslconf/fsl.csh fsl/etc/fslconf/fsl.csh setenv FSLWISH $FSLDIR/bin/fslwish # The following variables are used for running code in parallel across +Only in fsl/etc/fslconf: fsl.csh.orig diff -ur fsl.orig/etc/fslconf/fsl-devel.sh fsl/etc/fslconf/fsl-devel.sh --- fsl.orig/etc/fslconf/fsl-devel.sh 2014-05-19 16:54:10.000000000 +0200 -+++ fsl/etc/fslconf/fsl-devel.sh 2017-05-22 14:31:41.437318420 +0200 ++++ fsl/etc/fslconf/fsl-devel.sh 2017-05-23 22:14:37.139797850 +0200 @@ -26,7 +26,7 @@ # The following variables specify paths for programs and can be changed # or replaced by different programs ( e.g. FSLDISPLAY=open for MacOSX) @@ -160,9 +166,10 @@ diff -ur fsl.orig/etc/fslconf/fsl-devel.sh fsl/etc/fslconf/fsl-devel.sh FSLWISH=$FSLDIR/bin/fslwish export FSLTCLSH FSLWISH +Only in fsl/etc/fslconf: fsl-devel.sh.orig diff -ur fsl.orig/etc/fslconf/fsl.sh fsl/etc/fslconf/fsl.sh --- fsl.orig/etc/fslconf/fsl.sh 2014-05-19 16:54:10.000000000 +0200 -+++ fsl/etc/fslconf/fsl.sh 2017-05-22 14:31:28.729209032 +0200 ++++ fsl/etc/fslconf/fsl.sh 2017-05-23 22:14:37.139797850 +0200 @@ -26,7 +26,7 @@ # The following variables specify paths for programs and can be changed # or replaced by different programs ( e.g. FSLDISPLAY=open for MacOSX) @@ -172,9 +179,10 @@ diff -ur fsl.orig/etc/fslconf/fsl.sh fsl/etc/fslconf/fsl.sh FSLWISH=$FSLDIR/bin/fslwish export FSLTCLSH FSLWISH +Only in fsl/etc/fslconf: fsl.sh.orig diff -ur fsl.orig/extras/src/libxml++-2.34.0/libxml++/io/istreamparserinputbuffer.cc fsl/extras/src/libxml++-2.34.0/libxml++/io/istreamparserinputbuffer.cc --- fsl.orig/extras/src/libxml++-2.34.0/libxml++/io/istreamparserinputbuffer.cc 2010-12-15 11:41:27.000000000 +0100 -+++ fsl/extras/src/libxml++-2.34.0/libxml++/io/istreamparserinputbuffer.cc 2017-05-22 15:01:50.430868138 +0200 ++++ fsl/extras/src/libxml++-2.34.0/libxml++/io/istreamparserinputbuffer.cc 2017-05-23 22:14:37.139797850 +0200 @@ -39,6 +39,6 @@ bool IStreamParserInputBuffer::do_close() @@ -183,9 +191,10 @@ diff -ur fsl.orig/extras/src/libxml++-2.34.0/libxml++/io/istreamparserinputbuffe + return static_cast(input_); } } +Only in fsl/extras/src/libxml++-2.34.0/libxml++/io: istreamparserinputbuffer.cc.orig diff -ur fsl.orig/extras/src/libxml++-2.34.0/libxml++/io/ostreamoutputbuffer.cc fsl/extras/src/libxml++-2.34.0/libxml++/io/ostreamoutputbuffer.cc --- fsl.orig/extras/src/libxml++-2.34.0/libxml++/io/ostreamoutputbuffer.cc 2010-12-15 11:41:27.000000000 +0100 -+++ fsl/extras/src/libxml++-2.34.0/libxml++/io/ostreamoutputbuffer.cc 2017-05-22 15:01:50.431868146 +0200 ++++ fsl/extras/src/libxml++-2.34.0/libxml++/io/ostreamoutputbuffer.cc 2017-05-23 22:14:37.139797850 +0200 @@ -29,13 +29,13 @@ // here we rely on the ostream implicit conversion to boolean, to know if the stream can be used and/or if the write succeded. if(output_) @@ -202,9 +211,10 @@ diff -ur fsl.orig/extras/src/libxml++-2.34.0/libxml++/io/ostreamoutputbuffer.cc + return static_cast(output_); } } +Only in fsl/extras/src/libxml++-2.34.0/libxml++/io: ostreamoutputbuffer.cc.orig diff -ur fsl.orig/src/film/Makefile fsl/src/film/Makefile --- fsl.orig/src/film/Makefile 2017-04-20 17:01:43.000000000 +0200 -+++ fsl/src/film/Makefile 2017-05-22 14:26:37.820705464 +0200 ++++ fsl/src/film/Makefile 2017-05-23 22:14:37.139797850 +0200 @@ -28,7 +28,7 @@ ${CXX} ${CXXFLAGS} ${LDFLAGS} -o $@ ${OBJS} ftoz.o ${LIBS} @@ -217,7 +227,7 @@ diff -ur fsl.orig/src/film/Makefile fsl/src/film/Makefile Only in fsl/src/film: Makefile.orig diff -ur fsl.orig/src/libmeshutils/Makefile fsl/src/libmeshutils/Makefile --- fsl.orig/src/libmeshutils/Makefile 2012-07-23 15:25:20.000000000 +0200 -+++ fsl/src/libmeshutils/Makefile 2017-05-22 14:26:37.820705464 +0200 ++++ fsl/src/libmeshutils/Makefile 2017-05-23 22:14:37.140797859 +0200 @@ -3,7 +3,7 @@ PROJNAME = meshUtils @@ -230,7 +240,7 @@ diff -ur fsl.orig/src/libmeshutils/Makefile fsl/src/libmeshutils/Makefile Only in fsl/src/libmeshutils: Makefile.orig diff -ur fsl.orig/src/melodic/Makefile fsl/src/melodic/Makefile --- fsl.orig/src/melodic/Makefile 2016-09-01 17:24:32.000000000 +0200 -+++ fsl/src/melodic/Makefile 2017-05-22 14:26:37.820705464 +0200 ++++ fsl/src/melodic/Makefile 2017-05-23 22:14:37.140797859 +0200 @@ -3,7 +3,7 @@ include ${FSLCONFDIR}/default.mk @@ -243,7 +253,7 @@ diff -ur fsl.orig/src/melodic/Makefile fsl/src/melodic/Makefile Only in fsl/src/melodic: Makefile.orig diff -ur fsl.orig/src/mist-clean/Makefile fsl/src/mist-clean/Makefile --- fsl.orig/src/mist-clean/Makefile 2017-04-20 14:17:54.000000000 +0200 -+++ fsl/src/mist-clean/Makefile 2017-05-23 16:14:14.034077875 +0200 ++++ fsl/src/mist-clean/Makefile 2017-05-23 22:14:37.140797859 +0200 @@ -2,15 +2,15 @@ NLOPT_INC = ${FSLEXTINC} @@ -263,3 +273,4 @@ diff -ur fsl.orig/src/mist-clean/Makefile fsl/src/mist-clean/Makefile USRINCFLAGS = -I${FSLDIR}/include/newimage -I${INC_NEWMAT} -I${INC_ZLIB} -I${INC_GDC} -I${INC_GD} -I${SQLITE_INC} -I${NLOPT_INC} -I${VTKDIR_INC} -Icommon USRLDFLAGS = -L${LIB_NEWMAT} -L${LIB_ZLIB} -L${LIB_BOOST} -L${LIB_GDC} -L${LIB_GD} -L${NLOPT_LIB} -L${VTKDIR_LIB} +Only in fsl/src/mist-clean: Makefile.orig -- GitLab From 687e00080e43440cf4f3a4b7c2921812f6ad85da Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 24 May 2017 08:06:32 +0200 Subject: [PATCH 096/608] adding easyconfigs: xarray-0.9.5-intel-2017a-Python-2.7.13.eb --- .../xarray-0.9.5-intel-2017a-Python-2.7.13.eb | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 easybuild/easyconfigs/x/xarray/xarray-0.9.5-intel-2017a-Python-2.7.13.eb diff --git a/easybuild/easyconfigs/x/xarray/xarray-0.9.5-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/x/xarray/xarray-0.9.5-intel-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..10d17b9e1f --- /dev/null +++ b/easybuild/easyconfigs/x/xarray/xarray-0.9.5-intel-2017a-Python-2.7.13.eb @@ -0,0 +1,24 @@ +easyblock = 'PythonPackage' + +name = 'xarray' +version = '0.9.5' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'https://github.com/pydata/xarray' +description = """xarray (formerly xray) is an open source project and Python package that aims to bring + the labeled data power of pandas to the physical sciences, by providing N-dimensional variants of the + core pandas data structures.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [PYPI_SOURCE] +sources = [SOURCE_TAR_GZ] + +dependencies = [('Python', '2.7.13')] + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages'], +} + +moduleclass = 'data' -- GitLab From 7f12474b3edb909a36dffe5c61e7a601068587aa Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 24 May 2017 08:35:56 +0200 Subject: [PATCH 097/608] also copy README for GapFiller --- .../easyconfigs/g/GapFiller/GapFiller-2.1.1-intel-2017a.eb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/g/GapFiller/GapFiller-2.1.1-intel-2017a.eb b/easybuild/easyconfigs/g/GapFiller/GapFiller-2.1.1-intel-2017a.eb index 4e408b39dd..28fa1604ac 100644 --- a/easybuild/easyconfigs/g/GapFiller/GapFiller-2.1.1-intel-2017a.eb +++ b/easybuild/easyconfigs/g/GapFiller/GapFiller-2.1.1-intel-2017a.eb @@ -22,8 +22,10 @@ buildopts = 'bin_PROGRAMS=GapFiller ' buildopts += 'GapFiller_CFLAGS="$CFLAGS $LDFLAGS -lz" GapFiller_CXXFLAGS="$CXXFLAGS $LDFLAGS -lz"' installopts = 'bin_PROGRAMS=GapFiller ' +postinstallcmds = ["cp -a README %(installdir)s"] + sanity_check_paths = { - 'files': ['bin/GapFiller'], + 'files': ['bin/GapFiller', 'README'], 'dirs': [], } -- GitLab From 2699a28f353017f29796c94ff951a0b103b5eea4 Mon Sep 17 00:00:00 2001 From: Ward Poelmans Date: Wed, 24 May 2017 09:50:09 +0200 Subject: [PATCH 098/608] Fix patch again --- .../f/FSL/FSL-5.0.10_makefile_fixes.patch | 69 +++++++------------ 1 file changed, 23 insertions(+), 46 deletions(-) diff --git a/easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch b/easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch index a9d93a90d7..6a7fdafd84 100644 --- a/easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch +++ b/easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch @@ -2,7 +2,7 @@ # Ward Poelmans diff -ur fsl.orig/config/common/vars.mk fsl/config/common/vars.mk --- fsl.orig/config/common/vars.mk 2016-05-24 17:44:11.000000000 +0200 -+++ fsl/config/common/vars.mk 2017-05-23 22:14:37.138797842 +0200 ++++ fsl/config/common/vars.mk 2017-05-24 09:38:05.912369589 +0200 @@ -24,14 +24,14 @@ USRCFLAGS = USRCXXFLAGS = @@ -22,10 +22,9 @@ diff -ur fsl.orig/config/common/vars.mk fsl/config/common/vars.mk ${AccumulatedIncFlags} HFILES = *.h -Only in fsl/config/common: vars.mk.orig diff -ur fsl.orig/config/generic/systemvars.mk fsl/config/generic/systemvars.mk --- fsl.orig/config/generic/systemvars.mk 2007-07-13 13:00:20.000000000 +0200 -+++ fsl/config/generic/systemvars.mk 2017-05-23 22:14:37.139797850 +0200 ++++ fsl/config/generic/systemvars.mk 2017-05-24 09:38:05.912369589 +0200 @@ -16,8 +16,8 @@ # Compiler dependent variables @@ -42,14 +41,13 @@ diff -ur fsl.orig/config/generic/systemvars.mk fsl/config/generic/systemvars.mk DEPENDFLAGS = -MM -OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} -+OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} -wd803 ++OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} MACHDBGFLAGS = GNU_ANSI_FLAGS = -Wall -ansi -pedantic SGI_ANSI_FLAGS = -ansi -fullwarn -Only in fsl/config/generic: systemvars.mk.orig diff -ur fsl.orig/config/linux_64-gcc4.8/externallibs.mk fsl/config/linux_64-gcc4.8/externallibs.mk --- fsl.orig/config/linux_64-gcc4.8/externallibs.mk 2017-02-18 13:20:05.000000000 +0100 -+++ fsl/config/linux_64-gcc4.8/externallibs.mk 2017-05-23 22:15:51.535436754 +0200 ++++ fsl/config/linux_64-gcc4.8/externallibs.mk 2017-05-24 09:45:04.058907856 +0200 @@ -15,7 +15,7 @@ INC_GDC = ${FSLEXTINC}/libgdc @@ -82,22 +80,22 @@ diff -ur fsl.orig/config/linux_64-gcc4.8/externallibs.mk fsl/config/linux_64-gcc # FFTW3 library -LIB_FFTW3 = ${FSLEXTLIB} -INC_FFTW3 = ${FSLEXTINC}/fftw3 -+LIB_FFTW3 = ${EBVARFFTW_LIB_DIR} -+INC_FFTW3 = ${EBVARFFTW_INC_DIR} - - # VTK library +- +-# VTK library -VTKDIR_INC = /home/fs0/cowboy/var/caper_linux_64-gcc4.4/VTK7/include/vtk-7.0 -VTKDIR_LIB = /home/fs0/cowboy/var/caper_linux_64-gcc4.4/VTK7/lib -VTKSUFFIX = -7.0 \ No newline at end of file -+VTKDIR_INC = ${EBROOTVTK}/include/vtk-7.1 ++LIB_FFTW3 = ${EBVARFFTW_LIB_DIR} ++INC_FFTW3 = ${EBVARFFTW_INC_DIR} ++ ++ # VTK library ++VTKDIR_INC = ${EBROOTVTK}/include/vtk-`echo $EBVERSIONVTK | cut -f1-2 -d.` +VTKDIR_LIB = ${EBROOTVTK}/lib -+VTKSUFFIX = -7.1 -Only in fsl/config/linux_64-gcc4.8: externallibs.mk.orig -Only in fsl/config/linux_64-gcc4.8: externallibs.mk.rej ++VTKSUFFIX = -`echo $EBVERSIONVTK | cut -f1-2 -d.` diff -ur fsl.orig/config/linux_64-gcc4.8/systemvars.mk fsl/config/linux_64-gcc4.8/systemvars.mk --- fsl.orig/config/linux_64-gcc4.8/systemvars.mk 2017-02-18 13:20:05.000000000 +0100 -+++ fsl/config/linux_64-gcc4.8/systemvars.mk 2017-05-23 22:14:37.139797850 +0200 ++++ fsl/config/linux_64-gcc4.8/systemvars.mk 2017-05-24 09:38:05.912369589 +0200 @@ -8,7 +8,7 @@ CP = /bin/cp MV = /bin/mv @@ -125,7 +123,7 @@ diff -ur fsl.orig/config/linux_64-gcc4.8/systemvars.mk fsl/config/linux_64-gcc4. DEPENDFLAGS = -MM -OPTFLAGS = -g -O3 -fexpensive-optimizations ${ARCHFLAGS} -+OPTFLAGS := ${OPTFLAGS} ${ARCHFLAGS} -wd803 ++OPTFLAGS := ${OPTFLAGS} ${ARCHFLAGS} MACHDBGFLAGS = -g GNU_ANSI_FLAGS = -Wall -ansi -pedantic -Wno-long-long SGI_ANSI_FLAGS = -ansi -fullwarn @@ -140,10 +138,9 @@ diff -ur fsl.orig/config/linux_64-gcc4.8/systemvars.mk fsl/config/linux_64-gcc4. NVCC = ${CUDA_INSTALLATION}/bin/nvcc -NVCC11=scl enable devtoolset-2 -- ${CUDA_INSTALLATION}/bin/nvcc +NVCC11= ${CUDA_INSTALLATION}/bin/nvcc -Only in fsl/config/linux_64-gcc4.8: systemvars.mk.orig diff -ur fsl.orig/etc/fslconf/fsl.csh fsl/etc/fslconf/fsl.csh --- fsl.orig/etc/fslconf/fsl.csh 2014-05-19 16:54:10.000000000 +0200 -+++ fsl/etc/fslconf/fsl.csh 2017-05-23 22:14:37.139797850 +0200 ++++ fsl/etc/fslconf/fsl.csh 2017-05-24 09:38:05.912369589 +0200 @@ -25,7 +25,7 @@ # The following variables specify paths for programs and can be changed # or replaced by different programs ( e.g. FSLDISPLAY=open for MacOSX) @@ -153,10 +150,9 @@ diff -ur fsl.orig/etc/fslconf/fsl.csh fsl/etc/fslconf/fsl.csh setenv FSLWISH $FSLDIR/bin/fslwish # The following variables are used for running code in parallel across -Only in fsl/etc/fslconf: fsl.csh.orig diff -ur fsl.orig/etc/fslconf/fsl-devel.sh fsl/etc/fslconf/fsl-devel.sh --- fsl.orig/etc/fslconf/fsl-devel.sh 2014-05-19 16:54:10.000000000 +0200 -+++ fsl/etc/fslconf/fsl-devel.sh 2017-05-23 22:14:37.139797850 +0200 ++++ fsl/etc/fslconf/fsl-devel.sh 2017-05-24 09:38:05.912369589 +0200 @@ -26,7 +26,7 @@ # The following variables specify paths for programs and can be changed # or replaced by different programs ( e.g. FSLDISPLAY=open for MacOSX) @@ -166,10 +162,9 @@ diff -ur fsl.orig/etc/fslconf/fsl-devel.sh fsl/etc/fslconf/fsl-devel.sh FSLWISH=$FSLDIR/bin/fslwish export FSLTCLSH FSLWISH -Only in fsl/etc/fslconf: fsl-devel.sh.orig diff -ur fsl.orig/etc/fslconf/fsl.sh fsl/etc/fslconf/fsl.sh --- fsl.orig/etc/fslconf/fsl.sh 2014-05-19 16:54:10.000000000 +0200 -+++ fsl/etc/fslconf/fsl.sh 2017-05-23 22:14:37.139797850 +0200 ++++ fsl/etc/fslconf/fsl.sh 2017-05-24 09:38:05.912369589 +0200 @@ -26,7 +26,7 @@ # The following variables specify paths for programs and can be changed # or replaced by different programs ( e.g. FSLDISPLAY=open for MacOSX) @@ -179,10 +174,9 @@ diff -ur fsl.orig/etc/fslconf/fsl.sh fsl/etc/fslconf/fsl.sh FSLWISH=$FSLDIR/bin/fslwish export FSLTCLSH FSLWISH -Only in fsl/etc/fslconf: fsl.sh.orig diff -ur fsl.orig/extras/src/libxml++-2.34.0/libxml++/io/istreamparserinputbuffer.cc fsl/extras/src/libxml++-2.34.0/libxml++/io/istreamparserinputbuffer.cc --- fsl.orig/extras/src/libxml++-2.34.0/libxml++/io/istreamparserinputbuffer.cc 2010-12-15 11:41:27.000000000 +0100 -+++ fsl/extras/src/libxml++-2.34.0/libxml++/io/istreamparserinputbuffer.cc 2017-05-23 22:14:37.139797850 +0200 ++++ fsl/extras/src/libxml++-2.34.0/libxml++/io/istreamparserinputbuffer.cc 2017-05-24 09:38:05.913369598 +0200 @@ -39,6 +39,6 @@ bool IStreamParserInputBuffer::do_close() @@ -191,10 +185,9 @@ diff -ur fsl.orig/extras/src/libxml++-2.34.0/libxml++/io/istreamparserinputbuffe + return static_cast(input_); } } -Only in fsl/extras/src/libxml++-2.34.0/libxml++/io: istreamparserinputbuffer.cc.orig diff -ur fsl.orig/extras/src/libxml++-2.34.0/libxml++/io/ostreamoutputbuffer.cc fsl/extras/src/libxml++-2.34.0/libxml++/io/ostreamoutputbuffer.cc --- fsl.orig/extras/src/libxml++-2.34.0/libxml++/io/ostreamoutputbuffer.cc 2010-12-15 11:41:27.000000000 +0100 -+++ fsl/extras/src/libxml++-2.34.0/libxml++/io/ostreamoutputbuffer.cc 2017-05-23 22:14:37.139797850 +0200 ++++ fsl/extras/src/libxml++-2.34.0/libxml++/io/ostreamoutputbuffer.cc 2017-05-24 09:38:05.913369598 +0200 @@ -29,13 +29,13 @@ // here we rely on the ostream implicit conversion to boolean, to know if the stream can be used and/or if the write succeded. if(output_) @@ -211,10 +204,9 @@ diff -ur fsl.orig/extras/src/libxml++-2.34.0/libxml++/io/ostreamoutputbuffer.cc + return static_cast(output_); } } -Only in fsl/extras/src/libxml++-2.34.0/libxml++/io: ostreamoutputbuffer.cc.orig diff -ur fsl.orig/src/film/Makefile fsl/src/film/Makefile --- fsl.orig/src/film/Makefile 2017-04-20 17:01:43.000000000 +0200 -+++ fsl/src/film/Makefile 2017-05-23 22:14:37.139797850 +0200 ++++ fsl/src/film/Makefile 2017-05-24 09:38:05.913369598 +0200 @@ -28,7 +28,7 @@ ${CXX} ${CXXFLAGS} ${LDFLAGS} -o $@ ${OBJS} ftoz.o ${LIBS} @@ -224,10 +216,9 @@ diff -ur fsl.orig/src/film/Makefile fsl/src/film/Makefile film_gls_res:${OBJS} film_gls_res.o ${CXX} ${CXXFLAGS} ${LDFLAGS} -o $@ ${OBJS} film_gls_res.o ${LIBS} -Only in fsl/src/film: Makefile.orig diff -ur fsl.orig/src/libmeshutils/Makefile fsl/src/libmeshutils/Makefile --- fsl.orig/src/libmeshutils/Makefile 2012-07-23 15:25:20.000000000 +0200 -+++ fsl/src/libmeshutils/Makefile 2017-05-23 22:14:37.140797859 +0200 ++++ fsl/src/libmeshutils/Makefile 2017-05-24 09:38:05.913369598 +0200 @@ -3,7 +3,7 @@ PROJNAME = meshUtils @@ -237,23 +228,9 @@ diff -ur fsl.orig/src/libmeshutils/Makefile fsl/src/libmeshutils/Makefile USRINCFLAGS = -I${INC_NEWMAT} -I${INC_ZLIB} -I${INC_PROB} -I${INC_BOOST} USRLDFLAGS = -L${LIB_PROB} -L${LIB_NEWMAT} -L${LIB_ZLIB} -Only in fsl/src/libmeshutils: Makefile.orig -diff -ur fsl.orig/src/melodic/Makefile fsl/src/melodic/Makefile ---- fsl.orig/src/melodic/Makefile 2016-09-01 17:24:32.000000000 +0200 -+++ fsl/src/melodic/Makefile 2017-05-23 22:14:37.140797859 +0200 -@@ -3,7 +3,7 @@ - include ${FSLCONFDIR}/default.mk - - OPTFLAGS = -O3 -Wno-deprecated -ggdb --OPTFLAGS_alphaev6-dec-osf5.0-gcc2.95.2 = -O3 -mieee -mfp-trap-mode=sui -+#OPTFLAGS_alphaev6-dec-osf5.0-gcc2.95.2 = -O3 -mieee -mfp-trap-mode=sui - - PROJNAME = melodic - -Only in fsl/src/melodic: Makefile.orig diff -ur fsl.orig/src/mist-clean/Makefile fsl/src/mist-clean/Makefile --- fsl.orig/src/mist-clean/Makefile 2017-04-20 14:17:54.000000000 +0200 -+++ fsl/src/mist-clean/Makefile 2017-05-23 22:14:37.140797859 +0200 ++++ fsl/src/mist-clean/Makefile 2017-05-24 09:38:05.913369598 +0200 @@ -2,15 +2,15 @@ NLOPT_INC = ${FSLEXTINC} @@ -269,8 +246,8 @@ diff -ur fsl.orig/src/mist-clean/Makefile fsl/src/mist-clean/Makefile SCRIPTS = bin/mist_1_train bin/mist_2_fit bin/mist_FA_reg bin/mist_display bin/mist_mesh_utils -USRCXXFLAGS = -std=c++11 +# EB: needed to correctly (dynamically) link with the Boost log libs +USRCXXFLAGS = -std=c++11 -DBOOST_LOG_DYN_LINK USRINCFLAGS = -I${FSLDIR}/include/newimage -I${INC_NEWMAT} -I${INC_ZLIB} -I${INC_GDC} -I${INC_GD} -I${SQLITE_INC} -I${NLOPT_INC} -I${VTKDIR_INC} -Icommon USRLDFLAGS = -L${LIB_NEWMAT} -L${LIB_ZLIB} -L${LIB_BOOST} -L${LIB_GDC} -L${LIB_GD} -L${NLOPT_LIB} -L${VTKDIR_LIB} -Only in fsl/src/mist-clean: Makefile.orig -- GitLab From 50598e882b5c1a267ef293df6f536682fafddb26 Mon Sep 17 00:00:00 2001 From: Ward Poelmans Date: Wed, 24 May 2017 09:51:17 +0200 Subject: [PATCH 099/608] Authorship patch --- easybuild/easyconfigs/f/FSL/FSL-5.0.10_build_extras.patch | 1 + 1 file changed, 1 insertion(+) diff --git a/easybuild/easyconfigs/f/FSL/FSL-5.0.10_build_extras.patch b/easybuild/easyconfigs/f/FSL/FSL-5.0.10_build_extras.patch index d545a66031..15bc9a7922 100644 --- a/easybuild/easyconfigs/f/FSL/FSL-5.0.10_build_extras.patch +++ b/easybuild/easyconfigs/f/FSL/FSL-5.0.10_build_extras.patch @@ -1,4 +1,5 @@ # only build thing we don't provide with EasyBuild +# Ward Poelmans diff -ur fsl/extras/build fsl.new/extras/build --- fsl/extras/build 2016-11-15 15:30:21.000000000 +0100 +++ fsl.new/extras/build 2017-05-19 15:21:07.321630239 +0200 -- GitLab From d5afd3ccab3e7da38cc41acd8905104c1655024e Mon Sep 17 00:00:00 2001 From: Ward Poelmans Date: Wed, 24 May 2017 09:58:04 +0200 Subject: [PATCH 100/608] Final? fix of patch --- .../f/FSL/FSL-5.0.10_makefile_fixes.patch | 94 +++++++++---------- 1 file changed, 47 insertions(+), 47 deletions(-) diff --git a/easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch b/easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch index 6a7fdafd84..c9f8391467 100644 --- a/easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch +++ b/easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch @@ -4,42 +4,42 @@ diff -ur fsl.orig/config/common/vars.mk fsl/config/common/vars.mk --- fsl.orig/config/common/vars.mk 2016-05-24 17:44:11.000000000 +0200 +++ fsl/config/common/vars.mk 2017-05-24 09:38:05.912369589 +0200 @@ -24,14 +24,14 @@ - USRCFLAGS = + USRCFLAGS = USRCXXFLAGS = - + -LDFLAGS = ${ARCHLDFLAGS} ${USRLDFLAGS} -L. -L${DEVLIBDIR} -L${LIBDIR} +LDFLAGS = ${EBVARLDFLAGS} ${ARCHLDFLAGS} ${USRLDFLAGS} -L. -L${DEVLIBDIR} -L${LIBDIR} - + -AccumulatedIncFlags = -I${INC_BOOST} ${USRINCFLAGS} -I. -I${DEVINCDIR} -I${INCDIR} +AccumulatedIncFlags = ${EBVARCPPFLAGS} -I${INC_BOOST} ${USRINCFLAGS} -I. -I${DEVINCDIR} -I${INCDIR} - + -CFLAGS = ${ANSI_FLAGS} ${ANSI_CFLAGS} ${DBGFLAGS} ${USEDCSTATICFLAGS} ${USRCFLAGS} ${ARCHFLAGS} ${OPTFLAGS} \ +CFLAGS = ${EBVARCFLAGS} ${ANSI_FLAGS} ${ANSI_CFLAGS} ${DBGFLAGS} ${USEDCSTATICFLAGS} ${USRCFLAGS} ${ARCHFLAGS} ${OPTFLAGS} \ ${AccumulatedIncFlags} - + -CXXFLAGS = ${ANSI_FLAGS} ${ANSI_CXXFLAGS} ${DBGFLAGS} ${USEDCXXSTATICFLAGS} ${USRCXXFLAGS} ${ARCHFLAGS} ${OPTFLAGS} \ +CXXFLAGS = ${EBVARCXXFLAGS} ${ANSI_FLAGS} ${ANSI_CXXFLAGS} ${DBGFLAGS} ${USEDCXXSTATICFLAGS} ${USRCXXFLAGS} ${ARCHFLAGS} ${OPTFLAGS} \ ${AccumulatedIncFlags} - + HFILES = *.h diff -ur fsl.orig/config/generic/systemvars.mk fsl/config/generic/systemvars.mk --- fsl.orig/config/generic/systemvars.mk 2007-07-13 13:00:20.000000000 +0200 +++ fsl/config/generic/systemvars.mk 2017-05-24 09:38:05.912369589 +0200 @@ -16,8 +16,8 @@ - + # Compiler dependent variables - + -CC = gcc -CXX = c++ +CC := ${CC} +CXX := ${CXX} CSTATICFLAGS = -static CXXSTATICFLAGS = -static - + @@ -25,7 +25,7 @@ - + DEPENDFLAGS = -MM - + -OPTFLAGS = -O3 -fexpensive-optimizations ${ARCHFLAGS} +OPTFLAGS := ${CFLAGS} ${ARCHFLAGS} MACHDBGFLAGS = @@ -50,16 +50,16 @@ diff -ur fsl.orig/config/linux_64-gcc4.8/externallibs.mk fsl/config/linux_64-gcc +++ fsl/config/linux_64-gcc4.8/externallibs.mk 2017-05-24 09:45:04.058907856 +0200 @@ -15,7 +15,7 @@ INC_GDC = ${FSLEXTINC}/libgdc - + # LIBXML2 library -INC_XML2 = ${FSLEXTINC}/libxml2 +INC_XML2 = ${EBROOTLIBXML2} - + # LIBXML++ library INC_XML++ = ${FSLEXTINC}/libxml++-2.6 @@ -49,12 +49,12 @@ INC_ZLIB = /usr/include - + # BOOST library -BOOSTDIR = ${FSLEXTINC}/boost -LIB_BOOST = ${BOOSTDIR} @@ -67,28 +67,28 @@ diff -ur fsl.orig/config/linux_64-gcc4.8/externallibs.mk fsl/config/linux_64-gcc +BOOSTDIR = ${EBROOTBOOST} +LIB_BOOST = ${BOOSTDIR}/lib +INC_BOOST = ${BOOSTDIR}/include - + # QT library -QTDIR = /usr/lib/qt3 +QTDIR = ${EBROOTQT} LIB_QT = ${QTDIR}/lib INC_QT = ${QTDIR}/include - + @@ -64,10 +64,10 @@ INC_QWT = ${QWTDIR}/include - + # FFTW3 library -LIB_FFTW3 = ${FSLEXTLIB} -INC_FFTW3 = ${FSLEXTINC}/fftw3 - --# VTK library +-# VTK library -VTKDIR_INC = /home/fs0/cowboy/var/caper_linux_64-gcc4.4/VTK7/include/vtk-7.0 -VTKDIR_LIB = /home/fs0/cowboy/var/caper_linux_64-gcc4.4/VTK7/lib -VTKSUFFIX = -7.0 \ No newline at end of file +LIB_FFTW3 = ${EBVARFFTW_LIB_DIR} +INC_FFTW3 = ${EBVARFFTW_INC_DIR} -+ ++ + # VTK library +VTKDIR_INC = ${EBROOTVTK}/include/vtk-`echo $EBVERSIONVTK | cut -f1-2 -d.` +VTKDIR_LIB = ${EBROOTVTK}/lib @@ -103,12 +103,12 @@ diff -ur fsl.orig/config/linux_64-gcc4.8/systemvars.mk fsl/config/linux_64-gcc4. -TCLSH = ${FSLDIR}/bin/fsltclsh +TCLSH = tclsh RANLIB = echo - + FSLML = ${FSLDIR}/bin/fslml @@ -18,9 +18,9 @@ - + # Compiler dependent variables - + -CC = gcc -CXX = c++ -CXX11 = scl enable devtoolset-2 -- c++ @@ -117,18 +117,18 @@ diff -ur fsl.orig/config/linux_64-gcc4.8/systemvars.mk fsl/config/linux_64-gcc4. +CXX11 = ${CXX} -std=c++11 CSTATICFLAGS = -static CXXSTATICFLAGS = -static - + @@ -30,16 +30,16 @@ - + DEPENDFLAGS = -MM - + -OPTFLAGS = -g -O3 -fexpensive-optimizations ${ARCHFLAGS} +OPTFLAGS := ${OPTFLAGS} ${ARCHFLAGS} MACHDBGFLAGS = -g GNU_ANSI_FLAGS = -Wall -ansi -pedantic -Wno-long-long SGI_ANSI_FLAGS = -ansi -fullwarn ANSI_FLAGS = ${GNU_ANSI_FLAGS} - + # CUDA development environment -CUDA_INSTALLATION = /opt/cuda-7.5 +CUDA_INSTALLATION = ${EBROOTCUDA} @@ -144,11 +144,11 @@ diff -ur fsl.orig/etc/fslconf/fsl.csh fsl/etc/fslconf/fsl.csh @@ -25,7 +25,7 @@ # The following variables specify paths for programs and can be changed # or replaced by different programs ( e.g. FSLDISPLAY=open for MacOSX) - + -setenv FSLTCLSH $FSLDIR/bin/fsltclsh +setenv FSLTCLSH tclsh setenv FSLWISH $FSLDIR/bin/fslwish - + # The following variables are used for running code in parallel across diff -ur fsl.orig/etc/fslconf/fsl-devel.sh fsl/etc/fslconf/fsl-devel.sh --- fsl.orig/etc/fslconf/fsl-devel.sh 2014-05-19 16:54:10.000000000 +0200 @@ -156,29 +156,29 @@ diff -ur fsl.orig/etc/fslconf/fsl-devel.sh fsl/etc/fslconf/fsl-devel.sh @@ -26,7 +26,7 @@ # The following variables specify paths for programs and can be changed # or replaced by different programs ( e.g. FSLDISPLAY=open for MacOSX) - + -FSLTCLSH=$FSLDIR/bin/fsltclsh +FSLTCLSH=tclsh FSLWISH=$FSLDIR/bin/fslwish - - export FSLTCLSH FSLWISH + + export FSLTCLSH FSLWISH diff -ur fsl.orig/etc/fslconf/fsl.sh fsl/etc/fslconf/fsl.sh --- fsl.orig/etc/fslconf/fsl.sh 2014-05-19 16:54:10.000000000 +0200 +++ fsl/etc/fslconf/fsl.sh 2017-05-24 09:38:05.912369589 +0200 @@ -26,7 +26,7 @@ # The following variables specify paths for programs and can be changed # or replaced by different programs ( e.g. FSLDISPLAY=open for MacOSX) - + -FSLTCLSH=$FSLDIR/bin/fsltclsh +FSLTCLSH=tclsh FSLWISH=$FSLDIR/bin/fslwish - - export FSLTCLSH FSLWISH + + export FSLTCLSH FSLWISH diff -ur fsl.orig/extras/src/libxml++-2.34.0/libxml++/io/istreamparserinputbuffer.cc fsl/extras/src/libxml++-2.34.0/libxml++/io/istreamparserinputbuffer.cc --- fsl.orig/extras/src/libxml++-2.34.0/libxml++/io/istreamparserinputbuffer.cc 2010-12-15 11:41:27.000000000 +0100 +++ fsl/extras/src/libxml++-2.34.0/libxml++/io/istreamparserinputbuffer.cc 2017-05-24 09:38:05.913369598 +0200 @@ -39,6 +39,6 @@ - + bool IStreamParserInputBuffer::do_close() { - return input_; @@ -195,7 +195,7 @@ diff -ur fsl.orig/extras/src/libxml++-2.34.0/libxml++/io/ostreamoutputbuffer.cc - return output_; + return static_cast(output_); } - + bool OStreamOutputBuffer::do_close() { if(output_) @@ -209,45 +209,45 @@ diff -ur fsl.orig/src/film/Makefile fsl/src/film/Makefile +++ fsl/src/film/Makefile 2017-05-24 09:38:05.913369598 +0200 @@ -28,7 +28,7 @@ ${CXX} ${CXXFLAGS} ${LDFLAGS} -o $@ ${OBJS} ftoz.o ${LIBS} - + film_gls:${OBJS} film_gls.o - ${CXX} ${CXXFLAGS} ${LDFLAGS} -o $@ ${OBJS} film_gls.o ${LIBS} -l giftiio + ${CXX} ${CXXFLAGS} ${LDFLAGS} -o $@ ${OBJS} film_gls.o ${LIBS} -lgiftiio - + film_gls_res:${OBJS} film_gls_res.o ${CXX} ${CXXFLAGS} ${LDFLAGS} -o $@ ${OBJS} film_gls_res.o ${LIBS} diff -ur fsl.orig/src/libmeshutils/Makefile fsl/src/libmeshutils/Makefile --- fsl.orig/src/libmeshutils/Makefile 2012-07-23 15:25:20.000000000 +0200 +++ fsl/src/libmeshutils/Makefile 2017-05-24 09:38:05.913369598 +0200 @@ -3,7 +3,7 @@ - + PROJNAME = meshUtils - + -LD_LIBRARY_PATH=${FSLDIR}/lib +#LD_LIBRARY_PATH=${FSLDIR}/lib - - USRINCFLAGS = -I${INC_NEWMAT} -I${INC_ZLIB} -I${INC_PROB} -I${INC_BOOST} + + USRINCFLAGS = -I${INC_NEWMAT} -I${INC_ZLIB} -I${INC_PROB} -I${INC_BOOST} USRLDFLAGS = -L${LIB_PROB} -L${LIB_NEWMAT} -L${LIB_ZLIB} diff -ur fsl.orig/src/mist-clean/Makefile fsl/src/mist-clean/Makefile --- fsl.orig/src/mist-clean/Makefile 2017-04-20 14:17:54.000000000 +0200 +++ fsl/src/mist-clean/Makefile 2017-05-24 09:38:05.913369598 +0200 @@ -2,15 +2,15 @@ - + NLOPT_INC = ${FSLEXTINC} NLOPT_LIB = ${FSLEXTLIB} -SQLITE_INC = ${FSLEXTINC}/libsqlite -SQLITE_LIB = ${FSLEXTLIB} +SQLITE_INC = ${EBROOTSQLITE}/include +SQLITE_LIB = ${EBROOTSQLITE}/lib - + PROJNAME = mist - + XFILES = mist/mist SCRIPTS = bin/mist_1_train bin/mist_2_fit bin/mist_FA_reg bin/mist_display bin/mist_mesh_utils - + -USRCXXFLAGS = -std=c++11 # EB: needed to correctly (dynamically) link with the Boost log libs +USRCXXFLAGS = -std=c++11 -DBOOST_LOG_DYN_LINK USRINCFLAGS = -I${FSLDIR}/include/newimage -I${INC_NEWMAT} -I${INC_ZLIB} -I${INC_GDC} -I${INC_GD} -I${SQLITE_INC} -I${NLOPT_INC} -I${VTKDIR_INC} -Icommon USRLDFLAGS = -L${LIB_NEWMAT} -L${LIB_ZLIB} -L${LIB_BOOST} -L${LIB_GDC} -L${LIB_GD} -L${NLOPT_LIB} -L${VTKDIR_LIB} - + -- GitLab From a80f9ff2b305ad2c9082e07718565629a00fe7eb Mon Sep 17 00:00:00 2001 From: Ward Poelmans Date: Wed, 24 May 2017 10:55:41 +0200 Subject: [PATCH 101/608] Fix VTK patch in makefile --- easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch b/easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch index c9f8391467..cd68478001 100644 --- a/easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch +++ b/easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch @@ -90,9 +90,9 @@ diff -ur fsl.orig/config/linux_64-gcc4.8/externallibs.mk fsl/config/linux_64-gcc +INC_FFTW3 = ${EBVARFFTW_INC_DIR} + + # VTK library -+VTKDIR_INC = ${EBROOTVTK}/include/vtk-`echo $EBVERSIONVTK | cut -f1-2 -d.` ++VTKDIR_INC = ${EBROOTVTK}/include/vtk-`echo ${EBVERSIONVTK} | cut -f1-2 -d.` +VTKDIR_LIB = ${EBROOTVTK}/lib -+VTKSUFFIX = -`echo $EBVERSIONVTK | cut -f1-2 -d.` ++VTKSUFFIX = -`echo ${EBVERSIONVTK} | cut -f1-2 -d.` diff -ur fsl.orig/config/linux_64-gcc4.8/systemvars.mk fsl/config/linux_64-gcc4.8/systemvars.mk --- fsl.orig/config/linux_64-gcc4.8/systemvars.mk 2017-02-18 13:20:05.000000000 +0100 +++ fsl/config/linux_64-gcc4.8/systemvars.mk 2017-05-24 09:38:05.912369589 +0200 -- GitLab From 38913dfcb6952029cc0846799fcc48c8cbfc4f6e Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 24 May 2017 11:24:27 +0200 Subject: [PATCH 102/608] {bio}[intel/2017a] VariantMetaCaller 1.0 --- .../VariantMetaCaller-1.0-intel-2017a.eb | 24 +++++++++++++++ ...VariantMetaCaller-1.0_fix-hardcoding.patch | 29 +++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 easybuild/easyconfigs/v/VariantMetaCaller/VariantMetaCaller-1.0-intel-2017a.eb create mode 100644 easybuild/easyconfigs/v/VariantMetaCaller/VariantMetaCaller-1.0_fix-hardcoding.patch diff --git a/easybuild/easyconfigs/v/VariantMetaCaller/VariantMetaCaller-1.0-intel-2017a.eb b/easybuild/easyconfigs/v/VariantMetaCaller/VariantMetaCaller-1.0-intel-2017a.eb new file mode 100644 index 0000000000..122e215269 --- /dev/null +++ b/easybuild/easyconfigs/v/VariantMetaCaller/VariantMetaCaller-1.0-intel-2017a.eb @@ -0,0 +1,24 @@ +easyblock = 'MakeCp' + +name = 'VariantMetaCaller' +version = '1.0' + +homepage = 'http://bioinformatics.mit.bme.hu/VariantMetaCaller/' +description = """VariantMetaCaller automatically integrates variant calling pipelines into a better performing + overall model that also predicts accurate variant probabilities.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['http://bioinformatics.mit.bme.hu/VariantMetaCaller/'] +sources = ['%(name)s_v%(version)s.tar.gz'] + +patches = ['VariantMetaCaller-%(version)s_fix-hardcoding.patch'] + +files_to_copy = [(['VariantMetaCaller'], 'bin')] + +sanity_check_paths = { + 'files': ['bin/VariantMetaCaller'], + 'dirs': [], +} + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/v/VariantMetaCaller/VariantMetaCaller-1.0_fix-hardcoding.patch b/easybuild/easyconfigs/v/VariantMetaCaller/VariantMetaCaller-1.0_fix-hardcoding.patch new file mode 100644 index 0000000000..3d14a49394 --- /dev/null +++ b/easybuild/easyconfigs/v/VariantMetaCaller/VariantMetaCaller-1.0_fix-hardcoding.patch @@ -0,0 +1,29 @@ +fix hardcoding of g++ and optimisation flags +fix minor compilation issue "no operator "<<" matches these operands" +author: Kenneth Hoste (HPC-UGent) +diff --git a/VariantMetaCaller_v1.0/makefile.orig b/VariantMetaCaller_v1.0/makefile +index 78ff65d..c49027d 100644 +--- a/VariantMetaCaller_v1.0/makefile.orig ++++ b/VariantMetaCaller_v1.0/makefile +@@ -37,7 +37,7 @@ all: VariantMetaCaller + VariantMetaCaller: $(OBJS) $(USER_OBJS) + @echo 'Building target: $@' + @echo 'Invoking: GCC C++ Linker' +- g++ -o"VariantMetaCaller" $(OBJS) $(USER_OBJS) $(LIBS) -fopenmp ++ ${CXX} ${CXXFLAGS} -o"VariantMetaCaller" $(OBJS) $(USER_OBJS) $(LIBS) -fopenmp + @echo 'Finished building target: $@' + @echo ' ' + +diff --git a/VariantMetaCaller_v1.0/subdir.mk.orig b/VariantMetaCaller_v1.0/subdir.mk +index 530defe..110d8f3 100644 +--- a/VariantMetaCaller_v1.0/subdir.mk.orig ++++ b/VariantMetaCaller_v1.0/subdir.mk +@@ -35,7 +35,7 @@ genotypePrioritizer.d + ./%.o: %.cpp + @echo 'Building file: $<' + @echo 'Invoking: GCC C++ Compiler' +- g++ -O0 -g3 -Wall -c -fmessage-length=0 -std=c++11 -fopenmp -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o"$@" "$<" ++ ${CXX} ${CXXFLAGS} -Wall -c -fmessage-length=0 -std=c++11 -fopenmp -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o"$@" "$<" + @echo 'Finished building: $<' + @echo ' ' + -- GitLab From a1967a73483c9123654218c749ce232395927b77 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 24 May 2017 11:43:18 +0200 Subject: [PATCH 103/608] fix remarks --- .../v/VariantMetaCaller/VariantMetaCaller-1.0-intel-2017a.eb | 1 + .../VariantMetaCaller-1.0_fix-hardcoding.patch | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/v/VariantMetaCaller/VariantMetaCaller-1.0-intel-2017a.eb b/easybuild/easyconfigs/v/VariantMetaCaller/VariantMetaCaller-1.0-intel-2017a.eb index 122e215269..d77e58e531 100644 --- a/easybuild/easyconfigs/v/VariantMetaCaller/VariantMetaCaller-1.0-intel-2017a.eb +++ b/easybuild/easyconfigs/v/VariantMetaCaller/VariantMetaCaller-1.0-intel-2017a.eb @@ -8,6 +8,7 @@ description = """VariantMetaCaller automatically integrates variant calling pipe overall model that also predicts accurate variant probabilities.""" toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'cstd': 'c++11', 'openmp': True} source_urls = ['http://bioinformatics.mit.bme.hu/VariantMetaCaller/'] sources = ['%(name)s_v%(version)s.tar.gz'] diff --git a/easybuild/easyconfigs/v/VariantMetaCaller/VariantMetaCaller-1.0_fix-hardcoding.patch b/easybuild/easyconfigs/v/VariantMetaCaller/VariantMetaCaller-1.0_fix-hardcoding.patch index 3d14a49394..efa19b4c6e 100644 --- a/easybuild/easyconfigs/v/VariantMetaCaller/VariantMetaCaller-1.0_fix-hardcoding.patch +++ b/easybuild/easyconfigs/v/VariantMetaCaller/VariantMetaCaller-1.0_fix-hardcoding.patch @@ -10,7 +10,7 @@ index 78ff65d..c49027d 100644 @echo 'Building target: $@' @echo 'Invoking: GCC C++ Linker' - g++ -o"VariantMetaCaller" $(OBJS) $(USER_OBJS) $(LIBS) -fopenmp -+ ${CXX} ${CXXFLAGS} -o"VariantMetaCaller" $(OBJS) $(USER_OBJS) $(LIBS) -fopenmp ++ ${CXX} ${CXXFLAGS} ${LDFLAGS} -o"VariantMetaCaller" $(OBJS) $(USER_OBJS) $(LIBS) @echo 'Finished building target: $@' @echo ' ' @@ -23,7 +23,7 @@ index 530defe..110d8f3 100644 @echo 'Building file: $<' @echo 'Invoking: GCC C++ Compiler' - g++ -O0 -g3 -Wall -c -fmessage-length=0 -std=c++11 -fopenmp -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o"$@" "$<" -+ ${CXX} ${CXXFLAGS} -Wall -c -fmessage-length=0 -std=c++11 -fopenmp -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o"$@" "$<" ++ ${CXX} ${CXXFLAGS} -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o"$@" "$<" @echo 'Finished building: $<' @echo ' ' -- GitLab From 0bcd09ed9c394849f9c947485b5a4e914570681d Mon Sep 17 00:00:00 2001 From: Ward Poelmans Date: Wed, 24 May 2017 14:52:31 +0200 Subject: [PATCH 104/608] Small fixes --- .../easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch | 9 ++++++--- .../v/VTK/VTK-7.1.1-intel-2017a-Python-2.7.13.eb | 1 + 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch b/easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch index cd68478001..8801e205ce 100644 --- a/easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch +++ b/easybuild/easyconfigs/f/FSL/FSL-5.0.10_makefile_fixes.patch @@ -147,7 +147,8 @@ diff -ur fsl.orig/etc/fslconf/fsl.csh fsl/etc/fslconf/fsl.csh -setenv FSLTCLSH $FSLDIR/bin/fsltclsh +setenv FSLTCLSH tclsh - setenv FSLWISH $FSLDIR/bin/fslwish +-setenv FSLWISH $FSLDIR/bin/fslwish ++setenv FSLWISH wish # The following variables are used for running code in parallel across diff -ur fsl.orig/etc/fslconf/fsl-devel.sh fsl/etc/fslconf/fsl-devel.sh @@ -159,7 +160,8 @@ diff -ur fsl.orig/etc/fslconf/fsl-devel.sh fsl/etc/fslconf/fsl-devel.sh -FSLTCLSH=$FSLDIR/bin/fsltclsh +FSLTCLSH=tclsh - FSLWISH=$FSLDIR/bin/fslwish +-FSLWISH=$FSLDIR/bin/fslwish ++FSLWISH=wish export FSLTCLSH FSLWISH diff -ur fsl.orig/etc/fslconf/fsl.sh fsl/etc/fslconf/fsl.sh @@ -171,7 +173,8 @@ diff -ur fsl.orig/etc/fslconf/fsl.sh fsl/etc/fslconf/fsl.sh -FSLTCLSH=$FSLDIR/bin/fsltclsh +FSLTCLSH=tclsh - FSLWISH=$FSLDIR/bin/fslwish +-FSLWISH=$FSLDIR/bin/fslwish ++FSLWISH=wish export FSLTCLSH FSLWISH diff -ur fsl.orig/extras/src/libxml++-2.34.0/libxml++/io/istreamparserinputbuffer.cc fsl/extras/src/libxml++-2.34.0/libxml++/io/istreamparserinputbuffer.cc diff --git a/easybuild/easyconfigs/v/VTK/VTK-7.1.1-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/v/VTK/VTK-7.1.1-intel-2017a-Python-2.7.13.eb index 79963c3515..e0221778a4 100644 --- a/easybuild/easyconfigs/v/VTK/VTK-7.1.1-intel-2017a-Python-2.7.13.eb +++ b/easybuild/easyconfigs/v/VTK/VTK-7.1.1-intel-2017a-Python-2.7.13.eb @@ -34,6 +34,7 @@ sources = [ builddependencies = [('CMake', '3.8.0')] dependencies = [ + ('HDF5', '1.8.18'), ('Python', '2.7.13'), ('libGLU', '9.0.0'), ('X11', '20170314'), -- GitLab From 02dd8d32e9b5b4deeb1f2641f51973d70ae687ac Mon Sep 17 00:00:00 2001 From: jrbosch Date: Fri, 26 May 2017 11:00:51 -0400 Subject: [PATCH 105/608] add easyconfig Biopython 1.68 for foss 2016b Python 3.5.2 --- .../Biopython-1.68-foss-2016b-Python-3.5.2.eb | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 easybuild/easyconfigs/b/Biopython/Biopython-1.68-foss-2016b-Python-3.5.2.eb diff --git a/easybuild/easyconfigs/b/Biopython/Biopython-1.68-foss-2016b-Python-3.5.2.eb b/easybuild/easyconfigs/b/Biopython/Biopython-1.68-foss-2016b-Python-3.5.2.eb new file mode 100644 index 0000000000..82e737e6cf --- /dev/null +++ b/easybuild/easyconfigs/b/Biopython/Biopython-1.68-foss-2016b-Python-3.5.2.eb @@ -0,0 +1,38 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# +# Copyright:: Copyright 2012-2013 The Cyprus Institute +# Authors:: Andreas Panteli , Thekla Loizou , +# George Tsouloupas +# License:: MIT/GPL +# +## +easyblock = 'PythonPackage' + +name = 'Biopython' +version = '1.68' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://www.biopython.org' +description = """Biopython is a set of freely available tools for biological computation written +in Python by an international team of developers. It is a distributed collaborative effort to +develop Python libraries and applications which address the needs of current and future work in +bioinformatics. """ + +toolchain = {'name': 'foss', 'version': '2016b'} + +source_urls = ['http://biopython.org/DIST'] +sources = [SOURCELOWER_TAR_GZ] + +dependencies = [ + ('Python', '3.5.2') +] + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages/Bio', 'lib/python%(pyshortver)s/site-packages/BioSQL'] +} + +options = {'modulename': 'Bio'} + +moduleclass = 'bio' -- GitLab From f53b549a86ae0612078bbcc138603986d7a57444 Mon Sep 17 00:00:00 2001 From: Daniel Kinnamon Date: Fri, 26 May 2017 12:11:34 -0400 Subject: [PATCH 106/608] adding easyconfigs: Aspera-CLI-3.7.2.354.010c3b8.eb --- .../Aspera-CLI-3.7.2.354.010c3b8.eb | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 easybuild/easyconfigs/a/Aspera-CLI/Aspera-CLI-3.7.2.354.010c3b8.eb diff --git a/easybuild/easyconfigs/a/Aspera-CLI/Aspera-CLI-3.7.2.354.010c3b8.eb b/easybuild/easyconfigs/a/Aspera-CLI/Aspera-CLI-3.7.2.354.010c3b8.eb new file mode 100644 index 0000000000..44c70d7c08 --- /dev/null +++ b/easybuild/easyconfigs/a/Aspera-CLI/Aspera-CLI-3.7.2.354.010c3b8.eb @@ -0,0 +1,40 @@ +# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# Author: Daniel D. Kinnamon +# Division of Human Genetics +# The Ohio State University Wexner Medical Center + +easyblock = 'Tarball' + +name = 'Aspera-CLI' +version = '3.7.2' +versionsuffix = '.354.010c3b8' + +homepage = 'http://asperasoft.com' +docurls = ['http://downloads.asperasoft.com/en/documentation/62'] +description = """IBM Aspera Command-Line Interface (the Aspera CLI) is +a collection of Aspera tools for performing high-speed, secure data +transfers from the command line. The Aspera CLI is for users and +organizations who want to automate their transfer workflows.""" + +toolchain = {'name': 'dummy', 'version': 'dummy'} + +# Aspera CLI install script includes tarball inline and installs to a +# fixed location. Need to include custom extract command to pull +# tarball out of install script and pipe to tar. %s in the extraction +# command will be replaced by the source filename. +sources = [ + ('%(namelower)s-%(version)s%(versionsuffix)s-linux-64-release.sh', + "sed '1,/^__ARCHIVE_FOLLOWS__$/d' %s |" + + 'tar -xzpo --strip-components 1 -f -') +] +source_urls = ['http://download.asperasoft.com/download/sw/cli/%(version)s'] +checksums = ['02787ca46814fb9ae2de5c706461367e'] + +sanity_check_paths = { + 'files': ['product-info.mf'], + 'dirs': ['bin', 'certs', 'docs', 'etc', 'share/man'] +} + +sanity_check_commands = ['ascp -h', 'man ascp -P cat'] + +moduleclass = 'tools' -- GitLab From aa87ae52227decd252fb4ed609cda6d89e81fee4 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Mon, 29 May 2017 11:32:26 +1200 Subject: [PATCH 107/608] Add CDK version suffix --- ...GI-16.1-GCC-4.9.2-2.25.eb => PGI-16.1-CDK-GCC-4.9.2-2.25.eb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename easybuild/easyconfigs/p/PGI/{PGI-16.1-GCC-4.9.2-2.25.eb => PGI-16.1-CDK-GCC-4.9.2-2.25.eb} (91%) diff --git a/easybuild/easyconfigs/p/PGI/PGI-16.1-GCC-4.9.2-2.25.eb b/easybuild/easyconfigs/p/PGI/PGI-16.1-CDK-GCC-4.9.2-2.25.eb similarity index 91% rename from easybuild/easyconfigs/p/PGI/PGI-16.1-GCC-4.9.2-2.25.eb rename to easybuild/easyconfigs/p/PGI/PGI-16.1-CDK-GCC-4.9.2-2.25.eb index 5972e15b28..d25dc435ae 100644 --- a/easybuild/easyconfigs/p/PGI/PGI-16.1-GCC-4.9.2-2.25.eb +++ b/easybuild/easyconfigs/p/PGI/PGI-16.1-CDK-GCC-4.9.2-2.25.eb @@ -11,7 +11,7 @@ checksums = ['442c044b9690a84b6600cd6919480bcb'] gccver = '4.9.2' binutilsver = '2.25' -versionsuffix = '-GCC-%s-%s' % (gccver, binutilsver) +versionsuffix = '-CDK-GCC-%s-%s' % (gccver, binutilsver) dependencies = [ ('GCCcore', gccver), -- GitLab From 54f63e63bedcce71d3698b0ec7548627573358a7 Mon Sep 17 00:00:00 2001 From: Balazs Hajgato Date: Mon, 29 May 2017 12:30:46 +0200 Subject: [PATCH 108/608] {bio}[intel/2017a] Bio-SamTools 1.43 w/Perl-5.24.1 (REVIEW) --- ...o-SamTools-1.43-intel-2017a-Perl-5.24.1.eb | 27 ++++++++++ .../b/Bio-SamTools/Bio-SamTools-1.43.patch | 54 +++++++++++++++++++ .../s/SAMtools/SAMtools-0.1.17-intel-2017a.eb | 21 ++++++++ 3 files changed, 102 insertions(+) create mode 100644 easybuild/easyconfigs/b/Bio-SamTools/Bio-SamTools-1.43-intel-2017a-Perl-5.24.1.eb create mode 100644 easybuild/easyconfigs/b/Bio-SamTools/Bio-SamTools-1.43.patch create mode 100644 easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.17-intel-2017a.eb diff --git a/easybuild/easyconfigs/b/Bio-SamTools/Bio-SamTools-1.43-intel-2017a-Perl-5.24.1.eb b/easybuild/easyconfigs/b/Bio-SamTools/Bio-SamTools-1.43-intel-2017a-Perl-5.24.1.eb new file mode 100644 index 0000000000..f1f376b07b --- /dev/null +++ b/easybuild/easyconfigs/b/Bio-SamTools/Bio-SamTools-1.43-intel-2017a-Perl-5.24.1.eb @@ -0,0 +1,27 @@ +easyblock = 'PerlModule' + +name = 'Bio-SamTools' +version = '1.43' +versionsuffix = '-Perl-%(perlver)s' + +homepage = 'http://search.cpan.org/~lds/Bio-SamTools/' +description = """This is a Perl interface to the SAMtools sequence alignment interface.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'pic': True} + +source_urls = ['http://search.cpan.org/CPAN/authors/id/L/LD/LDS'] +sources = [SOURCE_TAR_GZ] +#sources = [(SOURCE_TAR_GZ, 'tar -xzf %s && chmod -R +w .')] + +patches = ['%(name)s-%(version)s.patch'] + +dependencies = [ + ('Perl', '5.24.1'), + ('BioPerl', '1.7.1', versionsuffix), + ('SAMtools', '0.1.17'), +] + +options = {'modulename': 'Bio::DB::Sam'} + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/b/Bio-SamTools/Bio-SamTools-1.43.patch b/easybuild/easyconfigs/b/Bio-SamTools/Bio-SamTools-1.43.patch new file mode 100644 index 0000000000..d1342c786b --- /dev/null +++ b/easybuild/easyconfigs/b/Bio-SamTools/Bio-SamTools-1.43.patch @@ -0,0 +1,54 @@ +--- Bio-SamTools-1.43/Build.PL.orig 2016-02-12 20:31:32.000000000 +0100 ++++ Bio-SamTools-1.43/Build.PL 2017-05-26 13:22:23.318323680 +0200 +@@ -75,7 +75,7 @@ + $sam_include = $samtools + if -e "$samtools/$HeaderFile"; + $sam_include = "$samtools/include" +- if -e "$samtools/include/$HeaderFile"; ++ if -e "$samtools/include/bam/$HeaderFile"; + $sam_lib = $samtools + if -e "$samtools/$LibFile"; + $sam_lib = "$samtools/lib" +@@ -164,7 +164,7 @@ + } + + sub _samtools { +- $ENV{SAMTOOLS} || ++ $ENV{EBROOTSAMTOOLS} || + ( can_load(modules => {'Alien::SamTools' => undef, 'File::ShareDir' => undef}) && + File::ShareDir::dist_dir('Alien-SamTools')); + } +--- Bio-SamTools-1.43/c_bin/makefile.orig 2016-02-12 20:31:32.000000000 +0100 ++++ Bio-SamTools-1.43/c_bin/makefile 2017-05-26 13:44:43.770545813 +0200 +@@ -1,5 +1,5 @@ +-CC= gcc +-CFLAGS= -g -Wall -O2 -fPIC ++CC?= gcc ++CFLAGS?= -g -Wall -O2 -fPIC + DFLAGS= -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -D_USE_KNETFILE -D_CURSES_LIB=1 + INCLUDES= + LIBPATH= +--- Bio-SamTools-1.43/c_bin/bam2bedgraph.c.orig 2016-02-12 20:31:32.000000000 +0100 ++++ Bio-SamTools-1.43/c_bin/bam2bedgraph.c 2017-05-26 13:29:28.041584111 +0200 +@@ -1,5 +1,5 @@ + #include +-#include "sam.h" ++#include "bam/sam.h" + + typedef struct { + uint32_t ltid; +--- Bio-SamTools-1.43/lib/Bio/DB/Sam.xs.orig 2016-02-12 20:31:32.000000000 +0100 ++++ Bio-SamTools-1.43/lib/Bio/DB/Sam.xs 2017-05-29 11:56:51.145855185 +0200 +@@ -25,9 +25,9 @@ + + #include + #include +-#include "bam.h" +-#include "khash.h" +-#include "faidx.h" ++#include "bam/bam.h" ++#include "bam/khash.h" ++#include "bam/faidx.h" + + /* stolen from bam_aux.c */ + #define MAX_REGION 1<<29 diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.17-intel-2017a.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.17-intel-2017a.eb new file mode 100644 index 0000000000..0424b6875f --- /dev/null +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.17-intel-2017a.eb @@ -0,0 +1,21 @@ +name = 'SAMtools' +version = '0.1.17' + +homepage = 'http://www.htslib.org/' +description = """SAM Tools provide various utilities for manipulating alignments in the SAM format, + including sorting, merging, indexing and generating alignments in a per-position format.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'pic': True} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = ['https://github.com/samtools/%(namelower)s/archive/%(version)s'] + +#patches = ['SAMtools-%(version)s_Makefile-ncurses.patch'] + +dependencies = [ + ('ncurses', '6.0'), + ('zlib', '1.2.11'), +] + +moduleclass = 'bio' -- GitLab From 19a531697a174af059efe0d0e26cccc113a6f091 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 29 May 2017 14:27:06 +0200 Subject: [PATCH 109/608] add location to DotLib.pm to $PERL5LIB for SSPACE Basic --- .../SSPACE_Basic-2.1.1-intel-2017a-Perl-5.24.1.eb | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/s/SSPACE_Basic/SSPACE_Basic-2.1.1-intel-2017a-Perl-5.24.1.eb b/easybuild/easyconfigs/s/SSPACE_Basic/SSPACE_Basic-2.1.1-intel-2017a-Perl-5.24.1.eb index 9d51ecf299..d196a375f0 100644 --- a/easybuild/easyconfigs/s/SSPACE_Basic/SSPACE_Basic-2.1.1-intel-2017a-Perl-5.24.1.eb +++ b/easybuild/easyconfigs/s/SSPACE_Basic/SSPACE_Basic-2.1.1-intel-2017a-Perl-5.24.1.eb @@ -18,10 +18,13 @@ dependencies = [ ] sanity_check_paths = { - 'files': ['README', 'SSPACE_Basic.pl'], + 'files': ['dotlib/DotLib.pm', 'README', 'SSPACE_Basic.pl'], 'dirs': ['bin', 'tools'], } -modextrapaths = {'PATH': ''} +modextrapaths = { + 'PATH': '', + 'PERL5LIB': 'dotlib', +} moduleclass = 'bio' -- GitLab From c0d8aac7fe9ebda34b5d9a20aed248b8497a0560 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 29 May 2017 19:17:31 +0200 Subject: [PATCH 110/608] enable inclusion of version symbol by using --enable-ld-version-script configure option for LibTIFF --- easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-goolf-1.4.10.eb | 4 +++- easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-goolf-1.7.20.eb | 4 +++- easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-ictce-5.3.0.eb | 4 +++- .../easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2014.06.eb | 4 +++- easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2014b.eb | 4 +++- easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2015a.eb | 4 +++- easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2015b.eb | 2 ++ easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4-foss-2015a.eb | 2 ++ easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4-goolf-1.7.20.eb | 4 +++- easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4-intel-2015a.eb | 2 ++ .../easyconfigs/l/LibTIFF/LibTIFF-4.0.4beta-foss-2015a.eb | 4 +++- .../easyconfigs/l/LibTIFF/LibTIFF-4.0.4beta-intel-2015a.eb | 4 +++- easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-foss-2015a.eb | 2 ++ easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-foss-2016a.eb | 2 ++ easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-foss-2016b.eb | 2 ++ easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-intel-2016a.eb | 2 ++ easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-intel-2016b.eb | 2 ++ easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.7-intel-2017a.eb | 2 ++ 18 files changed, 45 insertions(+), 9 deletions(-) diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-goolf-1.4.10.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-goolf-1.4.10.eb index 9875af8f63..b741841310 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-goolf-1.4.10.eb @@ -18,13 +18,15 @@ version = '4.0.3' homepage = 'http://www.remotesensing.org/libtiff/' description = "tiff: Library and tools for reading and writing TIFF data files" +toolchain = {'name': 'goolf', 'version': '1.4.10'} + source_urls = [ 'http://download.osgeo.org/libtiff/', 'ftp://ftp.remotesensing.org/pub/libtiff/', ] sources = ['tiff-%(version)s.tar.gz'] -toolchain = {'name': 'goolf', 'version': '1.4.10'} +configopts = " --enable-ld-version-script " sanity_check_paths = { 'files': ['bin/tiffinfo'], diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-goolf-1.7.20.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-goolf-1.7.20.eb index 46a3c3ee49..1496187e7b 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-goolf-1.7.20.eb @@ -6,13 +6,15 @@ version = '4.0.3' homepage = 'http://www.remotesensing.org/libtiff/' description = "tiff: Library and tools for reading and writing TIFF data files" +toolchain = {'name': 'goolf', 'version': '1.7.20'} + source_urls = [ 'http://download.osgeo.org/libtiff/', 'ftp://ftp.remotesensing.org/pub/libtiff/', ] sources = ['tiff-%(version)s.tar.gz'] -toolchain = {'name': 'goolf', 'version': '1.7.20'} +configopts = " --enable-ld-version-script " sanity_check_paths = { 'files': ['bin/tiffinfo'], diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-ictce-5.3.0.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-ictce-5.3.0.eb index 87e3b72f57..3b637dfd68 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-ictce-5.3.0.eb @@ -18,13 +18,15 @@ version = '4.0.3' homepage = 'http://www.remotesensing.org/libtiff/' description = "tiff: Library and tools for reading and writing TIFF data files" +toolchain = {'name': 'ictce', 'version': '5.3.0'} + source_urls = [ 'http://download.osgeo.org/libtiff/', 'ftp://ftp.remotesensing.org/pub/libtiff/', ] sources = ['tiff-%(version)s.tar.gz'] -toolchain = {'name': 'ictce', 'version': '5.3.0'} +configopts = " --enable-ld-version-script " sanity_check_paths = { 'files': ['bin/tiffinfo'], diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2014.06.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2014.06.eb index e29ed51d54..2d0643c0a8 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2014.06.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2014.06.eb @@ -17,13 +17,15 @@ version = '4.0.3' homepage = 'http://www.remotesensing.org/libtiff/' description = "tiff: Library and tools for reading and writing TIFF data files" +toolchain = {'name': 'intel', 'version': '2014.06'} + source_urls = [ 'http://download.osgeo.org/libtiff/', 'ftp://ftp.remotesensing.org/pub/libtiff/', ] sources = ['tiff-%(version)s.tar.gz'] -toolchain = {'name': 'intel', 'version': '2014.06'} +configopts = " --enable-ld-version-script " sanity_check_paths = { 'files': ['bin/tiffinfo'], diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2014b.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2014b.eb index a06a26e3be..42a3e46a06 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2014b.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2014b.eb @@ -17,13 +17,15 @@ version = '4.0.3' homepage = 'http://www.remotesensing.org/libtiff/' description = "tiff: Library and tools for reading and writing TIFF data files" +toolchain = {'name': 'intel', 'version': '2014b'} + source_urls = [ 'http://download.osgeo.org/libtiff/', 'ftp://ftp.remotesensing.org/pub/libtiff/', ] sources = ['tiff-%(version)s.tar.gz'] -toolchain = {'name': 'intel', 'version': '2014b'} +configopts = " --enable-ld-version-script " sanity_check_paths = { 'files': ['bin/tiffinfo'], diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2015a.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2015a.eb index 36759b619b..a080abfe8e 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2015a.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2015a.eb @@ -17,6 +17,8 @@ version = '4.0.3' homepage = 'http://www.remotesensing.org/libtiff/' description = "tiff: Library and tools for reading and writing TIFF data files" +toolchain = {'name': 'intel', 'version': '2015a'} + source_urls = [ 'http://download.osgeo.org/libtiff/', 'ftp://ftp.remotesensing.org/pub/libtiff/', @@ -24,7 +26,7 @@ source_urls = [ sources = ['tiff-%(version)s.tar.gz'] checksums = ['051c1068e6a0627f461948c365290410'] -toolchain = {'name': 'intel', 'version': '2015a'} +configopts = " --enable-ld-version-script " sanity_check_paths = { 'files': ['bin/tiffinfo'], diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2015b.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2015b.eb index 245af77e27..769d5c3bf4 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2015b.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2015b.eb @@ -17,6 +17,8 @@ version = '4.0.3' homepage = 'http://www.remotesensing.org/libtiff/' description = "tiff: Library and tools for reading and writing TIFF data files" +configopts = " --enable-ld-version-script " + source_urls = [ 'http://download.osgeo.org/libtiff/', 'ftp://ftp.remotesensing.org/pub/libtiff/', diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4-foss-2015a.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4-foss-2015a.eb index 70578c5f23..9fdf349e0c 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4-foss-2015a.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4-foss-2015a.eb @@ -26,6 +26,8 @@ source_urls = [ ] sources = ['tiff-%(version)s.tar.gz'] +configopts = " --enable-ld-version-script " + sanity_check_paths = { 'files': ['bin/tiffinfo'], 'dirs': [], diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4-goolf-1.7.20.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4-goolf-1.7.20.eb index 8858538d5a..a8769ecc26 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4-goolf-1.7.20.eb @@ -6,13 +6,15 @@ version = '4.0.4' homepage = 'http://www.remotesensing.org/libtiff/' description = "tiff: Library and tools for reading and writing TIFF data files" +toolchain = {'name': 'goolf', 'version': '1.7.20'} + source_urls = [ 'http://download.osgeo.org/libtiff/', 'ftp://ftp.remotesensing.org/pub/libtiff/', ] sources = ['tiff-%(version)s.tar.gz'] -toolchain = {'name': 'goolf', 'version': '1.7.20'} +configopts = " --enable-ld-version-script " sanity_check_paths = { 'files': ['bin/tiffinfo'], diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4-intel-2015a.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4-intel-2015a.eb index 6b0d237d17..caf97944ef 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4-intel-2015a.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4-intel-2015a.eb @@ -26,6 +26,8 @@ source_urls = [ ] sources = ['tiff-%(version)s.tar.gz'] +configopts = " --enable-ld-version-script " + sanity_check_paths = { 'files': ['bin/tiffinfo'], 'dirs': [], diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4beta-foss-2015a.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4beta-foss-2015a.eb index accbb2bb0a..a7ec21003e 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4beta-foss-2015a.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4beta-foss-2015a.eb @@ -19,13 +19,15 @@ version = '4.0.4beta' homepage = 'http://www.remotesensing.org/libtiff/' description = "tiff: Library and tools for reading and writing TIFF data files" +toolchain = {'name': 'foss', 'version': '2015a'} + source_urls = [ 'http://download.osgeo.org/libtiff/', 'ftp://ftp.remotesensing.org/pub/libtiff/', ] sources = ['tiff-%(version)s.tar.gz'] -toolchain = {'name': 'foss', 'version': '2015a'} +configopts = " --enable-ld-version-script " sanity_check_paths = { 'files': ['bin/tiffinfo'], diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4beta-intel-2015a.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4beta-intel-2015a.eb index a1149ab376..2ebd87d4b6 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4beta-intel-2015a.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4beta-intel-2015a.eb @@ -18,13 +18,15 @@ version = '4.0.4beta' homepage = 'http://www.remotesensing.org/libtiff/' description = "tiff: Library and tools for reading and writing TIFF data files" +toolchain = {'name': 'intel', 'version': '2015a'} + source_urls = [ 'http://download.osgeo.org/libtiff/', 'ftp://ftp.remotesensing.org/pub/libtiff/', ] sources = ['tiff-%(version)s.tar.gz'] -toolchain = {'name': 'intel', 'version': '2015a'} +configopts = " --enable-ld-version-script " sanity_check_paths = { 'files': ['bin/tiffinfo'], diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-foss-2015a.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-foss-2015a.eb index 68f9ad3dc9..259a9d8bc6 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-foss-2015a.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-foss-2015a.eb @@ -26,6 +26,8 @@ source_urls = [ ] sources = ['tiff-%(version)s.tar.gz'] +configopts = " --enable-ld-version-script " + sanity_check_paths = { 'files': ['bin/tiffinfo'], 'dirs': [], diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-foss-2016a.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-foss-2016a.eb index d7aa3b2df4..f513557a05 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-foss-2016a.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-foss-2016a.eb @@ -25,6 +25,8 @@ source_urls = [ ] sources = ['tiff-%(version)s.tar.gz'] +configopts = " --enable-ld-version-script " + sanity_check_paths = { 'files': ['bin/tiffinfo'], 'dirs': [], diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-foss-2016b.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-foss-2016b.eb index 07fa7682ed..a7365c221f 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-foss-2016b.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-foss-2016b.eb @@ -25,6 +25,8 @@ source_urls = [ ] sources = ['tiff-%(version)s.tar.gz'] +configopts = " --enable-ld-version-script " + sanity_check_paths = { 'files': ['bin/tiffinfo'], 'dirs': [], diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-intel-2016a.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-intel-2016a.eb index ed490e66de..b666f47dc2 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-intel-2016a.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-intel-2016a.eb @@ -25,6 +25,8 @@ source_urls = [ ] sources = ['tiff-%(version)s.tar.gz'] +configopts = " --enable-ld-version-script " + sanity_check_paths = { 'files': ['bin/tiffinfo'], 'dirs': [], diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-intel-2016b.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-intel-2016b.eb index d8f291e4e8..9281e4ddc9 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-intel-2016b.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-intel-2016b.eb @@ -25,6 +25,8 @@ source_urls = [ ] sources = ['tiff-%(version)s.tar.gz'] +configopts = " --enable-ld-version-script " + sanity_check_paths = { 'files': ['bin/tiffinfo'], 'dirs': [], diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.7-intel-2017a.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.7-intel-2017a.eb index 9087c14aa4..073c1b3d60 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.7-intel-2017a.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.7-intel-2017a.eb @@ -25,6 +25,8 @@ source_urls = [ ] sources = ['tiff-%(version)s.tar.gz'] +configopts = " --enable-ld-version-script " + sanity_check_paths = { 'files': ['bin/tiffinfo'], 'dirs': [], -- GitLab From d143cc508767eff11a422fb8ed82940694e53d1d Mon Sep 17 00:00:00 2001 From: Daniel Kinnamon Date: Mon, 29 May 2017 15:44:44 -0400 Subject: [PATCH 111/608] Fixed multi-line command and sanity check error with man 2.6.3 --- .../easyconfigs/a/Aspera-CLI/Aspera-CLI-3.7.2.354.010c3b8.eb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/easybuild/easyconfigs/a/Aspera-CLI/Aspera-CLI-3.7.2.354.010c3b8.eb b/easybuild/easyconfigs/a/Aspera-CLI/Aspera-CLI-3.7.2.354.010c3b8.eb index 44c70d7c08..c5b603114d 100644 --- a/easybuild/easyconfigs/a/Aspera-CLI/Aspera-CLI-3.7.2.354.010c3b8.eb +++ b/easybuild/easyconfigs/a/Aspera-CLI/Aspera-CLI-3.7.2.354.010c3b8.eb @@ -24,8 +24,7 @@ toolchain = {'name': 'dummy', 'version': 'dummy'} # command will be replaced by the source filename. sources = [ ('%(namelower)s-%(version)s%(versionsuffix)s-linux-64-release.sh', - "sed '1,/^__ARCHIVE_FOLLOWS__$/d' %s |" + - 'tar -xzpo --strip-components 1 -f -') + "sed '1,/^__ARCHIVE_FOLLOWS__$/d' %s | tar -xzpo --strip-components 1 -f -") ] source_urls = ['http://download.asperasoft.com/download/sw/cli/%(version)s'] checksums = ['02787ca46814fb9ae2de5c706461367e'] @@ -35,6 +34,6 @@ sanity_check_paths = { 'dirs': ['bin', 'certs', 'docs', 'etc', 'share/man'] } -sanity_check_commands = ['ascp -h', 'man ascp -P cat'] +sanity_check_commands = ['ascp -h', 'man ascp'] moduleclass = 'tools' -- GitLab From 482f3b8a3b874e208b67b90758ff4c1c8943a37d Mon Sep 17 00:00:00 2001 From: Adam Huffman Date: Tue, 30 May 2017 06:42:30 +0100 Subject: [PATCH 112/608] adding easyconfigs: R-bundle-Bioconductor-3.5-intel-2017a-R-3.4.0.eb --- ...le-Bioconductor-3.5-intel-2017a-R-3.4.0.eb | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/easybuild/easyconfigs/r/R-bundle-Bioconductor/R-bundle-Bioconductor-3.5-intel-2017a-R-3.4.0.eb b/easybuild/easyconfigs/r/R-bundle-Bioconductor/R-bundle-Bioconductor-3.5-intel-2017a-R-3.4.0.eb index 80580237a7..9125415482 100644 --- a/easybuild/easyconfigs/r/R-bundle-Bioconductor/R-bundle-Bioconductor-3.5-intel-2017a-R-3.4.0.eb +++ b/easybuild/easyconfigs/r/R-bundle-Bioconductor/R-bundle-Bioconductor-3.5-intel-2017a-R-3.4.0.eb @@ -37,27 +37,27 @@ exts_filter = ("R -q --no-save", "library(%(ext_name)s)") # CRAN packages on which these Bioconductor packages depend are available in R module on which this depends # !! order of packages is important !! -# packages updated on May 11th 2017 +# packages updated on May 28th 2017 exts_list = [ ('BiocGenerics', '0.22.0', bioconductor_options), ('Biobase', '2.36.2', bioconductor_options), - ('S4Vectors', '0.14.0', bioconductor_options), - ('IRanges', '2.10.0', bioconductor_options), + ('S4Vectors', '0.14.2', bioconductor_options), + ('IRanges', '2.10.2', bioconductor_options), ('GenomeInfoDbData', '0.99.0', bioconductor_options), ('GenomeInfoDb', '1.12.0', bioconductor_options), ('AnnotationDbi', '1.38.0', bioconductor_options), ('zlibbioc', '1.22.0', bioconductor_options), ('XVector', '0.16.0', bioconductor_options), ('Biostrings', '2.44.0', bioconductor_options), - ('GenomicRanges', '1.28.1', bioconductor_options), + ('GenomicRanges', '1.28.3', bioconductor_options), ('BiocParallel', '1.10.1', bioconductor_options), ('Rsamtools', '1.28.0', bioconductor_options), ('lambda.r', '1.1.9', ext_options), ('futile.options', '1.0.0', ext_options), ('futile.logger', '1.4.3', ext_options), - ('DelayedArray', '0.2.2', bioconductor_options), + ('DelayedArray', '0.2.4', bioconductor_options), ('SummarizedExperiment', '1.6.1', bioconductor_options), - ('GenomicAlignments', '1.12.0', bioconductor_options), + ('GenomicAlignments', '1.12.1', bioconductor_options), ('ShortRead', '1.34.0', bioconductor_options), ('graph', '1.54.0', bioconductor_options), ('affyio', '1.46.0', bioconductor_options), @@ -83,7 +83,7 @@ exts_list = [ ('DEGseq', '1.30.0', bioconductor_options), ('hgu133plus2.db', '3.2.3', bioconductor_options), ('illuminaio', '0.18.0', bioconductor_options), - ('rtracklayer', '1.36.0', bioconductor_options), + ('rtracklayer', '1.36.3', bioconductor_options), ('biomaRt', '2.32.0', bioconductor_options), ('GenomicFeatures', '1.28.0', bioconductor_options), ('bumphunter', '1.16.0', bioconductor_options), @@ -97,15 +97,15 @@ exts_list = [ ('annotate', '1.54.0', bioconductor_options), ('GSEABase', '1.38.0', bioconductor_options), ('genefilter', '1.58.1', bioconductor_options), - ('Category', '2.38.0', bioconductor_options), + ('Category', '2.42.0', bioconductor_options), ('GOstats', '2.42.0', bioconductor_options), ('BSgenome', '1.44.0', bioconductor_options), - ('VariantAnnotation', '1.22.0', bioconductor_options), + ('VariantAnnotation', '1.22.1', bioconductor_options), ('interactiveDisplayBase', '1.14.0', bioconductor_options), ('AnnotationHub', '2.8.1', bioconductor_options), ('AnnotationFilter', '1.0.0', bioconductor_options), ('ProtGenerics', '1.8.0', bioconductor_options), - ('ensembldb', '2.0.1', bioconductor_options), + ('ensembldb', '2.0.2', bioconductor_options), ('biovizBase', '1.24.0', bioconductor_options), ('OrganismDbi', '1.18.0', bioconductor_options), ('ggbio', '1.24.0', bioconductor_options), @@ -139,7 +139,7 @@ exts_list = [ ('cummeRbund', '2.18.0', bioconductor_options), ('GenomicFiles', '1.12.0', bioconductor_options), ('derfinderHelper', '1.10.0', bioconductor_options), - ('derfinder', '1.10.3', bioconductor_options), + ('derfinder', '1.10.4', bioconductor_options), ('polyester', '1.12.0', bioconductor_options), ('Rsubread', '1.26.0', bioconductor_options), ('pcaMethods', '1.68.0', bioconductor_options), -- GitLab From 3f0ada5a6a3e896ab3d5f024164f312bd567fd82 Mon Sep 17 00:00:00 2001 From: Balazs Hajgato Date: Tue, 30 May 2017 09:00:31 +0200 Subject: [PATCH 113/608] comment added to patch, commendted line deleted, sanity check added --- .../Bio-SamTools-1.43-intel-2017a-Perl-5.24.1.eb | 6 +++++- .../easyconfigs/b/Bio-SamTools/Bio-SamTools-1.43.patch | 2 ++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/b/Bio-SamTools/Bio-SamTools-1.43-intel-2017a-Perl-5.24.1.eb b/easybuild/easyconfigs/b/Bio-SamTools/Bio-SamTools-1.43-intel-2017a-Perl-5.24.1.eb index f1f376b07b..0ba564434a 100644 --- a/easybuild/easyconfigs/b/Bio-SamTools/Bio-SamTools-1.43-intel-2017a-Perl-5.24.1.eb +++ b/easybuild/easyconfigs/b/Bio-SamTools/Bio-SamTools-1.43-intel-2017a-Perl-5.24.1.eb @@ -12,7 +12,6 @@ toolchainopts = {'pic': True} source_urls = ['http://search.cpan.org/CPAN/authors/id/L/LD/LDS'] sources = [SOURCE_TAR_GZ] -#sources = [(SOURCE_TAR_GZ, 'tar -xzf %s && chmod -R +w .')] patches = ['%(name)s-%(version)s.patch'] @@ -24,4 +23,9 @@ dependencies = [ options = {'modulename': 'Bio::DB::Sam'} +sanity_check_paths = { + 'files': ['bin/%s' % x for x in ['bam2bedgraph', 'bamToGBrowse.pl', 'chrom_sizes.pl', 'genomeCoverageBed.pl']], + 'dirs': ['lib/perl5/site_perl/%(perlver)s/x86_64-linux-thread-multi/%s' % x for x in ['auto', 'Bio']], +} + moduleclass = 'bio' diff --git a/easybuild/easyconfigs/b/Bio-SamTools/Bio-SamTools-1.43.patch b/easybuild/easyconfigs/b/Bio-SamTools/Bio-SamTools-1.43.patch index d1342c786b..836cc7a688 100644 --- a/easybuild/easyconfigs/b/Bio-SamTools/Bio-SamTools-1.43.patch +++ b/easybuild/easyconfigs/b/Bio-SamTools/Bio-SamTools-1.43.patch @@ -1,3 +1,5 @@ +# Take EB provided SAMtools, and use thge correct include path. Pick EB provided CC and CFLAGS as well +# May 29th 2017 by B. Hajgato (Free University Brussles - VUB) --- Bio-SamTools-1.43/Build.PL.orig 2016-02-12 20:31:32.000000000 +0100 +++ Bio-SamTools-1.43/Build.PL 2017-05-26 13:22:23.318323680 +0200 @@ -75,7 +75,7 @@ -- GitLab From 2488a83fd7a9abff45eb9fc3646c3ffdd8f5993c Mon Sep 17 00:00:00 2001 From: Balazs Hajgato Date: Tue, 30 May 2017 09:02:13 +0200 Subject: [PATCH 114/608] commendted line deleted --- easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.17-intel-2017a.eb | 2 -- 1 file changed, 2 deletions(-) diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.17-intel-2017a.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.17-intel-2017a.eb index 0424b6875f..53a5edea87 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.17-intel-2017a.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.17-intel-2017a.eb @@ -11,8 +11,6 @@ toolchainopts = {'pic': True} sources = [SOURCELOWER_TAR_GZ] source_urls = ['https://github.com/samtools/%(namelower)s/archive/%(version)s'] -#patches = ['SAMtools-%(version)s_Makefile-ncurses.patch'] - dependencies = [ ('ncurses', '6.0'), ('zlib', '1.2.11'), -- GitLab From 6b7fff6124dd480089a2e2c619ea05622bea40af Mon Sep 17 00:00:00 2001 From: Balazs Hajgato Date: Tue, 30 May 2017 09:05:27 +0200 Subject: [PATCH 115/608] Typo --- easybuild/easyconfigs/b/Bio-SamTools/Bio-SamTools-1.43.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/b/Bio-SamTools/Bio-SamTools-1.43.patch b/easybuild/easyconfigs/b/Bio-SamTools/Bio-SamTools-1.43.patch index 836cc7a688..22981ce8a4 100644 --- a/easybuild/easyconfigs/b/Bio-SamTools/Bio-SamTools-1.43.patch +++ b/easybuild/easyconfigs/b/Bio-SamTools/Bio-SamTools-1.43.patch @@ -1,4 +1,4 @@ -# Take EB provided SAMtools, and use thge correct include path. Pick EB provided CC and CFLAGS as well +# Take EB provided SAMtools, and use the correct include path. Pick EB provided CC and CFLAGS as well. # May 29th 2017 by B. Hajgato (Free University Brussles - VUB) --- Bio-SamTools-1.43/Build.PL.orig 2016-02-12 20:31:32.000000000 +0100 +++ Bio-SamTools-1.43/Build.PL 2017-05-26 13:22:23.318323680 +0200 -- GitLab From f74a8b87473783613e05ea29b2e7a3727f4d3c0f Mon Sep 17 00:00:00 2001 From: Balazs Hajgato Date: Tue, 30 May 2017 10:01:52 +0200 Subject: [PATCH 116/608] %% --- .../b/Bio-SamTools/Bio-SamTools-1.43-intel-2017a-Perl-5.24.1.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/b/Bio-SamTools/Bio-SamTools-1.43-intel-2017a-Perl-5.24.1.eb b/easybuild/easyconfigs/b/Bio-SamTools/Bio-SamTools-1.43-intel-2017a-Perl-5.24.1.eb index 0ba564434a..870337a366 100644 --- a/easybuild/easyconfigs/b/Bio-SamTools/Bio-SamTools-1.43-intel-2017a-Perl-5.24.1.eb +++ b/easybuild/easyconfigs/b/Bio-SamTools/Bio-SamTools-1.43-intel-2017a-Perl-5.24.1.eb @@ -25,7 +25,7 @@ options = {'modulename': 'Bio::DB::Sam'} sanity_check_paths = { 'files': ['bin/%s' % x for x in ['bam2bedgraph', 'bamToGBrowse.pl', 'chrom_sizes.pl', 'genomeCoverageBed.pl']], - 'dirs': ['lib/perl5/site_perl/%(perlver)s/x86_64-linux-thread-multi/%s' % x for x in ['auto', 'Bio']], + 'dirs': ['lib/perl5/site_perl/%%(perlver)s/x86_64-linux-thread-multi/%s' % x for x in ['auto', 'Bio']], } moduleclass = 'bio' -- GitLab From 97a13bcb686c35c4aa438e0c8025f7e15e933f37 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 30 May 2017 14:53:01 +0200 Subject: [PATCH 117/608] adding easyconfigs: GDAL-2.1.3-intel-2017a-Python-3.6.1.eb --- .../GDAL-2.1.3-intel-2017a-Python-3.6.1.eb | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 easybuild/easyconfigs/g/GDAL/GDAL-2.1.3-intel-2017a-Python-3.6.1.eb diff --git a/easybuild/easyconfigs/g/GDAL/GDAL-2.1.3-intel-2017a-Python-3.6.1.eb b/easybuild/easyconfigs/g/GDAL/GDAL-2.1.3-intel-2017a-Python-3.6.1.eb new file mode 100644 index 0000000000..cfd1d42ed3 --- /dev/null +++ b/easybuild/easyconfigs/g/GDAL/GDAL-2.1.3-intel-2017a-Python-3.6.1.eb @@ -0,0 +1,48 @@ +easyblock = 'ConfigureMake' + +name = 'GDAL' +version = '2.1.3' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://www.gdal.org/' +description = """GDAL is a translator library for raster geospatial data formats that is released under an X/MIT style + Open Source license by the Open Source Geospatial Foundation. As a library, it presents a single abstract data model + to the calling application for all supported formats. It also comes with a variety of useful commandline utilities for + data translation and processing.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'usempi': True} + +source_urls = ['http://download.osgeo.org/gdal/%(version)s/'] +sources = [SOURCELOWER_TAR_XZ] +patches = ['GDAL-%(version)s_fix-uchar-definition.patch'] + +dependencies = [ + ('Python', '3.6.1'), + ('netCDF', '4.4.1.1'), + ('expat', '2.2.0'), + ('GEOS', '3.6.1', versionsuffix), + ('SQLite', '3.17.0'), + ('libxml2', '2.9.4'), + ('libpng', '1.6.29'), + ('libjpeg-turbo', '1.5.1'), + ('JasPer', '2.0.12'), + ('LibTIFF', '4.0.7'), + ('zlib', '1.2.11'), + ('cURL', '7.53.1'), + ('PCRE', '8.40'), +] + +configopts = '--with-expat=$EBROOTEXPAT --with-libz=$EBROOTLIBZ --with-hdf5=$EBROOTHDF5 --with-netcdf=$EBROOTNETCDF' +configopts += ' --with-xml2=$EBROOTLIBXML2 --with-geos=$EBROOTGEOS/bin/geos-config --with-jpeg=$EBROOTLIBJPEGMINTURBO' +configopts += ' --with-png=$EBROOTLIBPNG --with-sqlite3=$EBROOTSQLITE --with-jasper=$EBROOTJASPER' +configopts += ' --with-libtiff=$EBROOTLIBTIFF --with-pcre=$EBROOTPCRE --with-python=$EBROOTPYTHON/bin/python' + +modextrapaths = {'PYTHONPATH': 'lib/python%(pyshortver)s/site-packages'} + +sanity_check_paths = { + 'files': ['lib/libgdal.a', 'lib/libgdal.%s' % SHLIB_EXT], + 'dirs': ['bin', 'include', 'lib/python%(pyshortver)s/site-packages'] +} + +moduleclass = 'data' -- GitLab From 6e0a1b93609cf2adde1bcabeef52593207497f33 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Wed, 31 May 2017 14:59:12 +1200 Subject: [PATCH 118/608] New Easyconfig for Doxygen 1.8.13 and certain dependencies with the gimkl 2017a toolchain --- .../b/Bison/Bison-3.0.4-gimkl-2017a.eb | 22 +++++++++++++++++++ .../d/Doxygen/Doxygen-1.8.13-gimkl-2017a.eb | 21 ++++++++++++++++++ .../f/flex/flex-2.6.3-gimkl-2017a.eb | 22 +++++++++++++++++++ .../h/help2man/help2man-1.47.4-gimkl-2017a.eb | 19 ++++++++++++++++ 4 files changed, 84 insertions(+) create mode 100644 easybuild/easyconfigs/b/Bison/Bison-3.0.4-gimkl-2017a.eb create mode 100644 easybuild/easyconfigs/d/Doxygen/Doxygen-1.8.13-gimkl-2017a.eb create mode 100644 easybuild/easyconfigs/f/flex/flex-2.6.3-gimkl-2017a.eb create mode 100644 easybuild/easyconfigs/h/help2man/help2man-1.47.4-gimkl-2017a.eb diff --git a/easybuild/easyconfigs/b/Bison/Bison-3.0.4-gimkl-2017a.eb b/easybuild/easyconfigs/b/Bison/Bison-3.0.4-gimkl-2017a.eb new file mode 100644 index 0000000000..7ef2e128f5 --- /dev/null +++ b/easybuild/easyconfigs/b/Bison/Bison-3.0.4-gimkl-2017a.eb @@ -0,0 +1,22 @@ +easyblock = 'ConfigureMake' + +name = 'Bison' +version = '3.0.4' + +homepage = 'http://www.gnu.org/software/bison' +description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar + into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables.""" + +toolchain = {'name': 'gimkl', 'version': '2017a'} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = [GNU_SOURCE] + +builddependencies = [('M4', '1.4.17', '', True)] + +sanity_check_paths = { + 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"], + 'dirs': [], +} + +moduleclass = 'lang' diff --git a/easybuild/easyconfigs/d/Doxygen/Doxygen-1.8.13-gimkl-2017a.eb b/easybuild/easyconfigs/d/Doxygen/Doxygen-1.8.13-gimkl-2017a.eb new file mode 100644 index 0000000000..5872a02692 --- /dev/null +++ b/easybuild/easyconfigs/d/Doxygen/Doxygen-1.8.13-gimkl-2017a.eb @@ -0,0 +1,21 @@ +name = 'Doxygen' +version = '1.8.13' + +homepage = 'http://www.doxygen.org' +description = """Doxygen is a documentation system for C++, C, Java, Objective-C, Python, + IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D.""" + +toolchain = {'name': 'gimkl', 'version': '2017a'} + +sources = ['%(namelower)s-%(version)s.src.tar.gz'] +source_urls = ['http://ftp.stack.nl/pub/users/dimitri/'] + +builddependencies = [ + ('CMake', '3.6.1', '', True), + ('flex', '2.6.3'), + ('Bison', '3.0.4'), +] + +parallel = 1 + +moduleclass = 'devel' diff --git a/easybuild/easyconfigs/f/flex/flex-2.6.3-gimkl-2017a.eb b/easybuild/easyconfigs/f/flex/flex-2.6.3-gimkl-2017a.eb new file mode 100644 index 0000000000..6d9bee0a21 --- /dev/null +++ b/easybuild/easyconfigs/f/flex/flex-2.6.3-gimkl-2017a.eb @@ -0,0 +1,22 @@ +name = 'flex' +version = '2.6.3' + +homepage = 'http://flex.sourceforge.net/' +description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner, + sometimes called a tokenizer, is a program which recognizes lexical patterns in text.""" + +toolchain = {'name': 'gimkl', 'version': '2017a'} +toolchainopts = {'pic': True} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = ['https://github.com/westes/flex/releases/download/v%(version)s/'] + +checksums = ['a5f65570cd9107ec8a8ec88f17b31bb1'] + +dependencies = [('M4', '1.4.17', '', True)] +builddependencies = [ + ('Bison', '3.0.4'), + ('help2man', '1.47.4'), +] + +moduleclass = 'lang' diff --git a/easybuild/easyconfigs/h/help2man/help2man-1.47.4-gimkl-2017a.eb b/easybuild/easyconfigs/h/help2man/help2man-1.47.4-gimkl-2017a.eb new file mode 100644 index 0000000000..f8074a8548 --- /dev/null +++ b/easybuild/easyconfigs/h/help2man/help2man-1.47.4-gimkl-2017a.eb @@ -0,0 +1,19 @@ +easyblock = 'ConfigureMake' + +name = 'help2man' +version = '1.47.4' + +homepage = 'https://www.gnu.org/software/help2man/' +description = """help2man produces simple manual pages from the '--help' and '--version' output of other commands.""" + +toolchain = {'name': 'gimkl', 'version': '2017a'} + +source_urls = [GNU_SOURCE] +sources = [SOURCE_TAR_XZ] + +sanity_check_paths = { + 'files': ['bin/help2man'], + 'dirs': [], +} + +moduleclass = 'tools' -- GitLab From 2751fbdc6cdc809fe36a7f31d5e266939ff490cd Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Wed, 31 May 2017 15:42:23 +1200 Subject: [PATCH 119/608] A 2017a version of the gimkl toolchain --- easybuild/easyconfigs/g/gimkl/gimkl-2017a.eb | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 easybuild/easyconfigs/g/gimkl/gimkl-2017a.eb diff --git a/easybuild/easyconfigs/g/gimkl/gimkl-2017a.eb b/easybuild/easyconfigs/g/gimkl/gimkl-2017a.eb new file mode 100644 index 0000000000..553786dd35 --- /dev/null +++ b/easybuild/easyconfigs/g/gimkl/gimkl-2017a.eb @@ -0,0 +1,19 @@ +easyblock = "Toolchain" + +name = 'gimkl' +version = '2017a' + +homepage = '(none)' +description = """GNU Compiler Collection (GCC) based compiler toolchain with Intel MPI and MKL""" + +toolchain = {'name': 'dummy', 'version': 'dummy'} + +comp = ('GCC', '5.4.0') + +dependencies = [ + comp, + ('impi', '2017.1.132', '', comp), + ('imkl', '2017.1.132', '', ('gimpi', version)), +] + +moduleclass = 'toolchain' -- GitLab From 4971ea3b19ffb8af7a0b2e0ebf97fc357cf2c053 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Wed, 31 May 2017 15:47:40 +1200 Subject: [PATCH 120/608] EasyConfig for CMake 3.6.1 with no particular toolchain --- easybuild/easyconfigs/c/CMake/CMake-3.6.1.eb | 28 ++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 easybuild/easyconfigs/c/CMake/CMake-3.6.1.eb diff --git a/easybuild/easyconfigs/c/CMake/CMake-3.6.1.eb b/easybuild/easyconfigs/c/CMake/CMake-3.6.1.eb new file mode 100644 index 0000000000..0e73857b1d --- /dev/null +++ b/easybuild/easyconfigs/c/CMake/CMake-3.6.1.eb @@ -0,0 +1,28 @@ +easyblock = 'ConfigureMake' + +name = 'CMake' +version = '3.6.1' + +homepage = 'http://www.cmake.org' +description = """CMake, the cross-platform, open-source build system. + CMake is a family of tools designed to build, test and package software.""" + +toolchain = {'name': 'dummy', 'version': 'dummy'} + +source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s'] +sources = [SOURCELOWER_TAR_GZ] + +configopts = '-- -DCMAKE_USE_OPENSSL=1' + +# Don't depend on anything, since we will use this to build other software +# which might want different versions of the same dependency, eg: ncurses +dependencies = [] + +osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')] + +sanity_check_paths = { + 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']], + 'dirs': [], +} + +moduleclass = 'devel' -- GitLab From 53b4a44a6c1a9ffab69de2ceb4540cf012836042 Mon Sep 17 00:00:00 2001 From: Adam Huffman Date: Wed, 31 May 2017 06:54:12 +0100 Subject: [PATCH 121/608] adding easyconfigs: buildenv-default-intel-2017a.eb --- .../b/buildenv/buildenv-default-intel-2017a.eb | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 easybuild/easyconfigs/b/buildenv/buildenv-default-intel-2017a.eb diff --git a/easybuild/easyconfigs/b/buildenv/buildenv-default-intel-2017a.eb b/easybuild/easyconfigs/b/buildenv/buildenv-default-intel-2017a.eb new file mode 100755 index 0000000000..ba8c60067e --- /dev/null +++ b/easybuild/easyconfigs/b/buildenv/buildenv-default-intel-2017a.eb @@ -0,0 +1,13 @@ +easyblock = 'BuildEnv' + +name = 'buildenv' +version = 'default' + +homepage = 'None' +description = """This module sets a group of environment variables for compilers, linkers, maths libraries, etc., that + you can use to easily transition between toolchains when building your software. To query the variables being set + please use: module show """ + +toolchain = {'name': 'intel', 'version': '2017a'} + +moduleclass = 'devel' -- GitLab From 073bc69b50039a97d6873a31137f238e1a9f4bc5 Mon Sep 17 00:00:00 2001 From: Robert Date: Wed, 31 May 2017 15:40:09 +0930 Subject: [PATCH 122/608] CNVnator added --- easybuild/easyconfigs/TEMPLATE.eb | 31 -------------- .../c/CNVnator/CNVnator-0.3.3-foss-2016b.eb | 40 +++++++++++++++++++ 2 files changed, 40 insertions(+), 31 deletions(-) delete mode 100644 easybuild/easyconfigs/TEMPLATE.eb create mode 100644 easybuild/easyconfigs/c/CNVnator/CNVnator-0.3.3-foss-2016b.eb diff --git a/easybuild/easyconfigs/TEMPLATE.eb b/easybuild/easyconfigs/TEMPLATE.eb deleted file mode 100644 index 69759ec8da..0000000000 --- a/easybuild/easyconfigs/TEMPLATE.eb +++ /dev/null @@ -1,31 +0,0 @@ -# Note: -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild -# It was auto-generated based on a template easyconfig, so it should be used with care. -easyblock = 'ConfigureMake' - -name = 'NAME' -version = 'VERSION' - -homepage = 'http://www.example.com' -description = """TEMPLATE DESCRIPTION""" - -# toolchain name should be 'TEMPLATE' if this is a template, so EasyBuild knows and is willing to use it as a template -toolchain = {'name': 'TEMPLATE', 'version': 'TK_VERSION'} -toolchainopts = {} # toolchain options, e.g. opt, pic, usempi, optarch, ... - -# For sources line to work correctly with --try-software-version, you MUST employ %s OR use a construct like SOURCE_TAR_GZ -sources = ['%(name)s-%(version)s.tar.gz'] -source_urls = ['http://www.example.com'] - -patches = [] - -dependencies = [] - -# The sanity test MUST be tuned before going production and submitting your contribution to upstream git repositories -sanity_check_paths = { - 'files': [], - 'dirs': ["."] -} - -# You SHOULD change the following line; Kindly consult other easyconfigs for possible options -moduleclass = 'base' diff --git a/easybuild/easyconfigs/c/CNVnator/CNVnator-0.3.3-foss-2016b.eb b/easybuild/easyconfigs/c/CNVnator/CNVnator-0.3.3-foss-2016b.eb new file mode 100644 index 0000000000..702088ee73 --- /dev/null +++ b/easybuild/easyconfigs/c/CNVnator/CNVnator-0.3.3-foss-2016b.eb @@ -0,0 +1,40 @@ +## +# This is a contribution from Phoenix HPC Service, The University of Adelaide, Australia +# Homepage: https://www.adelaide.edu.au/phoenix/ +# +# Copyright:: Copyright 2014-2017 adelaide.edu.au/phoenix +# Authors:: Robert Qiao , Exequiel Sepulveda +# License:: CCPL +# +# Notes:: +## + +easyblock = 'MakeCp' + +name = 'CNVnator' +version = '0.3.3' + +homepage = 'https://github.com/abyzovlab/CNVnator' +description = """ a tool for CNV discovery and genotyping from depth-of-coverage by mapped reads +""" + +toolchain = {'name': 'foss', 'version': '2016b'} + +sources = ['v%(version)s/%(name)s_v%(version)s.zip'] +source_urls = ['https://github.com/abyzovlab/CNVnator/releases/download'] + +dependencies = [ + ('Perl', '5.24.0'), +] + +skipsteps = ['build'] + +files_to_copy = [(['cnvnator2VCF.pl'], 'bin')] + + +sanity_check_paths = { + 'files': ['bin/cnvnator2VCF.pl'] , + 'dirs': [], +} + +moduleclass = 'bio' -- GitLab From e58bb5f0388828466c00673f51c987d8907acd55 Mon Sep 17 00:00:00 2001 From: Robert Qiao Date: Wed, 31 May 2017 15:54:51 +0930 Subject: [PATCH 123/608] correction --- easybuild/easyconfigs/TEMPLATE.eb | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 easybuild/easyconfigs/TEMPLATE.eb diff --git a/easybuild/easyconfigs/TEMPLATE.eb b/easybuild/easyconfigs/TEMPLATE.eb new file mode 100644 index 0000000000..69759ec8da --- /dev/null +++ b/easybuild/easyconfigs/TEMPLATE.eb @@ -0,0 +1,31 @@ +# Note: +# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# It was auto-generated based on a template easyconfig, so it should be used with care. +easyblock = 'ConfigureMake' + +name = 'NAME' +version = 'VERSION' + +homepage = 'http://www.example.com' +description = """TEMPLATE DESCRIPTION""" + +# toolchain name should be 'TEMPLATE' if this is a template, so EasyBuild knows and is willing to use it as a template +toolchain = {'name': 'TEMPLATE', 'version': 'TK_VERSION'} +toolchainopts = {} # toolchain options, e.g. opt, pic, usempi, optarch, ... + +# For sources line to work correctly with --try-software-version, you MUST employ %s OR use a construct like SOURCE_TAR_GZ +sources = ['%(name)s-%(version)s.tar.gz'] +source_urls = ['http://www.example.com'] + +patches = [] + +dependencies = [] + +# The sanity test MUST be tuned before going production and submitting your contribution to upstream git repositories +sanity_check_paths = { + 'files': [], + 'dirs': ["."] +} + +# You SHOULD change the following line; Kindly consult other easyconfigs for possible options +moduleclass = 'base' -- GitLab From b7117a7ee415d84ffa4312f7ea047ed3b43e1a2d Mon Sep 17 00:00:00 2001 From: Robert Date: Wed, 31 May 2017 15:57:06 +0930 Subject: [PATCH 124/608] style fixed --- easybuild/easyconfigs/c/CNVnator/CNVnator-0.3.3-foss-2016b.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/c/CNVnator/CNVnator-0.3.3-foss-2016b.eb b/easybuild/easyconfigs/c/CNVnator/CNVnator-0.3.3-foss-2016b.eb index 702088ee73..c3f9fc44b3 100644 --- a/easybuild/easyconfigs/c/CNVnator/CNVnator-0.3.3-foss-2016b.eb +++ b/easybuild/easyconfigs/c/CNVnator/CNVnator-0.3.3-foss-2016b.eb @@ -33,7 +33,7 @@ files_to_copy = [(['cnvnator2VCF.pl'], 'bin')] sanity_check_paths = { - 'files': ['bin/cnvnator2VCF.pl'] , + 'files': ['bin/cnvnator2VCF.pl'], 'dirs': [], } -- GitLab From 0664518e768281132e9cb8338180e0f148cf6dfc Mon Sep 17 00:00:00 2001 From: Robert Date: Wed, 31 May 2017 17:17:36 +0930 Subject: [PATCH 125/608] easyblock corrected --- easybuild/easyconfigs/c/CNVnator/CNVnator-0.3.3-foss-2016b.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/c/CNVnator/CNVnator-0.3.3-foss-2016b.eb b/easybuild/easyconfigs/c/CNVnator/CNVnator-0.3.3-foss-2016b.eb index c3f9fc44b3..83fea79140 100644 --- a/easybuild/easyconfigs/c/CNVnator/CNVnator-0.3.3-foss-2016b.eb +++ b/easybuild/easyconfigs/c/CNVnator/CNVnator-0.3.3-foss-2016b.eb @@ -9,7 +9,7 @@ # Notes:: ## -easyblock = 'MakeCp' +easyblock = 'CmdCp' name = 'CNVnator' version = '0.3.3' -- GitLab From 7f6ba11aeac585c11e57486efd5960a13e437e9f Mon Sep 17 00:00:00 2001 From: builduser Date: Wed, 31 May 2017 14:18:32 +0200 Subject: [PATCH 126/608] adding easyconfigs: NRGLjubljana-2.4.3.23-foss-2016b.eb --- .../NRGLjubljana-2.4.3.23-foss-2016b.eb | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 easybuild/easyconfigs/n/NRGLjubljana/NRGLjubljana-2.4.3.23-foss-2016b.eb diff --git a/easybuild/easyconfigs/n/NRGLjubljana/NRGLjubljana-2.4.3.23-foss-2016b.eb b/easybuild/easyconfigs/n/NRGLjubljana/NRGLjubljana-2.4.3.23-foss-2016b.eb new file mode 100644 index 0000000000..3880dd3342 --- /dev/null +++ b/easybuild/easyconfigs/n/NRGLjubljana/NRGLjubljana-2.4.3.23-foss-2016b.eb @@ -0,0 +1,37 @@ +easyblock = 'ConfigureMake' + +name = 'NRGLjubljana' +version = '2.4.3.23' + +homepage = 'http://nrgljubljana.ijs.si/' +description = """ + NRG Ljubljana is an efficient implementation of the numerical renormalization group (NRG) + technique for solving quantum impurity problems that arise as simplified models of + magnetic impurities and as effective models in the dynamical mean field theory (DMFT) + approach to bulk correlated materials. +""" + +docurls = 'http://nrgljubljana.ijs.si/examples/' +software_license = 'LicenseGPLv3' + +toolchain = {'name': 'foss', 'version': '2016b'} +#toolchainopts = { 'usempi': True, 'pic': True } +toolchainopts = { 'pic': True } + +sources = [ '%(namelower)s-%(version)s.tar.gz' ] +source_urls = [ 'http://nrgljubljana.ijs.si/' ] + +configopts = "--with-tools --with-boost-serialization=boost_serialization CXXFLAGS=\"-Ddsyev=dsyev_ -Ddsyevr=dsyevr_ -Dzheev=zheev_ -Dzheevr=zheevr_\" LDFLAGS=\"-lopenblas -L${EBROOTBOOST}/lib\"" + +dependencies = [ + ('GMP', '6.1.2'), + ('GSL', '2.3'), + ('Boost', '1.61.0') +] + +sanity_check_paths = { + 'files': ["bin/nrg2_4", "bin/nrgcmpl2_4"], + 'dirs': [], +} + +moduleclass = 'phys' -- GitLab From e72c0086c925fdbb8319bd6345bd5dee601b56ba Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 31 May 2017 14:24:04 +0200 Subject: [PATCH 127/608] adding easyconfigs: FFTW-2.1.5-intel-2017a.eb --- .../f/FFTW/FFTW-2.1.5-intel-2017a.eb | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 easybuild/easyconfigs/f/FFTW/FFTW-2.1.5-intel-2017a.eb diff --git a/easybuild/easyconfigs/f/FFTW/FFTW-2.1.5-intel-2017a.eb b/easybuild/easyconfigs/f/FFTW/FFTW-2.1.5-intel-2017a.eb new file mode 100644 index 0000000000..313bc9e8bb --- /dev/null +++ b/easybuild/easyconfigs/f/FFTW/FFTW-2.1.5-intel-2017a.eb @@ -0,0 +1,31 @@ +easyblock = 'ConfigureMake' + +name = 'FFTW' +version = '2.1.5' + +homepage = 'http://www.fftw.org' +description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) + in one or more dimensions, of arbitrary input size, and of both real and complex data.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'pic': True} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = [homepage] + +common_configopts = "--enable-shared --enable-type-prefix --enable-threads --with-pic" + +configopts = [ + common_configopts + " --enable-float --enable-mpi", + common_configopts + " --enable-mpi", # default as last +] + +sanity_check_paths = { + 'files': ['include/%sfftw%s.h' % (x, y) for x in ['d', 'dr', 's', 'sr'] for y in ['', '_mpi', '_threads']] + + ['lib/lib%sfftw%s.a' % (x, y) for x in ['d', 'dr', 's', 'sr'] for y in ['', '_mpi', '_threads']] + + ['lib/lib%sfftw%s.%s' % (x, y, SHLIB_EXT) for x in ['d', 'dr', 's', 'sr'] + for y in ['', '_mpi', '_threads']], + 'dirs': [], +} + +moduleclass = 'numlib' -- GitLab From ca1debbc16d59bc8d2ee55b3e2367b10a8958c96 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 31 May 2017 17:23:41 +0200 Subject: [PATCH 128/608] add missing /gnu/ ins ftpmirror.gnu.org source_urls, or use GNU_SOURCE where possible --- easybuild/easyconfigs/e/ed/ed-1.9-ictce-5.3.0.eb | 2 +- easybuild/easyconfigs/g/GCC/GCC-4.1.2.eb | 2 +- easybuild/easyconfigs/g/GCC/GCC-4.2.4.eb | 2 +- easybuild/easyconfigs/g/GCC/GCC-4.3.6.eb | 2 +- easybuild/easyconfigs/g/GCC/GCC-4.4.7.eb | 2 +- easybuild/easyconfigs/g/GCC/GCC-4.5.2.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.5.3-CLooG-PPL.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.5.3.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.6.0.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.6.3-CLooG-PPL.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.6.3.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.6.4.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.7.0-CLooG-PPL.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.7.0.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.7.1-CLooG-PPL.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.7.1.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.7.2.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.7.3-CLooG-PPL.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.7.3.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.7.4-CLooG-PPL.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.7.4.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.8.1-CLooG.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.8.1.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.8.2-CLooG-multilib.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.8.2-CLooG.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.8.2-multilib.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.8.2.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.8.3-CLooG-multilib.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.8.3.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.8.4-CLooG-multilib.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.8.4-CLooG.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.8.4.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.8.5.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.9.0-CLooG-multilib.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.9.0-CLooG.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.9.0.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.9.1-CLooG-multilib.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.9.1-CLooG.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.9.1.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.9.2-CLooG-multilib.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.9.2-CLooG.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.9.2-binutils-2.25.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.9.2.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.9.3-binutils-2.25.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-4.9.3.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-5.1.0-binutils-2.25.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-5.1.0.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-5.2.0.eb | 6 +++--- easybuild/easyconfigs/g/GCC/GCC-5.3.0.eb | 6 +++--- easybuild/easyconfigs/g/GCCcore/GCCcore-4.9.2.eb | 6 +++--- easybuild/easyconfigs/g/GCCcore/GCCcore-4.9.3.eb | 6 +++--- easybuild/easyconfigs/g/GCCcore/GCCcore-4.9.4.eb | 6 +++--- easybuild/easyconfigs/g/GCCcore/GCCcore-5.3.0.eb | 6 +++--- easybuild/easyconfigs/g/GCCcore/GCCcore-5.4.0.eb | 6 +++--- easybuild/easyconfigs/g/GCCcore/GCCcore-6.1.0.eb | 6 +++--- easybuild/easyconfigs/g/GCCcore/GCCcore-6.2.0.eb | 6 +++--- easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0.eb | 6 +++--- easybuild/easyconfigs/g/GCCcore/GCCcore-7.1.0.eb | 6 +++--- easybuild/easyconfigs/g/GLPK/GLPK-4.48-ictce-5.3.0.eb | 2 +- easybuild/easyconfigs/g/GLPK/GLPK-4.53-goolf-1.4.10.eb | 2 +- easybuild/easyconfigs/g/GLPK/GLPK-4.53-ictce-6.2.5.eb | 2 +- easybuild/easyconfigs/g/GLPK/GLPK-4.55-foss-2015a.eb | 2 +- easybuild/easyconfigs/g/GLPK/GLPK-4.55-intel-2015a.eb | 2 +- easybuild/easyconfigs/g/GLPK/GLPK-4.58-foss-2016a.eb | 2 +- easybuild/easyconfigs/g/GLPK/GLPK-4.58-intel-2016a.eb | 2 +- easybuild/easyconfigs/g/GLPK/GLPK-4.60-intel-2016b.eb | 2 +- easybuild/easyconfigs/g/GLPK/GLPK-4.61-intel-2017a.eb | 2 +- easybuild/easyconfigs/g/GSL/GSL-1.16-goolf-1.7.20.eb | 2 +- easybuild/easyconfigs/g/gzip/gzip-1.6-ictce-5.3.0.eb | 2 +- easybuild/easyconfigs/g/gzip/gzip-1.6-ictce-5.5.0.eb | 2 +- easybuild/easyconfigs/g/gzip/gzip-1.6-ictce-6.2.5.eb | 2 +- easybuild/easyconfigs/m/M4/M4-1.4.16-ictce-5.5.0.eb | 2 +- easybuild/easyconfigs/m/mutil/mutil-1.822.3-intel-2016a.eb | 2 +- 73 files changed, 179 insertions(+), 179 deletions(-) diff --git a/easybuild/easyconfigs/e/ed/ed-1.9-ictce-5.3.0.eb b/easybuild/easyconfigs/e/ed/ed-1.9-ictce-5.3.0.eb index 48f5d0b7b4..dfd1efd2bf 100644 --- a/easybuild/easyconfigs/e/ed/ed-1.9-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/e/ed/ed-1.9-ictce-5.3.0.eb @@ -9,7 +9,7 @@ description = """GNU ed is a line-oriented text editor.""" toolchain = {'name': 'ictce', 'version': '5.3.0'} sources = [SOURCE_TAR_GZ] -source_urls = ['http://ftpmirror.gnu.org/%(name)s/'] +source_urls = [GNU_SOURCE] sanity_check_paths = { 'files': ['bin/ed'], diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.1.2.eb b/easybuild/easyconfigs/g/GCC/GCC-4.1.2.eb index 15db97e462..3353304539 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.1.2.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.1.2.eb @@ -7,7 +7,7 @@ description = """The GNU Compiler Collection includes front ends for C, C++, Obj toolchain = {'name': 'dummy', 'version': ''} # empty version to ensure that dependencies are loaded -source_urls = ['http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s'] +source_urls = ['http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s'] sources = [SOURCELOWER_TAR_BZ2] checksums = [ diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.2.4.eb b/easybuild/easyconfigs/g/GCC/GCC-4.2.4.eb index 690c94392b..2315380a64 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.2.4.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.2.4.eb @@ -7,7 +7,7 @@ description = """The GNU Compiler Collection includes front ends for C, C++, Obj toolchain = {'name': 'dummy', 'version': ''} # empty version to ensure that dependencies are loaded -source_urls = ['http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s'] +source_urls = ['http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s'] sources = [SOURCELOWER_TAR_BZ2] checksums = [ diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.3.6.eb b/easybuild/easyconfigs/g/GCC/GCC-4.3.6.eb index d2df4b4c42..49e488fc5d 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.3.6.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.3.6.eb @@ -7,7 +7,7 @@ description = """The GNU Compiler Collection includes front ends for C, C++, Obj toolchain = {'name': 'dummy', 'version': ''} # empty version to ensure that dependencies are loaded -source_urls = ['http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s'] +source_urls = ['http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s'] sources = [SOURCELOWER_TAR_BZ2] checksums = [ diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.4.7.eb b/easybuild/easyconfigs/g/GCC/GCC-4.4.7.eb index 584afb9b7c..9a6e1777a2 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.4.7.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.4.7.eb @@ -7,7 +7,7 @@ description = """The GNU Compiler Collection includes front ends for C, C++, Obj toolchain = {'name': 'dummy', 'version': ''} # empty version to ensure that dependencies are loaded -source_urls = ['http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s'] +source_urls = ['http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s'] sources = [SOURCELOWER_TAR_BZ2] checksums = [ diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.5.2.eb b/easybuild/easyconfigs/g/GCC/GCC-4.5.2.eb index 719bc6f315..e4f74a2769 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.5.2.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.5.2.eb @@ -8,9 +8,9 @@ description = """The GNU Compiler Collection includes front ends for C, C++, Obj toolchain = {'name': 'dummy', 'version': 'dummy'} source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official ] sources = [ diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.5.3-CLooG-PPL.eb b/easybuild/easyconfigs/g/GCC/GCC-4.5.3-CLooG-PPL.eb index bcb7fd7639..137d7d524e 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.5.3-CLooG-PPL.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.5.3-CLooG-PPL.eb @@ -11,9 +11,9 @@ toolchain = {'name': 'dummy', 'version': 'dummy'} pplver = '0.11' source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official 'http://bugseng.com/products/ppl/download/ftp/releases/%s' % pplver, # PPL official 'http://www.bastoul.net/cloog/pages/download/count.php3?url=.', # CLooG official diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.5.3.eb b/easybuild/easyconfigs/g/GCC/GCC-4.5.3.eb index 9a31d20e93..df06986016 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.5.3.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.5.3.eb @@ -8,9 +8,9 @@ description = """The GNU Compiler Collection includes front ends for C, C++, Obj toolchain = {'name': 'dummy', 'version': 'dummy'} source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official ] sources = [ diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.6.0.eb b/easybuild/easyconfigs/g/GCC/GCC-4.6.0.eb index f310421ff2..e34a70f28b 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.6.0.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.6.0.eb @@ -8,9 +8,9 @@ description = """The GNU Compiler Collection includes front ends for C, C++, Obj toolchain = {'name': 'dummy', 'version': 'dummy'} source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official ] sources = [ diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.6.3-CLooG-PPL.eb b/easybuild/easyconfigs/g/GCC/GCC-4.6.3-CLooG-PPL.eb index 3a9114bc86..5955aa5fd3 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.6.3-CLooG-PPL.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.6.3-CLooG-PPL.eb @@ -11,9 +11,9 @@ toolchain = {'name': 'dummy', 'version': 'dummy'} pplver = '0.12' source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official 'http://bugseng.com/products/ppl/download/ftp/releases/%s' % pplver, # PPL official 'http://www.bastoul.net/cloog/pages/download/count.php3?url=.', # CLooG official diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.6.3.eb b/easybuild/easyconfigs/g/GCC/GCC-4.6.3.eb index 884bd3660e..a17723ccd7 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.6.3.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.6.3.eb @@ -8,9 +8,9 @@ description = """The GNU Compiler Collection includes front ends for C, C++, Obj toolchain = {'name': 'dummy', 'version': 'dummy'} source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official ] sources = [ diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.6.4.eb b/easybuild/easyconfigs/g/GCC/GCC-4.6.4.eb index 6d06e3dc27..92eb1f920e 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.6.4.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.6.4.eb @@ -8,9 +8,9 @@ description = """The GNU Compiler Collection includes front ends for C, C++, Obj toolchain = {'name': 'dummy', 'version': 'dummy'} source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official ] sources = [ diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.7.0-CLooG-PPL.eb b/easybuild/easyconfigs/g/GCC/GCC-4.7.0-CLooG-PPL.eb index b46830b3c9..8c20572741 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.7.0-CLooG-PPL.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.7.0-CLooG-PPL.eb @@ -11,9 +11,9 @@ toolchain = {'name': 'dummy', 'version': 'dummy'} pplver = '0.12' source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official 'http://bugseng.com/products/ppl/download/ftp/releases/%s' % pplver, # PPL official 'http://www.bastoul.net/cloog/pages/download/count.php3?url=.', # CLooG official diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.7.0.eb b/easybuild/easyconfigs/g/GCC/GCC-4.7.0.eb index 25a490f355..c5bea4cc95 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.7.0.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.7.0.eb @@ -8,9 +8,9 @@ description = """The GNU Compiler Collection includes front ends for C, C++, Obj toolchain = {'name': 'dummy', 'version': 'dummy'} source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official ] sources = [ diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.7.1-CLooG-PPL.eb b/easybuild/easyconfigs/g/GCC/GCC-4.7.1-CLooG-PPL.eb index 6c58ae7bc6..96faf6492a 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.7.1-CLooG-PPL.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.7.1-CLooG-PPL.eb @@ -11,9 +11,9 @@ toolchain = {'name': 'dummy', 'version': 'dummy'} pplver = '0.12' source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official 'http://bugseng.com/products/ppl/download/ftp/releases/%s' % pplver, # PPL official 'http://www.bastoul.net/cloog/pages/download/', # CLooG official diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.7.1.eb b/easybuild/easyconfigs/g/GCC/GCC-4.7.1.eb index b3ad3f8087..b98f04d03d 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.7.1.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.7.1.eb @@ -8,9 +8,9 @@ description = """The GNU Compiler Collection includes front ends for C, C++, Obj toolchain = {'name': 'dummy', 'version': 'dummy'} source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official ] sources = [ diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.7.2.eb b/easybuild/easyconfigs/g/GCC/GCC-4.7.2.eb index decee62a58..52df95a761 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.7.2.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.7.2.eb @@ -8,9 +8,9 @@ description = """The GNU Compiler Collection includes front ends for C, C++, Obj toolchain = {'name': 'dummy', 'version': 'dummy'} source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official ] sources = [ diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.7.3-CLooG-PPL.eb b/easybuild/easyconfigs/g/GCC/GCC-4.7.3-CLooG-PPL.eb index 8f5cae195c..f76b5cd461 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.7.3-CLooG-PPL.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.7.3-CLooG-PPL.eb @@ -11,9 +11,9 @@ toolchain = {'name': 'dummy', 'version': 'dummy'} pplver = '0.12.1' source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official 'http://bugseng.com/products/ppl/download/ftp/releases/%s' % pplver, # PPL official 'http://www.bastoul.net/cloog/pages/download/', # CLooG official diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.7.3.eb b/easybuild/easyconfigs/g/GCC/GCC-4.7.3.eb index 03f65ea5f0..f082b457cb 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.7.3.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.7.3.eb @@ -8,9 +8,9 @@ description = """The GNU Compiler Collection includes front ends for C, C++, Obj toolchain = {'name': 'dummy', 'version': 'dummy'} source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official ] sources = [ diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.7.4-CLooG-PPL.eb b/easybuild/easyconfigs/g/GCC/GCC-4.7.4-CLooG-PPL.eb index da943f7026..bf7a65c4b8 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.7.4-CLooG-PPL.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.7.4-CLooG-PPL.eb @@ -11,9 +11,9 @@ toolchain = {'name': 'dummy', 'version': 'dummy'} pplver = '0.12.1' source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official 'http://bugseng.com/products/ppl/download/ftp/releases/%s' % pplver, # PPL official 'http://www.bastoul.net/cloog/pages/download/', # CLooG official diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.7.4.eb b/easybuild/easyconfigs/g/GCC/GCC-4.7.4.eb index 5d688569b0..d6755a5d57 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.7.4.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.7.4.eb @@ -8,9 +8,9 @@ description = """The GNU Compiler Collection includes front ends for C, C++, Obj toolchain = {'name': 'dummy', 'version': 'dummy'} source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official ] sources = [ diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.8.1-CLooG.eb b/easybuild/easyconfigs/g/GCC/GCC-4.8.1-CLooG.eb index 618d553031..b9384bdcfe 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.8.1-CLooG.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.8.1-CLooG.eb @@ -9,9 +9,9 @@ description = """The GNU Compiler Collection includes front ends for C, C++, Obj toolchain = {'name': 'dummy', 'version': 'dummy'} source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official 'http://www.bastoul.net/cloog/pages/download/', # CLooG official 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.8.1.eb b/easybuild/easyconfigs/g/GCC/GCC-4.8.1.eb index 85085960e8..cfc68d66f6 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.8.1.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.8.1.eb @@ -8,9 +8,9 @@ description = """The GNU Compiler Collection includes front ends for C, C++, Obj toolchain = {'name': 'dummy', 'version': 'dummy'} source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official ] sources = [ diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.8.2-CLooG-multilib.eb b/easybuild/easyconfigs/g/GCC/GCC-4.8.2-CLooG-multilib.eb index 6d29040095..f7ae0b63f1 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.8.2-CLooG-multilib.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.8.2-CLooG-multilib.eb @@ -9,9 +9,9 @@ description = """The GNU Compiler Collection includes front ends for C, C++, Obj toolchain = {'name': 'dummy', 'version': 'dummy'} source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official 'http://www.bastoul.net/cloog/pages/download/', # CLooG official 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.8.2-CLooG.eb b/easybuild/easyconfigs/g/GCC/GCC-4.8.2-CLooG.eb index 9a60bde46d..53a6b802c8 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.8.2-CLooG.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.8.2-CLooG.eb @@ -9,9 +9,9 @@ description = """The GNU Compiler Collection includes front ends for C, C++, Obj toolchain = {'name': 'dummy', 'version': 'dummy'} source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official 'http://www.bastoul.net/cloog/pages/download/', # CLooG official 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.8.2-multilib.eb b/easybuild/easyconfigs/g/GCC/GCC-4.8.2-multilib.eb index 8154896aaa..62ff1a29d8 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.8.2-multilib.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.8.2-multilib.eb @@ -9,9 +9,9 @@ description = """The GNU Compiler Collection includes front ends for C, C++, Obj toolchain = {'name': 'dummy', 'version': 'dummy'} source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official ] sources = [ diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.8.2.eb b/easybuild/easyconfigs/g/GCC/GCC-4.8.2.eb index 525d8bbaf4..ac1ea618e1 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.8.2.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.8.2.eb @@ -8,9 +8,9 @@ description = """The GNU Compiler Collection includes front ends for C, C++, Obj toolchain = {'name': 'dummy', 'version': 'dummy'} source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official ] sources = [ diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.8.3-CLooG-multilib.eb b/easybuild/easyconfigs/g/GCC/GCC-4.8.3-CLooG-multilib.eb index 54f482d906..55705b2a56 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.8.3-CLooG-multilib.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.8.3-CLooG-multilib.eb @@ -9,9 +9,9 @@ description = """The GNU Compiler Collection includes front ends for C, C++, Obj toolchain = {'name': 'dummy', 'version': 'dummy'} source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official 'http://www.bastoul.net/cloog/pages/download/', # CLooG official 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.8.3.eb b/easybuild/easyconfigs/g/GCC/GCC-4.8.3.eb index d300b36d8f..47fcc28da6 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.8.3.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.8.3.eb @@ -8,9 +8,9 @@ description = """The GNU Compiler Collection includes front ends for C, C++, Obj toolchain = {'name': 'dummy', 'version': 'dummy'} source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official ] sources = [ diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.8.4-CLooG-multilib.eb b/easybuild/easyconfigs/g/GCC/GCC-4.8.4-CLooG-multilib.eb index 89f13931a3..8bc99398c5 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.8.4-CLooG-multilib.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.8.4-CLooG-multilib.eb @@ -9,9 +9,9 @@ description = """The GNU Compiler Collection includes front ends for C, C++, Obj toolchain = {'name': 'dummy', 'version': 'dummy'} source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official 'http://www.bastoul.net/cloog/pages/download/', # CLooG official 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.8.4-CLooG.eb b/easybuild/easyconfigs/g/GCC/GCC-4.8.4-CLooG.eb index 1fee24d2ad..d04c5b5989 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.8.4-CLooG.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.8.4-CLooG.eb @@ -9,9 +9,9 @@ description = """The GNU Compiler Collection includes front ends for C, C++, Obj toolchain = {'name': 'dummy', 'version': 'dummy'} source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official 'http://www.bastoul.net/cloog/pages/download/', # CLooG official 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.8.4.eb b/easybuild/easyconfigs/g/GCC/GCC-4.8.4.eb index 5149d85b52..18e237e811 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.8.4.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.8.4.eb @@ -8,9 +8,9 @@ description = """The GNU Compiler Collection includes front ends for C, C++, Obj toolchain = {'name': 'dummy', 'version': 'dummy'} source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official ] sources = [ diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.8.5.eb b/easybuild/easyconfigs/g/GCC/GCC-4.8.5.eb index 358952fcd9..7a8cd2b768 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.8.5.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.8.5.eb @@ -8,9 +8,9 @@ description = """The GNU Compiler Collection includes front ends for C, C++, Obj toolchain = {'name': 'dummy', 'version': 'dummy'} source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official ] sources = [ diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.9.0-CLooG-multilib.eb b/easybuild/easyconfigs/g/GCC/GCC-4.9.0-CLooG-multilib.eb index c0cd444cef..3d2b9ee9c0 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.9.0-CLooG-multilib.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.9.0-CLooG-multilib.eb @@ -11,9 +11,9 @@ toolchain = {'name': 'dummy', 'version': 'dummy'} mpfr_version = '3.1.2' source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official 'http://www.bastoul.net/cloog/pages/download/', # CLooG official 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.9.0-CLooG.eb b/easybuild/easyconfigs/g/GCC/GCC-4.9.0-CLooG.eb index 7a4b755a4c..3d655c2b61 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.9.0-CLooG.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.9.0-CLooG.eb @@ -11,9 +11,9 @@ toolchain = {'name': 'dummy', 'version': 'dummy'} mpfr_version = '3.1.2' source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official 'http://www.bastoul.net/cloog/pages/download/', # CLooG official 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.9.0.eb b/easybuild/easyconfigs/g/GCC/GCC-4.9.0.eb index 288754285b..68428b6c43 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.9.0.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.9.0.eb @@ -10,9 +10,9 @@ toolchain = {'name': 'dummy', 'version': 'dummy'} mpfr_version = '3.1.2' source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official ] sources = [ diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.9.1-CLooG-multilib.eb b/easybuild/easyconfigs/g/GCC/GCC-4.9.1-CLooG-multilib.eb index bd08517bfa..9e22d2092e 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.9.1-CLooG-multilib.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.9.1-CLooG-multilib.eb @@ -11,9 +11,9 @@ toolchain = {'name': 'dummy', 'version': 'dummy'} mpfr_version = '3.1.2' source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official 'http://www.bastoul.net/cloog/pages/download/', # CLooG official 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.9.1-CLooG.eb b/easybuild/easyconfigs/g/GCC/GCC-4.9.1-CLooG.eb index 5cb7dc788a..ba83e49da7 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.9.1-CLooG.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.9.1-CLooG.eb @@ -11,9 +11,9 @@ toolchain = {'name': 'dummy', 'version': 'dummy'} mpfr_version = '3.1.2' source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official 'http://www.bastoul.net/cloog/pages/download/', # CLooG official 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.9.1.eb b/easybuild/easyconfigs/g/GCC/GCC-4.9.1.eb index d520b55ace..39947a23d7 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.9.1.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.9.1.eb @@ -10,9 +10,9 @@ toolchain = {'name': 'dummy', 'version': 'dummy'} mpfr_version = '3.1.2' source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official ] sources = [ diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.9.2-CLooG-multilib.eb b/easybuild/easyconfigs/g/GCC/GCC-4.9.2-CLooG-multilib.eb index 4b52dcc343..de353eab4d 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.9.2-CLooG-multilib.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.9.2-CLooG-multilib.eb @@ -11,9 +11,9 @@ toolchain = {'name': 'dummy', 'version': 'dummy'} mpfr_version = '3.1.2' source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official 'http://www.bastoul.net/cloog/pages/download/', # CLooG official 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.9.2-CLooG.eb b/easybuild/easyconfigs/g/GCC/GCC-4.9.2-CLooG.eb index 1ec5100100..b598d63b4c 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.9.2-CLooG.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.9.2-CLooG.eb @@ -11,9 +11,9 @@ toolchain = {'name': 'dummy', 'version': 'dummy'} mpfr_version = '3.1.2' source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official 'http://www.bastoul.net/cloog/pages/download/', # CLooG official 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.9.2-binutils-2.25.eb b/easybuild/easyconfigs/g/GCC/GCC-4.9.2-binutils-2.25.eb index 44e39d233d..62739aefa4 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.9.2-binutils-2.25.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.9.2-binutils-2.25.eb @@ -13,9 +13,9 @@ toolchain = {'name': 'dummy', 'version': ''} mpfr_version = '3.1.2' source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official ] sources = [ diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.9.2.eb b/easybuild/easyconfigs/g/GCC/GCC-4.9.2.eb index e9df0050c0..8586c48e2c 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.9.2.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.9.2.eb @@ -10,9 +10,9 @@ toolchain = {'name': 'dummy', 'version': 'dummy'} mpfr_version = '3.1.2' source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official ] sources = [ diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.9.3-binutils-2.25.eb b/easybuild/easyconfigs/g/GCC/GCC-4.9.3-binutils-2.25.eb index 8c62c13920..30c0749622 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.9.3-binutils-2.25.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.9.3-binutils-2.25.eb @@ -13,9 +13,9 @@ toolchain = {'name': 'dummy', 'version': ''} mpfr_version = '3.1.2' source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official ] sources = [ diff --git a/easybuild/easyconfigs/g/GCC/GCC-4.9.3.eb b/easybuild/easyconfigs/g/GCC/GCC-4.9.3.eb index e36af87104..ef8f2e2c88 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-4.9.3.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-4.9.3.eb @@ -10,9 +10,9 @@ toolchain = {'name': 'dummy', 'version': 'dummy'} mpfr_version = '3.1.2' source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official ] sources = [ diff --git a/easybuild/easyconfigs/g/GCC/GCC-5.1.0-binutils-2.25.eb b/easybuild/easyconfigs/g/GCC/GCC-5.1.0-binutils-2.25.eb index 897ca9088c..f271d37e88 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-5.1.0-binutils-2.25.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-5.1.0-binutils-2.25.eb @@ -13,9 +13,9 @@ toolchain = {'name': 'dummy', 'version': ''} mpfr_version = '3.1.2' source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies 'http://gcc.cybermirror.org/infrastructure/', # HTTP mirror for GCC dependencies diff --git a/easybuild/easyconfigs/g/GCC/GCC-5.1.0.eb b/easybuild/easyconfigs/g/GCC/GCC-5.1.0.eb index 88c83fce42..fb056c8d3b 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-5.1.0.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-5.1.0.eb @@ -10,9 +10,9 @@ toolchain = {'name': 'dummy', 'version': ''} mpfr_version = '3.1.2' source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies 'http://gcc.cybermirror.org/infrastructure/', # HTTP mirror for GCC dependencies diff --git a/easybuild/easyconfigs/g/GCC/GCC-5.2.0.eb b/easybuild/easyconfigs/g/GCC/GCC-5.2.0.eb index 4052ab789b..66232b4383 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-5.2.0.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-5.2.0.eb @@ -10,9 +10,9 @@ toolchain = {'name': 'dummy', 'version': ''} mpfr_version = '3.1.3' source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies 'http://gcc.cybermirror.org/infrastructure/', # HTTP mirror for GCC dependencies diff --git a/easybuild/easyconfigs/g/GCC/GCC-5.3.0.eb b/easybuild/easyconfigs/g/GCC/GCC-5.3.0.eb index 30c9cc61c0..bac0b46be0 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-5.3.0.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-5.3.0.eb @@ -10,9 +10,9 @@ toolchain = {'name': 'dummy', 'version': ''} mpfr_version = '3.1.3' source_urls = [ - 'http://ftpmirror.gnu.org/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies 'http://gcc.cybermirror.org/infrastructure/', # HTTP mirror for GCC dependencies diff --git a/easybuild/easyconfigs/g/GCCcore/GCCcore-4.9.2.eb b/easybuild/easyconfigs/g/GCCcore/GCCcore-4.9.2.eb index 872c6745e0..1247d0d3d2 100644 --- a/easybuild/easyconfigs/g/GCCcore/GCCcore-4.9.2.eb +++ b/easybuild/easyconfigs/g/GCCcore/GCCcore-4.9.2.eb @@ -13,9 +13,9 @@ mpfr_version = '3.1.2' gcc_name = 'GCC' source_urls = [ - 'http://ftpmirror.gnu.org/gcc/gcc-%s' % version, # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/gcc/gcc-%s' % version, # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official ] sources = [ diff --git a/easybuild/easyconfigs/g/GCCcore/GCCcore-4.9.3.eb b/easybuild/easyconfigs/g/GCCcore/GCCcore-4.9.3.eb index d0d9f1d3a7..50cc39964d 100644 --- a/easybuild/easyconfigs/g/GCCcore/GCCcore-4.9.3.eb +++ b/easybuild/easyconfigs/g/GCCcore/GCCcore-4.9.3.eb @@ -12,9 +12,9 @@ toolchain = {'name': 'dummy', 'version': ''} mpfr_version = '3.1.2' source_urls = [ - 'http://ftpmirror.gnu.org/gcc/gcc-%s' % version, # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/gcc/gcc-%s' % version, # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official ] sources = [ diff --git a/easybuild/easyconfigs/g/GCCcore/GCCcore-4.9.4.eb b/easybuild/easyconfigs/g/GCCcore/GCCcore-4.9.4.eb index 9a01aa75ef..04c34b3dcc 100644 --- a/easybuild/easyconfigs/g/GCCcore/GCCcore-4.9.4.eb +++ b/easybuild/easyconfigs/g/GCCcore/GCCcore-4.9.4.eb @@ -12,9 +12,9 @@ toolchain = {'name': 'dummy', 'version': ''} mpfr_version = '3.1.4' source_urls = [ - 'http://ftpmirror.gnu.org/gcc/gcc-%s' % version, # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/gcc/gcc-%s' % version, # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official ] sources = [ diff --git a/easybuild/easyconfigs/g/GCCcore/GCCcore-5.3.0.eb b/easybuild/easyconfigs/g/GCCcore/GCCcore-5.3.0.eb index 508f91d3f8..cfbd5a5779 100644 --- a/easybuild/easyconfigs/g/GCCcore/GCCcore-5.3.0.eb +++ b/easybuild/easyconfigs/g/GCCcore/GCCcore-5.3.0.eb @@ -12,9 +12,9 @@ toolchain = {'name': 'dummy', 'version': ''} mpfr_version = '3.1.3' source_urls = [ - 'http://ftpmirror.gnu.org/gcc/gcc-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/gcc/gcc-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies 'http://gcc.cybermirror.org/infrastructure/', # HTTP mirror for GCC dependencies diff --git a/easybuild/easyconfigs/g/GCCcore/GCCcore-5.4.0.eb b/easybuild/easyconfigs/g/GCCcore/GCCcore-5.4.0.eb index 1a5cf8b884..c44b03f2db 100644 --- a/easybuild/easyconfigs/g/GCCcore/GCCcore-5.4.0.eb +++ b/easybuild/easyconfigs/g/GCCcore/GCCcore-5.4.0.eb @@ -12,9 +12,9 @@ toolchain = {'name': 'dummy', 'version': ''} mpfr_version = '3.1.4' source_urls = [ - 'http://ftpmirror.gnu.org/gcc/gcc-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/gcc/gcc-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies 'http://gcc.cybermirror.org/infrastructure/', # HTTP mirror for GCC dependencies diff --git a/easybuild/easyconfigs/g/GCCcore/GCCcore-6.1.0.eb b/easybuild/easyconfigs/g/GCCcore/GCCcore-6.1.0.eb index a645d60588..b3173aaf56 100644 --- a/easybuild/easyconfigs/g/GCCcore/GCCcore-6.1.0.eb +++ b/easybuild/easyconfigs/g/GCCcore/GCCcore-6.1.0.eb @@ -12,12 +12,12 @@ toolchain = {'name': 'dummy', 'version': ''} mpfr_version = '3.1.4' source_urls = [ - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies 'http://gcc.cybermirror.org/infrastructure/', # HTTP mirror for GCC dependencies - 'http://ftpmirror.gnu.org/gcc/gcc-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gcc/gcc-%(version)s', # GCC auto-resolving HTTP mirror 'https://ftp.gnu.org/gnu/gcc/gcc-%(version)s/', # Alternative GCC 'http://isl.gforge.inria.fr/', # original HTTP source for ISL ] diff --git a/easybuild/easyconfigs/g/GCCcore/GCCcore-6.2.0.eb b/easybuild/easyconfigs/g/GCCcore/GCCcore-6.2.0.eb index a460408c19..8bf2b22931 100644 --- a/easybuild/easyconfigs/g/GCCcore/GCCcore-6.2.0.eb +++ b/easybuild/easyconfigs/g/GCCcore/GCCcore-6.2.0.eb @@ -12,9 +12,9 @@ toolchain = {'name': 'dummy', 'version': ''} mpfr_version = '3.1.4' source_urls = [ - 'http://ftpmirror.gnu.org/gcc/gcc-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/gcc/gcc-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies 'http://gcc.cybermirror.org/infrastructure/', # HTTP mirror for GCC dependencies diff --git a/easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0.eb b/easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0.eb index a581540c04..603d43dcde 100644 --- a/easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0.eb +++ b/easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0.eb @@ -12,9 +12,9 @@ toolchain = {'name': 'dummy', 'version': ''} mpfr_version = '3.1.5' source_urls = [ - 'http://ftpmirror.gnu.org/gcc/gcc-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/gcc/gcc-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies 'http://gcc.cybermirror.org/infrastructure/', # HTTP mirror for GCC dependencies diff --git a/easybuild/easyconfigs/g/GCCcore/GCCcore-7.1.0.eb b/easybuild/easyconfigs/g/GCCcore/GCCcore-7.1.0.eb index 6f69a58a66..198af84508 100644 --- a/easybuild/easyconfigs/g/GCCcore/GCCcore-7.1.0.eb +++ b/easybuild/easyconfigs/g/GCCcore/GCCcore-7.1.0.eb @@ -12,9 +12,9 @@ toolchain = {'name': 'dummy', 'version': ''} mpfr_version = '3.1.5' source_urls = [ - 'http://ftpmirror.gnu.org/gcc/gcc-%(version)s', # GCC auto-resolving HTTP mirror - 'http://ftpmirror.gnu.org/gmp', # idem for GMP - 'http://ftpmirror.gnu.org/mpfr', # idem for MPFR + 'http://ftpmirror.gnu.org/gnu/gcc/gcc-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR 'http://www.multiprecision.org/mpc/download', # MPC official 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies 'http://gcc.cybermirror.org/infrastructure/', # HTTP mirror for GCC dependencies diff --git a/easybuild/easyconfigs/g/GLPK/GLPK-4.48-ictce-5.3.0.eb b/easybuild/easyconfigs/g/GLPK/GLPK-4.48-ictce-5.3.0.eb index c0b7a97231..b2cdf2a95f 100644 --- a/easybuild/easyconfigs/g/GLPK/GLPK-4.48-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/g/GLPK/GLPK-4.48-ictce-5.3.0.eb @@ -12,7 +12,7 @@ toolchain = {'name': 'ictce', 'version': '5.3.0'} toolchainopts = {'opt': True, 'optarch': True, 'pic': True} sources = [SOURCELOWER_TAR_GZ] -source_urls = ['http://ftpmirror.gnu.org/%(namelower)s'] +source_urls = [GNU_SOURCE] dependencies = [ ('GMP', '5.1.1'), diff --git a/easybuild/easyconfigs/g/GLPK/GLPK-4.53-goolf-1.4.10.eb b/easybuild/easyconfigs/g/GLPK/GLPK-4.53-goolf-1.4.10.eb index 4525095b97..7eebd2e1b5 100644 --- a/easybuild/easyconfigs/g/GLPK/GLPK-4.53-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/g/GLPK/GLPK-4.53-goolf-1.4.10.eb @@ -11,7 +11,7 @@ written in ANSI C and organized in the form of a callable library.""" toolchain = {'name': 'goolf', 'version': '1.4.10'} sources = [SOURCELOWER_TAR_GZ] -source_urls = ['http://ftpmirror.gnu.org/%(namelower)s'] +source_urls = [GNU_SOURCE] dependencies = [ ('GMP', '5.1.1'), diff --git a/easybuild/easyconfigs/g/GLPK/GLPK-4.53-ictce-6.2.5.eb b/easybuild/easyconfigs/g/GLPK/GLPK-4.53-ictce-6.2.5.eb index aabef669ba..23cdf9bdeb 100644 --- a/easybuild/easyconfigs/g/GLPK/GLPK-4.53-ictce-6.2.5.eb +++ b/easybuild/easyconfigs/g/GLPK/GLPK-4.53-ictce-6.2.5.eb @@ -12,7 +12,7 @@ toolchain = {'name': 'ictce', 'version': '6.2.5'} toolchainopts = {'opt': True, 'optarch': True, 'pic': True} sources = [SOURCELOWER_TAR_GZ] -source_urls = ['http://ftpmirror.gnu.org/%(namelower)s'] +source_urls = [GNU_SOURCE] dependencies = [ ('GMP', '5.1.1'), diff --git a/easybuild/easyconfigs/g/GLPK/GLPK-4.55-foss-2015a.eb b/easybuild/easyconfigs/g/GLPK/GLPK-4.55-foss-2015a.eb index 270390d86d..d0490da351 100644 --- a/easybuild/easyconfigs/g/GLPK/GLPK-4.55-foss-2015a.eb +++ b/easybuild/easyconfigs/g/GLPK/GLPK-4.55-foss-2015a.eb @@ -13,7 +13,7 @@ description = """The GLPK (GNU Linear Programming Kit) package is intended for toolchain = {'name': 'foss', 'version': '2015a'} sources = [SOURCELOWER_TAR_GZ] -source_urls = ['http://ftp.gnu.org/gnu/%(namelower)s/'] +source_urls = [GNU_SOURCE] dependencies = [('GMP', '6.0.0a', '', ('GCC', '4.9.2'))] diff --git a/easybuild/easyconfigs/g/GLPK/GLPK-4.55-intel-2015a.eb b/easybuild/easyconfigs/g/GLPK/GLPK-4.55-intel-2015a.eb index aef6e26abf..97c634c6e3 100644 --- a/easybuild/easyconfigs/g/GLPK/GLPK-4.55-intel-2015a.eb +++ b/easybuild/easyconfigs/g/GLPK/GLPK-4.55-intel-2015a.eb @@ -13,7 +13,7 @@ description = """The GLPK (GNU Linear Programming Kit) package is intended for toolchain = {'name': 'intel', 'version': '2015a'} sources = [SOURCELOWER_TAR_GZ] -source_urls = ['http://ftp.gnu.org/gnu/%(namelower)s/'] +source_urls = [GNU_SOURCE] dependencies = [('GMP', '6.0.0a', '', ('GCC', '4.9.2'))] diff --git a/easybuild/easyconfigs/g/GLPK/GLPK-4.58-foss-2016a.eb b/easybuild/easyconfigs/g/GLPK/GLPK-4.58-foss-2016a.eb index d5751eec2a..1923d225b7 100644 --- a/easybuild/easyconfigs/g/GLPK/GLPK-4.58-foss-2016a.eb +++ b/easybuild/easyconfigs/g/GLPK/GLPK-4.58-foss-2016a.eb @@ -13,7 +13,7 @@ description = """The GLPK (GNU Linear Programming Kit) package is intended for toolchain = {'name': 'foss', 'version': '2016a'} sources = [SOURCELOWER_TAR_GZ] -source_urls = ['http://ftp.gnu.org/gnu/%(namelower)s/'] +source_urls = [GNU_SOURCE] dependencies = [('GMP', '6.1.0')] diff --git a/easybuild/easyconfigs/g/GLPK/GLPK-4.58-intel-2016a.eb b/easybuild/easyconfigs/g/GLPK/GLPK-4.58-intel-2016a.eb index 07ed2e7997..391a5af632 100644 --- a/easybuild/easyconfigs/g/GLPK/GLPK-4.58-intel-2016a.eb +++ b/easybuild/easyconfigs/g/GLPK/GLPK-4.58-intel-2016a.eb @@ -13,7 +13,7 @@ description = """The GLPK (GNU Linear Programming Kit) package is intended for toolchain = {'name': 'intel', 'version': '2016a'} sources = [SOURCELOWER_TAR_GZ] -source_urls = ['http://ftp.gnu.org/gnu/%(namelower)s/'] +source_urls = [GNU_SOURCE] dependencies = [('GMP', '6.1.0')] diff --git a/easybuild/easyconfigs/g/GLPK/GLPK-4.60-intel-2016b.eb b/easybuild/easyconfigs/g/GLPK/GLPK-4.60-intel-2016b.eb index 66b0f5b8f2..c1d050fb81 100644 --- a/easybuild/easyconfigs/g/GLPK/GLPK-4.60-intel-2016b.eb +++ b/easybuild/easyconfigs/g/GLPK/GLPK-4.60-intel-2016b.eb @@ -13,7 +13,7 @@ description = """The GLPK (GNU Linear Programming Kit) package is intended for toolchain = {'name': 'intel', 'version': '2016b'} sources = [SOURCELOWER_TAR_GZ] -source_urls = ['http://ftp.gnu.org/gnu/%(namelower)s/'] +source_urls = [GNU_SOURCE] dependencies = [('GMP', '6.1.1')] diff --git a/easybuild/easyconfigs/g/GLPK/GLPK-4.61-intel-2017a.eb b/easybuild/easyconfigs/g/GLPK/GLPK-4.61-intel-2017a.eb index 28b87558fc..634ca00ce6 100644 --- a/easybuild/easyconfigs/g/GLPK/GLPK-4.61-intel-2017a.eb +++ b/easybuild/easyconfigs/g/GLPK/GLPK-4.61-intel-2017a.eb @@ -13,7 +13,7 @@ description = """The GLPK (GNU Linear Programming Kit) package is intended for toolchain = {'name': 'intel', 'version': '2017a'} sources = [SOURCELOWER_TAR_GZ] -source_urls = ['http://ftp.gnu.org/gnu/%(namelower)s/'] +source_urls = [GNU_SOURCE] dependencies = [('GMP', '6.1.2')] diff --git a/easybuild/easyconfigs/g/GSL/GSL-1.16-goolf-1.7.20.eb b/easybuild/easyconfigs/g/GSL/GSL-1.16-goolf-1.7.20.eb index 723ea8a309..848138c178 100644 --- a/easybuild/easyconfigs/g/GSL/GSL-1.16-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/g/GSL/GSL-1.16-goolf-1.7.20.eb @@ -11,7 +11,7 @@ description = """The GNU Scientific Library (GSL) is a numerical library for C a toolchain = {'name': 'goolf', 'version': '1.7.20'} toolchainopts = {'unroll': True, 'pic': True} -source_urls = ['http://ftpmirror.gnu.org/gsl/'] +source_urls = ['http://ftpmirror.gnu.org/gnu/gsl/'] sources = [SOURCELOWER_TAR_GZ] configopts = "--with-pic" diff --git a/easybuild/easyconfigs/g/gzip/gzip-1.6-ictce-5.3.0.eb b/easybuild/easyconfigs/g/gzip/gzip-1.6-ictce-5.3.0.eb index d309818ed8..443c4e034e 100644 --- a/easybuild/easyconfigs/g/gzip/gzip-1.6-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/g/gzip/gzip-1.6-ictce-5.3.0.eb @@ -21,7 +21,7 @@ description = "gzip (GNU zip) is a popular data compression program as a replace toolchain = {'name': 'ictce', 'version': '5.3.0'} # eg. http://ftp.gnu.org/gnu/gzip/gzip-1.6.tar.gz -source_urls = ['http://ftpmirror.gnu.org/gzip'] +source_urls = [GNU_SOURCE] sources = [SOURCE_TAR_GZ] # make sure the gzip, gunzip and compress binaries are available after installation diff --git a/easybuild/easyconfigs/g/gzip/gzip-1.6-ictce-5.5.0.eb b/easybuild/easyconfigs/g/gzip/gzip-1.6-ictce-5.5.0.eb index 5f29b035e2..ce75649419 100644 --- a/easybuild/easyconfigs/g/gzip/gzip-1.6-ictce-5.5.0.eb +++ b/easybuild/easyconfigs/g/gzip/gzip-1.6-ictce-5.5.0.eb @@ -21,7 +21,7 @@ description = "gzip (GNU zip) is a popular data compression program as a replace toolchain = {'name': 'ictce', 'version': '5.5.0'} # eg. http://ftp.gnu.org/gnu/gzip/gzip-1.6.tar.gz -source_urls = ['http://ftpmirror.gnu.org/gzip'] +source_urls = [GNU_SOURCE] sources = [SOURCE_TAR_GZ] # make sure the gzip, gunzip and compress binaries are available after installation diff --git a/easybuild/easyconfigs/g/gzip/gzip-1.6-ictce-6.2.5.eb b/easybuild/easyconfigs/g/gzip/gzip-1.6-ictce-6.2.5.eb index 036f697797..0b795ea36c 100644 --- a/easybuild/easyconfigs/g/gzip/gzip-1.6-ictce-6.2.5.eb +++ b/easybuild/easyconfigs/g/gzip/gzip-1.6-ictce-6.2.5.eb @@ -21,7 +21,7 @@ description = "gzip (GNU zip) is a popular data compression program as a replace toolchain = {'name': 'ictce', 'version': '6.2.5'} # eg. http://ftp.gnu.org/gnu/gzip/gzip-1.6.tar.gz -source_urls = ['http://ftpmirror.gnu.org/gzip'] +source_urls = [GNU_SOURCE] sources = [SOURCE_TAR_GZ] # make sure the gzip, gunzip and compress binaries are available after installation diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.16-ictce-5.5.0.eb b/easybuild/easyconfigs/m/M4/M4-1.4.16-ictce-5.5.0.eb index a7f7a66b5b..9b71429dfd 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.16-ictce-5.5.0.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.16-ictce-5.5.0.eb @@ -11,7 +11,7 @@ description = """GNU M4 is an implementation of the traditional Unix macro proce toolchain = {'name': 'ictce', 'version': '5.5.0'} sources = [SOURCELOWER_TAR_GZ] -source_urls = ['http://ftpmirror.gnu.org/m4'] +source_urls = [GNU_SOURCE] patches = ['M4-%(version)s-no-gets.patch'] diff --git a/easybuild/easyconfigs/m/mutil/mutil-1.822.3-intel-2016a.eb b/easybuild/easyconfigs/m/mutil/mutil-1.822.3-intel-2016a.eb index b4d2d3ae93..851772647c 100644 --- a/easybuild/easyconfigs/m/mutil/mutil-1.822.3-intel-2016a.eb +++ b/easybuild/easyconfigs/m/mutil/mutil-1.822.3-intel-2016a.eb @@ -17,7 +17,7 @@ sources = [ ] source_urls = [ SOURCEFORGE_SOURCE, - 'http://ftpmirror.gnu.org/coreutils', + 'http://ftpmirror.gnu.org/gnu/coreutils', ] dependencies = [ -- GitLab From f5c207b85368f0c31cf348e7e38c924b94e19942 Mon Sep 17 00:00:00 2001 From: Davide Vanzo Date: Wed, 31 May 2017 15:34:38 -0500 Subject: [PATCH 129/608] adding easyconfigs: expat-2.2.0-GCCcore-5.4.0.eb --- .../e/expat/expat-2.2.0-GCCcore-5.4.0.eb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 easybuild/easyconfigs/e/expat/expat-2.2.0-GCCcore-5.4.0.eb diff --git a/easybuild/easyconfigs/e/expat/expat-2.2.0-GCCcore-5.4.0.eb b/easybuild/easyconfigs/e/expat/expat-2.2.0-GCCcore-5.4.0.eb new file mode 100644 index 0000000000..eeff8e600b --- /dev/null +++ b/easybuild/easyconfigs/e/expat/expat-2.2.0-GCCcore-5.4.0.eb @@ -0,0 +1,18 @@ +easyblock = 'ConfigureMake' + +name = 'expat' +version = '2.2.0' + +homepage = 'http://expat.sourceforge.net/' +description = """Expat is an XML parser library written in C. It is a stream-oriented parser in which an application + registers handlers for things the parser might find in the XML document (like start tags)""" + +toolchain = {'name': 'GCCcore', 'version': '5.4.0'} +toolchainopts = {'pic': True} + +builddependencies = [('binutils', '2.26', '', True)] + +sources = [SOURCELOWER_TAR_BZ2] +source_urls = [SOURCEFORGE_SOURCE] + +moduleclass = 'tools' -- GitLab From a17d9abdf97f0390c8205b2bc63c46f8a7dcffc4 Mon Sep 17 00:00:00 2001 From: Davide Vanzo Date: Wed, 31 May 2017 15:57:06 -0500 Subject: [PATCH 130/608] adding easyconfigs: libpng-1.6.24-GCCcore-5.4.0.eb, freetype-2.6.5-GCCcore-5.4.0.eb, fontconfig-2.12.1-GCCcore-5.4.0.eb --- .../fontconfig-2.12.1-GCCcore-5.4.0.eb | 25 +++++++++++++++++ .../freetype/freetype-2.6.5-GCCcore-5.4.0.eb | 28 +++++++++++++++++++ .../l/libpng/libpng-1.6.24-GCCcore-5.4.0.eb | 28 +++++++++++++++++++ 3 files changed, 81 insertions(+) create mode 100644 easybuild/easyconfigs/f/fontconfig/fontconfig-2.12.1-GCCcore-5.4.0.eb create mode 100644 easybuild/easyconfigs/f/freetype/freetype-2.6.5-GCCcore-5.4.0.eb create mode 100644 easybuild/easyconfigs/l/libpng/libpng-1.6.24-GCCcore-5.4.0.eb diff --git a/easybuild/easyconfigs/f/fontconfig/fontconfig-2.12.1-GCCcore-5.4.0.eb b/easybuild/easyconfigs/f/fontconfig/fontconfig-2.12.1-GCCcore-5.4.0.eb new file mode 100644 index 0000000000..39bdb77029 --- /dev/null +++ b/easybuild/easyconfigs/f/fontconfig/fontconfig-2.12.1-GCCcore-5.4.0.eb @@ -0,0 +1,25 @@ +easyblock = 'ConfigureMake' + +name = 'fontconfig' +version = '2.12.1' + +homepage = 'http://www.freedesktop.org/software/fontconfig' +description = """Fontconfig is a library designed to provide system-wide font configuration, customization and +application access.""" + +toolchain = {'name': 'GCCcore', 'version': '5.4.0'} + +source_urls = ['http://www.freedesktop.org/software/fontconfig/release/'] +sources = [SOURCE_TAR_GZ] + +dependencies = [ + ('expat', '2.2.0'), + ('freetype', '2.6.5'), +] + +# use same binutils version that was used when building GCCcore toolchain +builddependencies = [('binutils', '2.26', '', True)] + +configopts = '--disable-docs ' + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.6.5-GCCcore-5.4.0.eb b/easybuild/easyconfigs/f/freetype/freetype-2.6.5-GCCcore-5.4.0.eb new file mode 100644 index 0000000000..e1a17a86f6 --- /dev/null +++ b/easybuild/easyconfigs/f/freetype/freetype-2.6.5-GCCcore-5.4.0.eb @@ -0,0 +1,28 @@ +name = 'freetype' +version = '2.6.5' + +homepage = 'http://freetype.org' +description = """FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and + portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display + servers, font conversion tools, text image generation tools, and many other products as well.""" + +toolchain = {'name': 'GCCcore', 'version': '5.4.0'} + +source_urls = [GNU_SAVANNAH_SOURCE] +sources = [SOURCE_TAR_GZ] + +dependencies = [ + ('libpng', '1.6.24'), + ('bzip2', '1.0.6'), + ('zlib', '1.2.8'), +] + +builddependencies = [('binutils', '2.26', '', True)] + +sanity_check_paths = { + 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, + 'lib/pkgconfig/freetype2.pc'], + 'dirs': ['include/freetype2'], +} + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/l/libpng/libpng-1.6.24-GCCcore-5.4.0.eb b/easybuild/easyconfigs/l/libpng/libpng-1.6.24-GCCcore-5.4.0.eb new file mode 100644 index 0000000000..c2aea84a3c --- /dev/null +++ b/easybuild/easyconfigs/l/libpng/libpng-1.6.24-GCCcore-5.4.0.eb @@ -0,0 +1,28 @@ +easyblock = 'ConfigureMake' + +name = 'libpng' +version = '1.6.24' + +homepage = 'http://www.libpng.org/pub/png/libpng.html' +description = "libpng is the official PNG reference library" + +toolchain = {'name': 'GCCcore', 'version': '5.4.0'} +toolchainopts = {'pic': True} + +source_urls = [SOURCEFORGE_SOURCE] +sources = [SOURCELOWER_TAR_GZ] + +dependencies = [('zlib', '1.2.8')] + +builddependencies = [('binutils', '2.26', '', True)] + +configopts = "--with-pic" + +majminver = ''.join(version.split('.')[:2]) +sanity_check_paths = { + 'files': ['include/pngconf.h', 'include/png.h', 'include/pnglibconf.h', 'lib/libpng.a', + 'lib/libpng.%s' % SHLIB_EXT, 'lib/libpng%s.a' % majminver, 'lib/libpng%s.%s' % (majminver, SHLIB_EXT)], + 'dirs': ['bin', 'include/libpng%s' % majminver, 'share/man'], +} + +moduleclass = 'lib' -- GitLab From f2a56252d1355196f6825012b83aeda3e4854eba Mon Sep 17 00:00:00 2001 From: Davide Vanzo Date: Wed, 31 May 2017 16:21:09 -0500 Subject: [PATCH 131/608] adding easyconfigs: gettext-0.19.8-GCCcore-5.4.0.eb, libxml2-2.9.4-GCCcore-5.4.0.eb, XZ-5.2.2-GCCcore-5.4.0.eb --- .../g/gettext/gettext-0.19.8-GCCcore-5.4.0.eb | 26 +++++++++++++++++ .../l/libxml2/libxml2-2.9.4-GCCcore-5.4.0.eb | 26 +++++++++++++++++ .../x/XZ/XZ-5.2.2-GCCcore-5.4.0.eb | 28 +++++++++++++++++++ 3 files changed, 80 insertions(+) create mode 100644 easybuild/easyconfigs/g/gettext/gettext-0.19.8-GCCcore-5.4.0.eb create mode 100644 easybuild/easyconfigs/l/libxml2/libxml2-2.9.4-GCCcore-5.4.0.eb create mode 100644 easybuild/easyconfigs/x/XZ/XZ-5.2.2-GCCcore-5.4.0.eb diff --git a/easybuild/easyconfigs/g/gettext/gettext-0.19.8-GCCcore-5.4.0.eb b/easybuild/easyconfigs/g/gettext/gettext-0.19.8-GCCcore-5.4.0.eb new file mode 100644 index 0000000000..8875bae587 --- /dev/null +++ b/easybuild/easyconfigs/g/gettext/gettext-0.19.8-GCCcore-5.4.0.eb @@ -0,0 +1,26 @@ +easyblock = 'ConfigureMake' + +name = 'gettext' +version = '0.19.8' + +homepage = 'http://www.gnu.org/software/gettext/' +description = """GNU 'gettext' is an important step for the GNU Translation Project, as it is an asset on which we may +build many other steps. This package offers to programmers, translators, and even users, a well integrated set of tools +and documentation""" + +toolchain = {'name': 'GCCcore', 'version': '5.4.0'} + +sources = [SOURCE_TAR_GZ] +source_urls = [GNU_SOURCE] + +dependencies = [ + ('libxml2', '2.9.4'), + ('ncurses', '6.0'), +] + +# use same binutils version that was used when building GCCcore toolchain +builddependencies = [('binutils', '2.26', '', True)] + +configopts = '--without-emacs --with-libxml2-prefix=$EBROOTLIBXML2' + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/l/libxml2/libxml2-2.9.4-GCCcore-5.4.0.eb b/easybuild/easyconfigs/l/libxml2/libxml2-2.9.4-GCCcore-5.4.0.eb new file mode 100644 index 0000000000..5c02f30d48 --- /dev/null +++ b/easybuild/easyconfigs/l/libxml2/libxml2-2.9.4-GCCcore-5.4.0.eb @@ -0,0 +1,26 @@ +name = 'libxml2' +version = '2.9.4' + +homepage = 'http://xmlsoft.org/' +description = """Libxml2 is the XML C parser and +toolchain developed for the Gnome project + (but usable outside of the Gnome platform).""" + +toolchain = {'name': 'GCCcore', 'version': '5.4.0'} +toolchainopts = {'pic': True} + +source_urls = [ + 'http://xmlsoft.org/sources/', + 'http://xmlsoft.org/sources/old/' +] +sources = [SOURCELOWER_TAR_GZ] + +dependencies = [ + ('zlib', '1.2.8'), + ('XZ', '5.2.2'), +] + +# use same binutils version that was used when building GCCcore toolchain +builddependencies = [('binutils', '2.26', '', True)] + +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/x/XZ/XZ-5.2.2-GCCcore-5.4.0.eb b/easybuild/easyconfigs/x/XZ/XZ-5.2.2-GCCcore-5.4.0.eb new file mode 100644 index 0000000000..c46df20c2f --- /dev/null +++ b/easybuild/easyconfigs/x/XZ/XZ-5.2.2-GCCcore-5.4.0.eb @@ -0,0 +1,28 @@ +easyblock = 'ConfigureMake' + +name = 'XZ' +version = '5.2.2' + +homepage = 'http://tukaani.org/xz/' +description = "xz: XZ utilities" + +toolchain = {'name': 'GCCcore', 'version': '5.4.0'} + +sources = [SOURCELOWER_TAR_BZ2] +source_urls = ['http://tukaani.org/xz/'] + +builddependencies = [ + ('gettext', '0.19.8', '', True), + # use same binutils version that was used when building GCCcore toolchain + ('binutils', '2.26', '', True), +] + +# may become useful in non-x86 archs +# configopts = ' --disable-assembler ' + +sanity_check_paths = { + 'files': ["bin/xz", "bin/lzmainfo"], + 'dirs': [] +} + +moduleclass = 'tools' -- GitLab From 379c40fb8733c04fe402d94d347c9cf78a3b51e8 Mon Sep 17 00:00:00 2001 From: Davide Vanzo Date: Wed, 31 May 2017 16:23:59 -0500 Subject: [PATCH 132/608] adding easyconfigs: pkg-config-0.29.1-GCCcore-5.4.0.eb --- .../pkg-config-0.29.1-GCCcore-5.4.0.eb | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 easybuild/easyconfigs/p/pkg-config/pkg-config-0.29.1-GCCcore-5.4.0.eb diff --git a/easybuild/easyconfigs/p/pkg-config/pkg-config-0.29.1-GCCcore-5.4.0.eb b/easybuild/easyconfigs/p/pkg-config/pkg-config-0.29.1-GCCcore-5.4.0.eb new file mode 100644 index 0000000000..11d61b23f7 --- /dev/null +++ b/easybuild/easyconfigs/p/pkg-config/pkg-config-0.29.1-GCCcore-5.4.0.eb @@ -0,0 +1,32 @@ +easyblock = 'ConfigureMake' + +name = 'pkg-config' +version = '0.29.1' + +homepage = 'http://www.freedesktop.org/wiki/Software/pkg-config/' +description = """pkg-config is a helper tool used when compiling applications and libraries. It helps you insert the + correct compiler options on the command line so an application can use + gcc -o test test.c `pkg-config --libs --cflags glib-2.0` + for instance, rather than hard-coding values on where to find glib (or other libraries).""" + +toolchain = {'name': 'GCCcore', 'version': '5.4.0'} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = ['https://pkg-config.freedesktop.org/releases/'] + +builddependencies = [ + # use same binutils version that was used when building GCCcore toolchain + ('binutils', '2.26', '', True), +] + +# don't use PAX, it might break. +tar_config_opts = True + +configopts = " --with-internal-glib" + +sanity_check_paths = { + 'files': ['bin/pkg-config'], + 'dirs': [], +} + +moduleclass = 'devel' -- GitLab From ff583b852b1a90018a60f91aea9520173851ad2c Mon Sep 17 00:00:00 2001 From: Davide Vanzo Date: Wed, 31 May 2017 17:16:39 -0500 Subject: [PATCH 133/608] adding easyconfigs: GMP-6.1.1-GCCcore-5.4.0.eb --- .../g/GMP/GMP-6.1.1-GCCcore-5.4.0.eb | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 easybuild/easyconfigs/g/GMP/GMP-6.1.1-GCCcore-5.4.0.eb diff --git a/easybuild/easyconfigs/g/GMP/GMP-6.1.1-GCCcore-5.4.0.eb b/easybuild/easyconfigs/g/GMP/GMP-6.1.1-GCCcore-5.4.0.eb new file mode 100644 index 0000000000..6b309e5f37 --- /dev/null +++ b/easybuild/easyconfigs/g/GMP/GMP-6.1.1-GCCcore-5.4.0.eb @@ -0,0 +1,31 @@ +easyblock = 'ConfigureMake' + +name = 'GMP' +version = '6.1.1' + +homepage = 'http://gmplib.org/' +description = """GMP is a free library for arbitrary precision arithmetic, +operating on signed integers, rational numbers, and floating point numbers. """ + +toolchain = {'name': 'GCCcore', 'version': '5.4.0'} +toolchainopts = {'pic': True, 'precise': True} + +sources = [SOURCELOWER_TAR_BZ2] +source_urls = ['http://ftp.gnu.org/gnu/gmp'] + +builddependencies = [ + ('binutils', '2.26'), + ('Autotools', '20150215'), +] + +# enable C++ interface +configopts = '--enable-cxx' + +runtest = 'check' + +sanity_check_paths = { + 'files': ['lib/libgmp.%s' % SHLIB_EXT, 'include/gmp.h'], + 'dirs': [], +} + +moduleclass = 'math' -- GitLab From b02e7fe62bbeefd882c8ad270226bf1f8e9125f4 Mon Sep 17 00:00:00 2001 From: Davide Vanzo Date: Wed, 31 May 2017 17:18:18 -0500 Subject: [PATCH 134/608] adding easyconfigs: libffi-3.2.1-GCCcore-5.4.0.eb --- .../l/libffi/libffi-3.2.1-GCCcore-5.4.0.eb | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 easybuild/easyconfigs/l/libffi/libffi-3.2.1-GCCcore-5.4.0.eb diff --git a/easybuild/easyconfigs/l/libffi/libffi-3.2.1-GCCcore-5.4.0.eb b/easybuild/easyconfigs/l/libffi/libffi-3.2.1-GCCcore-5.4.0.eb new file mode 100644 index 0000000000..c9f216298d --- /dev/null +++ b/easybuild/easyconfigs/l/libffi/libffi-3.2.1-GCCcore-5.4.0.eb @@ -0,0 +1,25 @@ +easyblock = 'ConfigureMake' + +name = 'libffi' +version = '3.2.1' + +homepage = 'http://sourceware.org/libffi/' +description = """The libffi library provides a portable, high level programming interface to various calling +conventions. This allows a programmer to call any function specified by a call interface description at run-time.""" + +toolchain = {'name': 'GCCcore', 'version': '5.4.0'} + +source_urls = [ + 'ftp://sourceware.org/pub/libffi/', + 'http://www.mirrorservice.org/sites/sourceware.org/pub/libffi/', +] +sources = [SOURCELOWER_TAR_GZ] + +builddependencies = [('binutils', '2.26', '', True)] + +sanity_check_paths = { + 'files': [('lib/libffi.%s' % SHLIB_EXT, 'lib64/libffi.%s' % SHLIB_EXT), ('lib/libffi.a', 'lib64/libffi.a')], + 'dirs': [], +} + +moduleclass = 'lib' -- GitLab From bf7ef0e281e7e157677d5417eae2b0ba46dc297a Mon Sep 17 00:00:00 2001 From: Davide Vanzo Date: Wed, 31 May 2017 17:18:43 -0500 Subject: [PATCH 135/608] adding easyconfigs: libreadline-6.3-GCCcore-5.4.0.eb --- .../libreadline-6.3-GCCcore-5.4.0.eb | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 easybuild/easyconfigs/l/libreadline/libreadline-6.3-GCCcore-5.4.0.eb diff --git a/easybuild/easyconfigs/l/libreadline/libreadline-6.3-GCCcore-5.4.0.eb b/easybuild/easyconfigs/l/libreadline/libreadline-6.3-GCCcore-5.4.0.eb new file mode 100644 index 0000000000..a356775b1b --- /dev/null +++ b/easybuild/easyconfigs/l/libreadline/libreadline-6.3-GCCcore-5.4.0.eb @@ -0,0 +1,34 @@ +easyblock = 'ConfigureMake' + +name = 'libreadline' +version = '6.3' + +homepage = 'http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html' +description = """The GNU Readline library provides a set of functions for use by applications that + allow users to edit command lines as they are typed in. Both Emacs and vi editing modes are available. + The Readline library includes additional functions to maintain a list of previously-entered command lines, + to recall and perhaps reedit those lines, and perform csh-like history expansion on previous commands.""" + +toolchain = {'name': 'GCCcore', 'version': '5.4.0'} +toolchainopts = {'pic': True} + +sources = ['readline-%(version)s.tar.gz'] +source_urls = ['http://ftp.gnu.org/gnu/readline'] + +patches = ['libreadline-%(version)s-bugfix.patch'] + +builddependencies = [('binutils', '2.26', '', True)] + +dependencies = [('ncurses', '6.0')] + +# for the termcap symbols, use EB ncurses +preconfigopts = "env LDFLAGS='-lncurses'" + +sanity_check_paths = { + 'files': ['lib/libreadline.a', 'lib/libhistory.a'] + + ['include/readline/%s' % x for x in ['chardefs.h', 'history.h', 'keymaps.h', 'readline.h', 'rlconf.h', + 'rlstdc.h', 'rltypedefs.h', 'tilde.h']], + 'dirs': [], +} + +moduleclass = 'lib' -- GitLab From 41fa0eb1d9f2300d745770149525ac624a23fc38 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Thu, 1 Jun 2017 16:48:59 +1200 Subject: [PATCH 136/608] Add ncurses-devel as OS dependency and ccmake as sanity check --- ....1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb | 38 +++++++++++++++++++ easybuild/easyconfigs/c/CMake/CMake-3.6.1.eb | 4 +- 2 files changed, 40 insertions(+), 2 deletions(-) create mode 100644 easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb diff --git a/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb b/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb new file mode 100644 index 0000000000..f8ab683344 --- /dev/null +++ b/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb @@ -0,0 +1,38 @@ +name = 'CGAL' +version = '4.8.1' +gmpver = '6.0.0a' + +homepage = 'http://www.cgal.org/' +description = """The goal of the CGAL Open Source Project is to provide easy access to efficient + and reliable geometric algorithms in the form of a C++ library.""" + +toolchain = {'name': 'foss', 'version': '2015a'} +toolchainopts = {'strict': True} + +# note: source URL needs to be updated for a new version (checksums too)! +source_urls = ['https://github.com/%(name)s/%(namelower)s/releases/download/releases%2F%(name)s-%(version)s'] +sources = [SOURCE_TAR_XZ] +checksums = ['1cbcb3f251822766ed3d744f923c782d'] + +dependencies = [ + ('Boost', '1.60.0'), + ('GMP', gmpver), + ('MPFR', '3.1.2', '-GMP-%s' % gmpver), +] + +configopts = "-DCMAKE_VERBOSE_MAKEFILE=ON " +configopts += "-DBoost_INCLUDE_DIR=$EBROOTBOOST/include " +configopts += "-DBoost_LIBRARY_DIRS=$EBROOTBOOST/lib " +configopts += "-DBoost_SYSTEM_LIBRARY=$EBROOTBOOST/libboost_system.%s " % SHLIB_EXT +configopts += "-DBoost_THREAD_LIBRARY=$EBROOTBOOST/libboost_thread.%s " % SHLIB_EXT +configopts += "-DMPFR_INCLUDE_DIR=$EBROOTMPFR/include " +configopts += "-DMPFR_LIBRARIES=$EBROOTMPFR/lib/libmpfr.%s " % SHLIB_EXT +configopts += "-DGMP_INCLUDE_DIR=$EBROOTGMP/include " +configopts += "-DGMP_LIBRARIES=$EBROOTGMP/lib/libgmp.%s " % SHLIB_EXT +configopts += "-DGMP_LIBRARIES_DIR=$EBROOTGMP/lib " + +builddependencies = [ + ('CMake', '3.4.1'), +] + +moduleclass = 'numlib' diff --git a/easybuild/easyconfigs/c/CMake/CMake-3.6.1.eb b/easybuild/easyconfigs/c/CMake/CMake-3.6.1.eb index 0e73857b1d..71580ff227 100644 --- a/easybuild/easyconfigs/c/CMake/CMake-3.6.1.eb +++ b/easybuild/easyconfigs/c/CMake/CMake-3.6.1.eb @@ -18,10 +18,10 @@ configopts = '-- -DCMAKE_USE_OPENSSL=1' # which might want different versions of the same dependency, eg: ncurses dependencies = [] -osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')] +osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel', 'ncurses-devel')] sanity_check_paths = { - 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']], + 'files': ["bin/%s" % x for x in ['cmake', 'ccmake', 'cpack', 'ctest']], 'dirs': [], } -- GitLab From 9b68d8c3abc8e69a5230410fc69da373615b4d90 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Thu, 1 Jun 2017 16:52:35 +1200 Subject: [PATCH 137/608] Delete this file - wrongly committed to this branch --- .../CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb b/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb index f8ab683344..0819922f0a 100644 --- a/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb +++ b/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb @@ -1,6 +1,9 @@ name = 'CGAL' version = '4.8.1' gmpver = '6.0.0a' +pyver = '2.7.11' +glibver = '2.48.2' +versionsuffix = '-GLib-%s-Python-%s' % (glibver, pyver) homepage = 'http://www.cgal.org/' description = """The goal of the CGAL Open Source Project is to provide easy access to efficient @@ -9,15 +12,16 @@ description = """The goal of the CGAL Open Source Project is to provide easy acc toolchain = {'name': 'foss', 'version': '2015a'} toolchainopts = {'strict': True} -# note: source URL needs to be updated for a new version (checksums too)! source_urls = ['https://github.com/%(name)s/%(namelower)s/releases/download/releases%2F%(name)s-%(version)s'] sources = [SOURCE_TAR_XZ] checksums = ['1cbcb3f251822766ed3d744f923c782d'] dependencies = [ ('Boost', '1.60.0'), + ('GLib', glibver), ('GMP', gmpver), ('MPFR', '3.1.2', '-GMP-%s' % gmpver), + ('Qt', '4.8.7', versionsuffix), ] configopts = "-DCMAKE_VERBOSE_MAKEFILE=ON " -- GitLab From 18ff6997f7d60bd9f4174732982e4d432f354283 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Thu, 1 Jun 2017 16:54:02 +1200 Subject: [PATCH 138/608] Delete CGAL easyconfig, again --- ....1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb | 42 ------------------- 1 file changed, 42 deletions(-) delete mode 100644 easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb diff --git a/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb b/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb deleted file mode 100644 index 0819922f0a..0000000000 --- a/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb +++ /dev/null @@ -1,42 +0,0 @@ -name = 'CGAL' -version = '4.8.1' -gmpver = '6.0.0a' -pyver = '2.7.11' -glibver = '2.48.2' -versionsuffix = '-GLib-%s-Python-%s' % (glibver, pyver) - -homepage = 'http://www.cgal.org/' -description = """The goal of the CGAL Open Source Project is to provide easy access to efficient - and reliable geometric algorithms in the form of a C++ library.""" - -toolchain = {'name': 'foss', 'version': '2015a'} -toolchainopts = {'strict': True} - -source_urls = ['https://github.com/%(name)s/%(namelower)s/releases/download/releases%2F%(name)s-%(version)s'] -sources = [SOURCE_TAR_XZ] -checksums = ['1cbcb3f251822766ed3d744f923c782d'] - -dependencies = [ - ('Boost', '1.60.0'), - ('GLib', glibver), - ('GMP', gmpver), - ('MPFR', '3.1.2', '-GMP-%s' % gmpver), - ('Qt', '4.8.7', versionsuffix), -] - -configopts = "-DCMAKE_VERBOSE_MAKEFILE=ON " -configopts += "-DBoost_INCLUDE_DIR=$EBROOTBOOST/include " -configopts += "-DBoost_LIBRARY_DIRS=$EBROOTBOOST/lib " -configopts += "-DBoost_SYSTEM_LIBRARY=$EBROOTBOOST/libboost_system.%s " % SHLIB_EXT -configopts += "-DBoost_THREAD_LIBRARY=$EBROOTBOOST/libboost_thread.%s " % SHLIB_EXT -configopts += "-DMPFR_INCLUDE_DIR=$EBROOTMPFR/include " -configopts += "-DMPFR_LIBRARIES=$EBROOTMPFR/lib/libmpfr.%s " % SHLIB_EXT -configopts += "-DGMP_INCLUDE_DIR=$EBROOTGMP/include " -configopts += "-DGMP_LIBRARIES=$EBROOTGMP/lib/libgmp.%s " % SHLIB_EXT -configopts += "-DGMP_LIBRARIES_DIR=$EBROOTGMP/lib " - -builddependencies = [ - ('CMake', '3.4.1'), -] - -moduleclass = 'numlib' -- GitLab From 2fd2715980e85eb5489fcfc009fa5dbe6fb5056f Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Thu, 1 Jun 2017 17:12:31 +1200 Subject: [PATCH 139/608] Dependencies for the gimkl-2017a toolchain --- easybuild/easyconfigs/g/GCC/GCC-5.4.0.eb | 25 ++++++++++++ easybuild/easyconfigs/g/gimpi/gimpi-2017a.eb | 18 +++++++++ .../i/imkl/imkl-2017.1.132-gimpi-2017a.eb | 36 +++++++++++++++++ .../i/impi/impi-2017.1.132-GCC-5.4.0.eb | 40 +++++++++++++++++++ 4 files changed, 119 insertions(+) create mode 100644 easybuild/easyconfigs/g/GCC/GCC-5.4.0.eb create mode 100644 easybuild/easyconfigs/g/gimpi/gimpi-2017a.eb create mode 100644 easybuild/easyconfigs/i/imkl/imkl-2017.1.132-gimpi-2017a.eb create mode 100644 easybuild/easyconfigs/i/impi/impi-2017.1.132-GCC-5.4.0.eb diff --git a/easybuild/easyconfigs/g/GCC/GCC-5.4.0.eb b/easybuild/easyconfigs/g/GCC/GCC-5.4.0.eb new file mode 100644 index 0000000000..0bc33f7250 --- /dev/null +++ b/easybuild/easyconfigs/g/GCC/GCC-5.4.0.eb @@ -0,0 +1,25 @@ +easyblock = 'Bundle' + +name = 'GCC' +version = '5.4.0' + +binutilsver = '2.26' +#versionsuffix = '-%s' % binutilsver + +homepage = 'http://gcc.gnu.org/' +description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, + as well as libraries for these languages (libstdc++, libgcj,...).""" + +toolchain = {'name': 'dummy', 'version': ''} + +dependencies = [ + ('GCCcore', version), + # binutils built on top of GCCcore, which was built on top of (dummy-built) binutils + ('binutils', binutilsver, '', ('GCCcore', version)), +] + +altroot = 'GCCcore' +altversion = 'GCCcore' + +# this bundle serves as a compiler-only toolchain, so it should be marked as compiler (important for HMNS) +moduleclass = 'compiler' diff --git a/easybuild/easyconfigs/g/gimpi/gimpi-2017a.eb b/easybuild/easyconfigs/g/gimpi/gimpi-2017a.eb new file mode 100644 index 0000000000..394c894b37 --- /dev/null +++ b/easybuild/easyconfigs/g/gimpi/gimpi-2017a.eb @@ -0,0 +1,18 @@ +easyblock = "Toolchain" + +name = 'gimpi' +version = '2017a' + +homepage = '(none)' +description = """GNU Compiler Collection (GCC) based compiler toolchain with Intel MPI.""" + +toolchain = {'name': 'dummy', 'version': 'dummy'} + +comp = ('GCC', '5.4.0') + +dependencies = [ + comp, + ('impi', '2017.1.132', '', comp), +] + +moduleclass = 'toolchain' diff --git a/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-gimpi-2017a.eb b/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-gimpi-2017a.eb new file mode 100644 index 0000000000..aaa3568ab0 --- /dev/null +++ b/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-gimpi-2017a.eb @@ -0,0 +1,36 @@ +name = 'imkl' +version = '2017.1.132' + +homepage = 'http://software.intel.com/en-us/intel-mkl/' +description = """Intel Math Kernel Library is a library of highly optimized, + extensively threaded math routines for science, engineering, and financial + applications that require maximum performance. Core math functions include + BLAS, LAPACK, ScaLAPACK, Sparse Solvers, Fast Fourier Transforms, Vector Math, and more.""" + +toolchain = {'name': 'gimpi', 'version': '2017a'} + +sources = ['l_mkl_%(version)s.tgz'] +checksums = ['7911c0f777c4cb04225bf4518088939e'] + +dontcreateinstalldir = 'True' + +license_file = HOME + '/licenses/intel/license.lic' + +interfaces = True + +postinstallcmds = [ + # extract the examples + 'tar xvzf %(installdir)s/mkl/examples/examples_cluster_c.tgz -C %(installdir)s/mkl/examples/', + 'tar xvzf %(installdir)s/mkl/examples/examples_cluster_f.tgz -C %(installdir)s/mkl/examples/', + 'tar xvzf %(installdir)s/mkl/examples/examples_core_c.tgz -C %(installdir)s/mkl/examples/', + 'tar xvzf %(installdir)s/mkl/examples/examples_core_f.tgz -C %(installdir)s/mkl/examples/', + 'tar xvzf %(installdir)s/mkl/examples/examples_f95.tgz -C %(installdir)s/mkl/examples/', + 'tar xvzf %(installdir)s/mkl/examples/examples_mic_f.tgz -C %(installdir)s/mkl/examples/', + 'tar xvzf %(installdir)s/mkl/examples/examples_mic_c.tgz -C %(installdir)s/mkl/examples/', +] + +modextravars = { + 'MKL_EXAMPLES': '%(installdir)s/mkl/examples/', +} + +moduleclass = 'numlib' diff --git a/easybuild/easyconfigs/i/impi/impi-2017.1.132-GCC-5.4.0.eb b/easybuild/easyconfigs/i/impi/impi-2017.1.132-GCC-5.4.0.eb new file mode 100644 index 0000000000..e03300b9d5 --- /dev/null +++ b/easybuild/easyconfigs/i/impi/impi-2017.1.132-GCC-5.4.0.eb @@ -0,0 +1,40 @@ +name = 'impi' +version = '2017.1.132' + +homepage = 'http://software.intel.com/en-us/intel-mpi-library/' +description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message + passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for + Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + +toolchain = {'name': 'GCC', 'version': '5.4.0'} + +sources = ['l_mpi_%(version)s.tgz'] +checksums = ['d5e941ac2bcf7c5576f85f6bcfee4c18'] + +dontcreateinstalldir = 'True' + +components = ['intel-mpi', 'intel-psxe', 'intel-imb'] + +# license file +license_file = HOME + '/licenses/intel/license.lic' + +# Set I_MPI_ variables to point at the appropriate compilers +set_mpi_wrappers_all = True + +# Are these values for modextravars site-specific? +modextravars = { + 'I_MPI_WAIT_MODE': '1', + 'I_MPI_DAPL_PROVIDER': 'ofa-v2-mlx4_0-1', + 'I_MPI_PMI_LIBRARY': '/usr/lib64/libpmi.so', +} + +postinstallcmds = [ + 'ln -s %(installdir)s/lib64/libmpi.so %(installdir)s/lib64/libmpich.so', + 'ln -s %(installdir)s/lib64/libmpigc4.so %(installdir)s/lib64/libmpichcxx.so', + 'ln -s %(installdir)s/lib64/libmpigf.so %(installdir)s/lib64/libfmpich.so', + 'ln -s %(installdir)s/lib64/libmpigf.so %(installdir)s/lib64/libmpichf90.so', + 'ln -s %(installdir)s/lib64/libmpi.so %(installdir)s/lib64/libmpl.so', + 'ln -s %(installdir)s/lib64/libmpi.so %(installdir)s/lib64/libopa.so' +] + +moduleclass = 'mpi' -- GitLab From 062930f2b303492bb31f9ab351985d78479c3345 Mon Sep 17 00:00:00 2001 From: builduser Date: Thu, 1 Jun 2017 08:58:54 +0200 Subject: [PATCH 140/608] Fixed line lengths, quoting and removed a commented-out line --- .../n/NRGLjubljana/NRGLjubljana-2.4.3.23-foss-2016b.eb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/n/NRGLjubljana/NRGLjubljana-2.4.3.23-foss-2016b.eb b/easybuild/easyconfigs/n/NRGLjubljana/NRGLjubljana-2.4.3.23-foss-2016b.eb index 3880dd3342..491184693e 100644 --- a/easybuild/easyconfigs/n/NRGLjubljana/NRGLjubljana-2.4.3.23-foss-2016b.eb +++ b/easybuild/easyconfigs/n/NRGLjubljana/NRGLjubljana-2.4.3.23-foss-2016b.eb @@ -15,13 +15,14 @@ docurls = 'http://nrgljubljana.ijs.si/examples/' software_license = 'LicenseGPLv3' toolchain = {'name': 'foss', 'version': '2016b'} -#toolchainopts = { 'usempi': True, 'pic': True } toolchainopts = { 'pic': True } sources = [ '%(namelower)s-%(version)s.tar.gz' ] source_urls = [ 'http://nrgljubljana.ijs.si/' ] -configopts = "--with-tools --with-boost-serialization=boost_serialization CXXFLAGS=\"-Ddsyev=dsyev_ -Ddsyevr=dsyevr_ -Dzheev=zheev_ -Dzheevr=zheevr_\" LDFLAGS=\"-lopenblas -L${EBROOTBOOST}/lib\"" +configopts = '--with-tools --with-boost-serialization=boost_serialization' +configopts += ' CXXFLAGS="-Ddsyev=dsyev_ -Ddsyevr=dsyevr_ -Dzheev=zheev_ -Dzheevr=zheevr_"' +configopts += ' LDFLAGS="-lopenblas -L${EBROOTBOOST}/lib"' dependencies = [ ('GMP', '6.1.2'), -- GitLab From 82e901b88e3a4e4f8a26414a8144a1d32c4fbd38 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 1 Jun 2017 09:25:19 +0200 Subject: [PATCH 141/608] add checksum and alternate source URL for ed 1.9 --- easybuild/easyconfigs/e/ed/ed-1.9-goolf-1.4.10.eb | 6 +++++- easybuild/easyconfigs/e/ed/ed-1.9-ictce-5.3.0.eb | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/e/ed/ed-1.9-goolf-1.4.10.eb b/easybuild/easyconfigs/e/ed/ed-1.9-goolf-1.4.10.eb index b0dc02f6dd..2c5d7fe41f 100644 --- a/easybuild/easyconfigs/e/ed/ed-1.9-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/e/ed/ed-1.9-goolf-1.4.10.eb @@ -8,8 +8,12 @@ description = """GNU ed is a line-oriented text editor.""" toolchain = {'name': 'goolf', 'version': '1.4.10'} +source_urls = [ + 'https://launchpad.net/ed/main/%(version)s/+download/', + GNU_SOURCE, +] sources = [SOURCE_TAR_GZ] -source_urls = [GNU_SOURCE] +checksums = ['d5b372cfadf073001823772272fceac2cfa87552c5cd5a8efc1c8aae61f45a88'] sanity_check_paths = { 'files': ['bin/ed'], diff --git a/easybuild/easyconfigs/e/ed/ed-1.9-ictce-5.3.0.eb b/easybuild/easyconfigs/e/ed/ed-1.9-ictce-5.3.0.eb index dfd1efd2bf..7b11af7dc6 100644 --- a/easybuild/easyconfigs/e/ed/ed-1.9-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/e/ed/ed-1.9-ictce-5.3.0.eb @@ -8,8 +8,12 @@ description = """GNU ed is a line-oriented text editor.""" toolchain = {'name': 'ictce', 'version': '5.3.0'} +source_urls = [ + 'https://launchpad.net/ed/main/%(version)s/+download/', + GNU_SOURCE, +] sources = [SOURCE_TAR_GZ] -source_urls = [GNU_SOURCE] +checksums = ['d5b372cfadf073001823772272fceac2cfa87552c5cd5a8efc1c8aae61f45a88'] sanity_check_paths = { 'files': ['bin/ed'], -- GitLab From d0ae8e4500fa9021010e0b959ca4fb47f5ed44d3 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 1 Jun 2017 09:26:51 +0200 Subject: [PATCH 142/608] also use GNU_SOURCE for GSL (nice catch @migueldiascosta!) --- easybuild/easyconfigs/g/GSL/GSL-1.16-goolf-1.7.20.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/g/GSL/GSL-1.16-goolf-1.7.20.eb b/easybuild/easyconfigs/g/GSL/GSL-1.16-goolf-1.7.20.eb index 848138c178..b2099121ee 100644 --- a/easybuild/easyconfigs/g/GSL/GSL-1.16-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/g/GSL/GSL-1.16-goolf-1.7.20.eb @@ -11,7 +11,7 @@ description = """The GNU Scientific Library (GSL) is a numerical library for C a toolchain = {'name': 'goolf', 'version': '1.7.20'} toolchainopts = {'unroll': True, 'pic': True} -source_urls = ['http://ftpmirror.gnu.org/gnu/gsl/'] +source_urls = [GNU_SOURCE] sources = [SOURCELOWER_TAR_GZ] configopts = "--with-pic" -- GitLab From 853e9b5bf078b33b989486cc9e2927813130e48e Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 1 Jun 2017 09:32:44 +0200 Subject: [PATCH 143/608] add patch for FFTW 2.1.5 to ensure *_f77 symbols are there --- .../easyconfigs/f/FFTW/FFTW-2.1.5-intel-2017a.eb | 4 ++++ .../FFTW-2.1.5_fix-configure-Fortran-linking.patch | 13 +++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 easybuild/easyconfigs/f/FFTW/FFTW-2.1.5_fix-configure-Fortran-linking.patch diff --git a/easybuild/easyconfigs/f/FFTW/FFTW-2.1.5-intel-2017a.eb b/easybuild/easyconfigs/f/FFTW/FFTW-2.1.5-intel-2017a.eb index 313bc9e8bb..f08bc07dde 100644 --- a/easybuild/easyconfigs/f/FFTW/FFTW-2.1.5-intel-2017a.eb +++ b/easybuild/easyconfigs/f/FFTW/FFTW-2.1.5-intel-2017a.eb @@ -13,6 +13,8 @@ toolchainopts = {'pic': True} sources = [SOURCELOWER_TAR_GZ] source_urls = [homepage] +patches = ['FFTW-%(version)s_fix-configure-Fortran-linking.patch'] + common_configopts = "--enable-shared --enable-type-prefix --enable-threads --with-pic" configopts = [ @@ -27,5 +29,7 @@ sanity_check_paths = { for y in ['', '_mpi', '_threads']], 'dirs': [], } +# make sure *_f77 symbols are there (patch is required to avoid --disable-fortran being used automatically) +sanity_check_commands = ["nm %(installdir)s/lib/libdfftw.a | grep _f77"] moduleclass = 'numlib' diff --git a/easybuild/easyconfigs/f/FFTW/FFTW-2.1.5_fix-configure-Fortran-linking.patch b/easybuild/easyconfigs/f/FFTW/FFTW-2.1.5_fix-configure-Fortran-linking.patch new file mode 100644 index 0000000000..3c6ff3ce4a --- /dev/null +++ b/easybuild/easyconfigs/f/FFTW/FFTW-2.1.5_fix-configure-Fortran-linking.patch @@ -0,0 +1,13 @@ +diff --git a/fftw-2.1.5.orig/configure b/fftw-2.1.5/configure +index f5bab28..ba60d87 100755 +--- a/fftw-2.1.5.orig/configure ++++ b/fftw-2.1.5/configure +@@ -8612,7 +8612,7 @@ _ACEOF + ac_save_FFLAGS=$FFLAGS + FFLAGS="$FFLAGS $ac_cv_prog_f77_v" + (eval echo $as_me:8614: \"$ac_link\") >&5 +-ac_f77_v_output=`eval $ac_link 5>&1 2>&1 | grep -v 'Driving:'` ++ac_f77_v_output=`eval $ac_link 5>&1 2>&1 | sed 's/"//g' | grep -v 'Driving:'` + echo "$ac_f77_v_output" >&5 + FFLAGS=$ac_save_FFLAGS + -- GitLab From c00a53d1e1655e39f9f41f740fda7c8292723a29 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 1 Jun 2017 10:37:57 +0200 Subject: [PATCH 144/608] add description + authorship in patch for FFTW 2.1.5 --- .../f/FFTW/FFTW-2.1.5_fix-configure-Fortran-linking.patch | 3 +++ 1 file changed, 3 insertions(+) diff --git a/easybuild/easyconfigs/f/FFTW/FFTW-2.1.5_fix-configure-Fortran-linking.patch b/easybuild/easyconfigs/f/FFTW/FFTW-2.1.5_fix-configure-Fortran-linking.patch index 3c6ff3ce4a..6dbbf6e91a 100644 --- a/easybuild/easyconfigs/f/FFTW/FFTW-2.1.5_fix-configure-Fortran-linking.patch +++ b/easybuild/easyconfigs/f/FFTW/FFTW-2.1.5_fix-configure-Fortran-linking.patch @@ -1,3 +1,6 @@ +remove double quotes from verbose output of Fortran compiler +required to avoid that --disable-fortran gets used automatically, resulting in missing *_f77 symbols +author: Kenneth Hoste (HPC-UGent) diff --git a/fftw-2.1.5.orig/configure b/fftw-2.1.5/configure index f5bab28..ba60d87 100755 --- a/fftw-2.1.5.orig/configure -- GitLab From 6b698c93def4e0de309d169b8d92e3fe487cac31 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 1 Jun 2017 10:52:52 +0200 Subject: [PATCH 145/608] adding easyconfigs: HTSlib-1.4.1-intel-2017a.eb --- .../h/HTSlib/HTSlib-1.4.1-intel-2017a.eb | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 easybuild/easyconfigs/h/HTSlib/HTSlib-1.4.1-intel-2017a.eb diff --git a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.4.1-intel-2017a.eb b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.4.1-intel-2017a.eb new file mode 100644 index 0000000000..03cac8f884 --- /dev/null +++ b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.4.1-intel-2017a.eb @@ -0,0 +1,36 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# Author: Pablo Escobar Lopez +# Swiss Institute of Bioinformatics +# Biozentrum - University of Basel +# 1.4 modified by: +# Adam Huffman +# The Francis Crick Institute + +easyblock = 'ConfigureMake' + +name = 'HTSlib' +version = '1.4.1' + +homepage = "http://www.htslib.org/" +description = """A C library for reading/writing high-throughput sequencing data. + This package includes the utilities bgzip and tabix""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['https://github.com/samtools/%(namelower)s/releases/download/%(version)s/'] +sources = [SOURCELOWER_TAR_BZ2] + +# cURL added for S3 support +dependencies = [ + ('zlib', '1.2.11'), + ('bzip2', '1.0.6'), + ('XZ', '5.2.3'), + ('cURL', '7.53.1'), +] + +sanity_check_paths = { + 'files': ["bin/bgzip", "bin/tabix", "lib/libhts.%s" % SHLIB_EXT], + 'dirs': [], +} + +moduleclass = 'bio' -- GitLab From 4324824cf9132a34f9fd33100f4f48e4332b6613 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 1 Jun 2017 11:23:11 +0200 Subject: [PATCH 146/608] adding easyconfigs: Bowtie2-2.3.2-intel-2017a.eb, tbb-2017_U6-intel-2017a.eb --- .../b/Bowtie2/Bowtie2-2.3.2-intel-2017a.eb | 35 +++++++++++++++++++ .../t/tbb/tbb-2017_U6-intel-2017a.eb | 13 +++++++ 2 files changed, 48 insertions(+) create mode 100644 easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-intel-2017a.eb create mode 100644 easybuild/easyconfigs/t/tbb/tbb-2017_U6-intel-2017a.eb diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-intel-2017a.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-intel-2017a.eb new file mode 100644 index 0000000000..98d5525da2 --- /dev/null +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-intel-2017a.eb @@ -0,0 +1,35 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# Author: Pablo Escobar Lopez +# Swiss Institute of Bioinformatics +# Biozentrum - University of Basel +# Modified by: Robert Schmidt +# Ottawa Hospital Research Institute - Bioinformatics Team +# Modified by: Adam Huffman +# The Francis Crick Institute +# Modified by: Kurt Lust, UAntwerp + +name = 'Bowtie2' +version = '2.3.2' + +homepage = 'http://bowtie-bio.sourceforge.net/bowtie2/index.shtml' +description = """ Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing reads + to long reference sequences. It is particularly good at aligning reads of about 50 up to 100s or 1,000s + of characters, and particularly good at aligning to relatively long (e.g. mammalian) genomes. + Bowtie 2 indexes the genome with an FM Index to keep its memory footprint small: for the human genome, + its memory footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end alignment modes.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'pic': True, 'cstd': 'c++11'} + +sources = ['%(namelower)s-%(version)s-source.zip'] +source_urls = [('http://sourceforge.net/projects/bowtie-bio/files/%(namelower)s/%(version)s', 'download')] + +dependencies = [('tbb', '2017_U6')] + +# disable warning on incompatible exception specification that is treated as an error +buildopts = "EXTRA_FLAGS='-wd809'" + +# to add script folder to path just uncomment this line +#modextrapaths = {'PATH': 'scripts'} + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/t/tbb/tbb-2017_U6-intel-2017a.eb b/easybuild/easyconfigs/t/tbb/tbb-2017_U6-intel-2017a.eb new file mode 100644 index 0000000000..9fd9a0ec5a --- /dev/null +++ b/easybuild/easyconfigs/t/tbb/tbb-2017_U6-intel-2017a.eb @@ -0,0 +1,13 @@ +name = 'tbb' +version = '2017_U6' + +homepage = 'https://01.org/tbb/' +description = """Intel(R) Threading Building Blocks (Intel(R) TBB) lets you easily write parallel C++ programs that + take full advantage of multicore performance, that are portable, composable and have future-proof scalability.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['https://github.com/01org/tbb/archive/'] +sources = ['%(version)s.tar.gz'] + +moduleclass = 'lib' -- GitLab From 4a0bef476a5d450ced0b667a2e603e74a2a33083 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 1 Jun 2017 11:29:44 +0200 Subject: [PATCH 147/608] adding easyconfigs: pydlpoly-20150225-intel-2017a-Python-2.7.13.eb --- ...poly-20150225-intel-2017a-Python-2.7.13.eb | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 easybuild/easyconfigs/p/pydlpoly/pydlpoly-20150225-intel-2017a-Python-2.7.13.eb diff --git a/easybuild/easyconfigs/p/pydlpoly/pydlpoly-20150225-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/p/pydlpoly/pydlpoly-20150225-intel-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..89fcff1c23 --- /dev/null +++ b/easybuild/easyconfigs/p/pydlpoly/pydlpoly-20150225-intel-2017a-Python-2.7.13.eb @@ -0,0 +1,39 @@ +easyblock = 'MakeCp' + +name = 'pydlpoly' +version = '20150225' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://cmc.aci.ruhr-uni-bochum.de/cmc/' +description = """Pydlpoly is a molecular dynamics simulation package which is a modified version of DL-POLY with + a Python language interface.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'usempi': True, 'pic': True} + +sources = ['%(name)s_250215.tgz'] +checksums = ['cd84a4b563dd16823e22fe6c450b07fd95036e20e0c6b7fc308afdb347241122'] + +dependencies = [ + ('Python', '2.7.13'), # also provides mpi4py, numpy + ('h5py', '2.7.0', versionsuffix), + ('FFTW', '2.1.5'), +] + +start_dir = 'source' + +parallel = 1 +buildopts = 'FC="$FC" LD="$FC -o" LDFLAGS="$FFLAGS" FFLAGS="-c $FFLAGS" LDLIBS="-ldfftw" F2PY_COMP=intelem' + +files_to_copy = ['doc', 'py', 'scripts', 'so'] + +sanity_check_paths = { + 'files': ['so/_pydlpoly.%s' % SHLIB_EXT], + 'dirs': ['py'], +} +sanity_check_commands = ["python -c 'import pydlpoly'"] + +modextrapaths = {'PYTHONPATH': ['py', 'so']} +modextravars = {'PDLPDIR': '%(installdir)s'} + +moduleclass = 'chem' -- GitLab From 6c13759d623f43c58ac07d121e1748f96d181536 Mon Sep 17 00:00:00 2001 From: Davide Vanzo Date: Thu, 1 Jun 2017 09:25:56 -0500 Subject: [PATCH 148/608] Added patch file --- easybuild/easyconfigs/x/XZ/XZ-5.2.2-GCCcore-5.4.0.eb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/easybuild/easyconfigs/x/XZ/XZ-5.2.2-GCCcore-5.4.0.eb b/easybuild/easyconfigs/x/XZ/XZ-5.2.2-GCCcore-5.4.0.eb index c46df20c2f..3f9cceef3c 100644 --- a/easybuild/easyconfigs/x/XZ/XZ-5.2.2-GCCcore-5.4.0.eb +++ b/easybuild/easyconfigs/x/XZ/XZ-5.2.2-GCCcore-5.4.0.eb @@ -11,6 +11,8 @@ toolchain = {'name': 'GCCcore', 'version': '5.4.0'} sources = [SOURCELOWER_TAR_BZ2] source_urls = ['http://tukaani.org/xz/'] +patches = ['XZ-%(version)s_compat-libs.patch'] + builddependencies = [ ('gettext', '0.19.8', '', True), # use same binutils version that was used when building GCCcore toolchain -- GitLab From ac8aa533f0100516bc03024358ad05266281e8e4 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Fri, 2 Jun 2017 10:12:15 +1200 Subject: [PATCH 149/608] Tweaks requested by K.H. --- easybuild/easyconfigs/c/CMake/CMake-3.6.1.eb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/c/CMake/CMake-3.6.1.eb b/easybuild/easyconfigs/c/CMake/CMake-3.6.1.eb index 71580ff227..d8773947c8 100644 --- a/easybuild/easyconfigs/c/CMake/CMake-3.6.1.eb +++ b/easybuild/easyconfigs/c/CMake/CMake-3.6.1.eb @@ -18,10 +18,10 @@ configopts = '-- -DCMAKE_USE_OPENSSL=1' # which might want different versions of the same dependency, eg: ncurses dependencies = [] -osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel', 'ncurses-devel')] +osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel'), 'ncurses-devel'] sanity_check_paths = { - 'files': ["bin/%s" % x for x in ['cmake', 'ccmake', 'cpack', 'ctest']], + 'files': ["bin/%s" % x for x in ['ccmake', 'cmake', 'cpack', 'ctest']], 'dirs': [], } -- GitLab From 300e1c109c871025c7993c7899d48c0bf07033ec Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Fri, 2 Jun 2017 10:39:57 +1200 Subject: [PATCH 150/608] Change GCC-5.4.0 to GCC-5.4.0-2.26 and consequential changes --- easybuild/easyconfigs/g/GCC/GCC-5.4.0.eb | 25 ------------------- easybuild/easyconfigs/g/gimkl/gimkl-2017a.eb | 4 ++- easybuild/easyconfigs/g/gimpi/gimpi-2017a.eb | 4 ++- ...0.eb => impi-2017.1.132-GCC-5.4.0-2.26.eb} | 13 +++------- 4 files changed, 10 insertions(+), 36 deletions(-) delete mode 100644 easybuild/easyconfigs/g/GCC/GCC-5.4.0.eb rename easybuild/easyconfigs/i/impi/{impi-2017.1.132-GCC-5.4.0.eb => impi-2017.1.132-GCC-5.4.0-2.26.eb} (81%) diff --git a/easybuild/easyconfigs/g/GCC/GCC-5.4.0.eb b/easybuild/easyconfigs/g/GCC/GCC-5.4.0.eb deleted file mode 100644 index 0bc33f7250..0000000000 --- a/easybuild/easyconfigs/g/GCC/GCC-5.4.0.eb +++ /dev/null @@ -1,25 +0,0 @@ -easyblock = 'Bundle' - -name = 'GCC' -version = '5.4.0' - -binutilsver = '2.26' -#versionsuffix = '-%s' % binutilsver - -homepage = 'http://gcc.gnu.org/' -description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, - as well as libraries for these languages (libstdc++, libgcj,...).""" - -toolchain = {'name': 'dummy', 'version': ''} - -dependencies = [ - ('GCCcore', version), - # binutils built on top of GCCcore, which was built on top of (dummy-built) binutils - ('binutils', binutilsver, '', ('GCCcore', version)), -] - -altroot = 'GCCcore' -altversion = 'GCCcore' - -# this bundle serves as a compiler-only toolchain, so it should be marked as compiler (important for HMNS) -moduleclass = 'compiler' diff --git a/easybuild/easyconfigs/g/gimkl/gimkl-2017a.eb b/easybuild/easyconfigs/g/gimkl/gimkl-2017a.eb index 553786dd35..1ed5c3adff 100644 --- a/easybuild/easyconfigs/g/gimkl/gimkl-2017a.eb +++ b/easybuild/easyconfigs/g/gimkl/gimkl-2017a.eb @@ -8,7 +8,9 @@ description = """GNU Compiler Collection (GCC) based compiler toolchain with Int toolchain = {'name': 'dummy', 'version': 'dummy'} -comp = ('GCC', '5.4.0') +gccver = '5.4.0' +binutilsver = '2.26' +comp = ('GCC', '%s-%s' % (gccver, binutilsver)) dependencies = [ comp, diff --git a/easybuild/easyconfigs/g/gimpi/gimpi-2017a.eb b/easybuild/easyconfigs/g/gimpi/gimpi-2017a.eb index 394c894b37..faaefc8f0b 100644 --- a/easybuild/easyconfigs/g/gimpi/gimpi-2017a.eb +++ b/easybuild/easyconfigs/g/gimpi/gimpi-2017a.eb @@ -8,7 +8,9 @@ description = """GNU Compiler Collection (GCC) based compiler toolchain with Int toolchain = {'name': 'dummy', 'version': 'dummy'} -comp = ('GCC', '5.4.0') +gccver = '5.4.0' +binutilsver = '2.26' +comp = ('GCC', '%s-%s' % (gccver, binutilsver)) dependencies = [ comp, diff --git a/easybuild/easyconfigs/i/impi/impi-2017.1.132-GCC-5.4.0.eb b/easybuild/easyconfigs/i/impi/impi-2017.1.132-GCC-5.4.0-2.26.eb similarity index 81% rename from easybuild/easyconfigs/i/impi/impi-2017.1.132-GCC-5.4.0.eb rename to easybuild/easyconfigs/i/impi/impi-2017.1.132-GCC-5.4.0-2.26.eb index e03300b9d5..596670ca45 100644 --- a/easybuild/easyconfigs/i/impi/impi-2017.1.132-GCC-5.4.0.eb +++ b/easybuild/easyconfigs/i/impi/impi-2017.1.132-GCC-5.4.0-2.26.eb @@ -6,7 +6,9 @@ description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric messag passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" -toolchain = {'name': 'GCC', 'version': '5.4.0'} +gccver = '5.4.0' +binutilsver = '2.26' +toolchain = {'name': 'GCC', 'version': '%s-%s' % (gccver, binutilsver)} sources = ['l_mpi_%(version)s.tgz'] checksums = ['d5e941ac2bcf7c5576f85f6bcfee4c18'] @@ -19,14 +21,7 @@ components = ['intel-mpi', 'intel-psxe', 'intel-imb'] license_file = HOME + '/licenses/intel/license.lic' # Set I_MPI_ variables to point at the appropriate compilers -set_mpi_wrappers_all = True - -# Are these values for modextravars site-specific? -modextravars = { - 'I_MPI_WAIT_MODE': '1', - 'I_MPI_DAPL_PROVIDER': 'ofa-v2-mlx4_0-1', - 'I_MPI_PMI_LIBRARY': '/usr/lib64/libpmi.so', -} +#set_mpi_wrappers_all = True postinstallcmds = [ 'ln -s %(installdir)s/lib64/libmpi.so %(installdir)s/lib64/libmpich.so', -- GitLab From 56f3c72e17f2ef085d5dc268b5d6fa3d7c99802e Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Fri, 2 Jun 2017 16:11:07 +1200 Subject: [PATCH 151/608] Change file permissions on two libpciaccess easyconfigs --- .../easyconfigs/l/libpciaccess/libpciaccess-0.13.4-foss-2016b.eb | 0 .../easyconfigs/l/libpciaccess/libpciaccess-0.13.4-intel-2016b.eb | 0 2 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-foss-2016b.eb mode change 100755 => 100644 easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-intel-2016b.eb diff --git a/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-foss-2016b.eb b/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-foss-2016b.eb old mode 100755 new mode 100644 diff --git a/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-intel-2016b.eb b/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-intel-2016b.eb old mode 100755 new mode 100644 -- GitLab From f01ff0a9d8b5164a1088d4aa9172d424c2b2c312 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Fri, 2 Jun 2017 17:16:17 +1200 Subject: [PATCH 152/608] Changes requested by K.H. --- ....1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb | 38 +++++++++++ .../e/Eigen/Eigen-3.2.9-foss-2015a.eb | 13 ++++ .../e/eudev/eudev-3.1.5-foss-2015a.eb | 32 ++++++++++ .../g/gperf/gperf-3.0.4-foss-2015a.eb | 22 +++++++ .../l/LLVM/LLVM-3.7.1-foss-2015a.eb | 33 ++++++++++ .../l/libdrm/libdrm-2.4.68-foss-2015a.eb | 28 +++++++++ .../libpciaccess-0.13.4-foss-2015a.eb | 24 +++++++ .../m/Mesa/Mesa-11.2.1-foss-2015a.eb | 63 +++++++++++++++++++ .../makedepend/makedepend-1.0.5-foss-2015a.eb | 24 +++++++ 9 files changed, 277 insertions(+) create mode 100644 easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb create mode 100644 easybuild/easyconfigs/e/Eigen/Eigen-3.2.9-foss-2015a.eb create mode 100644 easybuild/easyconfigs/e/eudev/eudev-3.1.5-foss-2015a.eb create mode 100644 easybuild/easyconfigs/g/gperf/gperf-3.0.4-foss-2015a.eb create mode 100644 easybuild/easyconfigs/l/LLVM/LLVM-3.7.1-foss-2015a.eb create mode 100644 easybuild/easyconfigs/l/libdrm/libdrm-2.4.68-foss-2015a.eb create mode 100644 easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-foss-2015a.eb create mode 100644 easybuild/easyconfigs/m/Mesa/Mesa-11.2.1-foss-2015a.eb create mode 100644 easybuild/easyconfigs/m/makedepend/makedepend-1.0.5-foss-2015a.eb diff --git a/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb b/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb new file mode 100644 index 0000000000..618170db54 --- /dev/null +++ b/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb @@ -0,0 +1,38 @@ +name = 'CGAL' +version = '4.8.1' +gmpver = '6.0.0a' +pyver = '2.7.11' +glibver = '2.48.2' +versionsuffix = '-GLib-%s-Python-%s' % (glibver, pyver) + +homepage = 'http://www.cgal.org/' +description = """The goal of the CGAL Open Source Project is to provide easy access to efficient + and reliable geometric algorithms in the form of a C++ library.""" + +toolchain = {'name': 'foss', 'version': '2015a'} +toolchainopts = {'strict': True} + +source_urls = ['https://github.com/%(name)s/%(namelower)s/releases/download/releases%2F%(name)s-%(version)s'] +sources = [SOURCE_TAR_XZ] +checksums = ['1cbcb3f251822766ed3d744f923c782d'] + +dependencies = [ + ('Boost', '1.60.0'), + ('GLib', glibver), + ('GMP', gmpver), + ('libGLU', '9.0.0', '-Mesa-11.2.1'), + ('MPFR', '3.1.2', '-GMP-%s' % gmpver), + ('Qt', '4.8.7', versionsuffix), +] + +configopts = "-DCMAKE_VERBOSE_MAKEFILE=ON " +configopts += "-DOPENGL_INCLUDE_DIR=$EBROOTMESA/include\;$EBROOTLIBGLU/include " +configopts += "-DOPENGL_gl_LIBRARY=$EBROOTMESA/lib/libGL.%s " % SHLIB_EXT +configopts += "-DOPENGL_glu_LIBRARY=$EBROOTLIBGLU/lib/libGLU.%s " % SHLIB_EXT + +builddependencies = [ + ('CMake', '3.4.1'), + ('Eigen', '3.2.9'), +] + +moduleclass = 'numlib' diff --git a/easybuild/easyconfigs/e/Eigen/Eigen-3.2.9-foss-2015a.eb b/easybuild/easyconfigs/e/Eigen/Eigen-3.2.9-foss-2015a.eb new file mode 100644 index 0000000000..308bb395d6 --- /dev/null +++ b/easybuild/easyconfigs/e/Eigen/Eigen-3.2.9-foss-2015a.eb @@ -0,0 +1,13 @@ +name = 'Eigen' +version = '3.2.9' + +homepage = 'http://eigen.tuxfamily.org/index.php?title=Main_Page' +description = """Eigen is a C++ template library for linear algebra: + matrices, vectors, numerical solvers, and related algorithms.""" + +toolchain = {'name': 'foss', 'version': '2015a'} + +source_urls = ['http://bitbucket.org/%(namelower)s/%(namelower)s/get'] +sources = ['%(version)s.tar.bz2'] + +moduleclass = 'math' diff --git a/easybuild/easyconfigs/e/eudev/eudev-3.1.5-foss-2015a.eb b/easybuild/easyconfigs/e/eudev/eudev-3.1.5-foss-2015a.eb new file mode 100644 index 0000000000..6fa9d11cb4 --- /dev/null +++ b/easybuild/easyconfigs/e/eudev/eudev-3.1.5-foss-2015a.eb @@ -0,0 +1,32 @@ +easyblock = 'ConfigureMake' + +name = 'eudev' +version = '3.1.5' + +homepage = 'https://wiki.gentoo.org/wiki/Project:Eudev' +description = """eudev is a fork of systemd-udev with the goal of obtaining + better compatibility with existing software such as + OpenRC and Upstart, older kernels, various toolchains + and anything else required by users and various distributions.""" + +toolchain = {'name': 'foss', 'version': '2015a'} + +sources = [SOURCE_TAR_GZ] +source_urls = ['http://dev.gentoo.org/~blueness/%(name)s/'] +patches = ['%(name)s-3.1.2_pre-2.6.34_kernel.patch'] + +builddependencies = [ + ('gperf', '3.0.4'), +] + +osdependencies = [('kernel-headers', 'linux-libc-dev')] + +configopts = '--disable-blkid --disable-selinux --disable-gudev --disable-manpages ' +runtest = 'check' + +sanity_check_paths = { + 'files': ['bin/udevadm', 'include/libudev.h', 'include/udev.h', 'lib/libudev.so.1'], + 'dirs': [], +} + +moduleclass = 'system' diff --git a/easybuild/easyconfigs/g/gperf/gperf-3.0.4-foss-2015a.eb b/easybuild/easyconfigs/g/gperf/gperf-3.0.4-foss-2015a.eb new file mode 100644 index 0000000000..fa479b36e5 --- /dev/null +++ b/easybuild/easyconfigs/g/gperf/gperf-3.0.4-foss-2015a.eb @@ -0,0 +1,22 @@ +easyblock = 'ConfigureMake' + +name = 'gperf' +version = '3.0.4' + +homepage = 'http://www.gnu.org/software/gperf/' +description = """GNU gperf is a perfect hash function generator. For a given list of strings, it produces a hash + function and hash table, in form of C or C++ code, for looking up a value depending on the input string. The hash + function is perfect, which means that the hash table has no collisions, and the hash table lookup needs a single + string comparison only.""" + +toolchain = {'name': 'foss', 'version': '2015a'} + +source_urls = [GNU_SOURCE] +sources = [SOURCELOWER_TAR_GZ] + +sanity_check_paths = { + 'files': ['bin/gperf'], + 'dirs': [] +} + +moduleclass = 'devel' diff --git a/easybuild/easyconfigs/l/LLVM/LLVM-3.7.1-foss-2015a.eb b/easybuild/easyconfigs/l/LLVM/LLVM-3.7.1-foss-2015a.eb new file mode 100644 index 0000000000..031705af89 --- /dev/null +++ b/easybuild/easyconfigs/l/LLVM/LLVM-3.7.1-foss-2015a.eb @@ -0,0 +1,33 @@ +name = "LLVM" +version = "3.7.1" + +homepage = 'http://llvm.org' +description = """A collection of modular and reusable compiler and toolchain technologies""" +toolchain = {'name': 'foss', 'version': '2015a'} +toolchainopts = {} + +easyblock = 'ConfigureMake' + +sources = ['%(namelower)s-%(version)s.src.tar.xz'] +source_urls = ['http://llvm.org/releases/%(version)s'] + +builddependencies = [ + ('Python', '2.7.9'), +] + +# No build allowed in source dir +preconfigopts = "[ ! -e build ] && mkdir build && cd build &&" +configure_cmd_prefix = '../' + +# For llvmpy / Numba: +configopts = '--enable-optimized --enable-pic --enable-shared' +prebuildopts = 'cd build && REQUIRES_RTTI=1' + +preinstallopts = 'cd build &&' + +sanity_check_paths = { + 'files': ["lib/libLLVMCore.a", "include/llvm-c/Core.h"], + 'dirs': ["include/llvm", ] +} + +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/l/libdrm/libdrm-2.4.68-foss-2015a.eb b/easybuild/easyconfigs/l/libdrm/libdrm-2.4.68-foss-2015a.eb new file mode 100644 index 0000000000..d976cb1a3f --- /dev/null +++ b/easybuild/easyconfigs/l/libdrm/libdrm-2.4.68-foss-2015a.eb @@ -0,0 +1,28 @@ +easyblock = 'ConfigureMake' + +name = 'libdrm' +version = '2.4.68' + +homepage = 'http://dri.freedesktop.org' +description = """Direct Rendering Manager runtime library.""" + +source_urls = ['http://dri.freedesktop.org/libdrm/'] +sources = [SOURCELOWER_TAR_GZ] + +toolchain = {'name': 'foss', 'version': '2015a'} + +builddependencies = [ + ('libpthread-stubs', '0.3'), +] + +dependencies = [ + ('libpciaccess', '0.13.4'), +] + +sanity_check_paths = { + 'files': ['include/xf86drm.h', 'include/xf86drmMode.h', 'lib/libdrm_intel.%s' % SHLIB_EXT, + 'lib/libdrm_radeon.%s' % SHLIB_EXT, 'lib/libdrm.%s' % SHLIB_EXT, 'lib/libkms.%s' % SHLIB_EXT], + 'dirs': ['include/libdrm', 'include/libkms', 'lib/pkgconfig'], +} + +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-foss-2015a.eb b/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-foss-2015a.eb new file mode 100644 index 0000000000..d0b6288597 --- /dev/null +++ b/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-foss-2015a.eb @@ -0,0 +1,24 @@ +easyblock = 'ConfigureMake' + +name = 'libpciaccess' +version = '0.13.4' + +homepage = 'http://cgit.freedesktop.org/xorg/lib/libpciaccess/' +description = """Generic PCI access library.""" + +source_urls = ['https://www.x.org/releases/individual/lib/'] +sources = [SOURCE_TAR_GZ] + +toolchain = {'name': 'foss', 'version': '2015a'} + +builddependencies = [ + ('Autotools', '20150215'), + ('X11', '20160819'), +] + +sanity_check_paths = { + 'files': ['include/pciaccess.h', 'lib/libpciaccess.a'], + 'dirs': ['lib/pkgconfig'], +} + +moduleclass = 'system' diff --git a/easybuild/easyconfigs/m/Mesa/Mesa-11.2.1-foss-2015a.eb b/easybuild/easyconfigs/m/Mesa/Mesa-11.2.1-foss-2015a.eb new file mode 100644 index 0000000000..126c65abd6 --- /dev/null +++ b/easybuild/easyconfigs/m/Mesa/Mesa-11.2.1-foss-2015a.eb @@ -0,0 +1,63 @@ +easyblock = 'ConfigureMake' + +name = 'Mesa' +version = '11.2.1' + +homepage = 'http://www.mesa3d.org/' +description = """Mesa is an open-source implementation of the OpenGL specification - + a system for rendering interactive 3D graphics.""" + +toolchain = {'name': 'foss', 'version': '2015a'} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = [ + 'https://mesa.freedesktop.org/archive/%(version)s', + 'ftp://ftp.freedesktop.org/pub/mesa/%(version)s', + 'ftp://ftp.freedesktop.org/pub/mesa/older-versions/%(version_major)s.x/%(version)s', +] + +builddependencies = [ + ('flex', '2.6.0'), + ('Bison', '3.0.4'), + ('Autotools', '20150215'), + ('pkg-config', '0.29.1'), + ('libpthread-stubs', '0.3'), + ('makedepend', '1.0.5'), +] + +dependencies = [ + ('eudev', '3.1.5'), + ('libxml2', '2.9.2'), + ('libdrm', '2.4.68'), + ('LLVM', '3.7.1'), + ('X11', '20160819'), +] + +# Use the os provided libudev or the EB provided eudev +#osdependencies = ['libudev'] + +# GLU is not part anymore of Mesa package! +configopts = " --disable-osmesa --enable-gallium-osmesa --enable-gallium-llvm --enable-glx --disable-dri" +configopts += " --enable-xlib-glx --disable-driglx-direct --with-gallium-drivers='swrast' --disable-egl" +configopts += " --with-osmesa-bits=32 --enable-texture-float " + +# package-config files for os dependencies are in an os specific place +# preconfigopts = 'libtoolize && PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/usr/lib64/pkgconfig/:/usr/share/pkgconfig" ' +preconfigopts = ' libtoolize && ' + +prebuildopts = 'env CPATH="$EBROOTLIBDRM/include/libdrm:$CPATH" ' + +sanity_check_paths = { + 'files': ['lib/libGL.%s' % SHLIB_EXT, 'lib/libOSMesa.%s' % SHLIB_EXT, + 'lib/libGLESv1_CM.%s' % SHLIB_EXT, 'lib/libGLESv2.%s' % SHLIB_EXT, + 'include/GL/glext.h', 'include/GL/gl_mangle.h', + 'include/GL/glx.h', 'include/GL/osmesa.h', + 'include/GL/gl.h', 'include/GL/glxext.h', + 'include/GL/glx_mangle.h', 'include/GLES/gl.h', + 'include/GLES2/gl2.h', 'include/GLES3/gl3.h'], + 'dirs': [] +} + +maxparallel = 1 + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/m/makedepend/makedepend-1.0.5-foss-2015a.eb b/easybuild/easyconfigs/m/makedepend/makedepend-1.0.5-foss-2015a.eb new file mode 100644 index 0000000000..29786d5315 --- /dev/null +++ b/easybuild/easyconfigs/m/makedepend/makedepend-1.0.5-foss-2015a.eb @@ -0,0 +1,24 @@ +easyblock = 'ConfigureMake' + +name = 'makedepend' +version = '1.0.5' + +homepage = "http://www.linuxfromscratch.org/blfs/view/svn/x/makedepend.html" +description = "The makedepend package contains a C-preprocessor like utility to determine build-time dependencies." + +toolchain = {'name': 'foss', 'version': '2015a'} +toolchainopts = {'optarch': True} + +sources = [SOURCE_TAR_GZ] +source_urls = [XORG_UTIL_SOURCE] + +builddependencies = [ + ('X11', '20160819'), +] + +sanity_check_paths = { + 'files': ['bin/makedepend'], + 'dirs': [], +} + +moduleclass = 'devel' -- GitLab From daac9037af512c7c3d482c4013f25d4cdf256aab Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Fri, 2 Jun 2017 17:34:56 +1200 Subject: [PATCH 153/608] Additional dependencies --- .../g/GLib/GLib-2.48.2-foss-2015a.eb | 33 +++++++++++++++++++ .../libGLU-9.0.0-foss-2015a-Mesa-11.2.1.eb | 27 +++++++++++++++ ....7-foss-2015a-GLib-2.48.2-Python-2.7.11.eb | 31 +++++++++++++++++ 3 files changed, 91 insertions(+) create mode 100644 easybuild/easyconfigs/g/GLib/GLib-2.48.2-foss-2015a.eb create mode 100644 easybuild/easyconfigs/l/libGLU/libGLU-9.0.0-foss-2015a-Mesa-11.2.1.eb create mode 100644 easybuild/easyconfigs/q/Qt/Qt-4.8.7-foss-2015a-GLib-2.48.2-Python-2.7.11.eb diff --git a/easybuild/easyconfigs/g/GLib/GLib-2.48.2-foss-2015a.eb b/easybuild/easyconfigs/g/GLib/GLib-2.48.2-foss-2015a.eb new file mode 100644 index 0000000000..9af7e1beb3 --- /dev/null +++ b/easybuild/easyconfigs/g/GLib/GLib-2.48.2-foss-2015a.eb @@ -0,0 +1,33 @@ +easyblock = 'ConfigureMake' + +name = 'GLib' +version = '2.48.2' + +homepage = 'http://www.gtk.org/' +description = """GLib is one of the base libraries of the GTK+ project""" + +toolchain = {'name': 'foss', 'version': '2015a'} +toolchainopts = {'pic': True} + +source_urls = [FTPGNOME_SOURCE] +sources = [SOURCELOWER_TAR_XZ] + +dependencies = [ + ('libffi', '3.2.1'), + ('gettext', '0.19.8'), + ('libxml2', '2.9.3'), + ('PCRE', '8.37'), +] + +builddependencies = [('Python', '2.7.9')] + +configopts = "--disable-maintainer-mode --disable-silent-rules --disable-libelf --enable-static --enable-shared --disable-systemtap --with-pcre=system" + +postinstallcmds = ["sed -i -e 's|#!.*python|#!/usr/bin/env python|' %(installdir)s/bin/*"] + +sanity_check_paths = { + 'files': ['lib/libglib-%(version_major)s.0.a', 'lib/libglib-%%(version_major)s.0.%s' % SHLIB_EXT], + 'dirs': ['bin', 'include'], +} + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/l/libGLU/libGLU-9.0.0-foss-2015a-Mesa-11.2.1.eb b/easybuild/easyconfigs/l/libGLU/libGLU-9.0.0-foss-2015a-Mesa-11.2.1.eb new file mode 100644 index 0000000000..ffcaba3d56 --- /dev/null +++ b/easybuild/easyconfigs/l/libGLU/libGLU-9.0.0-foss-2015a-Mesa-11.2.1.eb @@ -0,0 +1,27 @@ +easyblock = 'ConfigureMake' + +name = 'libGLU' +version = '9.0.0' + +homepage = 'ftp://ftp.freedesktop.org/pub/mesa/glu/' +description = """The OpenGL Utility Library (GLU) is a computer graphics library for OpenGL. """ + +toolchain = {'name': 'foss', 'version': '2015a'} +toolchainopts = {'pic': True} + +source_urls = ['ftp://ftp.freedesktop.org/pub/mesa/glu/'] +sources = ['glu-%(version)s.tar.bz2'] + +mesa_ver = '11.2.1' +versionsuffix = '-Mesa-%s' % mesa_ver + +dependencies = [ + ('Mesa', mesa_ver), +] + +sanity_check_paths = { + 'files': ['lib/libGLU.so.1'], + 'dirs': [], +} + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/q/Qt/Qt-4.8.7-foss-2015a-GLib-2.48.2-Python-2.7.11.eb b/easybuild/easyconfigs/q/Qt/Qt-4.8.7-foss-2015a-GLib-2.48.2-Python-2.7.11.eb new file mode 100644 index 0000000000..ba744fff34 --- /dev/null +++ b/easybuild/easyconfigs/q/Qt/Qt-4.8.7-foss-2015a-GLib-2.48.2-Python-2.7.11.eb @@ -0,0 +1,31 @@ +name = 'Qt' +version = '4.8.7' +glib = 'GLib' +glibver = '2.48.2' +glibsuffix = '-%s-%s' % (glib, glibver) +python = 'Python' +pyver = '2.7.11' +pysuffix = '-%s-%s' % (python, pyver) +versionsuffix = '%s%s' % (glibsuffix, pysuffix) + +homepage = 'http://qt.io/' +description = "Qt is a comprehensive cross-platform C++ application framework." + +toolchain = {'name': 'foss', 'version': '2015a'} + +source_urls = [ + 'http://download.qt.io/official_releases/qt/%(version_major_minor)s/%(version)s/', + 'http://download.qt.io/archive/qt/%(version_major_minor)s/%(version)s/' +] +sources = ['%(namelower)s-everywhere-opensource-src-%(version)s.tar.gz'] + +patches = ['Qt-%(version)s_phonon-export.patch'] + +dependencies = [ + ('GLib', '2.48.2'), + ('libX11', '1.6.3', pysuffix), + ('libXt', '1.1.5', pysuffix), + ('libXrender', '0.9.9', pysuffix), +] + +moduleclass = 'devel' -- GitLab From 722ce562fc3fa30be225d4670301b21c465477bc Mon Sep 17 00:00:00 2001 From: Davide Vanzo Date: Fri, 2 Jun 2017 13:03:54 -0500 Subject: [PATCH 154/608] adding easyconfigs: X11-20160819-GCCcore-5.4.0.eb --- .../x/X11/X11-20160819-GCCcore-5.4.0.eb | 134 ++++++++++++++++++ 1 file changed, 134 insertions(+) create mode 100644 easybuild/easyconfigs/x/X11/X11-20160819-GCCcore-5.4.0.eb diff --git a/easybuild/easyconfigs/x/X11/X11-20160819-GCCcore-5.4.0.eb b/easybuild/easyconfigs/x/X11/X11-20160819-GCCcore-5.4.0.eb new file mode 100644 index 0000000000..69f438faec --- /dev/null +++ b/easybuild/easyconfigs/x/X11/X11-20160819-GCCcore-5.4.0.eb @@ -0,0 +1,134 @@ +easyblock = 'Bundle' + +name = 'X11' +version = '20160819' + +homepage = 'https://www.x.org' +description = "The X Window System (X11) is a windowing system for bitmap displays" + +toolchain = {'name': 'GCCcore', 'version': '5.4.0'} + +source_urls = [ + XORG_LIB_SOURCE, + XORG_PROTO_SOURCE, + 'http://xcb.freedesktop.org/dist/', + 'http://xkbcommon.org/download/', + 'http://cgit.freedesktop.org/xorg/util/macros/snapshot', +] + +builddependencies = [ + ('Autotools', '20150215'), + ('Bison', '3.0.4'), + ('gettext', '0.19.8'), + ('pkg-config', '0.29.1'), + ('binutils', '2.26', '', True), +] +dependencies = [ + ('freetype', '2.6.5'), + ('fontconfig', '2.12.1'), + ('zlib', '1.2.8'), + ('bzip2', '1.0.6'), +] + +default_easyblock = 'ConfigureMake' + +common_specs = { + 'sources': [SOURCE_TAR_GZ], + 'start_dir': '%(name)s-%(version)s', +} +components = [ + ('xorg-macros', '1.19.0', { + 'sources': ['util-macros-%(version)s.tar.gz'], + 'start_dir': 'util-macros-%(version)s', + }), + ('libpthread-stubs', '0.3', common_specs), + ('bigreqsproto', '1.1.2', common_specs), + ('compositeproto', '0.4.2', common_specs), + ('damageproto', '1.2.1', common_specs), + ('dmxproto', '2.3.1', common_specs), + ('dri2proto', '2.8', common_specs), + ('dri3proto', '1.0', common_specs), + ('fixesproto', '5.0', common_specs), + ('fontsproto', '2.1.3', common_specs), + ('glproto', '1.4.17', common_specs), + ('inputproto', '2.3.1', common_specs), + ('kbproto', '1.0.7', common_specs), + ('presentproto', '1.0', common_specs), + ('randrproto', '1.5.0', common_specs), + ('recordproto', '1.14.2', common_specs), + ('renderproto', '0.11', common_specs), + ('resourceproto', '1.2.0', common_specs), + ('scrnsaverproto', '1.2.2', common_specs), + ('videoproto', '2.3.3', common_specs), + ('xcmiscproto', '1.2.2', common_specs), + ('xextproto', '7.3.0', common_specs), + ('xf86bigfontproto', '1.2.0', common_specs), + ('xf86dgaproto', '2.1', common_specs), + ('xf86driproto', '2.1.1', common_specs), + ('xf86vidmodeproto', '2.3.1', common_specs), + ('xineramaproto', '1.2.1', common_specs), + ('xproto', '7.0.28', common_specs), + ('libXau', '1.0.8', common_specs), + ('libXdmcp', '1.1.2', common_specs), + ('xcb-proto', '1.11', common_specs), + ('libxcb', '1.11.1', common_specs), + ('xtrans', '1.3.5', common_specs), + ('libxkbcommon', '0.6.1', { + 'sources': ['libxkbcommon-%(version)s.tar.xz'], + 'start_dir': 'libxkbcommon-%(version)s', + }), + ('libX11', '1.6.3', common_specs), + ('libXext', '1.3.3', common_specs), + ('libFS', '1.0.7', common_specs), + ('libICE', '1.0.9', common_specs), + ('libSM', '1.2.2', common_specs), + ('libXScrnSaver', '1.2.2', common_specs), + ('libXt', '1.1.5', common_specs), + ('libXmu', '1.1.2', common_specs), + ('libXpm', '3.5.11', common_specs), + ('libXaw', '1.0.13', common_specs), + ('libXfixes', '5.0.2', common_specs), + ('libXcomposite', '0.4.4', common_specs), + ('libXrender', '0.9.9', common_specs), + ('libXcursor', '1.1.14', common_specs), + ('libXdamage', '1.1.4', common_specs), + ('libfontenc', '1.1.3', common_specs), + ('libXfont', '1.5.1', common_specs), + ('libXft', '2.3.2', common_specs), + ('libXi', '1.7.6', common_specs), + ('libXinerama', '1.1.3', common_specs), + ('libXrandr', '1.5.0', common_specs), + ('libXres', '1.0.7', common_specs), + ('libXtst', '1.2.2', common_specs), + ('libXv', '1.0.10', common_specs), + ('libXvMC', '1.0.9', common_specs), + ('libXxf86dga', '1.1.4', common_specs), + ('libXxf86vm', '1.1.4', common_specs), + ('libdmx', '1.1.3', common_specs), + ('libpciaccess', '0.13.4', common_specs), + ('libxkbfile', '1.0.9', common_specs), + ('libxshmfence', '1.2', common_specs), + ('xcb-util', '0.4.0', common_specs), + ('xcb-util-image', '0.4.0', common_specs), + ('xcb-util-keysyms', '0.4.0', common_specs), + ('xcb-util-renderutil', '0.3.9', common_specs), + ('xcb-util-wm', '0.4.1', common_specs), + ('xcb-util-cursor', '0.1.3', common_specs), +] + +# Python is required for xcb-proto +allow_system_deps = [('Python', SYS_PYTHON_VERSION)] +pyshortver = '.'.join(SYS_PYTHON_VERSION.split('.')[0:2]) + +preconfigopts = "if [ ! -f configure ]; then ./autogen.sh; fi && " + +# specify that Bundle easyblock should run a full sanity check, rather than just trying to load the module +full_sanity_check = True + +sanity_check_paths = { + 'files': ['include/X11/Xlib.h', 'include/X11/Xutil.h'], + 'dirs': ['include/GL', 'include/X11', 'include/X11/extensions', 'lib', + 'lib/python%s/site-packages/xcbgen' % pyshortver, 'lib/pkgconfig', 'share/pkgconfig'], +} + +moduleclass = 'vis' -- GitLab From 2bf7bc8bb1026af9f14f6b968e78eca8fb3f9d08 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Sat, 3 Jun 2017 12:06:50 +0200 Subject: [PATCH 155/608] consistently use --with-harfbuzz=no configure option in freetype easyconfigs --- .../easyconfigs/f/freetype/freetype-2.4.10-goolf-1.4.10.eb | 2 ++ easybuild/easyconfigs/f/freetype/freetype-2.4.10-ictce-5.3.0.eb | 2 ++ .../easyconfigs/f/freetype/freetype-2.4.11-goolf-1.4.10.eb | 2 ++ easybuild/easyconfigs/f/freetype/freetype-2.4.11-ictce-5.3.0.eb | 2 ++ .../easyconfigs/f/freetype/freetype-2.5.0.1-goolf-1.4.10.eb | 2 ++ .../easyconfigs/f/freetype/freetype-2.5.0.1-ictce-5.3.0.eb | 2 ++ .../easyconfigs/f/freetype/freetype-2.5.0.1-ictce-5.5.0.eb | 2 ++ easybuild/easyconfigs/f/freetype/freetype-2.5.2-ictce-5.5.0.eb | 2 ++ easybuild/easyconfigs/f/freetype/freetype-2.5.3-foss-2014b.eb | 2 ++ easybuild/easyconfigs/f/freetype/freetype-2.5.3-goolf-1.7.20.eb | 2 ++ easybuild/easyconfigs/f/freetype/freetype-2.5.3-intel-2014b.eb | 2 ++ easybuild/easyconfigs/f/freetype/freetype-2.5.5-foss-2015a.eb | 2 ++ easybuild/easyconfigs/f/freetype/freetype-2.5.5-goolf-1.7.20.eb | 2 ++ easybuild/easyconfigs/f/freetype/freetype-2.5.5-intel-2015a.eb | 2 ++ easybuild/easyconfigs/f/freetype/freetype-2.5.5-intel-2015b.eb | 2 ++ easybuild/easyconfigs/f/freetype/freetype-2.6-foss-2015a.eb | 2 ++ easybuild/easyconfigs/f/freetype/freetype-2.6-goolf-1.7.20.eb | 2 ++ easybuild/easyconfigs/f/freetype/freetype-2.6-intel-2015a.eb | 2 ++ .../f/freetype/freetype-2.6.1-intel-2015b-libpng-1.6.19.eb | 2 ++ easybuild/easyconfigs/f/freetype/freetype-2.6.1-intel-2015b.eb | 2 ++ .../easyconfigs/f/freetype/freetype-2.6.2-CrayGNU-2015.11.eb | 2 ++ easybuild/easyconfigs/f/freetype/freetype-2.6.2-foss-2015a.eb | 2 ++ easybuild/easyconfigs/f/freetype/freetype-2.6.2-foss-2015b.eb | 2 ++ easybuild/easyconfigs/f/freetype/freetype-2.6.2-foss-2016a.eb | 2 ++ easybuild/easyconfigs/f/freetype/freetype-2.6.2-gimkl-2.11.5.eb | 2 ++ easybuild/easyconfigs/f/freetype/freetype-2.6.2-goolf-1.7.20.eb | 2 ++ easybuild/easyconfigs/f/freetype/freetype-2.6.2-intel-2015b.eb | 2 ++ easybuild/easyconfigs/f/freetype/freetype-2.6.2-intel-2016a.eb | 2 ++ easybuild/easyconfigs/f/freetype/freetype-2.6.3-foss-2016a.eb | 2 ++ easybuild/easyconfigs/f/freetype/freetype-2.6.3-intel-2016a.eb | 2 ++ .../easyconfigs/f/freetype/freetype-2.6.5-GCCcore-5.4.0.eb | 2 ++ easybuild/easyconfigs/f/freetype/freetype-2.6.5-foss-2016b.eb | 2 ++ easybuild/easyconfigs/f/freetype/freetype-2.6.5-intel-2016b.eb | 2 ++ easybuild/easyconfigs/f/freetype/freetype-2.7-foss-2016b.eb | 2 ++ easybuild/easyconfigs/f/freetype/freetype-2.7-intel-2016b.eb | 2 ++ .../easyconfigs/f/freetype/freetype-2.7.1-GCCcore-5.4.0.eb | 2 ++ .../f/freetype/freetype-2.7.1-GCCcore-6.3.0-libpng-1.6.29.eb | 2 ++ .../easyconfigs/f/freetype/freetype-2.7.1-GCCcore-6.3.0.eb | 2 ++ easybuild/easyconfigs/f/freetype/freetype-2.7.1-intel-2016b.eb | 2 ++ 39 files changed, 78 insertions(+) diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.4.10-goolf-1.4.10.eb b/easybuild/easyconfigs/f/freetype/freetype-2.4.10-goolf-1.4.10.eb index 7e51dd88f4..e8bc65d782 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.4.10-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.4.10-goolf-1.4.10.eb @@ -12,6 +12,8 @@ toolchain = {'name': 'goolf', 'version': '1.4.10'} source_urls = [GNU_SAVANNAH_SOURCE] sources = [SOURCE_TAR_GZ] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.4.10-ictce-5.3.0.eb b/easybuild/easyconfigs/f/freetype/freetype-2.4.10-ictce-5.3.0.eb index bcf6608413..7e75acce83 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.4.10-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.4.10-ictce-5.3.0.eb @@ -11,6 +11,8 @@ toolchain = {'name': 'ictce', 'version': '5.3.0'} source_urls = [GNU_SAVANNAH_SOURCE] sources = [SOURCE_TAR_GZ] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.4.11-goolf-1.4.10.eb b/easybuild/easyconfigs/f/freetype/freetype-2.4.11-goolf-1.4.10.eb index 916f1302f2..dedbe863ab 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.4.11-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.4.11-goolf-1.4.10.eb @@ -12,6 +12,8 @@ toolchain = {'name': 'goolf', 'version': '1.4.10'} source_urls = [GNU_SAVANNAH_SOURCE] sources = [SOURCE_TAR_GZ] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.4.11-ictce-5.3.0.eb b/easybuild/easyconfigs/f/freetype/freetype-2.4.11-ictce-5.3.0.eb index 26eaffc5f6..10444c4ad7 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.4.11-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.4.11-ictce-5.3.0.eb @@ -11,6 +11,8 @@ toolchain = {'name': 'ictce', 'version': '5.3.0'} source_urls = ['http://download.savannah.gnu.org/releases/freetype/'] sources = [SOURCE_TAR_GZ] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.5.0.1-goolf-1.4.10.eb b/easybuild/easyconfigs/f/freetype/freetype-2.5.0.1-goolf-1.4.10.eb index cbbe1daafc..b0e7a6a30e 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.5.0.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.5.0.1-goolf-1.4.10.eb @@ -13,6 +13,8 @@ sources = [SOURCE_TAR_GZ] dependencies = [('libpng', '1.6.6')] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.5.0.1-ictce-5.3.0.eb b/easybuild/easyconfigs/f/freetype/freetype-2.5.0.1-ictce-5.3.0.eb index a5e70027fa..d1983d8529 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.5.0.1-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.5.0.1-ictce-5.3.0.eb @@ -13,6 +13,8 @@ sources = [SOURCE_TAR_GZ] dependencies = [('libpng', '1.6.6')] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.5.0.1-ictce-5.5.0.eb b/easybuild/easyconfigs/f/freetype/freetype-2.5.0.1-ictce-5.5.0.eb index 8fa382b0ca..415101e28d 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.5.0.1-ictce-5.5.0.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.5.0.1-ictce-5.5.0.eb @@ -13,6 +13,8 @@ sources = [SOURCE_TAR_GZ] dependencies = [('libpng', '1.6.6')] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.5.2-ictce-5.5.0.eb b/easybuild/easyconfigs/f/freetype/freetype-2.5.2-ictce-5.5.0.eb index 0571a145ad..64e6ea7181 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.5.2-ictce-5.5.0.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.5.2-ictce-5.5.0.eb @@ -13,6 +13,8 @@ sources = [SOURCE_TAR_GZ] dependencies = [('libpng', '1.6.9')] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.5.3-foss-2014b.eb b/easybuild/easyconfigs/f/freetype/freetype-2.5.3-foss-2014b.eb index cea107f292..0d671ee5bb 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.5.3-foss-2014b.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.5.3-foss-2014b.eb @@ -13,6 +13,8 @@ sources = [SOURCE_TAR_GZ] dependencies = [('libpng', '1.6.12')] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.5.3-goolf-1.7.20.eb b/easybuild/easyconfigs/f/freetype/freetype-2.5.3-goolf-1.7.20.eb index 9b0aae30b7..f35d8dc0c1 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.5.3-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.5.3-goolf-1.7.20.eb @@ -13,6 +13,8 @@ sources = [SOURCE_TAR_GZ] dependencies = [('libpng', '1.6.12')] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.5.3-intel-2014b.eb b/easybuild/easyconfigs/f/freetype/freetype-2.5.3-intel-2014b.eb index 45d6dc8e93..fb9b9599e8 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.5.3-intel-2014b.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.5.3-intel-2014b.eb @@ -13,6 +13,8 @@ sources = [SOURCE_TAR_GZ] dependencies = [('libpng', '1.6.12')] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.5.5-foss-2015a.eb b/easybuild/easyconfigs/f/freetype/freetype-2.5.5-foss-2015a.eb index c9b6e770b4..13b13e9cc7 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.5.5-foss-2015a.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.5.5-foss-2015a.eb @@ -13,6 +13,8 @@ sources = [SOURCE_TAR_GZ] dependencies = [('libpng', '1.6.16')] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.5.5-goolf-1.7.20.eb b/easybuild/easyconfigs/f/freetype/freetype-2.5.5-goolf-1.7.20.eb index 773f70da96..f26f3a1cf8 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.5.5-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.5.5-goolf-1.7.20.eb @@ -16,6 +16,8 @@ dependencies = [ ('zlib', '1.2.8') ] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], 'dirs': ['include/freetype2'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.5.5-intel-2015a.eb b/easybuild/easyconfigs/f/freetype/freetype-2.5.5-intel-2015a.eb index 07f4f8160c..3b19e21412 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.5.5-intel-2015a.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.5.5-intel-2015a.eb @@ -13,6 +13,8 @@ sources = [SOURCE_TAR_GZ] dependencies = [('libpng', '1.6.16')] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.5.5-intel-2015b.eb b/easybuild/easyconfigs/f/freetype/freetype-2.5.5-intel-2015b.eb index 44080cb0f8..6d539701a6 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.5.5-intel-2015b.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.5.5-intel-2015b.eb @@ -13,6 +13,8 @@ sources = [SOURCE_TAR_GZ] dependencies = [('libpng', '1.6.16')] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.6-foss-2015a.eb b/easybuild/easyconfigs/f/freetype/freetype-2.6-foss-2015a.eb index 7cfa18b2f4..352ce2f725 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.6-foss-2015a.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.6-foss-2015a.eb @@ -13,6 +13,8 @@ sources = [SOURCE_TAR_GZ] dependencies = [('libpng', '1.6.17')] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.6-goolf-1.7.20.eb b/easybuild/easyconfigs/f/freetype/freetype-2.6-goolf-1.7.20.eb index 78c7fb98d6..5930e1dad7 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.6-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.6-goolf-1.7.20.eb @@ -13,6 +13,8 @@ sources = [SOURCE_TAR_GZ] dependencies = [('libpng', '1.6.17')] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.6-intel-2015a.eb b/easybuild/easyconfigs/f/freetype/freetype-2.6-intel-2015a.eb index 4cf88e23a7..febe99790f 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.6-intel-2015a.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.6-intel-2015a.eb @@ -13,6 +13,8 @@ sources = [SOURCE_TAR_GZ] dependencies = [('libpng', '1.6.17')] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.6.1-intel-2015b-libpng-1.6.19.eb b/easybuild/easyconfigs/f/freetype/freetype-2.6.1-intel-2015b-libpng-1.6.19.eb index 8405a0ec93..4ed20bab25 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.6.1-intel-2015b-libpng-1.6.19.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.6.1-intel-2015b-libpng-1.6.19.eb @@ -15,6 +15,8 @@ libpngver = '1.6.19' versionsuffix = '-libpng-%s' % libpngver dependencies = [('libpng', libpngver)] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.6.1-intel-2015b.eb b/easybuild/easyconfigs/f/freetype/freetype-2.6.1-intel-2015b.eb index 9c9d2b2e08..2b433c8140 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.6.1-intel-2015b.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.6.1-intel-2015b.eb @@ -13,6 +13,8 @@ sources = [SOURCE_TAR_GZ] dependencies = [('libpng', '1.6.18')] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.6.2-CrayGNU-2015.11.eb b/easybuild/easyconfigs/f/freetype/freetype-2.6.2-CrayGNU-2015.11.eb index 7f9b603bc6..b8dc673ae8 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.6.2-CrayGNU-2015.11.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.6.2-CrayGNU-2015.11.eb @@ -13,6 +13,8 @@ sources = [SOURCE_TAR_GZ] dependencies = [('libpng', '1.6.21')] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.6.2-foss-2015a.eb b/easybuild/easyconfigs/f/freetype/freetype-2.6.2-foss-2015a.eb index bbfd2a2508..8d1ddddc16 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.6.2-foss-2015a.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.6.2-foss-2015a.eb @@ -13,6 +13,8 @@ sources = [SOURCE_TAR_GZ] dependencies = [('libpng', '1.6.20')] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.6.2-foss-2015b.eb b/easybuild/easyconfigs/f/freetype/freetype-2.6.2-foss-2015b.eb index 912f826139..446146f3b1 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.6.2-foss-2015b.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.6.2-foss-2015b.eb @@ -13,6 +13,8 @@ sources = [SOURCE_TAR_GZ] dependencies = [('libpng', '1.6.21')] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.6.2-foss-2016a.eb b/easybuild/easyconfigs/f/freetype/freetype-2.6.2-foss-2016a.eb index 932824a17e..75cf76d290 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.6.2-foss-2016a.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.6.2-foss-2016a.eb @@ -17,6 +17,8 @@ dependencies = [ ('zlib', '1.2.8'), ] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.6.2-gimkl-2.11.5.eb b/easybuild/easyconfigs/f/freetype/freetype-2.6.2-gimkl-2.11.5.eb index fec100e1f0..d00692c774 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.6.2-gimkl-2.11.5.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.6.2-gimkl-2.11.5.eb @@ -13,6 +13,8 @@ sources = [SOURCE_TAR_GZ] dependencies = [('libpng', '1.6.21')] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.6.2-goolf-1.7.20.eb b/easybuild/easyconfigs/f/freetype/freetype-2.6.2-goolf-1.7.20.eb index 7436cc5833..fefd237604 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.6.2-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.6.2-goolf-1.7.20.eb @@ -16,6 +16,8 @@ dependencies = [ ('zlib', '1.2.8') ] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], 'dirs': ['include/freetype2'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.6.2-intel-2015b.eb b/easybuild/easyconfigs/f/freetype/freetype-2.6.2-intel-2015b.eb index 0811253154..896545c2ea 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.6.2-intel-2015b.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.6.2-intel-2015b.eb @@ -13,6 +13,8 @@ sources = [SOURCE_TAR_GZ] dependencies = [('libpng', '1.6.21')] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.6.2-intel-2016a.eb b/easybuild/easyconfigs/f/freetype/freetype-2.6.2-intel-2016a.eb index 60b3db5452..7b8aa9c093 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.6.2-intel-2016a.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.6.2-intel-2016a.eb @@ -17,6 +17,8 @@ dependencies = [ ('zlib', '1.2.8'), ] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.6.3-foss-2016a.eb b/easybuild/easyconfigs/f/freetype/freetype-2.6.3-foss-2016a.eb index d267c83653..1b349e2706 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.6.3-foss-2016a.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.6.3-foss-2016a.eb @@ -17,6 +17,8 @@ dependencies = [ ('zlib', '1.2.8'), ] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.6.3-intel-2016a.eb b/easybuild/easyconfigs/f/freetype/freetype-2.6.3-intel-2016a.eb index 3d89e4bbb1..fe187d8408 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.6.3-intel-2016a.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.6.3-intel-2016a.eb @@ -17,6 +17,8 @@ dependencies = [ ('zlib', '1.2.8'), ] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.6.5-GCCcore-5.4.0.eb b/easybuild/easyconfigs/f/freetype/freetype-2.6.5-GCCcore-5.4.0.eb index e1a17a86f6..5aca056975 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.6.5-GCCcore-5.4.0.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.6.5-GCCcore-5.4.0.eb @@ -19,6 +19,8 @@ dependencies = [ builddependencies = [('binutils', '2.26', '', True)] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.6.5-foss-2016b.eb b/easybuild/easyconfigs/f/freetype/freetype-2.6.5-foss-2016b.eb index 9156052c8f..f59391c7f9 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.6.5-foss-2016b.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.6.5-foss-2016b.eb @@ -17,6 +17,8 @@ dependencies = [ ('zlib', '1.2.8'), ] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.6.5-intel-2016b.eb b/easybuild/easyconfigs/f/freetype/freetype-2.6.5-intel-2016b.eb index bf9e0cfc01..68aae21c57 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.6.5-intel-2016b.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.6.5-intel-2016b.eb @@ -17,6 +17,8 @@ dependencies = [ ('zlib', '1.2.8'), ] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.7-foss-2016b.eb b/easybuild/easyconfigs/f/freetype/freetype-2.7-foss-2016b.eb index 8b88736d00..85f52fb15e 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.7-foss-2016b.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.7-foss-2016b.eb @@ -17,6 +17,8 @@ dependencies = [ ('zlib', '1.2.8'), ] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.7-intel-2016b.eb b/easybuild/easyconfigs/f/freetype/freetype-2.7-intel-2016b.eb index 52d8477931..154dcf903b 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.7-intel-2016b.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.7-intel-2016b.eb @@ -17,6 +17,8 @@ dependencies = [ ('zlib', '1.2.8'), ] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.7.1-GCCcore-5.4.0.eb b/easybuild/easyconfigs/f/freetype/freetype-2.7.1-GCCcore-5.4.0.eb index fee6777ad0..f01c0208b5 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.7.1-GCCcore-5.4.0.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.7.1-GCCcore-5.4.0.eb @@ -20,6 +20,8 @@ dependencies = [ # use same binutils version that was used when building GCCcore toolchain builddependencies = [('binutils', '2.26', '', True)] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.7.1-GCCcore-6.3.0-libpng-1.6.29.eb b/easybuild/easyconfigs/f/freetype/freetype-2.7.1-GCCcore-6.3.0-libpng-1.6.29.eb index 1b0dc16aba..8016819a78 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.7.1-GCCcore-6.3.0-libpng-1.6.29.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.7.1-GCCcore-6.3.0-libpng-1.6.29.eb @@ -22,6 +22,8 @@ dependencies = [ # use same binutils version that was used when building GCCcore toolchain builddependencies = [('binutils', '2.27', '', True)] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.7.1-GCCcore-6.3.0.eb b/easybuild/easyconfigs/f/freetype/freetype-2.7.1-GCCcore-6.3.0.eb index 2892f7ffb0..50a10ef694 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.7.1-GCCcore-6.3.0.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.7.1-GCCcore-6.3.0.eb @@ -20,6 +20,8 @@ dependencies = [ # use same binutils version that was used when building GCCcore toolchain builddependencies = [('binutils', '2.27', '', True)] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.7.1-intel-2016b.eb b/easybuild/easyconfigs/f/freetype/freetype-2.7.1-intel-2016b.eb index d3a160563e..752f791cd9 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.7.1-intel-2016b.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.7.1-intel-2016b.eb @@ -17,6 +17,8 @@ dependencies = [ ('zlib', '1.2.8'), ] +configopts = '--with-harfbuzz=no' + sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], -- GitLab From 3445b51503bfd360e60c2362d9a0e0f9dcece80d Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Tue, 6 Jun 2017 16:08:24 +1200 Subject: [PATCH 156/608] Add a comment re osdependencies and remove empty dependencies list --- easybuild/easyconfigs/c/CMake/CMake-3.6.1.eb | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/easybuild/easyconfigs/c/CMake/CMake-3.6.1.eb b/easybuild/easyconfigs/c/CMake/CMake-3.6.1.eb index d8773947c8..d199586122 100644 --- a/easybuild/easyconfigs/c/CMake/CMake-3.6.1.eb +++ b/easybuild/easyconfigs/c/CMake/CMake-3.6.1.eb @@ -14,10 +14,8 @@ sources = [SOURCELOWER_TAR_GZ] configopts = '-- -DCMAKE_USE_OPENSSL=1' -# Don't depend on anything, since we will use this to build other software -# which might want different versions of the same dependency, eg: ncurses -dependencies = [] - +# Use OS dependencies in order to ensure that CMake can build software that +# depends on them osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel'), 'ncurses-devel'] sanity_check_paths = { -- GitLab From 262754d0412e86ff7f5688966891b214743e8805 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Tue, 6 Jun 2017 16:14:08 +1200 Subject: [PATCH 157/608] Replace nonce variables with ordinary strings --- easybuild/easyconfigs/g/gimkl/gimkl-2017a.eb | 4 +--- easybuild/easyconfigs/g/gimpi/gimpi-2017a.eb | 4 +--- .../easyconfigs/i/impi/impi-2017.1.132-GCC-5.4.0-2.26.eb | 4 +--- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/easybuild/easyconfigs/g/gimkl/gimkl-2017a.eb b/easybuild/easyconfigs/g/gimkl/gimkl-2017a.eb index 1ed5c3adff..a390890a86 100644 --- a/easybuild/easyconfigs/g/gimkl/gimkl-2017a.eb +++ b/easybuild/easyconfigs/g/gimkl/gimkl-2017a.eb @@ -8,9 +8,7 @@ description = """GNU Compiler Collection (GCC) based compiler toolchain with Int toolchain = {'name': 'dummy', 'version': 'dummy'} -gccver = '5.4.0' -binutilsver = '2.26' -comp = ('GCC', '%s-%s' % (gccver, binutilsver)) +comp = ('GCC', '5.4.0-2.26') dependencies = [ comp, diff --git a/easybuild/easyconfigs/g/gimpi/gimpi-2017a.eb b/easybuild/easyconfigs/g/gimpi/gimpi-2017a.eb index faaefc8f0b..93489e6415 100644 --- a/easybuild/easyconfigs/g/gimpi/gimpi-2017a.eb +++ b/easybuild/easyconfigs/g/gimpi/gimpi-2017a.eb @@ -8,9 +8,7 @@ description = """GNU Compiler Collection (GCC) based compiler toolchain with Int toolchain = {'name': 'dummy', 'version': 'dummy'} -gccver = '5.4.0' -binutilsver = '2.26' -comp = ('GCC', '%s-%s' % (gccver, binutilsver)) +comp = ('GCC', '5.4.0-2.26') dependencies = [ comp, diff --git a/easybuild/easyconfigs/i/impi/impi-2017.1.132-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/impi/impi-2017.1.132-GCC-5.4.0-2.26.eb index 596670ca45..106806006c 100644 --- a/easybuild/easyconfigs/i/impi/impi-2017.1.132-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/impi/impi-2017.1.132-GCC-5.4.0-2.26.eb @@ -6,9 +6,7 @@ description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric messag passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" -gccver = '5.4.0' -binutilsver = '2.26' -toolchain = {'name': 'GCC', 'version': '%s-%s' % (gccver, binutilsver)} +toolchain = {'name': 'GCC', 'version': '5.4.0-2.26'} sources = ['l_mpi_%(version)s.tgz'] checksums = ['d5e941ac2bcf7c5576f85f6bcfee4c18'] -- GitLab From 14e336473cfce9df9703c17b03a279c7221d0669 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 6 Jun 2017 09:31:15 +0200 Subject: [PATCH 158/608] adding easyconfigs: Perl4-CoreLibs-0.003-intel-2017a-Perl-5.24.1.eb --- ...-CoreLibs-0.003-intel-2017a-Perl-5.24.1.eb | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 easybuild/easyconfigs/p/Perl4-CoreLibs/Perl4-CoreLibs-0.003-intel-2017a-Perl-5.24.1.eb diff --git a/easybuild/easyconfigs/p/Perl4-CoreLibs/Perl4-CoreLibs-0.003-intel-2017a-Perl-5.24.1.eb b/easybuild/easyconfigs/p/Perl4-CoreLibs/Perl4-CoreLibs-0.003-intel-2017a-Perl-5.24.1.eb new file mode 100644 index 0000000000..5590b7d7de --- /dev/null +++ b/easybuild/easyconfigs/p/Perl4-CoreLibs/Perl4-CoreLibs-0.003-intel-2017a-Perl-5.24.1.eb @@ -0,0 +1,26 @@ +easyblock = 'PerlModule' + +name = 'Perl4-CoreLibs' +version = '0.003' +versionsuffix = '-Perl-%(perlver)s' + +homepage = 'https://metacpan.org/pod/Perl4::CoreLibs' +description = "Libraries historically supplied with Perl 4" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['http://search.cpan.org/CPAN/authors/id/Z/ZE/ZEFRAM/'] +sources = [SOURCE_TAR_GZ] + +dependencies = [ + ('Perl', '5.24.1'), +] + +options = {'modulename': 'Perl4::CoreLibs'} + +sanity_check_paths = { + 'files': ['lib/perl5/site_perl/%(perlver)s/getopts.pl'], + 'dirs': [], +} + +moduleclass = 'data' -- GitLab From 2bae87de23179653f9e6b98fa456c40be3249c3b Mon Sep 17 00:00:00 2001 From: Jakob Schiotz Date: Tue, 6 Jun 2017 13:46:43 +0200 Subject: [PATCH 159/608] ImageMagick with FOSS 2016b tool chain and FFmpeg support. --- .../ImageMagick-7.0.5-10-foss-2016b.eb | 44 +++++++++++++++++++ .../j/JasPer/JasPer-2.0.12-foss-2016b.eb | 25 +++++++++++ .../l/LibTIFF/LibTIFF-4.0.7-foss-2016b.eb | 35 +++++++++++++++ .../l/LittleCMS/LittleCMS-2.8-foss-2016b.eb | 23 ++++++++++ .../libjpeg-turbo-1.5.1-foss-2016b.eb | 30 +++++++++++++ 5 files changed, 157 insertions(+) create mode 100644 easybuild/easyconfigs/i/ImageMagick/ImageMagick-7.0.5-10-foss-2016b.eb create mode 100644 easybuild/easyconfigs/j/JasPer/JasPer-2.0.12-foss-2016b.eb create mode 100644 easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.7-foss-2016b.eb create mode 100644 easybuild/easyconfigs/l/LittleCMS/LittleCMS-2.8-foss-2016b.eb create mode 100644 easybuild/easyconfigs/l/libjpeg-turbo/libjpeg-turbo-1.5.1-foss-2016b.eb diff --git a/easybuild/easyconfigs/i/ImageMagick/ImageMagick-7.0.5-10-foss-2016b.eb b/easybuild/easyconfigs/i/ImageMagick/ImageMagick-7.0.5-10-foss-2016b.eb new file mode 100644 index 0000000000..c320486a5a --- /dev/null +++ b/easybuild/easyconfigs/i/ImageMagick/ImageMagick-7.0.5-10-foss-2016b.eb @@ -0,0 +1,44 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# Author: Ravi Tripathi +# Email: ravi89@uab.edu + +easyblock = 'ConfigureMake' + +name = 'ImageMagick' +version = '7.0.5-10' + +homepage = 'http://www.imagemagick.org/' +description = """ImageMagick is a software suite to create, edit, compose, or convert bitmap images""" + +toolchain = {'name': 'foss', 'version': '2016b'} + +sources = [SOURCE_TAR_GZ] +source_urls = ['https://www.imagemagick.org/download/releases/'] +#checksums = ['473a1e7ae37548eb6fe9cf2b1fb78011'] + +dependencies = [ + ('bzip2', '1.0.6'), + #('X11', '20170314'), # Conflicts with FFmpeg + ('X11', '20160819'), + ('Ghostscript', '9.20'), + ('JasPer', '2.0.12'), + ('libjpeg-turbo', '1.5.1'), + ('LibTIFF', '4.0.7'), + ('LittleCMS', '2.8'), + ('FFmpeg', '3.3.1'), +] + +builddependencies = [ + ('pkg-config', '0.29.1'), +] + +configopts = "--with-gslib --with-x" + +sanity_check_paths = { + 'files': [], + 'dirs': ['bin', 'etc/%(name)s-%(version_major)s', 'include/%(name)s-%(version_major)s', 'lib', 'share'], +} + +modextravars = {'MAGICK_HOME': '%(installdir)s'} + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/j/JasPer/JasPer-2.0.12-foss-2016b.eb b/easybuild/easyconfigs/j/JasPer/JasPer-2.0.12-foss-2016b.eb new file mode 100644 index 0000000000..c6d030f5e7 --- /dev/null +++ b/easybuild/easyconfigs/j/JasPer/JasPer-2.0.12-foss-2016b.eb @@ -0,0 +1,25 @@ +easyblock = 'CMakeMake' + +name = 'JasPer' +version = '2.0.12' + +homepage = 'http://www.ece.uvic.ca/~frodo/jasper/' +description = """The JasPer Project is an open-source initiative to provide a free + software-based reference implementation of the codec specified in the JPEG-2000 Part-1 standard.""" + +toolchain = {'name': 'foss', 'version': '2016b'} +toolchainopts = {'pic': True} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = ['http://www.ece.uvic.ca/~frodo/jasper/software/'] + +builddependencies = [('CMake', '3.7.2')] + +separate_build_dir = True + +sanity_check_paths = { + 'files': ['bin/jasper', 'lib64/libjasper.%s' % SHLIB_EXT], + 'dirs': ['include'], +} + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.7-foss-2016b.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.7-foss-2016b.eb new file mode 100644 index 0000000000..e74567cf30 --- /dev/null +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.7-foss-2016b.eb @@ -0,0 +1,35 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# +# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA +# Authors:: Fotis Georgatos , Alan O'Cais (JSC) +# License:: MIT/GPL +# $Id$ +# +# This work implements a part of the HPCBIOS project and is a component of the policy: +# http://hpcbios.readthedocs.org/en/latest/ +## +easyblock = 'ConfigureMake' + +name = 'LibTIFF' +version = '4.0.7' + +homepage = 'http://www.remotesensing.org/libtiff/' +description = "tiff: Library and tools for reading and writing TIFF data files" + +toolchain = {'name': 'foss', 'version': '2016b'} + +source_urls = [ + 'http://download.osgeo.org/libtiff/', + 'ftp://ftp.remotesensing.org/pub/libtiff/', +] +sources = ['tiff-%(version)s.tar.gz'] + +configopts = " --enable-ld-version-script " + +sanity_check_paths = { + 'files': ['bin/tiffinfo'], + 'dirs': [], +} + +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/l/LittleCMS/LittleCMS-2.8-foss-2016b.eb b/easybuild/easyconfigs/l/LittleCMS/LittleCMS-2.8-foss-2016b.eb new file mode 100644 index 0000000000..c553697d74 --- /dev/null +++ b/easybuild/easyconfigs/l/LittleCMS/LittleCMS-2.8-foss-2016b.eb @@ -0,0 +1,23 @@ +easyblock = 'ConfigureMake' + +name = 'LittleCMS' +version = '2.8' + +homepage = 'http://www.littlecms.com/' +description = """ Little CMS intends to be an OPEN SOURCE small-footprint color management engine, + with special focus on accuracy and performance. """ + +toolchain = {'name': 'foss', 'version': '2016b'} + +source_urls = ['http://sourceforge.net/projects/lcms/files/lcms/%(version)s/'] +sources = ['lcms2-%(version)s.tar.gz'] + +dependencies = [('libjpeg-turbo', '1.5.0')] + +sanity_check_paths = { + 'files': ['bin/jpgicc', 'bin/linkicc', 'bin/psicc', 'bin/transicc', 'include/lcms2.h', 'include/lcms2_plugin.h', + 'lib/liblcms2.a', 'lib/liblcms2.%s' % SHLIB_EXT, 'lib/pkgconfig/lcms2.pc'], + 'dirs': ['share/man'], +} + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/l/libjpeg-turbo/libjpeg-turbo-1.5.1-foss-2016b.eb b/easybuild/easyconfigs/l/libjpeg-turbo/libjpeg-turbo-1.5.1-foss-2016b.eb new file mode 100644 index 0000000000..7544c29c96 --- /dev/null +++ b/easybuild/easyconfigs/l/libjpeg-turbo/libjpeg-turbo-1.5.1-foss-2016b.eb @@ -0,0 +1,30 @@ +easyblock = 'ConfigureMake' + +name = 'libjpeg-turbo' +version = '1.5.1' + +homepage = 'http://sourceforge.net/projects/libjpeg-turbo/' +description = """libjpeg-turbo is a fork of the original IJG libjpeg which uses SIMD to accelerate baseline JPEG +compression and decompression. libjpeg is a library that implements JPEG image encoding, decoding and transcoding. +""" + +toolchain = {'name': 'foss', 'version': '2016b'} +toolchainopts = {'pic': True} + +source_urls = [SOURCEFORGE_SOURCE] +sources = [SOURCELOWER_TAR_GZ] + +dependencies = [ + ('NASM', '2.12.02'), +] + +configopts = "--with-jpeg8" +runtest = "test" + +sanity_check_paths = { + 'files': ['bin/cjpeg', 'bin/djpeg', 'bin/jpegtran', 'bin/rdjpgcom', 'bin/tjbench', 'bin/wrjpgcom', + 'lib/libjpeg.a', 'lib/libjpeg.%s' % SHLIB_EXT, 'lib/libturbojpeg.a', 'lib/libturbojpeg.%s' % SHLIB_EXT], + 'dirs': ['include', 'share'], +} + +moduleclass = 'lib' -- GitLab From 1c4c921fde96de1c75fa71272bdd7eb70f20b02e Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Wed, 7 Jun 2017 12:39:09 +1200 Subject: [PATCH 160/608] Remove superseded CGAL easyconfig without Qt deps etc --- .../c/CGAL/CGAL-4.8.1-foss-2015a.eb | 38 ------------------- .../libpthread-stubs-0.3-foss-2015a.eb | 20 ++++++++++ .../libpthread-stubs-0.3-foss-2016b.eb | 0 .../libpthread-stubs-0.3-intel-2016b.eb | 0 4 files changed, 20 insertions(+), 38 deletions(-) delete mode 100644 easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a.eb create mode 100644 easybuild/easyconfigs/l/libpthread-stubs/libpthread-stubs-0.3-foss-2015a.eb mode change 100755 => 100644 easybuild/easyconfigs/l/libpthread-stubs/libpthread-stubs-0.3-foss-2016b.eb mode change 100755 => 100644 easybuild/easyconfigs/l/libpthread-stubs/libpthread-stubs-0.3-intel-2016b.eb diff --git a/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a.eb b/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a.eb deleted file mode 100644 index f8ab683344..0000000000 --- a/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a.eb +++ /dev/null @@ -1,38 +0,0 @@ -name = 'CGAL' -version = '4.8.1' -gmpver = '6.0.0a' - -homepage = 'http://www.cgal.org/' -description = """The goal of the CGAL Open Source Project is to provide easy access to efficient - and reliable geometric algorithms in the form of a C++ library.""" - -toolchain = {'name': 'foss', 'version': '2015a'} -toolchainopts = {'strict': True} - -# note: source URL needs to be updated for a new version (checksums too)! -source_urls = ['https://github.com/%(name)s/%(namelower)s/releases/download/releases%2F%(name)s-%(version)s'] -sources = [SOURCE_TAR_XZ] -checksums = ['1cbcb3f251822766ed3d744f923c782d'] - -dependencies = [ - ('Boost', '1.60.0'), - ('GMP', gmpver), - ('MPFR', '3.1.2', '-GMP-%s' % gmpver), -] - -configopts = "-DCMAKE_VERBOSE_MAKEFILE=ON " -configopts += "-DBoost_INCLUDE_DIR=$EBROOTBOOST/include " -configopts += "-DBoost_LIBRARY_DIRS=$EBROOTBOOST/lib " -configopts += "-DBoost_SYSTEM_LIBRARY=$EBROOTBOOST/libboost_system.%s " % SHLIB_EXT -configopts += "-DBoost_THREAD_LIBRARY=$EBROOTBOOST/libboost_thread.%s " % SHLIB_EXT -configopts += "-DMPFR_INCLUDE_DIR=$EBROOTMPFR/include " -configopts += "-DMPFR_LIBRARIES=$EBROOTMPFR/lib/libmpfr.%s " % SHLIB_EXT -configopts += "-DGMP_INCLUDE_DIR=$EBROOTGMP/include " -configopts += "-DGMP_LIBRARIES=$EBROOTGMP/lib/libgmp.%s " % SHLIB_EXT -configopts += "-DGMP_LIBRARIES_DIR=$EBROOTGMP/lib " - -builddependencies = [ - ('CMake', '3.4.1'), -] - -moduleclass = 'numlib' diff --git a/easybuild/easyconfigs/l/libpthread-stubs/libpthread-stubs-0.3-foss-2015a.eb b/easybuild/easyconfigs/l/libpthread-stubs/libpthread-stubs-0.3-foss-2015a.eb new file mode 100644 index 0000000000..ab9b29a42e --- /dev/null +++ b/easybuild/easyconfigs/l/libpthread-stubs/libpthread-stubs-0.3-foss-2015a.eb @@ -0,0 +1,20 @@ +easyblock = 'ConfigureMake' + +name = 'libpthread-stubs' +version = '0.3' + +homepage = 'http://xcb.freedesktop.org/' +description = """The X protocol C-language Binding (XCB) is a replacement for Xlib featuring a small footprint, +latency hiding, direct access to the protocol, improved threading support, and extensibility.""" + +source_urls = ['http://xcb.freedesktop.org/dist/'] +sources = [SOURCELOWER_TAR_GZ] + +toolchain = {'name': 'foss', 'version': '2015a'} + +sanity_check_paths = { + 'files': ['lib/pkgconfig/pthread-stubs.pc'], + 'dirs': [], +} + +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/l/libpthread-stubs/libpthread-stubs-0.3-foss-2016b.eb b/easybuild/easyconfigs/l/libpthread-stubs/libpthread-stubs-0.3-foss-2016b.eb old mode 100755 new mode 100644 diff --git a/easybuild/easyconfigs/l/libpthread-stubs/libpthread-stubs-0.3-intel-2016b.eb b/easybuild/easyconfigs/l/libpthread-stubs/libpthread-stubs-0.3-intel-2016b.eb old mode 100755 new mode 100644 -- GitLab From ff12d96bb9c435aaa85e56a05bae48cf0fe5ddb0 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Wed, 7 Jun 2017 12:49:06 +1200 Subject: [PATCH 161/608] Easyconfig (hitherto missing) for gettext --- .../g/gettext/gettext-0.19.8-foss-2015a.eb | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 easybuild/easyconfigs/g/gettext/gettext-0.19.8-foss-2015a.eb diff --git a/easybuild/easyconfigs/g/gettext/gettext-0.19.8-foss-2015a.eb b/easybuild/easyconfigs/g/gettext/gettext-0.19.8-foss-2015a.eb new file mode 100644 index 0000000000..482c543fe8 --- /dev/null +++ b/easybuild/easyconfigs/g/gettext/gettext-0.19.8-foss-2015a.eb @@ -0,0 +1,23 @@ +easyblock = 'ConfigureMake' + +name = 'gettext' +version = '0.19.8' + +homepage = 'http://www.gnu.org/software/gettext/' +description = """GNU 'gettext' is an important step for the GNU Translation Project, as it is an asset on which we may +build many other steps. This package offers to programmers, translators, and even users, a well integrated set of tools +and documentation""" + +toolchain = {'name': 'foss', 'version': '2015a'} + +sources = [SOURCE_TAR_GZ] +source_urls = [GNU_SOURCE] + +dependencies = [ + ('libxml2', '2.9.3'), + ('ncurses', '5.9'), +] + +configopts = '--without-emacs --with-libxml2-prefix=$EBROOTLIBXML2' + +moduleclass = 'vis' -- GitLab From ab941d89a7b4c73ba1c485f266e2c0aa68b8744e Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Wed, 7 Jun 2017 13:08:18 +1200 Subject: [PATCH 162/608] Replace specific X11 libs with the whole X11 ensemble --- .../q/Qt/Qt-4.8.7-foss-2015a-GLib-2.48.2-Python-2.7.11.eb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/easybuild/easyconfigs/q/Qt/Qt-4.8.7-foss-2015a-GLib-2.48.2-Python-2.7.11.eb b/easybuild/easyconfigs/q/Qt/Qt-4.8.7-foss-2015a-GLib-2.48.2-Python-2.7.11.eb index ba744fff34..fa6c4175a4 100644 --- a/easybuild/easyconfigs/q/Qt/Qt-4.8.7-foss-2015a-GLib-2.48.2-Python-2.7.11.eb +++ b/easybuild/easyconfigs/q/Qt/Qt-4.8.7-foss-2015a-GLib-2.48.2-Python-2.7.11.eb @@ -23,9 +23,7 @@ patches = ['Qt-%(version)s_phonon-export.patch'] dependencies = [ ('GLib', '2.48.2'), - ('libX11', '1.6.3', pysuffix), - ('libXt', '1.1.5', pysuffix), - ('libXrender', '0.9.9', pysuffix), + ('X11', '20160819'), ] moduleclass = 'devel' -- GitLab From 658e51307010c918a6da56dde208c5e87d1a710f Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Wed, 7 Jun 2017 13:33:25 +1200 Subject: [PATCH 163/608] Use GMP built against GCC, not against foss-2015a toolchain --- .../c/CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb b/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb index 618170db54..462e46256b 100644 --- a/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb +++ b/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb @@ -19,7 +19,7 @@ checksums = ['1cbcb3f251822766ed3d744f923c782d'] dependencies = [ ('Boost', '1.60.0'), ('GLib', glibver), - ('GMP', gmpver), + ('GMP', gmpver, '', ('GCC', '4.9.2')), ('libGLU', '9.0.0', '-Mesa-11.2.1'), ('MPFR', '3.1.2', '-GMP-%s' % gmpver), ('Qt', '4.8.7', versionsuffix), -- GitLab From 8689888be2edfef451f561a8ee18c3425ddeadbe Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Wed, 7 Jun 2017 14:03:16 +1200 Subject: [PATCH 164/608] Use libxml2 2.9.3 for the sake of consistency --- easybuild/easyconfigs/m/Mesa/Mesa-11.2.1-foss-2015a.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/m/Mesa/Mesa-11.2.1-foss-2015a.eb b/easybuild/easyconfigs/m/Mesa/Mesa-11.2.1-foss-2015a.eb index 126c65abd6..27ac3ec93c 100644 --- a/easybuild/easyconfigs/m/Mesa/Mesa-11.2.1-foss-2015a.eb +++ b/easybuild/easyconfigs/m/Mesa/Mesa-11.2.1-foss-2015a.eb @@ -27,7 +27,7 @@ builddependencies = [ dependencies = [ ('eudev', '3.1.5'), - ('libxml2', '2.9.2'), + ('libxml2', '2.9.3'), ('libdrm', '2.4.68'), ('LLVM', '3.7.1'), ('X11', '20160819'), -- GitLab From bc2f2c4ca80154ec8b8782fbd9b171ec1232abeb Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Wed, 7 Jun 2017 14:18:21 +1200 Subject: [PATCH 165/608] Easyconfig for ncurses 6.0 with the gimkl 2017a toolchain --- .../n/ncurses/ncurses-6.0-gimkl-2017a.eb | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 easybuild/easyconfigs/n/ncurses/ncurses-6.0-gimkl-2017a.eb diff --git a/easybuild/easyconfigs/n/ncurses/ncurses-6.0-gimkl-2017a.eb b/easybuild/easyconfigs/n/ncurses/ncurses-6.0-gimkl-2017a.eb new file mode 100644 index 0000000000..0f183aae81 --- /dev/null +++ b/easybuild/easyconfigs/n/ncurses/ncurses-6.0-gimkl-2017a.eb @@ -0,0 +1,36 @@ +easyblock = 'ConfigureMake' + +name = 'ncurses' +version = '6.0' + +homepage = 'http://www.gnu.org/software/ncurses/' +description = """The Ncurses (new curses) library is a free software emulation of curses in System V Release 4.0, + and more. It uses Terminfo format, supports pads and color and multiple highlights and forms characters and + function-key mapping, and has all the other SYSV-curses enhancements over BSD Curses.""" + +toolchain = {'version': '2017a', 'name': 'gimkl'} +toolchainopts = {'pic': True} + +source_urls = [GNU_SOURCE] +sources = [SOURCE_TAR_GZ] + +patches = ['ncurses-%(version)s_gcc-5.patch'] + +configopts = [ + # default build + '--with-shared --enable-overwrite', + # the UTF-8 enabled version (ncursesw) + '--with-shared --enable-overwrite --enable-ext-colors --enable-widec --includedir=%(installdir)s/include/ncursesw/' +] + +libs = ["form", "menu", "ncurses", "panel"] +sanity_check_paths = { + 'files': ['bin/%s' % x for x in ["captoinfo", "clear", "infocmp", "infotocap", "ncurses%(version_major)s-config", + "reset", "tabs", "tic", "toe", "tput", "tset"]] + + ['lib/lib%s%s.a' % (x, y) for x in libs for y in ['', '_g', 'w', 'w_g']] + + ['lib/lib%s%s.so' % (x, y) for x in libs for y in ['', 'w']] + + ['lib/libncurses++%s.a' % x for x in ['', 'w']], + 'dirs': ['include', 'include/ncursesw'], +} + +moduleclass = 'devel' -- GitLab From af20584806bf6a8daecc635ec7efd99872f68489 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Wed, 7 Jun 2017 15:54:57 +1200 Subject: [PATCH 166/608] Easyconfig for zlib 1.2.11 with the gimkl 2017a toolchain --- .../z/zlib/zlib-1.2.11-gimkl-2017a.eb | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 easybuild/easyconfigs/z/zlib/zlib-1.2.11-gimkl-2017a.eb diff --git a/easybuild/easyconfigs/z/zlib/zlib-1.2.11-gimkl-2017a.eb b/easybuild/easyconfigs/z/zlib/zlib-1.2.11-gimkl-2017a.eb new file mode 100644 index 0000000000..1362fe53c9 --- /dev/null +++ b/easybuild/easyconfigs/z/zlib/zlib-1.2.11-gimkl-2017a.eb @@ -0,0 +1,22 @@ +easyblock = 'ConfigureMake' + +name = 'zlib' +version = '1.2.11' + +homepage = 'http://www.zlib.net/' +description = """zlib is designed to be a free, general-purpose, legally unencumbered -- that is, + not covered by any patents -- lossless data-compression library for use on virtually any + computer hardware and operating system.""" + +toolchain = {'version': '2017a', 'name': 'gimkl'} +toolchainopts = {'pic': True} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = [('http://sourceforge.net/projects/libpng/files/zlib/%(version)s', 'download')] + +sanity_check_paths = { + 'files': ['include/zconf.h', 'include/zlib.h', 'lib/libz.a', 'lib/libz.%s' % SHLIB_EXT], + 'dirs': [], +} + +moduleclass = 'lib' -- GitLab From b0a05fb4b685ef205ac36d04c2779d26e0050ffc Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Wed, 7 Jun 2017 16:03:24 +1200 Subject: [PATCH 167/608] EasyConfigs for libxml2 2.9.4 and XZ 5.2.3 with the gimkl 2017a toolchain --- .../l/libxml2/libxml2-2.9.4-gimkl-2017a.eb | 23 ++++++++++++++ .../easyconfigs/x/XZ/XZ-5.2.3-gimkl-2017a.eb | 30 +++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 easybuild/easyconfigs/l/libxml2/libxml2-2.9.4-gimkl-2017a.eb create mode 100644 easybuild/easyconfigs/x/XZ/XZ-5.2.3-gimkl-2017a.eb diff --git a/easybuild/easyconfigs/l/libxml2/libxml2-2.9.4-gimkl-2017a.eb b/easybuild/easyconfigs/l/libxml2/libxml2-2.9.4-gimkl-2017a.eb new file mode 100644 index 0000000000..eaca2fc38e --- /dev/null +++ b/easybuild/easyconfigs/l/libxml2/libxml2-2.9.4-gimkl-2017a.eb @@ -0,0 +1,23 @@ +name = 'libxml2' +version = '2.9.4' + +homepage = 'http://xmlsoft.org/' +description = """Libxml2 is the XML C parser and +toolchain developed for the Gnome project + (but usable outside of the Gnome platform).""" + +toolchain = {'name': 'gimkl', 'version': '2017a'} +toolchainopts = {'pic': True} + +source_urls = [ + 'http://xmlsoft.org/sources/', + 'http://xmlsoft.org/sources/old/' +] +sources = [SOURCELOWER_TAR_GZ] + +dependencies = [ + ('zlib', '1.2.11'), + ('XZ', '5.2.3'), +] + +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/x/XZ/XZ-5.2.3-gimkl-2017a.eb b/easybuild/easyconfigs/x/XZ/XZ-5.2.3-gimkl-2017a.eb new file mode 100644 index 0000000000..4b1d474ab3 --- /dev/null +++ b/easybuild/easyconfigs/x/XZ/XZ-5.2.3-gimkl-2017a.eb @@ -0,0 +1,30 @@ +easyblock = 'ConfigureMake' + +name = 'XZ' +version = '5.2.3' + +homepage = 'http://tukaani.org/xz/' +description = "xz: XZ utilities" + +toolchain = {'version': '2017a', 'name': 'gimkl'} + +sources = [SOURCELOWER_TAR_BZ2] +source_urls = ['http://tukaani.org/xz/'] + +# non-toolchain gettext because otherwise there is a circular dependency: +# XZ (presumably its executables) depends on gettext, which depends on +# xmllib2, which depends (optionally) on XZ +builddependencies = [ + ('Autotools', '20150215', '', True), + ('gettext', '0.19.8', '', True), +] + +# may become useful in non-x86 archs +#configopts = ' --disable-assembler ' + +sanity_check_paths = { + 'files': ["bin/xz", "bin/lzmainfo"], + 'dirs': [] +} + +moduleclass = 'tools' -- GitLab From eb65c292b8dbd6ba7e36cf8d5b394db95bcfcc8a Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Wed, 7 Jun 2017 16:21:10 +1200 Subject: [PATCH 168/608] Easyconfig for libreadline 6.3 with the gimkl 2017a toolchain --- .../libreadline-6.3-gimkl-2017a.eb | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 easybuild/easyconfigs/l/libreadline/libreadline-6.3-gimkl-2017a.eb diff --git a/easybuild/easyconfigs/l/libreadline/libreadline-6.3-gimkl-2017a.eb b/easybuild/easyconfigs/l/libreadline/libreadline-6.3-gimkl-2017a.eb new file mode 100644 index 0000000000..3c72c2c527 --- /dev/null +++ b/easybuild/easyconfigs/l/libreadline/libreadline-6.3-gimkl-2017a.eb @@ -0,0 +1,32 @@ +easyblock = 'ConfigureMake' + +name = 'libreadline' +version = '6.3' + +homepage = 'http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html' +description = """The GNU Readline library provides a set of functions for use by applications that + allow users to edit command lines as they are typed in. Both Emacs and vi editing modes are available. + The Readline library includes additional functions to maintain a list of previously-entered command lines, + to recall and perhaps reedit those lines, and perform csh-like history expansion on previous commands.""" + +toolchain = {'name': 'gimkl', 'version': '2017a'} +toolchainopts = {'pic': True} + +sources = ['readline-%(version)s.tar.gz'] +source_urls = ['http://ftp.gnu.org/gnu/readline'] + +patches = ['libreadline-%(version)s-bugfix.patch'] + +dependencies = [('ncurses', '6.0')] + +# for the termcap symbols, use EB ncurses +preconfigopts = "env LDFLAGS='-lncurses'" + +sanity_check_paths = { + 'files': ['lib/libreadline.a', 'lib/libhistory.a'] + + ['include/readline/%s' % x for x in ['chardefs.h', 'history.h', 'keymaps.h', 'readline.h', 'rlconf.h', + 'rlstdc.h', 'rltypedefs.h', 'tilde.h']], + 'dirs': [], +} + +moduleclass = 'lib' -- GitLab From e7ce769ab6bf187a0cfc09bf03ca3ba3b41d0201 Mon Sep 17 00:00:00 2001 From: Jakob Schiotz Date: Wed, 7 Jun 2017 11:08:50 +0200 Subject: [PATCH 169/608] Fix dependency conflicts. --- .../i/ImageMagick/ImageMagick-7.0.5-10-foss-2016b.eb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/i/ImageMagick/ImageMagick-7.0.5-10-foss-2016b.eb b/easybuild/easyconfigs/i/ImageMagick/ImageMagick-7.0.5-10-foss-2016b.eb index c320486a5a..c287c7aa6f 100644 --- a/easybuild/easyconfigs/i/ImageMagick/ImageMagick-7.0.5-10-foss-2016b.eb +++ b/easybuild/easyconfigs/i/ImageMagick/ImageMagick-7.0.5-10-foss-2016b.eb @@ -22,8 +22,8 @@ dependencies = [ ('X11', '20160819'), ('Ghostscript', '9.20'), ('JasPer', '2.0.12'), - ('libjpeg-turbo', '1.5.1'), - ('LibTIFF', '4.0.7'), + ('libjpeg-turbo', '1.5.0'), + ('LibTIFF', '4.0.6'), ('LittleCMS', '2.8'), ('FFmpeg', '3.3.1'), ] -- GitLab From 6fa82b503c46b2a8459f9c6c97bed2a3a9ffaae8 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 7 Jun 2017 11:51:42 +0200 Subject: [PATCH 170/608] add vcfR extension in R 3.4.0 easyconfig --- easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb b/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb index 94a8307cc4..b17ecb1531 100644 --- a/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb +++ b/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb @@ -521,6 +521,9 @@ exts_list = [ ('oce', '0.9-21', ext_options), ('ineq', '0.2-13', ext_options), ('soundecology', '1.3.2', ext_options), + ('memuse', '3.0-1', ext_options), + ('pinfsc50', '1.1.0', ext_options), + ('vcfR', '1.5.0', ext_options), ] moduleclass = 'lang' -- GitLab From 6ea80c47ebcdffea6da6b8808252977077bb38a1 Mon Sep 17 00:00:00 2001 From: Jakob Schiotz Date: Wed, 7 Jun 2017 12:26:14 +0200 Subject: [PATCH 171/608] Add checksum --- .../i/ImageMagick/ImageMagick-7.0.5-10-foss-2016b.eb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/i/ImageMagick/ImageMagick-7.0.5-10-foss-2016b.eb b/easybuild/easyconfigs/i/ImageMagick/ImageMagick-7.0.5-10-foss-2016b.eb index c287c7aa6f..495de72aba 100644 --- a/easybuild/easyconfigs/i/ImageMagick/ImageMagick-7.0.5-10-foss-2016b.eb +++ b/easybuild/easyconfigs/i/ImageMagick/ImageMagick-7.0.5-10-foss-2016b.eb @@ -14,11 +14,10 @@ toolchain = {'name': 'foss', 'version': '2016b'} sources = [SOURCE_TAR_GZ] source_urls = ['https://www.imagemagick.org/download/releases/'] -#checksums = ['473a1e7ae37548eb6fe9cf2b1fb78011'] +checksums = ['43912034c69171882536b359a7b84f9f'] dependencies = [ ('bzip2', '1.0.6'), - #('X11', '20170314'), # Conflicts with FFmpeg ('X11', '20160819'), ('Ghostscript', '9.20'), ('JasPer', '2.0.12'), -- GitLab From fee6089eeb307248d856fc8720c3c39bd225e9e4 Mon Sep 17 00:00:00 2001 From: Robert Date: Thu, 8 Jun 2017 11:45:38 +0930 Subject: [PATCH 172/608] {bio}[foss/2016b] --- .../l/LUMPY/LUMPY-0.2.13-foss-2016b.eb | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 easybuild/easyconfigs/l/LUMPY/LUMPY-0.2.13-foss-2016b.eb diff --git a/easybuild/easyconfigs/l/LUMPY/LUMPY-0.2.13-foss-2016b.eb b/easybuild/easyconfigs/l/LUMPY/LUMPY-0.2.13-foss-2016b.eb new file mode 100644 index 0000000000..a301016ab0 --- /dev/null +++ b/easybuild/easyconfigs/l/LUMPY/LUMPY-0.2.13-foss-2016b.eb @@ -0,0 +1,34 @@ +## +# This is a contribution from Phoenix HPC Service, The University of Adelaide, Australia +# Homepage: https://www.adelaide.edu.au/phoenix/ +# +# Copyright:: Copyright 2014-2017 adelaide.edu.au/phoenix +# Authors:: Robert Qiao , Exequiel Sepulveda +# License:: MIT +# +# Notes:: +## + +easyblock = 'MakeCp' + +name = 'LUMPY' +version = '0.2.13' + +homepage = 'https://github.com/arq5x/lumpy-sv' +description = """A probabilistic framework for structural variant discovery. +""" + +toolchain = {'name': 'foss', 'version': '2016b'} +toolchainopts = {'usempi': True} + +source_urls = ['https://github.com/arq5x/lumpy-sv/archive/'] +sources = ['%(version)s.tar.gz'] + +files_to_copy = [(['bin/*'], 'bin'), 'data', 'LICENSE'] + +sanity_check_paths = { + 'files': ['bin/%s' % x for x in ['lumpy', 'lumpyexpress']], + 'dirs': [], +} + +moduleclass = 'bio' -- GitLab From 8a9b2447b271975f6d62bdc24b3659b348720b69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Thu, 8 Jun 2017 08:48:00 +0200 Subject: [PATCH 173/608] Add BEDOPS 2.4.26 easyconfig --- .../easyconfigs/b/BEDOPS/BEDOPS-2.4.26.eb | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 easybuild/easyconfigs/b/BEDOPS/BEDOPS-2.4.26.eb diff --git a/easybuild/easyconfigs/b/BEDOPS/BEDOPS-2.4.26.eb b/easybuild/easyconfigs/b/BEDOPS/BEDOPS-2.4.26.eb new file mode 100644 index 0000000000..79cc3e49ca --- /dev/null +++ b/easybuild/easyconfigs/b/BEDOPS/BEDOPS-2.4.26.eb @@ -0,0 +1,26 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild + +easyblock = 'Tarball' + +name = 'BEDOPS' +version = '2.4.26' + +homepage = 'http://bedops.readthedocs.io/en/latest/index.html' +description = """BEDOPS is an open-source command-line toolkit that performs highly efficient + and scalable Boolean and other set operations, statistical calculations, archiving, conversion + and other management of genomic data of arbitrary scale. Tasks can be easily split by chromosome + for distributing whole-genome analyses across a computational cluster.""" + +sources = ['%(namelower)s_linux_x86_64-v%(version)s.tar.bz2'] +source_urls = ['https://github.com/%(namelower)s/%(namelower)s/releases/download/v%(version)s/'] + +checksums = ['eb39bf1dadd138dff2faa45171f8f78e'] + +sanity_check_paths = { + 'files': ['bam2bed', '%(namelower)s', 'convert2bed', 'unstarch'], + 'dirs': ['.'], +} + +modextrapaths = {'PATH': ''} + +moduleclass = 'bio' -- GitLab From 7e3ce985151b5e28940d4dd87ea01bf3c9e9565f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Thu, 8 Jun 2017 09:19:47 +0200 Subject: [PATCH 174/608] Add missing toolchain --- easybuild/easyconfigs/b/BEDOPS/BEDOPS-2.4.26.eb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/easybuild/easyconfigs/b/BEDOPS/BEDOPS-2.4.26.eb b/easybuild/easyconfigs/b/BEDOPS/BEDOPS-2.4.26.eb index 79cc3e49ca..b96f53227b 100644 --- a/easybuild/easyconfigs/b/BEDOPS/BEDOPS-2.4.26.eb +++ b/easybuild/easyconfigs/b/BEDOPS/BEDOPS-2.4.26.eb @@ -11,6 +11,8 @@ description = """BEDOPS is an open-source command-line toolkit that performs hig and other management of genomic data of arbitrary scale. Tasks can be easily split by chromosome for distributing whole-genome analyses across a computational cluster.""" +toolchain = {'version': 'dummy', 'name': 'dummy'} + sources = ['%(namelower)s_linux_x86_64-v%(version)s.tar.bz2'] source_urls = ['https://github.com/%(namelower)s/%(namelower)s/releases/download/v%(version)s/'] -- GitLab From b4d309369914562cac73f4abba5fd5980c6cf415 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Thu, 8 Jun 2017 09:44:22 +0200 Subject: [PATCH 175/608] Add FASTA 36.3.5e foss-2016b --- .../f/FASTA/FASTA-36.3.5e-foss-2016b.eb | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 easybuild/easyconfigs/f/FASTA/FASTA-36.3.5e-foss-2016b.eb diff --git a/easybuild/easyconfigs/f/FASTA/FASTA-36.3.5e-foss-2016b.eb b/easybuild/easyconfigs/f/FASTA/FASTA-36.3.5e-foss-2016b.eb new file mode 100644 index 0000000000..93fe9bd8a4 --- /dev/null +++ b/easybuild/easyconfigs/f/FASTA/FASTA-36.3.5e-foss-2016b.eb @@ -0,0 +1,32 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild + +easyblock = 'MakeCp' + +name = "FASTA" +version = "36.3.5e" + +homepage = 'http://fasta.bioch.virginia.edu' +description = """The FASTA programs find regions of local or global (new) similarity between +protein or DNA sequences, either by searching Protein or DNA databases, or by identifying +local duplications within a sequence.""" + +toolchain = {'name': 'foss', 'version': '2016b'} + +source_urls = ['http://faculty.virginia.edu/wrpearson/fasta/fasta36'] +sources = [SOURCELOWER_TAR_GZ] + +checksums = ['1c76727b3c61ca36bd19ce4da70c02fe'] + +buildopts = '-C ./src -f ../make/Makefile.linux_sse2 all' + +files_to_copy = ["bin", "conf", "data", "doc", "FASTA_LIST", "misc", "README", "seq", "sql", "test"] + +sanity_check_paths = { + 'files': ["FASTA_LIST", "README"] + ['bin/%s' % x for x in ['lav2svg', 'lav2ps', 'map_db']] + + ['bin/%s%%(version_major)s' % x for x in ['fasta', 'fastm', 'fastx', 'ggsearch', 'lalign', 'tfastf', + 'tfasts', 'tfasty', 'fastf', 'fasts', 'fasty', 'glsearch', + 'ssearch', 'tfastm', 'tfastx']], + 'dirs': ["conf", "data", "doc", "misc", "seq", "sql", "test"] +} + +moduleclass = 'bio' -- GitLab From 15b969586a2b84b0a2fab41e17a5f41c362b1217 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Thu, 8 Jun 2017 10:17:37 +0200 Subject: [PATCH 176/608] Add segemehl 0.2.0 foss-2016b --- .../s/segemehl/segemehl-0.2.0-foss-2016b.eb | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 easybuild/easyconfigs/s/segemehl/segemehl-0.2.0-foss-2016b.eb diff --git a/easybuild/easyconfigs/s/segemehl/segemehl-0.2.0-foss-2016b.eb b/easybuild/easyconfigs/s/segemehl/segemehl-0.2.0-foss-2016b.eb new file mode 100644 index 0000000000..7f59d53c66 --- /dev/null +++ b/easybuild/easyconfigs/s/segemehl/segemehl-0.2.0-foss-2016b.eb @@ -0,0 +1,38 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild + +easyblock = 'MakeCp' + +name = "segemehl" +version = "0.2.0" + +homepage = 'http://www.bioinf.uni-leipzig.de/Software/segemehl/' +description = """ segemehl is a software to map short sequencer reads to reference genomes. + Unlike other methods, segemehl is able to detect not only mismatches but also insertions + and deletions. Furthermore, segemehl is not limited to a specific read length and is able + to mapprimer- or polyadenylation contaminated reads correctly. segemehl implements a matching + strategy based on enhanced suffix arrays (ESA). Segemehl now supports the SAM format, reads + gziped queries to save both disk and memory space and allows bisulfite sequencing mapping + and split read mapping. """ + +toolchain = {'name': 'foss', 'version': '2016b'} + +source_urls = ['http://www.bioinf.uni-leipzig.de/Software/segemehl/'] +sources = ['%s_%s.tar.gz' % (name, version.replace('.','_'))] + +checksums = ['fef4db00ed2742a2bf4131eed674bb08'] + +parallel = 1 + +dependencies = [ + ('ncurses', '5.9'), + ('zlib', '1.2.8'), +] + +files_to_copy = [(["lack.x", "segemehl.x", "testrealign.x"], "bin")] + +sanity_check_paths = { + 'files': ["bin/%s" % x for x in ["lack.x" , "segemehl.x", "testrealign.x"]], + 'dirs': ["."] +} + +moduleclass = 'bio' -- GitLab From c697d989a4751a2cec405ede613df73e3842429f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Thu, 8 Jun 2017 10:25:31 +0200 Subject: [PATCH 177/608] Add StringTie 1.3.3b foss-2016b --- .../StringTie/StringTie-1.3.3b-foss-2016b.eb | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 easybuild/easyconfigs/s/StringTie/StringTie-1.3.3b-foss-2016b.eb diff --git a/easybuild/easyconfigs/s/StringTie/StringTie-1.3.3b-foss-2016b.eb b/easybuild/easyconfigs/s/StringTie/StringTie-1.3.3b-foss-2016b.eb new file mode 100644 index 0000000000..d1eb27f7fe --- /dev/null +++ b/easybuild/easyconfigs/s/StringTie/StringTie-1.3.3b-foss-2016b.eb @@ -0,0 +1,25 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild + +easyblock = 'MakeCp' + +name = 'StringTie' +version = "1.3.3b" + +homepage = 'http://ccb.jhu.edu/software/stringtie/' +description = """StringTie is a fast and highly efficient assembler of RNA-Seq alignments into potential transcripts.""" + +toolchain = {'name': 'foss', 'version': '2016b'} + +source_urls = ['http://ccb.jhu.edu/software/stringtie/dl/'] +sources = [SOURCELOWER_TAR_GZ] + +checksums = ['8f9ed07ff532a0641cd04b23e27eb547'] + +files_to_copy = [(['stringtie'], 'bin'), 'README', 'LICENSE'] + +sanity_check_paths = { + 'files': ['bin/stringtie'], + 'dirs': [], +} + +moduleclass = 'bio' -- GitLab From aee428fc62cb76252e4a9bb5a8e3b1580bcf904d Mon Sep 17 00:00:00 2001 From: Pablo Escobar Date: Thu, 8 Jun 2017 10:49:53 +0200 Subject: [PATCH 178/608] adding easyconfigs: DIAMOND-0.9.6-goolf-1.7.20.eb --- .../d/DIAMOND/DIAMOND-0.9.6-goolf-1.7.20.eb | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 easybuild/easyconfigs/d/DIAMOND/DIAMOND-0.9.6-goolf-1.7.20.eb diff --git a/easybuild/easyconfigs/d/DIAMOND/DIAMOND-0.9.6-goolf-1.7.20.eb b/easybuild/easyconfigs/d/DIAMOND/DIAMOND-0.9.6-goolf-1.7.20.eb new file mode 100644 index 0000000000..bc285581b6 --- /dev/null +++ b/easybuild/easyconfigs/d/DIAMOND/DIAMOND-0.9.6-goolf-1.7.20.eb @@ -0,0 +1,32 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# Author: Pablo Escobar Lopez +# sciCORE - University of Basel +# SIB Swiss Institute of Bioinformatics + +easyblock = "CMakeMake" + +name = 'DIAMOND' +version = '0.9.6' + +homepage = 'https://github.com/bbuchfink/diamond' +description = """Accelerated BLAST compatible local sequence aligner""" + +toolchain = {'name': 'goolf', 'version': '1.7.20'} + +source_urls = ['https://github.com/bbuchfink/diamond/archive/'] +sources = ['v%(version)s.tar.gz'] + +separate_build_dir = True + +builddependencies = [('CMake', '3.4.3')] + +dependencies = [ + ('zlib', '1.2.8'), +] + +sanity_check_paths = { + 'files': ['bin/diamond'], + 'dirs': [], +} + +moduleclass = 'bio' -- GitLab From dec1652bd49f3019b46eeb442a0ef37b99b74c9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Thu, 8 Jun 2017 11:29:47 +0200 Subject: [PATCH 179/608] Add requested changes Use ncurses 6.0 instead of 5.9 and empty sanity check directory list instead of current directory. --- easybuild/easyconfigs/s/segemehl/segemehl-0.2.0-foss-2016b.eb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/s/segemehl/segemehl-0.2.0-foss-2016b.eb b/easybuild/easyconfigs/s/segemehl/segemehl-0.2.0-foss-2016b.eb index 7f59d53c66..c7d6d5fcae 100644 --- a/easybuild/easyconfigs/s/segemehl/segemehl-0.2.0-foss-2016b.eb +++ b/easybuild/easyconfigs/s/segemehl/segemehl-0.2.0-foss-2016b.eb @@ -24,7 +24,7 @@ checksums = ['fef4db00ed2742a2bf4131eed674bb08'] parallel = 1 dependencies = [ - ('ncurses', '5.9'), + ('ncurses', '6.0'), ('zlib', '1.2.8'), ] @@ -32,7 +32,7 @@ files_to_copy = [(["lack.x", "segemehl.x", "testrealign.x"], "bin")] sanity_check_paths = { 'files': ["bin/%s" % x for x in ["lack.x" , "segemehl.x", "testrealign.x"]], - 'dirs': ["."] + 'dirs': [] } moduleclass = 'bio' -- GitLab From 3a9d057a7240d86e5de526442e819f4e7997aa32 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 8 Jun 2017 11:59:46 +0200 Subject: [PATCH 180/608] fix source URL for SQLite 3.8.9 --- easybuild/easyconfigs/s/SQLite/SQLite-3.8.9-foss-2015a.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.9-foss-2015a.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.9-foss-2015a.eb index 45f98b9cdb..8c66a0ef4c 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.9-foss-2015a.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.9-foss-2015a.eb @@ -19,7 +19,7 @@ homepage = 'http://www.hwaci.com/sw/sqlite/' description = "SQLite: SQL Database Engine in a C Library" # eg. http://www.hwaci.com/sw/sqlite/2013/sqlite-autoconf-3080100.tar.gz -source_urls = ['http://www.hwaci.com/sw/sqlite/2013'] +source_urls = ['http://www.sqlite.org/2015/'] sources = ['sqlite-autoconf-%s0%s0%s00.tar.gz' % tuple(version.split('.'))] # very weird way to calculate your filename toolchain = {'name': 'foss', 'version': '2015a'} -- GitLab From 080305d7b42b72cc2651ab8e3b3292078671e400 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 8 Jun 2017 12:04:31 +0200 Subject: [PATCH 181/608] use cpan.metacpan.org source URLs for Perl extensions, avoid hardcoding versions in source names --- .../p/Perl/Perl-5.22.0-foss-2015a-mt.eb | 517 +++++++++--------- .../p/Perl/Perl-5.22.0-foss-2015a.eb | 516 ++++++++--------- 2 files changed, 519 insertions(+), 514 deletions(-) diff --git a/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a-mt.eb b/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a-mt.eb index 1311c9dfcc..7b23b1c105 100644 --- a/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a-mt.eb +++ b/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a-mt.eb @@ -22,873 +22,876 @@ sources = [SOURCELOWER_TAR_GZ] exts_list = [ ('Module::Build', '0.4210', { # std module but recent BioPerl needs a recent version for some reason - 'source_tmpl': 'Module-Build-0.4210.tar.gz', - 'source_urls': ['http://www.cpan.org/modules/by-module/Module/LEONT/'], + 'source_tmpl': 'Module-Build-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/L/LE/LEONT'], }), ('ExtUtils::MakeMaker', '7.04', { - 'source_tmpl': 'ExtUtils-MakeMaker-7.04.tar.gz', - 'source_urls': ['http://www.cpan.org/modules/by-module/ExtUtils/BINGOS/'], + 'source_tmpl': 'ExtUtils-MakeMaker-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BI/BINGOS'], }), ('local::lib', '2.000011', { - 'source_tmpl': 'local-lib-2.000011.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], - }), + 'source_tmpl': 'local-lib-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/E/ET/ETHER/'], + ):, ('IO::String', '1.08', { - 'source_tmpl': 'IO-String-1.08.tar.gz', + 'source_tmpl': 'IO-String-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('Data::Stag', '0.14', { - 'source_tmpl': 'Data-Stag-0.14.tar.gz', + 'source_tmpl': 'Data-Stag-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CM/CMUNGALL/'], }), ('DB_File', '1.835', { - 'source_urls': ['http://www.cpan.org/modules/by-module/DB_File/PMQS/'], + 'source_tmpl': 'DB_File-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/P/PM/PMQS/'], }), ('DBI', '1.633', { - 'source_urls': ['http://www.cpan.org/modules/by-module/DBI/TIMB/'], + 'source_tmpl': 'DBI-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TI/TIMB/'], }), ('Sub::Uplevel', '0.25', { - 'source_tmpl': 'Sub-Uplevel-0.25.tar.gz', - 'source_urls': ['http://www.cpan.org/modules/by-module/Sub/DAGOLDEN/'], + 'source_tmpl': 'Sub-Uplevel-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/'], }), ('Tree::DAG_Node', '1.26', { - 'source_tmpl': 'Tree-DAG_Node-1.26.tgz', - 'source_urls': ['http://www.cpan.org/modules/by-module/Tree/RSAVAGE/'], + 'source_tmpl': 'Tree-DAG_Node-%(version)s.tgz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RS/RSAVAGE/'], }), ('Try::Tiny', '0.22', { - 'source_tmpl': 'Try-Tiny-0.22.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DO/DOY/'], + 'source_tmpl': 'Try-Tiny-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DO/DOY/'], }), ('Devel::StackTrace', '2.00', { - 'source_tmpl': 'Devel-StackTrace-2.00.tar.gz', + 'source_tmpl': 'Devel-StackTrace-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/'], }), ('Class::Data::Inheritable', '0.08', { - 'source_tmpl': 'Class-Data-Inheritable-0.08.tar.gz', + 'source_tmpl': 'Class-Data-Inheritable-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TM/TMTM/'], }), ('Exception::Class', '1.39', { - 'source_tmpl': 'Exception-Class-1.39.tar.gz', + 'source_tmpl': 'Exception-Class-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/'], }), ('Test::Fatal', '0.014', { - 'source_tmpl': 'Test-Fatal-0.014.tar.gz', - 'source_urls': ['http://www.cpan.org/modules/by-module/Test/RJBS/'], + 'source_tmpl': 'Test-Fatal-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], }), ('Test::NoWarnings', '1.04', { - 'source_tmpl': 'Test-NoWarnings-1.04.tar.gz', + 'source_tmpl': 'Test-NoWarnings-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AD/ADAMK/'], }), ('Test::Deep', '0.117', { - 'source_tmpl': 'Test-Deep-0.117.tar.gz', + 'source_tmpl': 'Test-Deep-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], }), ('Algorithm::Diff', '1.15', { - 'source_tmpl': 'Algorithm-Diff-1.15.tar.gz', + 'source_tmpl': 'Algorithm-Diff-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/N/NE/NEDKONZ/'], }), ('Text::Diff', '1.41', { - 'source_tmpl': 'Text-Diff-1.41.tar.gz', + 'source_tmpl': 'Text-Diff-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/O/OV/OVID/'], }), ('Test::Differences', '0.61', { - 'source_tmpl': 'Test-Differences-0.61.tar.gz', + 'source_tmpl': 'Test-Differences-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/O/OV/OVID/'], }), ('Test::Exception', '0.32', { - 'source_tmpl': 'Test-Exception-0.32.tar.gz', + 'source_tmpl': 'Test-Exception-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AD/ADIE/'], }), ('Test::Warn', '0.30', { - 'source_tmpl': 'Test-Warn-0.30.tar.gz', + 'source_tmpl': 'Test-Warn-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CH/CHORNY/'], }), ('Test::Requires', '0.08', { - 'source_tmpl': 'Test-Requires-0.08.tar.gz', - 'source_urls': ['http://www.cpan.org/modules/by-module/Test/TOKUHIROM/'], + 'source_tmpl': 'Test-Requires-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TO/TOKUHIROM'], }), ('Test::Tester', '0.109', { - 'source_tmpl': 'Test-Tester-0.109.tar.gz', - 'source_urls': ['http://www.cpan.org/modules/by-module/Test/FDALY/'], + 'source_tmpl': 'Test-Tester-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/F/FD/FDALY'], }), ('File::Slurp::Tiny', '0.003', { - 'source_tmpl': 'File-Slurp-Tiny-0.003.tar.gz', + 'source_tmpl': 'File-Slurp-Tiny-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEONT'], }), ('Params::Util', '1.07', { - 'source_tmpl': 'Params-Util-1.07.tar.gz', + 'source_tmpl': 'Params-Util-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AD/ADAMK/'], }), ('Sub::Install', '0.928', { - 'source_tmpl': 'Sub-Install-0.928.tar.gz', - 'source_urls': ['http://www.cpan.org/modules/by-module/Sub/RJBS/'], + 'source_tmpl': 'Sub-Install-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], }), ('Data::OptList', '0.109', { - 'source_tmpl': 'Data-OptList-0.109.tar.gz', + 'source_tmpl': 'Data-OptList-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], }), ('Sub::Exporter', '0.987', { - 'source_tmpl': 'Sub-Exporter-0.987.tar.gz', + 'source_tmpl': 'Sub-Exporter-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], }), ('Capture::Tiny', '0.30', { - 'source_tmpl': 'Capture-Tiny-0.30.tar.gz', + 'source_tmpl': 'Capture-Tiny-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/'], }), ('Test::Output', '1.03', { - 'source_tmpl': 'Test-Output-1.03.tar.gz', + 'source_tmpl': 'Test-Output-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BD/BDFOY/'], }), ('Module::Runtime', '0.014', { - 'source_tmpl': 'Module-Runtime-0.014.tar.gz', + 'source_tmpl': 'Module-Runtime-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/Z/ZE/ZEFRAM/'], }), ('Module::Implementation', '0.09', { - 'source_tmpl': 'Module-Implementation-0.09.tar.gz', - 'source_urls': ['http://www.cpan.org/modules/by-module/Module/DROLSKY/'], + 'source_tmpl': 'Module-Implementation-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/'], }), ('List::MoreUtils', '0.413', { - 'source_tmpl': 'List-MoreUtils-0.413.tar.gz', + 'source_tmpl': 'List-MoreUtils-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RE/REHSACK/'], }), ('Package::DeprecationManager', '0.14', { - 'source_tmpl': 'Package-DeprecationManager-0.14.tar.gz', + 'source_tmpl': 'Package-DeprecationManager-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/'], }), ('Dist::CheckConflicts', '0.11', { - 'source_tmpl': 'Dist-CheckConflicts-0.11.tar.gz', + 'source_tmpl': 'Dist-CheckConflicts-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DO/DOY/'], }), ('Package::Stash', '0.37', { - 'source_tmpl': 'Package-Stash-0.37.tar.gz', - 'source_urls': ['http://www.cpan.org/modules/by-module/Package/DOY/'], + 'source_tmpl': 'Package-Stash-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DO/DOY/'], }), ('Class::Load', '0.23', { - 'source_tmpl': 'Class-Load-0.23.tar.gz', + 'source_tmpl': 'Class-Load-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/E/ET/ETHER/'], }), ('TAP::Harness::Env', '3.35', { - 'source_tmpl': 'Test-Harness-3.35.tar.gz', + 'source_tmpl': 'Test-Harness-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEONT/'], }), ('ExtUtils::Helpers', '0.022', { - 'source_tmpl': 'ExtUtils-Helpers-0.022.tar.gz', + 'source_tmpl': 'ExtUtils-Helpers-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEONT'], }), ('ExtUtils::Config', '0.008', { - 'source_tmpl': 'ExtUtils-Config-0.008.tar.gz', + 'source_tmpl': 'ExtUtils-Config-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEONT'], }), ('ExtUtils::InstallPaths', '0.011', { - 'source_tmpl': 'ExtUtils-InstallPaths-0.011.tar.gz', + 'source_tmpl': 'ExtUtils-InstallPaths-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEONT'], }), ('Module::Build::Tiny', '0.039', { - 'source_tmpl': 'Module-Build-Tiny-0.039.tar.gz', + 'source_tmpl': 'Module-Build-Tiny-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEONT/'], }), ('MRO::Compat', '0.12', { - 'source_tmpl': 'MRO-Compat-0.12.tar.gz', + 'source_tmpl': 'MRO-Compat-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BO/BOBTFISH/'], }), ('Sub::Name', '0.05', { - 'source_tmpl': 'Sub-Name-0.05.tar.gz', + 'source_tmpl': 'Sub-Name-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/F/FL/FLORA/'], }), ('Eval::Closure', '0.13', { - 'source_tmpl': 'Eval-Closure-0.13.tar.gz', + 'source_tmpl': 'Eval-Closure-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DO/DOY/'], }), ('Sub::Exporter::Progressive', '0.001011', { - 'source_tmpl': 'Sub-Exporter-Progressive-0.001011.tar.gz', + 'source_tmpl': 'Sub-Exporter-Progressive-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/F/FR/FREW/'], }), ('Devel::GlobalDestruction', '0.13', { - 'source_tmpl': 'Devel-GlobalDestruction-0.13.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/H/HA/HAARG/'], + 'source_tmpl': 'Devel-GlobalDestruction-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/H/HA/HAARG/'], }), ('boolean', '0.45', { - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IN/INGY/'], + 'source_tmpl': 'boolean-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/I/IN/INGY'], }), ('Tie::IxHash', '1.23', { - 'source_tmpl': 'Tie-IxHash-1.23.tar.gz', + 'source_tmpl': 'Tie-IxHash-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CH/CHORNY/'], }), ('Moose', '2.1405', { - 'source_urls': ['http://www.cpan.org/modules/by-module/MooseX/ETHER/'], + 'source_tmpl': 'Moose-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/E/ET/ETHER/'], }), ('Package::Stash::XS', '0.28', { - 'source_tmpl': 'Package-Stash-XS-0.28.tar.gz', + 'source_tmpl': 'Package-Stash-XS-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DO/DOY/'], }), ('Params::Validate', '1.20', { - 'source_tmpl': 'Params-Validate-1.20.tar.gz', - 'source_urls': ['http://www.cpan.org/modules/by-module/Params/DROLSKY/'], + 'source_tmpl': 'Params-Validate-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/'], }), ('Class::Load::XS', '0.09', { - 'source_tmpl': 'Class-Load-XS-0.09.tar.gz', + 'source_tmpl': 'Class-Load-XS-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/E/ET/ETHER/'], }), - # For uoa00001, Zendesk #9076 ('Math::CDF', '0.1', { - 'source_tmpl': 'Math-CDF-0.1.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/C/CA/CALLAHAN/'], + 'source_tmpl': 'Math-CDF-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CA/CALLAHAN/'], }), - ('DateTime::Locale', '0.46', { - 'source_tmpl': 'DateTime-Locale-0.46.tar.gz', + 'source_tmpl': 'DateTime-Locale-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/'], }), ('Class::Singleton', '1.4', { - 'source_tmpl': 'Class-Singleton-1.4.tar.gz', + 'source_tmpl': 'Class-Singleton-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AB/ABW/'], }), ('DateTime::TimeZone', '1.92', { - 'source_tmpl': 'DateTime-TimeZone-1.92.tar.gz', - 'source_urls': ['http://www.cpan.org/modules/by-module/DateTime/DROLSKY/'], + 'source_tmpl': 'DateTime-TimeZone-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/'], }), ('Test::Warnings', '0.021', { - 'source_tmpl': 'Test-Warnings-0.021.tar.gz', + 'source_tmpl': 'Test-Warnings-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/E/ET/ETHER/'], }), ('Data::Types', '0.09', { - 'source_tmpl': 'Data-Types-0.09.tar.gz', + 'source_tmpl': 'Data-Types-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DW/DWHEELER/'], }), ('Exporter::Tiny', '0.042', { - 'source_tmpl': 'Exporter-Tiny-0.042.tar.gz', + 'source_tmpl': 'Exporter-Tiny-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TO/TOBYINK/'], }), - ('List::AllUtils', '0.09', { - 'source_tmpl': 'List-AllUtils-0.09.tar.gz', + 'source_tmpl': 'List-AllUtils-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/'], }), ('DateTime', '1.20', { - 'source_urls': ['http://www.cpan.org/modules/by-module/DateTime/DROLSKY/'], + 'source_tmpl': 'DateTime-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/'], }), ('DateTime::Tiny', '1.04', { - 'source_tmpl': 'DateTime-Tiny-1.04.tar.gz', + 'source_tmpl': 'DateTime-Tiny-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AD/ADAMK/'], }), ('File::Slurp', '9999.19', { - 'source_tmpl': 'File-Slurp-9999.19.tar.gz', + 'source_tmpl': 'File-Slurp-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/U/UR/URI/'], }), ('HTTP::Date', '6.02', { - 'source_tmpl': 'HTTP-Date-6.02.tar.gz', + 'source_tmpl': 'HTTP-Date-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('IO::HTML', '1.001', { - 'source_tmpl': 'IO-HTML-1.001.tar.gz', - 'source_urls': ['http://www.cpan.org/modules/by-module/IO/CJM/'], + 'source_tmpl': 'IO-HTML-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/C/CJ/CJM'], }), ('LWP::MediaTypes', '6.02', { - 'source_tmpl': 'LWP-MediaTypes-6.02.tar.gz', + 'source_tmpl': 'LWP-MediaTypes-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('URI', '1.69', { - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], + 'source_tmpl': 'URI-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/E/ET/ETHER/'], }), ('Encode::Locale', '1.05', { - 'source_tmpl': 'Encode-Locale-1.05.tar.gz', + 'source_tmpl': 'Encode-Locale-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('HTTP::Request', '6.06', { - 'source_tmpl': 'HTTP-Message-6.06.tar.gz', + 'source_tmpl': 'HTTP-Message-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('HTML::Tagset', '3.20', { - 'source_tmpl': 'HTML-Tagset-3.20.tar.gz', + 'source_tmpl': 'HTML-Tagset-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/P/PE/PETDANCE/'], }), ('HTML::Entities', '3.71', { - 'source_tmpl': 'HTML-Parser-3.71.tar.gz', + 'source_tmpl': 'HTML-Parser-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('File::Listing', '6.04', { - 'source_tmpl': 'File-Listing-6.04.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], + 'source_tmpl': 'File-Listing-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('AnyEvent', '7.09', { + 'source_tmpl': 'AnyEvent-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/'], }), ('Devel::CheckCompiler', '0.06', { - 'source_tmpl': 'Devel-CheckCompiler-0.06.tar.gz', + 'source_tmpl': 'Devel-CheckCompiler-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SY/SYOHEX'], }), ('File::Copy::Recursive', '0.38', { - 'source_tmpl': 'File-Copy-Recursive-0.38.tar.gz', + 'source_tmpl': 'File-Copy-Recursive-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DM/DMUEY/'], }), ('Cwd::Guard', '0.04', { - 'source_tmpl': 'Cwd-Guard-0.04.tar.gz', + 'source_tmpl': 'Cwd-Guard-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/K/KA/KAZEBURO'], }), ('Module::Build::XSUtil', '0.16', { - 'source_tmpl': 'Module-Build-XSUtil-0.16.tar.gz', + 'source_tmpl': 'Module-Build-XSUtil-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/H/HI/HIDEAKIO/'], }), ('LWP', '6.13', { - 'source_tmpl': 'libwww-perl-6.13.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], + 'source_tmpl': 'libwww-perl-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/E/ET/ETHER/'], }), ('Fennec::Lite', '0.004', { - 'source_tmpl': 'Fennec-Lite-0.004.tar.gz', + 'source_tmpl': 'Fennec-Lite-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/E/EX/EXODIST/'], }), ('aliased', '0.31', { + 'source_tmpl': 'aliased-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/O/OV/OVID/'], }), ('Meta::Builder', '0.003', { - 'source_tmpl': 'Meta-Builder-0.003.tar.gz', + 'source_tmpl': 'Meta-Builder-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/E/EX/EXODIST/'], }), ('Exporter::Declare', '0.114', { - 'source_tmpl': 'Exporter-Declare-0.114.tar.gz', + 'source_tmpl': 'Exporter-Declare-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/E/EX/EXODIST/'], }), ('Mock::Quick', '1.108', { - 'source_tmpl': 'Mock-Quick-1.108.tar.gz', + 'source_tmpl': 'Mock-Quick-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/E/EX/EXODIST/'], }), ('Test::Exception::LessClever', '0.006', { - 'source_tmpl': 'Test-Exception-LessClever-0.006.tar.gz', + 'source_tmpl': 'Test-Exception-LessClever-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/E/EX/EXODIST/'], }), ('Test::LeakTrace', '0.15', { - 'source_tmpl': 'Test-LeakTrace-0.15.tar.gz', + 'source_tmpl': 'Test-LeakTrace-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GF/GFUJI/'], }), ('Mouse', '2.4.2', { + 'source_tmpl': 'Mouse-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GF/GFUJI/'], }), ('XML::NamespaceSupport', '1.11', { - 'source_tmpl': 'XML-NamespaceSupport-1.11.tar.gz', + 'source_tmpl': 'XML-NamespaceSupport-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/P/PE/PERIGRIN/'], }), ('XML::SAX::Base', '1.08', { - 'source_tmpl': 'XML-SAX-Base-1.08.tar.gz', + 'source_tmpl': 'XML-SAX-Base-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GR/GRANTM/'], }), ('XML::SAX', '0.99', { - 'source_tmpl': 'XML-SAX-0.99.tar.gz', + 'source_tmpl': 'XML-SAX-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GR/GRANTM/'], }), ('XML::LibXML', '2.0121', { - 'source_tmpl': 'XML-LibXML-2.0121.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SH/SHLOMIF/'], + 'source_tmpl': 'XML-LibXML-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/'], }), ('Clone', '0.38', { - 'source_tmpl': 'Clone-0.38.tar.gz', + 'source_tmpl': 'Clone-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GARU'], }), ('Config::General', '2.58', { - 'source_tmpl': 'Config-General-2.58.tar.gz', + 'source_tmpl': 'Config-General-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TL/TLINDEN'], }), ('Test::Simple', '0.98', { - 'source_tmpl': 'Test-Simple-0.98_05.tar.gz', + 'source_tmpl': 'Test-Simple-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MS/MSCHWERN'], }), ('Font::TTF', '1.05', { - 'source_tmpl': 'Font-TTF-1.05.tar.gz', + 'source_tmpl': 'Font-TTF-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MH/MHOSKEN'], }), ('IO::Tty', '1.12', { - 'source_tmpl': 'IO-Tty-1.12.tar.gz', + 'source_tmpl': 'IO-Tty-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TO/TODDR'], }), ('Math::Bezier', '0.01', { - 'source_tmpl': 'Math-Bezier-0.01.tar.gz', + 'source_tmpl': 'Math-Bezier-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AB/ABW'], }), ('IPC::Run', '0.94', { - 'source_tmpl': 'IPC-Run-0.94.tar.gz', + 'source_tmpl': 'IPC-Run-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TO/TODDR'], }), ('Math::Round', '0.07', { - 'source_tmpl': 'Math-Round-0.07.tar.gz', + 'source_tmpl': 'Math-Round-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GR/GROMMEL'], }), ('B::LintSubs', '0.06', { - 'source_tmpl': 'B-LintSubs-0.06.tar.gz', + 'source_tmpl': 'B-LintSubs-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/P/PE/PEVANS'], }), ('Math::VecStat', '0.08', { - 'source_tmpl': 'Math-VecStat-0.08.tar.gz', + 'source_tmpl': 'Math-VecStat-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AS/ASPINELLI'], }), ('Test::Most', '0.34', { - 'source_tmpl': 'Test-Most-0.34.tar.gz', + 'source_tmpl': 'Test-Most-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/O/OV/OVID/'], }), ('Readonly', '1.04', { - 'source_tmpl': 'Readonly-1.04.tar.gz', + 'source_tmpl': 'Readonly-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SA/SANKO/'], }), ('Regexp::Common', '2013031301', { - 'source_tmpl': 'Regexp-Common-2013031301.tar.gz', + 'source_tmpl': 'Regexp-Common-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AB/ABIGAIL'], }), ('Want', '0.26', { - 'source_tmpl': 'Want-0.26.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RO/ROBIN/'], + 'source_tmpl': 'Want-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RO/ROBIN/'], }), ('DBD::SQLite', '1.48', { - 'source_tmpl': 'DBD-SQLite-1.48.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IS/ISHIGAKI/'], + 'source_tmpl': 'DBD-SQLite-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/I/IS/ISHIGAKI/'], }), ('Set::IntSpan', '1.19', { - 'source_tmpl': 'Set-IntSpan-1.19.tar.gz', + 'source_tmpl': 'Set-IntSpan-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SW/SWMCD'], }), ('forks', '0.36', { - 'source_tmpl': 'forks-0.36.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RY/RYBSKEJ/'], + 'source_tmpl': 'forks-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RY/RYBSKEJ/'], }), ('File::Which', '1.09', { - 'source_tmpl': 'File-Which-1.09.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/'], + 'source_tmpl': 'File-Which-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AD/ADAMK/'], }), - ('Perl::Unsafe::Signals', '', { - 'source_tmpl': 'Perl-Unsafe-Signals-0.02.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RG/RGARCIA/'], + ('Perl::Unsafe::Signals', '0.02', { + 'source_tmpl': 'Perl-Unsafe-Signals-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RG/RGARCIA/'], }), ('Bit::Vector', '7.4', { - 'source_tmpl': 'Bit-Vector-7.4.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/ST/STBEY/'], + 'source_tmpl': 'Bit-Vector-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/S/ST/STBEY/'], }), ('Parse::RecDescent', '1.967009', { - 'source_tmpl': 'Parse-RecDescent-1.967009.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JT/JTBRAUN/'], + 'source_tmpl': 'Parse-RecDescent-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/J/JT/JTBRAUN/'], }), ('Inline', '0.80', { - 'source_tmpl': 'Inline-0.80.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IN/INGY/'], + 'source_tmpl': 'Inline-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/I/IN/INGY'], }), ('File::ShareDir::Install', '0.10', { - 'source_tmpl': 'File-ShareDir-Install-0.10.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GW/GWYN/'], + 'source_tmpl': 'File-ShareDir-Install-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GW/GWYN/'], }), ('Inline::C', '0.76', { - 'source_tmpl': 'Inline-C-0.76.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IN/INGY/'], + 'source_tmpl': 'Inline-C-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/I/IN/INGY'], }), ('IO::All', '0.85', { - 'source_tmpl': 'IO-All-0.85.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/F/FR/FREW/'], + 'source_tmpl': 'IO-All-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/F/FR/FREW/'], }), ('IO::Prompt', '0.997002', { - 'source_tmpl': 'IO-Prompt-0.997002.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DC/DCONWAY/'], + 'source_tmpl': 'IO-Prompt-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DC/DCONWAY/'], }), ('Getopt::Long', '2.47', { - 'source_tmpl': 'Getopt-Long-2.47.tar.gz', + 'source_tmpl': 'Getopt-Long-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/J/JV/JV/'], }), ('AppConfig', '1.66', { + 'source_tmpl': 'AppConfig-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AB/ABW/'], }), ('Archive::Extract', '0.76', { - 'source_tmpl': 'Archive-Extract-0.76.tar.gz', + 'source_tmpl': 'Archive-Extract-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BI/BINGOS/'], }), ('Archive::Tar', '2.08', { - 'source_tmpl': 'Archive-Tar-2.08.tar.gz', + 'source_tmpl': 'Archive-Tar-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BI/BINGOS/'], }), ('Archive::Zip', '1.57', { - 'source_tmpl': 'Archive-Zip-1.57.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/P/PH/PHRED/'], + 'source_tmpl': 'Archive-Zip-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/P/PH/PHRED/'], }), ('Authen::SASL', '2.16', { - 'source_tmpl': 'Authen-SASL-2.16.tar.gz', + 'source_tmpl': 'Authen-SASL-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GB/GBARR/'], }), ('B::Lint', '1.20', { - 'source_tmpl': 'B-Lint-1.20.tar.gz', + 'source_tmpl': 'B-Lint-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], }), # BioPerl bundle was here ('Class::Accessor', '0.34', { - 'source_tmpl': 'Class-Accessor-0.34.tar.gz', + 'source_tmpl': 'Class-Accessor-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/K/KA/KASEI/'], }), ('Class::DBI', '3.0.17', { - 'source_tmpl': 'Class-DBI-v3.0.17.tar.gz', + 'source_tmpl': 'Class-DBI-v%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TM/TMTM/'], }), ('Class::Inspector', '1.28', { - 'source_tmpl': 'Class-Inspector-1.28.tar.gz', + 'source_tmpl': 'Class-Inspector-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AD/ADAMK/'], }), ('Class::ISA', '0.36', { - 'source_tmpl': 'Class-ISA-0.36.tar.gz', + 'source_tmpl': 'Class-ISA-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SM/SMUELLER/'], }), ('Class::Trigger', '0.14', { - 'source_tmpl': 'Class-Trigger-0.14.tar.gz', + 'source_tmpl': 'Class-Trigger-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MI/MIYAGAWA/'], }), ('CPANPLUS', '0.9154', { + 'source_tmpl': 'CPANPLUS-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BI/BINGOS/'], }), ('Data::Grove', '0.08', { - 'source_tmpl': 'libxml-perl-0.08.tar.gz', + 'source_tmpl': 'libxml-perl-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/K/KM/KMACLEOD/'], }), ('Data::UUID', '1.220', { - 'source_tmpl': 'Data-UUID-1.220.tar.gz', + 'source_tmpl': 'Data-UUID-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], }), ('Date::Language', '2.30', { - 'source_tmpl': 'TimeDate-2.30.tar.gz', + 'source_tmpl': 'TimeDate-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GB/GBARR/'], }), ('Date::Handler', '1.2', { - 'source_tmpl': 'Date-Handler-1.2.tar.gz', + 'source_tmpl': 'Date-Handler-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BB/BBEAUSEJ/'], }), ('SQL::Statement', '1.407', { - 'source_tmpl': 'SQL-Statement-1.407.tar.gz', + 'source_tmpl': 'SQL-Statement-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RE/REHSACK/'], }), ('Module::Pluggable', '5.1', { - 'source_tmpl': 'Module-Pluggable-5.1.tar.gz', + 'source_tmpl': 'Module-Pluggable-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SI/SIMONW/'], }), ('Digest::HMAC', '1.03', { - 'source_tmpl': 'Digest-HMAC-1.03.tar.gz', + 'source_tmpl': 'Digest-HMAC-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('Digest::SHA1', '2.13', { - 'source_tmpl': 'Digest-SHA1-2.13.tar.gz', + 'source_tmpl': 'Digest-SHA1-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('Email::Date::Format', '1.005', { - 'source_tmpl': 'Email-Date-Format-1.005.tar.gz', + 'source_tmpl': 'Email-Date-Format-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], }), ('Error', '0.17024', { + 'source_tmpl': 'Error-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/'], }), ('Expect', '1.21', { + 'source_tmpl': 'Expect-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RG/RGIERSIG/'], }), ('File::CheckTree', '4.42', { - 'source_tmpl': 'File-CheckTree-4.42.tar.gz', + 'source_tmpl': 'File-CheckTree-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], }), ('FreezeThaw', '0.5001', { 'source_urls': ['http://cpan.metacpan.org/authors/id/I/IL/ILYAZ/modules/'], }), ('Git', '0.41', { - 'source_tmpl': 'Git-0.41.tar.gz', + 'source_tmpl': 'Git-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MS/MSOUTH/'], }), ('GO::Utils', '0.15', { - 'source_tmpl': 'go-perl-0.15.tar.gz', + 'source_tmpl': 'go-perl-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CM/CMUNGALL/'], }), ('GO', '0.04', { - 'source_tmpl': 'go-db-perl-0.04.tar.gz', + 'source_tmpl': 'go-db-perl-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SJ/SJCARBON/'], }), ('HTML::Form', '6.03', { - 'source_tmpl': 'HTML-Form-6.03.tar.gz', + 'source_tmpl': 'HTML-Form-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('HTTP::Cookies', '6.01', { - 'source_tmpl': 'HTTP-Cookies-6.01.tar.gz', + 'source_tmpl': 'HTTP-Cookies-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('HTTP::Daemon', '6.01', { - 'source_tmpl': 'HTTP-Daemon-6.01.tar.gz', + 'source_tmpl': 'HTTP-Daemon-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('HTTP::Negotiate', '6.01', { - 'source_tmpl': 'HTTP-Negotiate-6.01.tar.gz', + 'source_tmpl': 'HTTP-Negotiate-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('IO::Stringy', '2.111', { - 'source_tmpl': 'IO-stringy-2.111.tar.gz', + 'source_tmpl': 'IO-stringy-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DS/DSKOLL/'], }), ('IO::Socket::SSL', '2.016', { - 'source_tmpl': 'IO-Socket-SSL-2.016.tar.gz', + 'source_tmpl': 'IO-Socket-SSL-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SU/SULLR/'], }), ('JSON', '2.90', { + 'source_tmpl': 'JSON-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MA/MAKAMAKA/'], }), ('Log::Message', '0.08', { - 'source_tmpl': 'Log-Message-0.08.tar.gz', + 'source_tmpl': 'Log-Message-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BI/BINGOS/'], }), ('Log::Message::Simple', '0.10', { - 'source_tmpl': 'Log-Message-Simple-0.10.tar.gz', + 'source_tmpl': 'Log-Message-Simple-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BI/BINGOS/'], }), ('Mail::Util', '2.14', { - 'source_tmpl': 'MailTools-2.14.tar.gz', + 'source_tmpl': 'MailTools-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MA/MARKOV/'], }), ('MIME::Types', '2.11', { - 'source_tmpl': 'MIME-Types-2.11.tar.gz', + 'source_tmpl': 'MIME-Types-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MA/MARKOV/'], }), ('MIME::Lite', '3.030', { - 'source_tmpl': 'MIME-Lite-3.030.tar.gz', + 'source_tmpl': 'MIME-Lite-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], }), ('Net::HTTP', '6.06', { - 'source_tmpl': 'Net-HTTP-6.06.tar.gz', + 'source_tmpl': 'Net-HTTP-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('Net::SMTP::SSL', '1.01', { - 'source_tmpl': 'Net-SMTP-SSL-1.01.tar.gz', + 'source_tmpl': 'Net-SMTP-SSL-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CW/CWEST/'], }), ('Object::Accessor', '0.48', { - 'source_tmpl': 'Object-Accessor-0.48.tar.gz', + 'source_tmpl': 'Object-Accessor-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BI/BINGOS/'], }), ('Pod::LaTeX', '0.61', { - 'source_tmpl': 'Pod-LaTeX-0.61.tar.gz', + 'source_tmpl': 'Pod-LaTeX-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TJ/TJENNESS/'], }), ('Pod::Plainer', '1.04', { - 'source_tmpl': 'Pod-Plainer-1.04.tar.gz', + 'source_tmpl': 'Pod-Plainer-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RM/RMBARKER/'], }), ('Pod::POM', '0.29', { - 'source_tmpl': 'Pod-POM-0.29.tar.gz', + 'source_tmpl': 'Pod-POM-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AN/ANDREWF/'], }), ('Shell', '0.72', { 'source_urls': ['http://cpan.metacpan.org/authors/id/F/FE/FERREIRA/'], }), ('Statistics::Descriptive', '3.0609', { - 'source_tmpl': 'Statistics-Descriptive-3.0609.tar.gz', + 'source_tmpl': 'Statistics-Descriptive-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/'], }), ('Switch', '2.17', { + 'source_tmpl': 'Switch-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CH/CHORNY/'], }), ('Template', '2.26', { - 'source_tmpl': 'Template-Toolkit-2.26.tar.gz', + 'source_tmpl': 'Template-Toolkit-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AB/ABW/'], }), ('Term::UI', '0.46', { - 'source_tmpl': 'Term-UI-0.46.tar.gz', + 'source_tmpl': 'Term-UI-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BI/BINGOS/'], }), ('Text::Iconv', '1.7', { - 'source_tmpl': 'Text-Iconv-1.7.tar.gz', + 'source_tmpl': 'Text-Iconv-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MP/MPIOTR/'], }), ('Text::Soundex', '3.04', { - 'source_tmpl': 'Text-Soundex-3.04.tar.gz', + 'source_tmpl': 'Text-Soundex-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], }), ('Time::Piece', '1.30', { - 'source_tmpl': 'Time-Piece-1.30.tar.gz', + 'source_tmpl': 'Time-Piece-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], }), ('Time::Piece::MySQL', '0.06', { - 'source_tmpl': 'Time-Piece-MySQL-0.06.tar.gz', + 'source_tmpl': 'Time-Piece-MySQL-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/K/KA/KASEI/'], }), ('UNIVERSAL::moniker', '0.08', { - 'source_tmpl': 'UNIVERSAL-moniker-0.08.tar.gz', + 'source_tmpl': 'UNIVERSAL-moniker-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/K/KA/KASEI/'], }), ('version', '0.9912', { 'source_urls': ['http://cpan.metacpan.org/authors/id/J/JP/JPEACOCK/'], }), ('WWW::RobotRules', '6.02', { - 'source_tmpl': 'WWW-RobotRules-6.02.tar.gz', + 'source_tmpl': 'WWW-RobotRules-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('XML::SAX::Writer', '0.56', { - 'source_tmpl': 'XML-SAX-Writer-0.56.tar.gz', + 'source_tmpl': 'XML-SAX-Writer-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/P/PE/PERIGRIN/'], }), ('XML::Simple', '2.20', { - 'source_tmpl': 'XML-Simple-2.20.tar.gz', + 'source_tmpl': 'XML-Simple-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GR/GRANTM/'], }), ('XML::XPath', '1.13', { - 'source_tmpl': 'XML-XPath-1.13.tar.gz', + 'source_tmpl': 'XML-XPath-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MS/MSERGEANT/'], }), ('DBD::AnyData', '0.110', { - 'source_tmpl': 'DBD-AnyData-0.110.tar.gz', + 'source_tmpl': 'DBD-AnyData-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RE/REHSACK/'], }), ('Ima::DBI', '0.35', { - 'source_tmpl': 'Ima-DBI-0.35.tar.gz', + 'source_tmpl': 'Ima-DBI-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/P/PE/PERRIN/'], }), ('DBIx::ContextualFetch', '1.03', { - 'source_tmpl': 'DBIx-ContextualFetch-1.03.tar.gz', + 'source_tmpl': 'DBIx-ContextualFetch-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TM/TMTM/'], }), ('DBIx::Simple', '1.35', { - 'source_tmpl': 'DBIx-Simple-1.35.tar.gz', + 'source_tmpl': 'DBIx-Simple-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/J/JU/JUERD/'], }), ('Term::ReadKey', '2.32', { - 'source_tmpl': 'TermReadKey-2.32.tar.gz', + 'source_tmpl': 'TermReadKey-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/J/JS/JSTOWE/'], 'patches': ['TermReadKey-2.32.patch'], }), ('Moo', '2.000001', { - 'source_tmpl': 'Moo-2.000001.tar.gz', + 'source_tmpl': 'Moo-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/H/HA/HAARG/'], }), ('strictures', '2.000001', { - 'source_tmpl': 'strictures-2.000001.tar.gz', + 'source_tmpl': 'strictures-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/H/HA/HAARG/'], }), ('File::Find::Rule::Perl', '1.13', { - 'source_tmpl': 'File-Find-Rule-Perl-1.13.tar.gz', + 'source_tmpl': 'File-Find-Rule-Perl-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AD/ADAMK/'], }), ('Test::Version', '1.002004', { - 'source_tmpl': 'Test-Version-1.002004.tar.gz', + 'source_tmpl': 'Test-Version-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/X/XE/XENO/'], }), ('Test::Harness', '3.35', { - 'source_tmpl': 'Test-Harness-3.35.tar.gz', + 'source_tmpl': 'Test-Harness-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEONT/'], }), ('Import::Into', '1.002004', { - 'source_tmpl': 'Import-Into-1.002004.tar.gz', + 'source_tmpl': 'Import-Into-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/E/ET/ETHER/'], }), ('File::Find::Rule', '0.33', { - 'source_tmpl': 'File-Find-Rule-0.33.tar.gz', + 'source_tmpl': 'File-Find-Rule-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RC/RCLAMP/'], }), ('Data::Section::Simple', '0.07', { - 'source_tmpl': 'Data-Section-Simple-0.07.tar.gz', + 'source_tmpl': 'Data-Section-Simple-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MI/MIYAGAWA/'], }), ('Text::Glob', '0.09', { - 'source_tmpl': 'Text-Glob-0.09.tar.gz', + 'source_tmpl': 'Text-Glob-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RC/RCLAMP/'], }), ('Number::Compare', '0.03', { - 'source_tmpl': 'Number-Compare-0.03.tar.gz', + 'source_tmpl': 'Number-Compare-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RC/RCLAMP/'], }), ('IPC::Run3', '0.048', { - 'source_tmpl': 'IPC-Run3-0.048.tar.gz', + 'source_tmpl': 'IPC-Run3-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], }), ('Set::Array', '0.30', { - 'source_tmpl': 'Set-Array-0.30.tgz', + 'source_tmpl': 'Set-Array-%(version)s.tgz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RS/RSAVAGE/'], }), ('Bundle::BioPerl', '2.1.9', { - 'source_tmpl': 'Bundle-BioPerl-2.1.9.tar.gz', + 'source_tmpl': 'Bundle-BioPerl-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CJ/CJFIELDS/'], }), - ('Algorithm::Munkres', '0.08', { - 'source_tmpl': 'Algorithm-Munkres-0.08.tar.gz', + 'source_tmpl': 'Algorithm-Munkres-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TP/TPEDERSE/'], }), -# Lots of deps: Carp, Types::Standard etc. -# ('Array::Compare', '2.11', { -# 'source_tmpl': 'Array-Compare-2.11.tar.gz', -# 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DA/DAVECROSS/'], -# }), ('Graph', '0.96', { + 'source_tmpl': 'Graph-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/J/JH/JHI/'], }), ('Set::Scalar', '1.29', { - 'source_tmpl': 'Set-Scalar-1.29.tar.gz', + 'source_tmpl': 'Set-Scalar-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DA/DAVIDO/'], }), - ('CGI', '4.21', { - 'source_tmpl': 'CGI-4.21.tar.gz', + 'source_tmpl': 'CGI-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEEJO/'], }), ('Bio::Phylo', '0.58', { - 'source_tmpl': 'Bio-Phylo-0.58.tar.gz', + 'source_tmpl': 'Bio-Phylo-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RV/RVOSA/'], }), -# ('GD', '2.56', { -# 'source_urls': 'http://cpan.metacpan.org/authors/id/L/LD/LDS/'], -# }), ('SVG', '2.64', { + 'source_tmpl': 'SVG-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SZ/SZABGAB/'], }), ('XML::DOM', '1.44', { - 'source_tmpl': 'XML-DOM-1.44.tar.gz', + 'source_tmpl': 'XML-DOM-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TJ/TJMATHER/'], }), ('XML::DOM::XPath', '0.14', { - 'source_tmpl': 'XML-DOM-XPath-0.14.tar.gz', + 'source_tmpl': 'XML-DOM-XPath-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MI/MIROD/'], }), ('XML::Parser::PerlSAX', '0.08', { - 'source_tmpl': 'libxml-perl-0.08.tar.gz', + 'source_tmpl': 'libxml-perl-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/K/KM/KMACLEOD/'], }), ('XML::Parser', '2.44', { - 'source_tmpl': 'XML-Parser-2.44.tar.gz', + 'source_tmpl': 'XML-Parser-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TO/TODDR/'], }), ('XML::Twig', '3.49', { - 'source_tmpl': 'XML-Twig-3.49.tar.gz', + 'source_tmpl': 'XML-Twig-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MI/MIROD/'], }), ('XML::Writer', '0.625', { - 'source_tmpl': 'XML-Writer-0.625.tar.gz', + 'source_tmpl': 'XML-Writer-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/J/JO/JOSEPHW/'], }), ('XML::DOM', '1.44', { - 'source_tmpl': 'XML-DOM-1.44.tar.gz', + 'source_tmpl': 'XML-DOM-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TJ/TJMATHER/'], }), ('Spreadsheet::ParseExcel', '0.65', { - 'source_tmpl': 'Spreadsheet-ParseExcel-0.65.tar.gz', + 'source_tmpl': 'Spreadsheet-ParseExcel-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DO/DOUGW/'], }), ('XML::DOM::XPath', '0.14', { - 'source_tmpl': 'XML-DOM-XPath-0.14.tar.gz', + 'source_tmpl': 'XML-DOM-XPath-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MI/MIROD/'], }), ('Convert::Binary::C', '0.77', { - 'source_tmpl': 'Convert-Binary-C-0.77.tar.gz', + 'source_tmpl': 'Convert-Binary-C-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MH/MHX/'], }), ('Sys::SigAction.pm', '0.21', { - 'source_tmpl': 'Sys-SigAction-0.21.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/L/LB/LBAXTER/'], + 'source_tmpl': 'Sys-SigAction-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LB/LBAXTER/'], }), ('Acme::Damn', '0.06', { - 'source_tmpl': 'Acme-Damn-0.06.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IB/IBB/'], + 'source_tmpl': 'Acme-Damn-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/I/IB/IBB/'], }), ('Set::IntervalTree', '0.10', { - 'source_tmpl': 'Set-IntervalTree-0.10.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BE/BENBOOTH/'], + 'source_tmpl': 'Set-IntervalTree-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BE/BENBOOTH/'], }), ('HTML::TableExtract', '2.13', { - 'source_tmpl': 'HTML-TableExtract-2.13.tar.gz', + 'source_tmpl': 'HTML-TableExtract-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MS/MSISK/'], }), - ('Bio::Perl', '1.6.924', { - 'source_tmpl': 'BioPerl-1.6.924.tar.gz', - 'source_urls': ['http://www.cpan.org/modules/by-module/Bio/CJFIELDS/'], + 'source_tmpl': 'BioPerl-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/C/CJ/CJFIELDS'], }), ] diff --git a/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a.eb b/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a.eb index 0443d98f0a..b4c631de0e 100644 --- a/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a.eb +++ b/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a.eb @@ -17,877 +17,879 @@ dependencies = [ source_urls = ['http://www.cpan.org/src/5.0'] sources = [SOURCELOWER_TAR_GZ] -#runtest = 'test' exts_list = [ ('Module::Build', '0.4210', { # std module but recent BioPerl needs a recent version for some reason - 'source_tmpl': 'Module-Build-0.4210.tar.gz', - 'source_urls': ['http://www.cpan.org/modules/by-module/Module/LEONT/'], + 'source_tmpl': 'Module-Build-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/L/LE/LEONT'], }), ('ExtUtils::MakeMaker', '7.04', { - 'source_tmpl': 'ExtUtils-MakeMaker-7.04.tar.gz', - 'source_urls': ['http://www.cpan.org/modules/by-module/ExtUtils/BINGOS/'], + 'source_tmpl': 'ExtUtils-MakeMaker-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BI/BINGOS'], }), ('local::lib', '2.000011', { - 'source_tmpl': 'local-lib-2.000011.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], + 'source_tmpl': 'local-lib-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/E/ET/ETHER/'], }), ('IO::String', '1.08', { - 'source_tmpl': 'IO-String-1.08.tar.gz', + 'source_tmpl': 'IO-String-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('Data::Stag', '0.14', { - 'source_tmpl': 'Data-Stag-0.14.tar.gz', + 'source_tmpl': 'Data-Stag-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CM/CMUNGALL/'], }), ('DB_File', '1.835', { - 'source_urls': ['http://www.cpan.org/modules/by-module/DB_File/PMQS/'], + 'source_tmpl': 'DB_File-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/P/PM/PMQS/'], }), ('DBI', '1.633', { - 'source_urls': ['http://www.cpan.org/modules/by-module/DBI/TIMB/'], + 'source_tmpl': 'DBI-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TI/TIMB/'], }), ('Sub::Uplevel', '0.25', { - 'source_tmpl': 'Sub-Uplevel-0.25.tar.gz', - 'source_urls': ['http://www.cpan.org/modules/by-module/Sub/DAGOLDEN/'], + 'source_tmpl': 'Sub-Uplevel-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/'], }), ('Tree::DAG_Node', '1.26', { - 'source_tmpl': 'Tree-DAG_Node-1.26.tgz', - 'source_urls': ['http://www.cpan.org/modules/by-module/Tree/RSAVAGE/'], + 'source_tmpl': 'Tree-DAG_Node-%(version)s.tgz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RS/RSAVAGE/'], }), ('Try::Tiny', '0.22', { - 'source_tmpl': 'Try-Tiny-0.22.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DO/DOY/'], + 'source_tmpl': 'Try-Tiny-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DO/DOY/'], }), ('Devel::StackTrace', '2.00', { - 'source_tmpl': 'Devel-StackTrace-2.00.tar.gz', + 'source_tmpl': 'Devel-StackTrace-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/'], }), ('Class::Data::Inheritable', '0.08', { - 'source_tmpl': 'Class-Data-Inheritable-0.08.tar.gz', + 'source_tmpl': 'Class-Data-Inheritable-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TM/TMTM/'], }), ('Exception::Class', '1.39', { - 'source_tmpl': 'Exception-Class-1.39.tar.gz', + 'source_tmpl': 'Exception-Class-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/'], }), ('Test::Fatal', '0.014', { - 'source_tmpl': 'Test-Fatal-0.014.tar.gz', - 'source_urls': ['http://www.cpan.org/modules/by-module/Test/RJBS/'], + 'source_tmpl': 'Test-Fatal-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], }), ('Test::NoWarnings', '1.04', { - 'source_tmpl': 'Test-NoWarnings-1.04.tar.gz', + 'source_tmpl': 'Test-NoWarnings-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AD/ADAMK/'], }), ('Test::Deep', '0.117', { - 'source_tmpl': 'Test-Deep-0.117.tar.gz', + 'source_tmpl': 'Test-Deep-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], }), ('Algorithm::Diff', '1.15', { - 'source_tmpl': 'Algorithm-Diff-1.15.tar.gz', + 'source_tmpl': 'Algorithm-Diff-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/N/NE/NEDKONZ/'], }), ('Text::Diff', '1.41', { - 'source_tmpl': 'Text-Diff-1.41.tar.gz', + 'source_tmpl': 'Text-Diff-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/O/OV/OVID/'], }), ('Test::Differences', '0.61', { - 'source_tmpl': 'Test-Differences-0.61.tar.gz', + 'source_tmpl': 'Test-Differences-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/O/OV/OVID/'], }), ('Test::Exception', '0.32', { - 'source_tmpl': 'Test-Exception-0.32.tar.gz', + 'source_tmpl': 'Test-Exception-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AD/ADIE/'], }), ('Test::Warn', '0.30', { - 'source_tmpl': 'Test-Warn-0.30.tar.gz', + 'source_tmpl': 'Test-Warn-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CH/CHORNY/'], }), ('Test::Requires', '0.08', { - 'source_tmpl': 'Test-Requires-0.08.tar.gz', - 'source_urls': ['http://www.cpan.org/modules/by-module/Test/TOKUHIROM/'], + 'source_tmpl': 'Test-Requires-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TO/TOKUHIROM'], }), ('Test::Tester', '0.109', { - 'source_tmpl': 'Test-Tester-0.109.tar.gz', - 'source_urls': ['http://www.cpan.org/modules/by-module/Test/FDALY/'], + 'source_tmpl': 'Test-Tester-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/F/FD/FDALY'], }), ('File::Slurp::Tiny', '0.003', { - 'source_tmpl': 'File-Slurp-Tiny-0.003.tar.gz', + 'source_tmpl': 'File-Slurp-Tiny-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEONT'], }), ('Params::Util', '1.07', { - 'source_tmpl': 'Params-Util-1.07.tar.gz', + 'source_tmpl': 'Params-Util-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AD/ADAMK/'], }), ('Sub::Install', '0.928', { - 'source_tmpl': 'Sub-Install-0.928.tar.gz', - 'source_urls': ['http://www.cpan.org/modules/by-module/Sub/RJBS/'], + 'source_tmpl': 'Sub-Install-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], }), ('Data::OptList', '0.109', { - 'source_tmpl': 'Data-OptList-0.109.tar.gz', + 'source_tmpl': 'Data-OptList-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], }), ('Sub::Exporter', '0.987', { - 'source_tmpl': 'Sub-Exporter-0.987.tar.gz', + 'source_tmpl': 'Sub-Exporter-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], }), ('Capture::Tiny', '0.30', { - 'source_tmpl': 'Capture-Tiny-0.30.tar.gz', + 'source_tmpl': 'Capture-Tiny-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/'], }), ('Test::Output', '1.03', { - 'source_tmpl': 'Test-Output-1.03.tar.gz', + 'source_tmpl': 'Test-Output-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BD/BDFOY/'], }), ('Module::Runtime', '0.014', { - 'source_tmpl': 'Module-Runtime-0.014.tar.gz', + 'source_tmpl': 'Module-Runtime-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/Z/ZE/ZEFRAM/'], }), ('Module::Implementation', '0.09', { - 'source_tmpl': 'Module-Implementation-0.09.tar.gz', - 'source_urls': ['http://www.cpan.org/modules/by-module/Module/DROLSKY/'], + 'source_tmpl': 'Module-Implementation-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/'], }), ('List::MoreUtils', '0.413', { - 'source_tmpl': 'List-MoreUtils-0.413.tar.gz', + 'source_tmpl': 'List-MoreUtils-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RE/REHSACK/'], }), ('Package::DeprecationManager', '0.14', { - 'source_tmpl': 'Package-DeprecationManager-0.14.tar.gz', + 'source_tmpl': 'Package-DeprecationManager-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/'], }), ('Dist::CheckConflicts', '0.11', { - 'source_tmpl': 'Dist-CheckConflicts-0.11.tar.gz', + 'source_tmpl': 'Dist-CheckConflicts-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DO/DOY/'], }), ('Package::Stash', '0.37', { - 'source_tmpl': 'Package-Stash-0.37.tar.gz', - 'source_urls': ['http://www.cpan.org/modules/by-module/Package/DOY/'], + 'source_tmpl': 'Package-Stash-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DO/DOY/'], }), ('Class::Load', '0.23', { - 'source_tmpl': 'Class-Load-0.23.tar.gz', + 'source_tmpl': 'Class-Load-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/E/ET/ETHER/'], }), ('TAP::Harness::Env', '3.35', { - 'source_tmpl': 'Test-Harness-3.35.tar.gz', + 'source_tmpl': 'Test-Harness-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEONT/'], }), ('ExtUtils::Helpers', '0.022', { - 'source_tmpl': 'ExtUtils-Helpers-0.022.tar.gz', + 'source_tmpl': 'ExtUtils-Helpers-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEONT'], }), ('ExtUtils::Config', '0.008', { - 'source_tmpl': 'ExtUtils-Config-0.008.tar.gz', + 'source_tmpl': 'ExtUtils-Config-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEONT'], }), ('ExtUtils::InstallPaths', '0.011', { - 'source_tmpl': 'ExtUtils-InstallPaths-0.011.tar.gz', + 'source_tmpl': 'ExtUtils-InstallPaths-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEONT'], }), ('Module::Build::Tiny', '0.039', { - 'source_tmpl': 'Module-Build-Tiny-0.039.tar.gz', + 'source_tmpl': 'Module-Build-Tiny-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEONT/'], }), ('MRO::Compat', '0.12', { - 'source_tmpl': 'MRO-Compat-0.12.tar.gz', + 'source_tmpl': 'MRO-Compat-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BO/BOBTFISH/'], }), ('Sub::Name', '0.05', { - 'source_tmpl': 'Sub-Name-0.05.tar.gz', + 'source_tmpl': 'Sub-Name-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/F/FL/FLORA/'], }), ('Eval::Closure', '0.13', { - 'source_tmpl': 'Eval-Closure-0.13.tar.gz', + 'source_tmpl': 'Eval-Closure-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DO/DOY/'], }), ('Sub::Exporter::Progressive', '0.001011', { - 'source_tmpl': 'Sub-Exporter-Progressive-0.001011.tar.gz', + 'source_tmpl': 'Sub-Exporter-Progressive-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/F/FR/FREW/'], }), ('Devel::GlobalDestruction', '0.13', { - 'source_tmpl': 'Devel-GlobalDestruction-0.13.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/H/HA/HAARG/'], + 'source_tmpl': 'Devel-GlobalDestruction-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/H/HA/HAARG/'], }), ('boolean', '0.45', { - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IN/INGY/'], + 'source_tmpl': 'boolean-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/I/IN/INGY'], }), ('Tie::IxHash', '1.23', { - 'source_tmpl': 'Tie-IxHash-1.23.tar.gz', + 'source_tmpl': 'Tie-IxHash-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CH/CHORNY/'], }), ('Moose', '2.1405', { - 'source_urls': ['http://www.cpan.org/modules/by-module/MooseX/ETHER/'], + 'source_tmpl': 'Moose-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/E/ET/ETHER/'], }), ('Package::Stash::XS', '0.28', { - 'source_tmpl': 'Package-Stash-XS-0.28.tar.gz', + 'source_tmpl': 'Package-Stash-XS-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DO/DOY/'], }), ('Params::Validate', '1.20', { - 'source_tmpl': 'Params-Validate-1.20.tar.gz', - 'source_urls': ['http://www.cpan.org/modules/by-module/Params/DROLSKY/'], + 'source_tmpl': 'Params-Validate-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/'], }), ('Class::Load::XS', '0.09', { - 'source_tmpl': 'Class-Load-XS-0.09.tar.gz', + 'source_tmpl': 'Class-Load-XS-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/E/ET/ETHER/'], }), - # For uoa00001, Zendesk #9076 ('Math::CDF', '0.1', { - 'source_tmpl': 'Math-CDF-0.1.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/C/CA/CALLAHAN/'], + 'source_tmpl': 'Math-CDF-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CA/CALLAHAN/'], }), - ('DateTime::Locale', '0.46', { - 'source_tmpl': 'DateTime-Locale-0.46.tar.gz', + 'source_tmpl': 'DateTime-Locale-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/'], }), ('Class::Singleton', '1.4', { - 'source_tmpl': 'Class-Singleton-1.4.tar.gz', + 'source_tmpl': 'Class-Singleton-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AB/ABW/'], }), ('DateTime::TimeZone', '1.92', { - 'source_tmpl': 'DateTime-TimeZone-1.92.tar.gz', - 'source_urls': ['http://www.cpan.org/modules/by-module/DateTime/DROLSKY/'], + 'source_tmpl': 'DateTime-TimeZone-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/'], }), ('Test::Warnings', '0.021', { - 'source_tmpl': 'Test-Warnings-0.021.tar.gz', + 'source_tmpl': 'Test-Warnings-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/E/ET/ETHER/'], }), ('Data::Types', '0.09', { - 'source_tmpl': 'Data-Types-0.09.tar.gz', + 'source_tmpl': 'Data-Types-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DW/DWHEELER/'], }), ('Exporter::Tiny', '0.042', { - 'source_tmpl': 'Exporter-Tiny-0.042.tar.gz', + 'source_tmpl': 'Exporter-Tiny-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TO/TOBYINK/'], }), - ('List::AllUtils', '0.09', { - 'source_tmpl': 'List-AllUtils-0.09.tar.gz', + 'source_tmpl': 'List-AllUtils-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/'], }), ('DateTime', '1.20', { - 'source_urls': ['http://www.cpan.org/modules/by-module/DateTime/DROLSKY/'], + 'source_tmpl': 'DateTime-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DR/DROLSKY/'], }), ('DateTime::Tiny', '1.04', { - 'source_tmpl': 'DateTime-Tiny-1.04.tar.gz', + 'source_tmpl': 'DateTime-Tiny-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AD/ADAMK/'], }), ('File::Slurp', '9999.19', { - 'source_tmpl': 'File-Slurp-9999.19.tar.gz', + 'source_tmpl': 'File-Slurp-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/U/UR/URI/'], }), ('HTTP::Date', '6.02', { - 'source_tmpl': 'HTTP-Date-6.02.tar.gz', + 'source_tmpl': 'HTTP-Date-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('IO::HTML', '1.001', { - 'source_tmpl': 'IO-HTML-1.001.tar.gz', - 'source_urls': ['http://www.cpan.org/modules/by-module/IO/CJM/'], + 'source_tmpl': 'IO-HTML-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/C/CJ/CJM'], }), ('LWP::MediaTypes', '6.02', { - 'source_tmpl': 'LWP-MediaTypes-6.02.tar.gz', + 'source_tmpl': 'LWP-MediaTypes-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('URI', '1.69', { - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], + 'source_tmpl': 'URI-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/E/ET/ETHER/'], }), ('Encode::Locale', '1.05', { - 'source_tmpl': 'Encode-Locale-1.05.tar.gz', + 'source_tmpl': 'Encode-Locale-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('HTTP::Request', '6.06', { - 'source_tmpl': 'HTTP-Message-6.06.tar.gz', + 'source_tmpl': 'HTTP-Message-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('HTML::Tagset', '3.20', { - 'source_tmpl': 'HTML-Tagset-3.20.tar.gz', + 'source_tmpl': 'HTML-Tagset-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/P/PE/PETDANCE/'], }), ('HTML::Entities', '3.71', { - 'source_tmpl': 'HTML-Parser-3.71.tar.gz', + 'source_tmpl': 'HTML-Parser-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('File::Listing', '6.04', { - 'source_tmpl': 'File-Listing-6.04.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/'], + 'source_tmpl': 'File-Listing-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('AnyEvent', '7.09', { + 'source_tmpl': 'AnyEvent-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/'], }), ('Devel::CheckCompiler', '0.06', { - 'source_tmpl': 'Devel-CheckCompiler-0.06.tar.gz', + 'source_tmpl': 'Devel-CheckCompiler-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SY/SYOHEX'], }), ('File::Copy::Recursive', '0.38', { - 'source_tmpl': 'File-Copy-Recursive-0.38.tar.gz', + 'source_tmpl': 'File-Copy-Recursive-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DM/DMUEY/'], }), ('Cwd::Guard', '0.04', { - 'source_tmpl': 'Cwd-Guard-0.04.tar.gz', + 'source_tmpl': 'Cwd-Guard-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/K/KA/KAZEBURO'], }), ('Module::Build::XSUtil', '0.16', { - 'source_tmpl': 'Module-Build-XSUtil-0.16.tar.gz', + 'source_tmpl': 'Module-Build-XSUtil-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/H/HI/HIDEAKIO/'], }), ('LWP', '6.13', { - 'source_tmpl': 'libwww-perl-6.13.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/'], + 'source_tmpl': 'libwww-perl-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/E/ET/ETHER/'], }), ('Fennec::Lite', '0.004', { - 'source_tmpl': 'Fennec-Lite-0.004.tar.gz', + 'source_tmpl': 'Fennec-Lite-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/E/EX/EXODIST/'], }), ('aliased', '0.31', { + 'source_tmpl': 'aliased-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/O/OV/OVID/'], }), ('Meta::Builder', '0.003', { - 'source_tmpl': 'Meta-Builder-0.003.tar.gz', + 'source_tmpl': 'Meta-Builder-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/E/EX/EXODIST/'], }), ('Exporter::Declare', '0.114', { - 'source_tmpl': 'Exporter-Declare-0.114.tar.gz', + 'source_tmpl': 'Exporter-Declare-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/E/EX/EXODIST/'], }), ('Mock::Quick', '1.108', { - 'source_tmpl': 'Mock-Quick-1.108.tar.gz', + 'source_tmpl': 'Mock-Quick-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/E/EX/EXODIST/'], }), ('Test::Exception::LessClever', '0.006', { - 'source_tmpl': 'Test-Exception-LessClever-0.006.tar.gz', + 'source_tmpl': 'Test-Exception-LessClever-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/E/EX/EXODIST/'], }), ('Test::LeakTrace', '0.15', { - 'source_tmpl': 'Test-LeakTrace-0.15.tar.gz', + 'source_tmpl': 'Test-LeakTrace-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GF/GFUJI/'], }), ('Mouse', '2.4.2', { + 'source_tmpl': 'Mouse-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GF/GFUJI/'], }), ('XML::NamespaceSupport', '1.11', { - 'source_tmpl': 'XML-NamespaceSupport-1.11.tar.gz', + 'source_tmpl': 'XML-NamespaceSupport-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/P/PE/PERIGRIN/'], }), ('XML::SAX::Base', '1.08', { - 'source_tmpl': 'XML-SAX-Base-1.08.tar.gz', + 'source_tmpl': 'XML-SAX-Base-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GR/GRANTM/'], }), ('XML::SAX', '0.99', { - 'source_tmpl': 'XML-SAX-0.99.tar.gz', + 'source_tmpl': 'XML-SAX-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GR/GRANTM/'], }), ('XML::LibXML', '2.0121', { - 'source_tmpl': 'XML-LibXML-2.0121.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SH/SHLOMIF/'], + 'source_tmpl': 'XML-LibXML-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/'], }), ('Clone', '0.38', { - 'source_tmpl': 'Clone-0.38.tar.gz', + 'source_tmpl': 'Clone-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GARU'], }), ('Config::General', '2.58', { - 'source_tmpl': 'Config-General-2.58.tar.gz', + 'source_tmpl': 'Config-General-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TL/TLINDEN'], }), ('Test::Simple', '0.98', { - 'source_tmpl': 'Test-Simple-0.98_05.tar.gz', + 'source_tmpl': 'Test-Simple-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MS/MSCHWERN'], }), ('Font::TTF', '1.05', { - 'source_tmpl': 'Font-TTF-1.05.tar.gz', + 'source_tmpl': 'Font-TTF-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MH/MHOSKEN'], }), ('IO::Tty', '1.12', { - 'source_tmpl': 'IO-Tty-1.12.tar.gz', + 'source_tmpl': 'IO-Tty-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TO/TODDR'], }), ('Math::Bezier', '0.01', { - 'source_tmpl': 'Math-Bezier-0.01.tar.gz', + 'source_tmpl': 'Math-Bezier-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AB/ABW'], }), ('IPC::Run', '0.94', { - 'source_tmpl': 'IPC-Run-0.94.tar.gz', + 'source_tmpl': 'IPC-Run-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TO/TODDR'], }), ('Math::Round', '0.07', { - 'source_tmpl': 'Math-Round-0.07.tar.gz', + 'source_tmpl': 'Math-Round-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GR/GROMMEL'], }), ('B::LintSubs', '0.06', { - 'source_tmpl': 'B-LintSubs-0.06.tar.gz', + 'source_tmpl': 'B-LintSubs-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/P/PE/PEVANS'], }), ('Math::VecStat', '0.08', { - 'source_tmpl': 'Math-VecStat-0.08.tar.gz', + 'source_tmpl': 'Math-VecStat-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AS/ASPINELLI'], }), ('Test::Most', '0.34', { - 'source_tmpl': 'Test-Most-0.34.tar.gz', + 'source_tmpl': 'Test-Most-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/O/OV/OVID/'], }), ('Readonly', '1.04', { - 'source_tmpl': 'Readonly-1.04.tar.gz', + 'source_tmpl': 'Readonly-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SA/SANKO/'], }), ('Regexp::Common', '2013031301', { - 'source_tmpl': 'Regexp-Common-2013031301.tar.gz', + 'source_tmpl': 'Regexp-Common-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AB/ABIGAIL'], }), ('Want', '0.26', { - 'source_tmpl': 'Want-0.26.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RO/ROBIN/'], + 'source_tmpl': 'Want-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RO/ROBIN/'], }), ('DBD::SQLite', '1.48', { - 'source_tmpl': 'DBD-SQLite-1.48.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IS/ISHIGAKI/'], + 'source_tmpl': 'DBD-SQLite-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/I/IS/ISHIGAKI/'], }), ('Set::IntSpan', '1.19', { - 'source_tmpl': 'Set-IntSpan-1.19.tar.gz', + 'source_tmpl': 'Set-IntSpan-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SW/SWMCD'], }), ('forks', '0.36', { - 'source_tmpl': 'forks-0.36.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RY/RYBSKEJ/'], + 'source_tmpl': 'forks-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RY/RYBSKEJ/'], }), ('File::Which', '1.09', { - 'source_tmpl': 'File-Which-1.09.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/'], + 'source_tmpl': 'File-Which-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AD/ADAMK/'], }), - ('Perl::Unsafe::Signals', '', { - 'source_tmpl': 'Perl-Unsafe-Signals-0.02.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/R/RG/RGARCIA/'], + ('Perl::Unsafe::Signals', '0.02', { + 'source_tmpl': 'Perl-Unsafe-Signals-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RG/RGARCIA/'], }), ('Bit::Vector', '7.4', { - 'source_tmpl': 'Bit-Vector-7.4.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/ST/STBEY/'], + 'source_tmpl': 'Bit-Vector-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/S/ST/STBEY/'], }), ('Parse::RecDescent', '1.967009', { - 'source_tmpl': 'Parse-RecDescent-1.967009.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JT/JTBRAUN/'], + 'source_tmpl': 'Parse-RecDescent-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/J/JT/JTBRAUN/'], }), ('Inline', '0.80', { - 'source_tmpl': 'Inline-0.80.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IN/INGY/'], + 'source_tmpl': 'Inline-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/I/IN/INGY'], }), ('File::ShareDir::Install', '0.10', { - 'source_tmpl': 'File-ShareDir-Install-0.10.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/G/GW/GWYN/'], + 'source_tmpl': 'File-ShareDir-Install-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GW/GWYN/'], }), ('Inline::C', '0.76', { - 'source_tmpl': 'Inline-C-0.76.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IN/INGY/'], + 'source_tmpl': 'Inline-C-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/I/IN/INGY'], }), ('IO::All', '0.85', { - 'source_tmpl': 'IO-All-0.85.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/F/FR/FREW/'], + 'source_tmpl': 'IO-All-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/F/FR/FREW/'], }), ('IO::Prompt', '0.997002', { - 'source_tmpl': 'IO-Prompt-0.997002.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/D/DC/DCONWAY/'], + 'source_tmpl': 'IO-Prompt-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DC/DCONWAY/'], }), ('Getopt::Long', '2.47', { - 'source_tmpl': 'Getopt-Long-2.47.tar.gz', + 'source_tmpl': 'Getopt-Long-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/J/JV/JV/'], }), ('AppConfig', '1.66', { + 'source_tmpl': 'AppConfig-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AB/ABW/'], }), ('Archive::Extract', '0.76', { - 'source_tmpl': 'Archive-Extract-0.76.tar.gz', + 'source_tmpl': 'Archive-Extract-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BI/BINGOS/'], }), ('Archive::Tar', '2.08', { - 'source_tmpl': 'Archive-Tar-2.08.tar.gz', + 'source_tmpl': 'Archive-Tar-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BI/BINGOS/'], }), ('Archive::Zip', '1.57', { - 'source_tmpl': 'Archive-Zip-1.57.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/P/PH/PHRED/'], + 'source_tmpl': 'Archive-Zip-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/P/PH/PHRED/'], }), ('Authen::SASL', '2.16', { - 'source_tmpl': 'Authen-SASL-2.16.tar.gz', + 'source_tmpl': 'Authen-SASL-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GB/GBARR/'], }), ('B::Lint', '1.20', { - 'source_tmpl': 'B-Lint-1.20.tar.gz', + 'source_tmpl': 'B-Lint-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], }), # BioPerl bundle was here ('Class::Accessor', '0.34', { - 'source_tmpl': 'Class-Accessor-0.34.tar.gz', + 'source_tmpl': 'Class-Accessor-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/K/KA/KASEI/'], }), ('Class::DBI', '3.0.17', { - 'source_tmpl': 'Class-DBI-v3.0.17.tar.gz', + 'source_tmpl': 'Class-DBI-v%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TM/TMTM/'], }), ('Class::Inspector', '1.28', { - 'source_tmpl': 'Class-Inspector-1.28.tar.gz', + 'source_tmpl': 'Class-Inspector-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AD/ADAMK/'], }), ('Class::ISA', '0.36', { - 'source_tmpl': 'Class-ISA-0.36.tar.gz', + 'source_tmpl': 'Class-ISA-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SM/SMUELLER/'], }), ('Class::Trigger', '0.14', { - 'source_tmpl': 'Class-Trigger-0.14.tar.gz', + 'source_tmpl': 'Class-Trigger-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MI/MIYAGAWA/'], }), ('CPANPLUS', '0.9154', { + 'source_tmpl': 'CPANPLUS-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BI/BINGOS/'], }), ('Data::Grove', '0.08', { - 'source_tmpl': 'libxml-perl-0.08.tar.gz', + 'source_tmpl': 'libxml-perl-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/K/KM/KMACLEOD/'], }), ('Data::UUID', '1.220', { - 'source_tmpl': 'Data-UUID-1.220.tar.gz', + 'source_tmpl': 'Data-UUID-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], }), ('Date::Language', '2.30', { - 'source_tmpl': 'TimeDate-2.30.tar.gz', + 'source_tmpl': 'TimeDate-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GB/GBARR/'], }), ('Date::Handler', '1.2', { - 'source_tmpl': 'Date-Handler-1.2.tar.gz', + 'source_tmpl': 'Date-Handler-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BB/BBEAUSEJ/'], }), ('SQL::Statement', '1.407', { - 'source_tmpl': 'SQL-Statement-1.407.tar.gz', + 'source_tmpl': 'SQL-Statement-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RE/REHSACK/'], }), ('Module::Pluggable', '5.1', { - 'source_tmpl': 'Module-Pluggable-5.1.tar.gz', + 'source_tmpl': 'Module-Pluggable-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SI/SIMONW/'], }), ('Digest::HMAC', '1.03', { - 'source_tmpl': 'Digest-HMAC-1.03.tar.gz', + 'source_tmpl': 'Digest-HMAC-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('Digest::SHA1', '2.13', { - 'source_tmpl': 'Digest-SHA1-2.13.tar.gz', + 'source_tmpl': 'Digest-SHA1-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('Email::Date::Format', '1.005', { - 'source_tmpl': 'Email-Date-Format-1.005.tar.gz', + 'source_tmpl': 'Email-Date-Format-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], }), ('Error', '0.17024', { + 'source_tmpl': 'Error-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/'], }), ('Expect', '1.21', { + 'source_tmpl': 'Expect-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RG/RGIERSIG/'], }), ('File::CheckTree', '4.42', { - 'source_tmpl': 'File-CheckTree-4.42.tar.gz', + 'source_tmpl': 'File-CheckTree-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], }), ('FreezeThaw', '0.5001', { 'source_urls': ['http://cpan.metacpan.org/authors/id/I/IL/ILYAZ/modules/'], }), ('Git', '0.41', { - 'source_tmpl': 'Git-0.41.tar.gz', + 'source_tmpl': 'Git-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MS/MSOUTH/'], }), ('GO::Utils', '0.15', { - 'source_tmpl': 'go-perl-0.15.tar.gz', + 'source_tmpl': 'go-perl-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CM/CMUNGALL/'], }), ('GO', '0.04', { - 'source_tmpl': 'go-db-perl-0.04.tar.gz', + 'source_tmpl': 'go-db-perl-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SJ/SJCARBON/'], }), ('HTML::Form', '6.03', { - 'source_tmpl': 'HTML-Form-6.03.tar.gz', + 'source_tmpl': 'HTML-Form-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('HTTP::Cookies', '6.01', { - 'source_tmpl': 'HTTP-Cookies-6.01.tar.gz', + 'source_tmpl': 'HTTP-Cookies-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('HTTP::Daemon', '6.01', { - 'source_tmpl': 'HTTP-Daemon-6.01.tar.gz', + 'source_tmpl': 'HTTP-Daemon-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('HTTP::Negotiate', '6.01', { - 'source_tmpl': 'HTTP-Negotiate-6.01.tar.gz', + 'source_tmpl': 'HTTP-Negotiate-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('IO::Stringy', '2.111', { - 'source_tmpl': 'IO-stringy-2.111.tar.gz', + 'source_tmpl': 'IO-stringy-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DS/DSKOLL/'], }), ('IO::Socket::SSL', '2.016', { - 'source_tmpl': 'IO-Socket-SSL-2.016.tar.gz', + 'source_tmpl': 'IO-Socket-SSL-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SU/SULLR/'], }), ('JSON', '2.90', { + 'source_tmpl': 'JSON-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MA/MAKAMAKA/'], }), ('Log::Message', '0.08', { - 'source_tmpl': 'Log-Message-0.08.tar.gz', + 'source_tmpl': 'Log-Message-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BI/BINGOS/'], }), ('Log::Message::Simple', '0.10', { - 'source_tmpl': 'Log-Message-Simple-0.10.tar.gz', + 'source_tmpl': 'Log-Message-Simple-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BI/BINGOS/'], }), ('Mail::Util', '2.14', { - 'source_tmpl': 'MailTools-2.14.tar.gz', + 'source_tmpl': 'MailTools-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MA/MARKOV/'], }), ('MIME::Types', '2.11', { - 'source_tmpl': 'MIME-Types-2.11.tar.gz', + 'source_tmpl': 'MIME-Types-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MA/MARKOV/'], }), ('MIME::Lite', '3.030', { - 'source_tmpl': 'MIME-Lite-3.030.tar.gz', + 'source_tmpl': 'MIME-Lite-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], }), ('Net::HTTP', '6.06', { - 'source_tmpl': 'Net-HTTP-6.06.tar.gz', + 'source_tmpl': 'Net-HTTP-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('Net::SMTP::SSL', '1.01', { - 'source_tmpl': 'Net-SMTP-SSL-1.01.tar.gz', + 'source_tmpl': 'Net-SMTP-SSL-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CW/CWEST/'], }), ('Object::Accessor', '0.48', { - 'source_tmpl': 'Object-Accessor-0.48.tar.gz', + 'source_tmpl': 'Object-Accessor-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BI/BINGOS/'], }), ('Pod::LaTeX', '0.61', { - 'source_tmpl': 'Pod-LaTeX-0.61.tar.gz', + 'source_tmpl': 'Pod-LaTeX-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TJ/TJENNESS/'], }), ('Pod::Plainer', '1.04', { - 'source_tmpl': 'Pod-Plainer-1.04.tar.gz', + 'source_tmpl': 'Pod-Plainer-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RM/RMBARKER/'], }), ('Pod::POM', '0.29', { - 'source_tmpl': 'Pod-POM-0.29.tar.gz', + 'source_tmpl': 'Pod-POM-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AN/ANDREWF/'], }), ('Shell', '0.72', { 'source_urls': ['http://cpan.metacpan.org/authors/id/F/FE/FERREIRA/'], }), ('Statistics::Descriptive', '3.0609', { - 'source_tmpl': 'Statistics-Descriptive-3.0609.tar.gz', + 'source_tmpl': 'Statistics-Descriptive-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/'], }), ('Switch', '2.17', { + 'source_tmpl': 'Switch-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CH/CHORNY/'], }), ('Template', '2.26', { - 'source_tmpl': 'Template-Toolkit-2.26.tar.gz', + 'source_tmpl': 'Template-Toolkit-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AB/ABW/'], }), ('Term::UI', '0.46', { - 'source_tmpl': 'Term-UI-0.46.tar.gz', + 'source_tmpl': 'Term-UI-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BI/BINGOS/'], }), ('Text::Iconv', '1.7', { - 'source_tmpl': 'Text-Iconv-1.7.tar.gz', + 'source_tmpl': 'Text-Iconv-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MP/MPIOTR/'], }), ('Text::Soundex', '3.04', { - 'source_tmpl': 'Text-Soundex-3.04.tar.gz', + 'source_tmpl': 'Text-Soundex-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], }), ('Time::Piece', '1.30', { - 'source_tmpl': 'Time-Piece-1.30.tar.gz', + 'source_tmpl': 'Time-Piece-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], }), ('Time::Piece::MySQL', '0.06', { - 'source_tmpl': 'Time-Piece-MySQL-0.06.tar.gz', + 'source_tmpl': 'Time-Piece-MySQL-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/K/KA/KASEI/'], }), ('UNIVERSAL::moniker', '0.08', { - 'source_tmpl': 'UNIVERSAL-moniker-0.08.tar.gz', + 'source_tmpl': 'UNIVERSAL-moniker-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/K/KA/KASEI/'], }), ('version', '0.9912', { 'source_urls': ['http://cpan.metacpan.org/authors/id/J/JP/JPEACOCK/'], }), ('WWW::RobotRules', '6.02', { - 'source_tmpl': 'WWW-RobotRules-6.02.tar.gz', + 'source_tmpl': 'WWW-RobotRules-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], }), ('XML::SAX::Writer', '0.56', { - 'source_tmpl': 'XML-SAX-Writer-0.56.tar.gz', + 'source_tmpl': 'XML-SAX-Writer-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/P/PE/PERIGRIN/'], }), ('XML::Simple', '2.20', { - 'source_tmpl': 'XML-Simple-2.20.tar.gz', + 'source_tmpl': 'XML-Simple-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GR/GRANTM/'], }), ('XML::XPath', '1.13', { - 'source_tmpl': 'XML-XPath-1.13.tar.gz', + 'source_tmpl': 'XML-XPath-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MS/MSERGEANT/'], }), ('DBD::AnyData', '0.110', { - 'source_tmpl': 'DBD-AnyData-0.110.tar.gz', + 'source_tmpl': 'DBD-AnyData-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RE/REHSACK/'], }), ('Ima::DBI', '0.35', { - 'source_tmpl': 'Ima-DBI-0.35.tar.gz', + 'source_tmpl': 'Ima-DBI-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/P/PE/PERRIN/'], }), ('DBIx::ContextualFetch', '1.03', { - 'source_tmpl': 'DBIx-ContextualFetch-1.03.tar.gz', + 'source_tmpl': 'DBIx-ContextualFetch-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TM/TMTM/'], }), ('DBIx::Simple', '1.35', { - 'source_tmpl': 'DBIx-Simple-1.35.tar.gz', + 'source_tmpl': 'DBIx-Simple-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/J/JU/JUERD/'], }), ('Term::ReadKey', '2.32', { - 'source_tmpl': 'TermReadKey-2.32.tar.gz', + 'source_tmpl': 'TermReadKey-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/J/JS/JSTOWE/'], 'patches': ['TermReadKey-2.32.patch'], }), ('Moo', '2.000001', { - 'source_tmpl': 'Moo-2.000001.tar.gz', + 'source_tmpl': 'Moo-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/H/HA/HAARG/'], }), ('strictures', '2.000001', { - 'source_tmpl': 'strictures-2.000001.tar.gz', + 'source_tmpl': 'strictures-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/H/HA/HAARG/'], }), ('File::Find::Rule::Perl', '1.13', { - 'source_tmpl': 'File-Find-Rule-Perl-1.13.tar.gz', + 'source_tmpl': 'File-Find-Rule-Perl-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/A/AD/ADAMK/'], }), ('Test::Version', '1.002004', { - 'source_tmpl': 'Test-Version-1.002004.tar.gz', + 'source_tmpl': 'Test-Version-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/X/XE/XENO/'], }), ('Test::Harness', '3.35', { - 'source_tmpl': 'Test-Harness-3.35.tar.gz', + 'source_tmpl': 'Test-Harness-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEONT/'], }), ('Import::Into', '1.002004', { - 'source_tmpl': 'Import-Into-1.002004.tar.gz', + 'source_tmpl': 'Import-Into-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/E/ET/ETHER/'], }), ('File::Find::Rule', '0.33', { - 'source_tmpl': 'File-Find-Rule-0.33.tar.gz', + 'source_tmpl': 'File-Find-Rule-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RC/RCLAMP/'], }), ('Data::Section::Simple', '0.07', { - 'source_tmpl': 'Data-Section-Simple-0.07.tar.gz', + 'source_tmpl': 'Data-Section-Simple-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MI/MIYAGAWA/'], }), ('Text::Glob', '0.09', { - 'source_tmpl': 'Text-Glob-0.09.tar.gz', + 'source_tmpl': 'Text-Glob-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RC/RCLAMP/'], }), ('Number::Compare', '0.03', { - 'source_tmpl': 'Number-Compare-0.03.tar.gz', + 'source_tmpl': 'Number-Compare-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RC/RCLAMP/'], }), ('IPC::Run3', '0.048', { - 'source_tmpl': 'IPC-Run3-0.048.tar.gz', + 'source_tmpl': 'IPC-Run3-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RJ/RJBS/'], }), ('Set::Array', '0.30', { - 'source_tmpl': 'Set-Array-0.30.tgz', + 'source_tmpl': 'Set-Array-%(version)s.tgz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RS/RSAVAGE/'], }), ('Bundle::BioPerl', '2.1.9', { - 'source_tmpl': 'Bundle-BioPerl-2.1.9.tar.gz', + 'source_tmpl': 'Bundle-BioPerl-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/C/CJ/CJFIELDS/'], }), - ('Algorithm::Munkres', '0.08', { - 'source_tmpl': 'Algorithm-Munkres-0.08.tar.gz', + 'source_tmpl': 'Algorithm-Munkres-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TP/TPEDERSE/'], }), -# Lots of deps: Carp, Types::Standard etc. -# ('Array::Compare', '2.11', { -# 'source_tmpl': 'Array-Compare-2.11.tar.gz', -# 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DA/DAVECROSS/'], -# }), ('Graph', '0.96', { + 'source_tmpl': 'Graph-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/J/JH/JHI/'], }), ('Set::Scalar', '1.29', { - 'source_tmpl': 'Set-Scalar-1.29.tar.gz', + 'source_tmpl': 'Set-Scalar-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DA/DAVIDO/'], }), - ('CGI', '4.21', { - 'source_tmpl': 'CGI-4.21.tar.gz', + 'source_tmpl': 'CGI-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LE/LEEJO/'], }), ('Bio::Phylo', '0.58', { - 'source_tmpl': 'Bio-Phylo-0.58.tar.gz', + 'source_tmpl': 'Bio-Phylo-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/R/RV/RVOSA/'], }), -# ('GD', '2.56', { -# 'source_urls': 'http://cpan.metacpan.org/authors/id/L/LD/LDS/'], -# }), ('SVG', '2.64', { + 'source_tmpl': 'SVG-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/S/SZ/SZABGAB/'], }), ('XML::DOM', '1.44', { - 'source_tmpl': 'XML-DOM-1.44.tar.gz', + 'source_tmpl': 'XML-DOM-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TJ/TJMATHER/'], }), ('XML::DOM::XPath', '0.14', { - 'source_tmpl': 'XML-DOM-XPath-0.14.tar.gz', + 'source_tmpl': 'XML-DOM-XPath-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MI/MIROD/'], }), ('XML::Parser::PerlSAX', '0.08', { - 'source_tmpl': 'libxml-perl-0.08.tar.gz', + 'source_tmpl': 'libxml-perl-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/K/KM/KMACLEOD/'], }), ('XML::Parser', '2.44', { - 'source_tmpl': 'XML-Parser-2.44.tar.gz', + 'source_tmpl': 'XML-Parser-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TO/TODDR/'], }), ('XML::Twig', '3.49', { - 'source_tmpl': 'XML-Twig-3.49.tar.gz', + 'source_tmpl': 'XML-Twig-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MI/MIROD/'], }), ('XML::Writer', '0.625', { - 'source_tmpl': 'XML-Writer-0.625.tar.gz', + 'source_tmpl': 'XML-Writer-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/J/JO/JOSEPHW/'], }), ('XML::DOM', '1.44', { - 'source_tmpl': 'XML-DOM-1.44.tar.gz', + 'source_tmpl': 'XML-DOM-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TJ/TJMATHER/'], }), ('Spreadsheet::ParseExcel', '0.65', { - 'source_tmpl': 'Spreadsheet-ParseExcel-0.65.tar.gz', + 'source_tmpl': 'Spreadsheet-ParseExcel-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DO/DOUGW/'], }), ('XML::DOM::XPath', '0.14', { - 'source_tmpl': 'XML-DOM-XPath-0.14.tar.gz', + 'source_tmpl': 'XML-DOM-XPath-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MI/MIROD/'], }), ('Convert::Binary::C', '0.77', { - 'source_tmpl': 'Convert-Binary-C-0.77.tar.gz', + 'source_tmpl': 'Convert-Binary-C-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MH/MHX/'], }), ('Sys::SigAction.pm', '0.21', { - 'source_tmpl': 'Sys-SigAction-0.21.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/L/LB/LBAXTER/'], + 'source_tmpl': 'Sys-SigAction-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/L/LB/LBAXTER/'], }), ('Acme::Damn', '0.06', { - 'source_tmpl': 'Acme-Damn-0.06.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/I/IB/IBB/'], + 'source_tmpl': 'Acme-Damn-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/I/IB/IBB/'], }), ('Set::IntervalTree', '0.10', { - 'source_tmpl': 'Set-IntervalTree-0.10.tar.gz', - 'source_urls': ['http://search.cpan.org/CPAN/authors/id/B/BE/BENBOOTH/'], + 'source_tmpl': 'Set-IntervalTree-%(version)s.tar.gz', + 'source_urls': ['http://cpan.metacpan.org/authors/id/B/BE/BENBOOTH/'], }), ('HTML::TableExtract', '2.13', { - 'source_tmpl': 'HTML-TableExtract-2.13.tar.gz', + 'source_tmpl': 'HTML-TableExtract-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/M/MS/MSISK/'], }), - ('Bio::Perl', '1.6.924', { - 'source_tmpl': 'BioPerl-1.6.924.tar.gz', - 'source_urls': ['http://www.cpan.org/modules/by-module/Bio/CJFIELDS/'], + 'source_tmpl': 'BioPerl-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/C/CJ/CJFIELDS'], }), ] -- GitLab From 7e605984029bc4870921c38260620edde61d5df4 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 8 Jun 2017 13:18:47 +0200 Subject: [PATCH 182/608] add SHA256 checksums for libpciaccess --- .../l/libpciaccess/libpciaccess-0.13.1-GCC-4.7.2.eb | 5 +++-- .../l/libpciaccess/libpciaccess-0.13.1-goolf-1.4.10.eb | 5 +++-- .../l/libpciaccess/libpciaccess-0.13.1-ictce-5.3.0.eb | 5 +++-- .../l/libpciaccess/libpciaccess-0.13.1-ictce-5.5.0.eb | 5 +++-- .../l/libpciaccess/libpciaccess-0.13.1-intel-2015a.eb | 5 +++-- .../l/libpciaccess/libpciaccess-0.13.3-intel-2015a.eb | 5 +++-- .../l/libpciaccess/libpciaccess-0.13.4-foss-2016a.eb | 5 +++-- .../l/libpciaccess/libpciaccess-0.13.4-foss-2016b.eb | 5 +++-- .../l/libpciaccess/libpciaccess-0.13.4-gimkl-2.11.5.eb | 5 +++-- .../l/libpciaccess/libpciaccess-0.13.4-intel-2015b.eb | 5 +++-- .../l/libpciaccess/libpciaccess-0.13.4-intel-2016a.eb | 5 +++-- .../l/libpciaccess/libpciaccess-0.13.4-intel-2016b.eb | 5 +++-- 12 files changed, 36 insertions(+), 24 deletions(-) diff --git a/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.1-GCC-4.7.2.eb b/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.1-GCC-4.7.2.eb index 9967c64c68..17116e1d46 100644 --- a/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.1-GCC-4.7.2.eb +++ b/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.1-GCC-4.7.2.eb @@ -6,10 +6,11 @@ version = '0.13.1' homepage = 'http://cgit.freedesktop.org/xorg/lib/libpciaccess/' description = """Generic PCI access library.""" +toolchain = {'name': 'GCC', 'version': '4.7.2'} + source_urls = ['https://www.x.org/releases/individual/lib/'] sources = [SOURCE_TAR_GZ] - -toolchain = {'name': 'GCC', 'version': '4.7.2'} +checksums = ['8641a3ce37c97a6b28439d4630adb9583d8bd3e3a08c2040aa81f9932a7a76f6'] builddependencies = [ ('Autoconf', '2.69'), diff --git a/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.1-goolf-1.4.10.eb b/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.1-goolf-1.4.10.eb index 9371a19f2d..05a5d755f2 100644 --- a/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.1-goolf-1.4.10.eb @@ -6,10 +6,11 @@ version = '0.13.1' homepage = 'http://cgit.freedesktop.org/xorg/lib/libpciaccess/' description = """Generic PCI access library.""" +toolchain = {'name': 'goolf', 'version': '1.4.10'} + source_urls = ['https://www.x.org/releases/individual/lib/'] sources = [SOURCE_TAR_GZ] - -toolchain = {'name': 'goolf', 'version': '1.4.10'} +checksums = ['8641a3ce37c97a6b28439d4630adb9583d8bd3e3a08c2040aa81f9932a7a76f6'] builddependencies = [ ('Autoconf', '2.69'), diff --git a/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.1-ictce-5.3.0.eb b/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.1-ictce-5.3.0.eb index cbc3f1b46c..7b5d65355f 100644 --- a/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.1-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.1-ictce-5.3.0.eb @@ -6,10 +6,11 @@ version = '0.13.1' homepage = 'http://cgit.freedesktop.org/xorg/lib/libpciaccess/' description = """Generic PCI access library.""" +toolchain = {'name': 'ictce', 'version': '5.3.0'} + source_urls = ['https://www.x.org/releases/individual/lib/'] sources = [SOURCE_TAR_GZ] - -toolchain = {'name': 'ictce', 'version': '5.3.0'} +checksums = ['8641a3ce37c97a6b28439d4630adb9583d8bd3e3a08c2040aa81f9932a7a76f6'] builddependencies = [ ('Autoconf', '2.69'), diff --git a/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.1-ictce-5.5.0.eb b/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.1-ictce-5.5.0.eb index 1abedab086..a19198650c 100644 --- a/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.1-ictce-5.5.0.eb +++ b/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.1-ictce-5.5.0.eb @@ -6,10 +6,11 @@ version = '0.13.1' homepage = 'http://cgit.freedesktop.org/xorg/lib/libpciaccess/' description = """Generic PCI access library.""" +toolchain = {'name': 'ictce', 'version': '5.5.0'} + source_urls = ['https://www.x.org/releases/individual/lib/'] sources = [SOURCE_TAR_GZ] - -toolchain = {'name': 'ictce', 'version': '5.5.0'} +checksums = ['8641a3ce37c97a6b28439d4630adb9583d8bd3e3a08c2040aa81f9932a7a76f6'] builddependencies = [ ('Autoconf', '2.69'), diff --git a/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.1-intel-2015a.eb b/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.1-intel-2015a.eb index 8970daab0a..9afa895bc3 100644 --- a/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.1-intel-2015a.eb +++ b/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.1-intel-2015a.eb @@ -6,10 +6,11 @@ version = '0.13.1' homepage = 'http://cgit.freedesktop.org/xorg/lib/libpciaccess/' description = """Generic PCI access library.""" +toolchain = {'name': 'intel', 'version': '2015a'} + source_urls = ['https://www.x.org/releases/individual/lib/'] sources = [SOURCE_TAR_GZ] - -toolchain = {'name': 'intel', 'version': '2015a'} +checksums = ['8641a3ce37c97a6b28439d4630adb9583d8bd3e3a08c2040aa81f9932a7a76f6'] builddependencies = [ ('Autotools', '20150119', '', ('GCC', '4.9.2')), diff --git a/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.3-intel-2015a.eb b/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.3-intel-2015a.eb index a36467cdf5..1617203250 100644 --- a/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.3-intel-2015a.eb +++ b/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.3-intel-2015a.eb @@ -6,10 +6,11 @@ version = '0.13.3' homepage = 'http://cgit.freedesktop.org/xorg/lib/libpciaccess/' description = """Generic PCI access library.""" +toolchain = {'name': 'intel', 'version': '2015a'} + source_urls = ['https://www.x.org/releases/individual/lib/'] sources = [SOURCE_TAR_GZ] - -toolchain = {'name': 'intel', 'version': '2015a'} +checksums = ['9e0244e815dc55cbedb135baa4dc1e4b0325875276e081edfe38ff2bf61dfe02'] builddependencies = [ ('Autoconf', '2.69'), diff --git a/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-foss-2016a.eb b/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-foss-2016a.eb index 0baaea5ccf..d017a972c2 100644 --- a/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-foss-2016a.eb +++ b/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-foss-2016a.eb @@ -6,10 +6,11 @@ version = '0.13.4' homepage = 'http://cgit.freedesktop.org/xorg/lib/libpciaccess/' description = """Generic PCI access library.""" +toolchain = {'name': 'foss', 'version': '2016a'} + source_urls = ['https://www.x.org/releases/individual/lib/'] sources = [SOURCE_TAR_GZ] - -toolchain = {'name': 'foss', 'version': '2016a'} +checksums = ['74d92bda448e6fdb64fee4e0091255f48d625d07146a121653022ed3a0ca1f2f'] builddependencies = [ ('Autotools', '20150215'), diff --git a/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-foss-2016b.eb b/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-foss-2016b.eb index 76bd735f5a..c55a493a71 100755 --- a/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-foss-2016b.eb +++ b/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-foss-2016b.eb @@ -6,10 +6,11 @@ version = '0.13.4' homepage = 'http://cgit.freedesktop.org/xorg/lib/libpciaccess/' description = """Generic PCI access library.""" +toolchain = {'name': 'foss', 'version': '2016b'} + source_urls = ['https://www.x.org/releases/individual/lib/'] sources = [SOURCE_TAR_GZ] - -toolchain = {'name': 'foss', 'version': '2016b'} +checksums = ['74d92bda448e6fdb64fee4e0091255f48d625d07146a121653022ed3a0ca1f2f'] builddependencies = [ ('Autotools', '20150215'), diff --git a/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-gimkl-2.11.5.eb b/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-gimkl-2.11.5.eb index 449c59f9bf..08c466e4d7 100644 --- a/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-gimkl-2.11.5.eb +++ b/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-gimkl-2.11.5.eb @@ -6,10 +6,11 @@ version = '0.13.4' homepage = 'http://cgit.freedesktop.org/xorg/lib/libpciaccess/' description = """Generic PCI access library.""" +toolchain = {'name': 'gimkl', 'version': '2.11.5'} + source_urls = ['https://www.x.org/releases/individual/lib/'] sources = [SOURCE_TAR_GZ] - -toolchain = {'name': 'gimkl', 'version': '2.11.5'} +checksums = ['74d92bda448e6fdb64fee4e0091255f48d625d07146a121653022ed3a0ca1f2f'] builddependencies = [ ('Autotools', '20150215'), diff --git a/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-intel-2015b.eb b/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-intel-2015b.eb index fd0fe49af5..64406b5039 100644 --- a/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-intel-2015b.eb +++ b/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-intel-2015b.eb @@ -6,10 +6,11 @@ version = '0.13.4' homepage = 'http://cgit.freedesktop.org/xorg/lib/libpciaccess/' description = """Generic PCI access library.""" +toolchain = {'name': 'intel', 'version': '2015b'} + source_urls = ['https://www.x.org/releases/individual/lib/'] sources = [SOURCE_TAR_GZ] - -toolchain = {'name': 'intel', 'version': '2015b'} +checksums = ['74d92bda448e6fdb64fee4e0091255f48d625d07146a121653022ed3a0ca1f2f'] builddependencies = [ ('Autotools', '20150215', '', ('GNU', '4.9.3-2.25')), diff --git a/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-intel-2016a.eb b/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-intel-2016a.eb index 69a705ef82..1ce0816af9 100644 --- a/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-intel-2016a.eb +++ b/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-intel-2016a.eb @@ -6,10 +6,11 @@ version = '0.13.4' homepage = 'http://cgit.freedesktop.org/xorg/lib/libpciaccess/' description = """Generic PCI access library.""" +toolchain = {'name': 'intel', 'version': '2016a'} + source_urls = ['https://www.x.org/releases/individual/lib/'] sources = [SOURCE_TAR_GZ] - -toolchain = {'name': 'intel', 'version': '2016a'} +checksums = ['74d92bda448e6fdb64fee4e0091255f48d625d07146a121653022ed3a0ca1f2f'] builddependencies = [ ('Autotools', '20150215'), diff --git a/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-intel-2016b.eb b/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-intel-2016b.eb index de4d55b188..b1b38aee06 100755 --- a/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-intel-2016b.eb +++ b/easybuild/easyconfigs/l/libpciaccess/libpciaccess-0.13.4-intel-2016b.eb @@ -6,10 +6,11 @@ version = '0.13.4' homepage = 'http://cgit.freedesktop.org/xorg/lib/libpciaccess/' description = """Generic PCI access library.""" +toolchain = {'name': 'intel', 'version': '2016b'} + source_urls = ['https://www.x.org/releases/individual/lib/'] sources = [SOURCE_TAR_GZ] - -toolchain = {'name': 'intel', 'version': '2016b'} +checksums = ['74d92bda448e6fdb64fee4e0091255f48d625d07146a121653022ed3a0ca1f2f'] builddependencies = [ ('Autotools', '20150215'), -- GitLab From a59eee0aa1d29d1c01eda712ffc3eb5ead940ca9 Mon Sep 17 00:00:00 2001 From: Balazs Hajgato Date: Thu, 8 Jun 2017 13:54:47 +0200 Subject: [PATCH 183/608] {geo}[intel/2017a] GMT 5.4.1 (REVIEW) --- .../g/GMT/GMT-5.4.1-intel-2017a.eb | 61 +++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 easybuild/easyconfigs/g/GMT/GMT-5.4.1-intel-2017a.eb diff --git a/easybuild/easyconfigs/g/GMT/GMT-5.4.1-intel-2017a.eb b/easybuild/easyconfigs/g/GMT/GMT-5.4.1-intel-2017a.eb new file mode 100644 index 0000000000..1ae0c637c6 --- /dev/null +++ b/easybuild/easyconfigs/g/GMT/GMT-5.4.1-intel-2017a.eb @@ -0,0 +1,61 @@ +easyblock = "CMakeMake" + +name = "GMT" +version = "5.4.1" + +homepage = 'http://gmt.soest.hawaii.edu/' +description = """GMT is an open source collection of about 80 command-line tools for manipulating + geographic and Cartesian data sets (including filtering, trend fitting, gridding, projecting, + etc.) and producing PostScript illustrations ranging from simple x-y plots via contour maps + to artificially illuminated surfaces and 3D perspective views; the GMT supplements add another + 40 more specialized and discipline-specific tools. """ + +toolchain = {'name': 'intel', 'version': '2017a'} + +gshhg_ver = '2.3.6' +dcw_ver = '1.1.2' +sources = [ + 'gmt-%(version)s-src.tar.xz', + # coastlines, rivers, and political boundaries + 'gshhg-gmt-%s.tar.gz' % gshhg_ver, + # country polygons + 'dcw-gmt-%s.tar.gz' % dcw_ver, +] + +# 'http://gmt.soest.hawaii.edu/files/download?name=' needs flash enabled browser +source_urls = [ + 'ftp://ftp.soest.hawaii.edu/gmt', + 'ftp://ftp.soest.hawaii.edu/gmt/legacy', + 'ftp://ftp.soest.hawaii.edu/gshhg', + 'ftp://ftp.soest.hawaii.edu/gshhg/legacy', + 'ftp://ftp.soest.hawaii.edu/dcw', + 'ftp://ftp.soest.hawaii.edu/dcw/legacy', +] + +patches = ['GMT-5.1.2_netCDF.patch'] + +builddependencies = [('CMake', '3.8.1')] + +dependencies = [ + ('PCRE', '8.40'), + ('GDAL', '2.1.3', '-Python-2.7.13'), + ('FFTW', '3.3.6'), + ('netCDF', '4.4.1.1'), + ('Ghostscript', '9.21'), + ('cURL', '7.53.1'), + ('zlib', '1.2.11'), +] + +configopts = '-DCOPY_GSHHG=TRUE -DGSHHG_ROOT=%%(builddir)s/gshhg-gmt-%s ' % gshhg_ver +configopts += '-DCOPY_DCW=TRUE -DDCW_ROOT=%%(builddir)s/dcw-gmt-%s ' % dcw_ver + +separate_build_dir = True + +sanity_check_paths = { + 'files': ['bin/gmt', 'bin/isogmt'], + 'dirs': [] +} + +modextrapaths = {'GMTHOME': ''} + +moduleclass = 'geo' -- GitLab From 429abc826d81ba546c3a53dafc0fb6a40c686251 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 8 Jun 2017 14:07:25 +0200 Subject: [PATCH 184/608] adding easyconfigs: FUNWAVE-TVD-3.1-20170525-intel-2017a.eb --- .../FUNWAVE-TVD-3.1-20170525-intel-2017a.eb | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 easybuild/easyconfigs/f/FUNWAVE-TVD/FUNWAVE-TVD-3.1-20170525-intel-2017a.eb diff --git a/easybuild/easyconfigs/f/FUNWAVE-TVD/FUNWAVE-TVD-3.1-20170525-intel-2017a.eb b/easybuild/easyconfigs/f/FUNWAVE-TVD/FUNWAVE-TVD-3.1-20170525-intel-2017a.eb new file mode 100644 index 0000000000..e8a2edef7d --- /dev/null +++ b/easybuild/easyconfigs/f/FUNWAVE-TVD/FUNWAVE-TVD-3.1-20170525-intel-2017a.eb @@ -0,0 +1,28 @@ +easyblock = 'MakeCp' + +name = 'FUNWAVE-TVD' +version = '3.1-20170525' +commit = '814107a' + +homepage = 'https://fengyanshi.github.io' +description = """FUNWAVE–TVD is the TVD version of the fully nonlinear Boussinesq wave model (FUNWAVE) + initially developed by Kirby et al.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'usempi': True} + +source_urls = ['https://github.com/fengyanshi/FUNWAVE-TVD/archive/'] +sources = ['%s.tar.gz' % commit] + +start_dir = 'src' +parallel = 1 +buildopts = 'FC="$FC" FFLAGS="$FFLAGS -fpp" CPPFLAGS="-DINTEL -DMIXING -DMANNING -DVIS_KENNEDY"' + +files_to_copy = [(['mytvd'], 'bin')] + +sanity_check_paths = { + 'files': ['bin/mytvd'], + 'dirs': [], +} + +moduleclass = 'math' -- GitLab From af0ad01045d5d19e6f347fab5226348316407c60 Mon Sep 17 00:00:00 2001 From: Davide Vanzo Date: Thu, 8 Jun 2017 08:38:47 -0500 Subject: [PATCH 185/608] adding easyconfigs: Tcl-8.6.5-iccifort-2016.3.210-GCC-5.4.0-2.26.eb, Tk-8.6.5-iccifort-2016.3.210-GCC-5.4.0-2.26.eb --- ....6.5-iccifort-2016.3.210-GCC-5.4.0-2.26.eb | 26 +++++++++++++++++++ ....6.5-iccifort-2016.3.210-GCC-5.4.0-2.26.eb | 26 +++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 easybuild/easyconfigs/t/Tcl/Tcl-8.6.5-iccifort-2016.3.210-GCC-5.4.0-2.26.eb create mode 100644 easybuild/easyconfigs/t/Tk/Tk-8.6.5-iccifort-2016.3.210-GCC-5.4.0-2.26.eb diff --git a/easybuild/easyconfigs/t/Tcl/Tcl-8.6.5-iccifort-2016.3.210-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/t/Tcl/Tcl-8.6.5-iccifort-2016.3.210-GCC-5.4.0-2.26.eb new file mode 100644 index 0000000000..d9890f7017 --- /dev/null +++ b/easybuild/easyconfigs/t/Tcl/Tcl-8.6.5-iccifort-2016.3.210-GCC-5.4.0-2.26.eb @@ -0,0 +1,26 @@ +easyblock = 'ConfigureMake' + +name = 'Tcl' +version = '8.6.5' + +homepage = 'http://www.tcl.tk/' +description = """Tcl (Tool Command Language) is a very powerful but easy to learn dynamic programming language, +suitable for a very wide range of uses, including web and desktop applications, networking, administration, +testing and many more.""" + +toolchain = {'name': 'iccifort', 'version': '2016.3.210-GCC-5.4.0-2.26'} + +source_urls = ["http://prdownloads.sourceforge.net/tcl"] +sources = ['%(namelower)s%(version)s-src.tar.gz'] + +dependencies = [ + ('zlib', '1.2.8'), +] + +configopts = '--enable-threads EXTRA_INSTALL="install-private-headers"' + +runtest = 'test' + +start_dir = 'unix' + +moduleclass = 'lang' diff --git a/easybuild/easyconfigs/t/Tk/Tk-8.6.5-iccifort-2016.3.210-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/t/Tk/Tk-8.6.5-iccifort-2016.3.210-GCC-5.4.0-2.26.eb new file mode 100644 index 0000000000..5f81a41eff --- /dev/null +++ b/easybuild/easyconfigs/t/Tk/Tk-8.6.5-iccifort-2016.3.210-GCC-5.4.0-2.26.eb @@ -0,0 +1,26 @@ +easyblock = 'ConfigureMake' + +name = 'Tk' +version = '8.6.5' + +homepage = 'http://www.tcl.tk/' +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': 'iccifort', 'version': '2016.3.210-GCC-5.4.0-2.26'} + +source_urls = ["http://prdownloads.sourceforge.net/tcl"] +sources = ['%(namelower)s%(version)s-src.tar.gz'] + +patches = ['Tk-8.6.4_different-prefix-with-tcl.patch'] + +dependencies = [ + ('Tcl', version), + ('zlib', '1.2.8'), +] + +configopts = '--enable-threads --with-tcl=$EBROOTTCL/lib CFLAGS="-I$EBROOTTCL/include"' + +start_dir = 'unix' + +moduleclass = 'vis' -- GitLab From 8f64ad53373e7f11714d8395ce6fe360d576ea70 Mon Sep 17 00:00:00 2001 From: Davide Vanzo Date: Thu, 8 Jun 2017 08:52:47 -0500 Subject: [PATCH 186/608] adding easyconfigs: SQLite-3.13.0-iccifort-2016.3.210-GCC-5.4.0-2.26.eb --- ...13.0-iccifort-2016.3.210-GCC-5.4.0-2.26.eb | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-iccifort-2016.3.210-GCC-5.4.0-2.26.eb diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-iccifort-2016.3.210-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-iccifort-2016.3.210-GCC-5.4.0-2.26.eb new file mode 100644 index 0000000000..de897a790e --- /dev/null +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-iccifort-2016.3.210-GCC-5.4.0-2.26.eb @@ -0,0 +1,40 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# +# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA +# Authors:: Fotis Georgatos +# License:: MIT/GPL +# $Id$ +# +# This work implements a part of the HPCBIOS project and is a component of the policy: +# http://hpcbios.readthedocs.org/en/latest/ +## + +easyblock = 'ConfigureMake' + +name = 'SQLite' +version = '3.13.0' + +homepage = 'http://www.sqlite.org/' +description = 'SQLite: SQL Database Engine in a C Library' + +toolchain = {'name': 'iccifort', 'version': '2016.3.210-GCC-5.4.0-2.26'} + +source_urls = ['http://www.sqlite.org/2016/'] +version_minor_etc = version.split('.')[1:] +version_minor_etc += '0' * (3 - len(version_minor_etc)) +version_str = '%(version_major)s' + ''.join('%02d' % int(x) for x in version_minor_etc) +sources = ['sqlite-autoconf-%s.tar.gz' % version_str] + +dependencies = [ + ('libreadline', '6.3'), + ('Tcl', '8.6.5'), +] + +sanity_check_paths = { + 'files': ['bin/sqlite3', 'include/sqlite3ext.h', 'include/sqlite3.h', 'lib/libsqlite3.a', + 'lib/libsqlite3.%s' % SHLIB_EXT], + 'dirs': ['lib/pkgconfig'], +} + +moduleclass = 'devel' -- GitLab From 73dd65a55f1a26a53c084baf3ea7097d8a383f11 Mon Sep 17 00:00:00 2001 From: Davide Vanzo Date: Thu, 8 Jun 2017 10:26:20 -0500 Subject: [PATCH 187/608] adding easyconfigs: NASM-2.11.08-GCCcore-5.4.0.eb, libjpeg-turbo-1.5.0-GCCcore-5.4.0.eb --- .../libjpeg-turbo-1.5.0-GCCcore-5.4.0.eb | 32 +++++++++++++++++++ .../n/NASM/NASM-2.11.08-GCCcore-5.4.0.eb | 21 ++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 easybuild/easyconfigs/l/libjpeg-turbo/libjpeg-turbo-1.5.0-GCCcore-5.4.0.eb create mode 100644 easybuild/easyconfigs/n/NASM/NASM-2.11.08-GCCcore-5.4.0.eb diff --git a/easybuild/easyconfigs/l/libjpeg-turbo/libjpeg-turbo-1.5.0-GCCcore-5.4.0.eb b/easybuild/easyconfigs/l/libjpeg-turbo/libjpeg-turbo-1.5.0-GCCcore-5.4.0.eb new file mode 100644 index 0000000000..42aa366fd1 --- /dev/null +++ b/easybuild/easyconfigs/l/libjpeg-turbo/libjpeg-turbo-1.5.0-GCCcore-5.4.0.eb @@ -0,0 +1,32 @@ +easyblock = 'ConfigureMake' + +name = 'libjpeg-turbo' +version = '1.5.0' + +homepage = 'http://sourceforge.net/projects/libjpeg-turbo/' +description = """libjpeg-turbo is a fork of the original IJG libjpeg which uses SIMD to accelerate baseline JPEG +compression and decompression. libjpeg is a library that implements JPEG image encoding, decoding and transcoding. +""" + +toolchain = {'name': 'GCCcore', 'version': '5.4.0'} +toolchainopts = {'pic': True} + +source_urls = [SOURCEFORGE_SOURCE] +sources = [SOURCELOWER_TAR_GZ] + +dependencies = [ + ('NASM', '2.11.08'), +] + +builddependencies = [('binutils', '2.26', '', True)] + +configopts = "--with-jpeg8" +runtest = "test" + +sanity_check_paths = { + 'files': ['bin/cjpeg', 'bin/djpeg', 'bin/jpegtran', 'bin/rdjpgcom', 'bin/tjbench', 'bin/wrjpgcom', + 'lib/libjpeg.a', 'lib/libjpeg.%s' % SHLIB_EXT, 'lib/libturbojpeg.a', 'lib/libturbojpeg.%s' % SHLIB_EXT], + 'dirs': ['include', 'share'], +} + +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.11.08-GCCcore-5.4.0.eb b/easybuild/easyconfigs/n/NASM/NASM-2.11.08-GCCcore-5.4.0.eb new file mode 100644 index 0000000000..30ce2d87b8 --- /dev/null +++ b/easybuild/easyconfigs/n/NASM/NASM-2.11.08-GCCcore-5.4.0.eb @@ -0,0 +1,21 @@ +easyblock = 'ConfigureMake' + +name = 'NASM' +version = '2.11.08' + +homepage = 'http://www.nasm.us/' +description = """NASM: General-purpose x86 assembler""" + +toolchain = {'name': 'GCCcore', 'version': '5.4.0'} + +sources = [SOURCELOWER_TAR_BZ2] +source_urls = ['http://www.nasm.us/pub/nasm/releasebuilds/%(version)s'] + +builddependencies = [('binutils', '2.26', '', True)] + +sanity_check_paths = { + 'files': ['bin/nasm'], + 'dirs': [], +} + +moduleclass = 'lang' -- GitLab From 64fa7fb704f44c1848a36a46944d8777b7a10595 Mon Sep 17 00:00:00 2001 From: John Donners Date: Thu, 8 Jun 2017 21:14:01 +0200 Subject: [PATCH 188/608] adding easyconfigs: impi-2017.0.098-iccifort-2017.0.098-GCC-5.4.0-2.26.eb, impi-2017.1.132-GCC-5.4.0-2.26.eb, impi-2017.1.132-iccifort-2017.1.132-GCC-5.4.0-2.26.eb, impi-2017.1.132-iccifort-2017.1.132-GCC-6.3.0-2.27.eb, impi-2017.2.174-iccifort-2017.2.174-GCC-6.3.0-2.27.eb, impi-4.1.0.027.eb, impi-4.1.0.030-iccifort-2013.2.146.eb, impi-4.1.0.030-iccifort-2013.3.163.eb, impi-4.1.0.030-iccifort-2013.4.183.eb, impi-4.1.0.030.eb, impi-4.1.1.036-iccifort-2013.5.192-GCC-4.8.3.eb, impi-4.1.1.036-iccifort-2013.5.192.eb, impi-4.1.1.036.eb, impi-4.1.2.040.eb, impi-4.1.3.045-iccifort-2013_sp1.1.106.eb, impi-4.1.3.045.eb, impi-4.1.3.049-GCC-4.8.3.eb, impi-4.1.3.049-iccifort-2013.5.192-GCC-4.8.3.eb, impi-4.1.3.049-iccifort-2013_sp1.2.144.eb, impi-4.1.3.049.eb, impi-5.0.1.035-iccifort-2015.0.090-GCC-4.9.2.eb, impi-5.0.1.035-iccifort-2015.0.090.eb, impi-5.0.2.044-iccifort-2015.1.133-GCC-4.9.2.eb, impi-5.0.3.048-GCC-4.9.3.eb, impi-5.0.3.048-iccifort-2015.2.164-GCC-4.9.2.eb, impi-5.0.3.048-iccifort-2015.3.187-GNU-4.9.3-2.25.eb, impi-5.0.3.048-iccifort-2015.3.187.eb, impi-5.1.0.079-iccifort-2015.3.187.eb, impi-5.1.1.109-iccifort-2016.0.109-GCC-4.9.3-2.25.eb, impi-5.1.2.150-iccifort-2015.5.223-GCC-4.9.3-2.25.eb, impi-5.1.2.150-iccifort-2016.1.150-GCC-4.9.3-2.25.eb, impi-5.1.3.181-iccifort-2016.2.181-GCC-4.9.3-2.25.eb, impi-5.1.3.181-iccifort-2016.2.181-GCC-5.3.0-2.26.eb, impi-5.1.3.181-iccifort-2016.3.210-GCC-4.9.3-2.25.eb, impi-5.1.3.181-iccifort-2016.3.210-GCC-5.3.0-2.26.eb, impi-5.1.3.181-iccifort-2016.3.210-GCC-5.4.0-2.26.eb, impi-5.1.3.181-iccifortcuda-2016.10.eb --- .../impi/impi-2017.0.098-iccifort-2017.0.098-GCC-5.4.0-2.26.eb | 2 +- easybuild/easyconfigs/i/impi/impi-2017.1.132-GCC-5.4.0-2.26.eb | 2 +- .../impi/impi-2017.1.132-iccifort-2017.1.132-GCC-5.4.0-2.26.eb | 2 +- .../impi/impi-2017.1.132-iccifort-2017.1.132-GCC-6.3.0-2.27.eb | 2 +- .../impi/impi-2017.2.174-iccifort-2017.2.174-GCC-6.3.0-2.27.eb | 2 +- easybuild/easyconfigs/i/impi/impi-4.1.0.027.eb | 2 +- .../easyconfigs/i/impi/impi-4.1.0.030-iccifort-2013.2.146.eb | 2 +- .../easyconfigs/i/impi/impi-4.1.0.030-iccifort-2013.3.163.eb | 2 +- .../easyconfigs/i/impi/impi-4.1.0.030-iccifort-2013.4.183.eb | 2 +- easybuild/easyconfigs/i/impi/impi-4.1.0.030.eb | 2 +- .../i/impi/impi-4.1.1.036-iccifort-2013.5.192-GCC-4.8.3.eb | 2 +- .../easyconfigs/i/impi/impi-4.1.1.036-iccifort-2013.5.192.eb | 2 +- easybuild/easyconfigs/i/impi/impi-4.1.1.036.eb | 2 +- easybuild/easyconfigs/i/impi/impi-4.1.2.040.eb | 2 +- .../i/impi/impi-4.1.3.045-iccifort-2013_sp1.1.106.eb | 2 +- easybuild/easyconfigs/i/impi/impi-4.1.3.045.eb | 2 +- easybuild/easyconfigs/i/impi/impi-4.1.3.049-GCC-4.8.3.eb | 2 +- .../i/impi/impi-4.1.3.049-iccifort-2013.5.192-GCC-4.8.3.eb | 2 +- .../i/impi/impi-4.1.3.049-iccifort-2013_sp1.2.144.eb | 2 +- easybuild/easyconfigs/i/impi/impi-4.1.3.049.eb | 2 +- .../i/impi/impi-5.0.1.035-iccifort-2015.0.090-GCC-4.9.2.eb | 2 +- .../easyconfigs/i/impi/impi-5.0.1.035-iccifort-2015.0.090.eb | 2 +- .../i/impi/impi-5.0.2.044-iccifort-2015.1.133-GCC-4.9.2.eb | 2 +- easybuild/easyconfigs/i/impi/impi-5.0.3.048-GCC-4.9.3.eb | 2 +- .../i/impi/impi-5.0.3.048-iccifort-2015.2.164-GCC-4.9.2.eb | 2 +- .../i/impi/impi-5.0.3.048-iccifort-2015.3.187-GNU-4.9.3-2.25.eb | 2 +- .../easyconfigs/i/impi/impi-5.0.3.048-iccifort-2015.3.187.eb | 2 +- .../i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-4.9.3-2.25.eb | 2 +- .../i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-5.3.0-2.26.eb | 2 +- .../i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-4.9.3-2.25.eb | 2 +- .../i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.3.0-2.26.eb | 2 +- .../i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.4.0-2.26.eb | 2 +- .../easyconfigs/i/impi/impi-5.1.3.181-iccifortcuda-2016.10.eb | 2 +- 33 files changed, 33 insertions(+), 33 deletions(-) diff --git a/easybuild/easyconfigs/i/impi/impi-2017.0.098-iccifort-2017.0.098-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/impi/impi-2017.0.098-iccifort-2017.0.098-GCC-5.4.0-2.26.eb index 867202a357..3457aacbc5 100644 --- a/easybuild/easyconfigs/i/impi/impi-2017.0.098-iccifort-2017.0.098-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/impi/impi-2017.0.098-iccifort-2017.0.098-GCC-5.4.0-2.26.eb @@ -6,7 +6,7 @@ version = '2017.0.098' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 3.1 (MPI-3) specification.""" toolchain = {'name': 'iccifort', 'version': '2017.0.098-GCC-5.4.0-2.26'} diff --git a/easybuild/easyconfigs/i/impi/impi-2017.1.132-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/impi/impi-2017.1.132-GCC-5.4.0-2.26.eb index 106806006c..57fd16dd93 100644 --- a/easybuild/easyconfigs/i/impi/impi-2017.1.132-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/impi/impi-2017.1.132-GCC-5.4.0-2.26.eb @@ -4,7 +4,7 @@ version = '2017.1.132' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 3.1 (MPI-3) specification.""" toolchain = {'name': 'GCC', 'version': '5.4.0-2.26'} diff --git a/easybuild/easyconfigs/i/impi/impi-2017.1.132-iccifort-2017.1.132-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/impi/impi-2017.1.132-iccifort-2017.1.132-GCC-5.4.0-2.26.eb index bebecd8cf6..aa746359e2 100644 --- a/easybuild/easyconfigs/i/impi/impi-2017.1.132-iccifort-2017.1.132-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/impi/impi-2017.1.132-iccifort-2017.1.132-GCC-5.4.0-2.26.eb @@ -6,7 +6,7 @@ version = '2017.1.132' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 3.1 (MPI-3) specification.""" toolchain = {'name': 'iccifort', 'version': '2017.1.132-GCC-5.4.0-2.26'} diff --git a/easybuild/easyconfigs/i/impi/impi-2017.1.132-iccifort-2017.1.132-GCC-6.3.0-2.27.eb b/easybuild/easyconfigs/i/impi/impi-2017.1.132-iccifort-2017.1.132-GCC-6.3.0-2.27.eb index 3193d2cc9a..48a890bbcf 100644 --- a/easybuild/easyconfigs/i/impi/impi-2017.1.132-iccifort-2017.1.132-GCC-6.3.0-2.27.eb +++ b/easybuild/easyconfigs/i/impi/impi-2017.1.132-iccifort-2017.1.132-GCC-6.3.0-2.27.eb @@ -6,7 +6,7 @@ version = '2017.1.132' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 3.1 (MPI-3) specification.""" toolchain = {'name': 'iccifort', 'version': '2017.1.132-GCC-6.3.0-2.27'} diff --git a/easybuild/easyconfigs/i/impi/impi-2017.2.174-iccifort-2017.2.174-GCC-6.3.0-2.27.eb b/easybuild/easyconfigs/i/impi/impi-2017.2.174-iccifort-2017.2.174-GCC-6.3.0-2.27.eb index 9375fca351..2d925e4ac1 100644 --- a/easybuild/easyconfigs/i/impi/impi-2017.2.174-iccifort-2017.2.174-GCC-6.3.0-2.27.eb +++ b/easybuild/easyconfigs/i/impi/impi-2017.2.174-iccifort-2017.2.174-GCC-6.3.0-2.27.eb @@ -6,7 +6,7 @@ version = '2017.2.174' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 3.1 (MPI-3) specification.""" toolchain = {'name': 'iccifort', 'version': '2017.2.174-GCC-6.3.0-2.27'} diff --git a/easybuild/easyconfigs/i/impi/impi-4.1.0.027.eb b/easybuild/easyconfigs/i/impi/impi-4.1.0.027.eb index 209842e727..6929387be6 100644 --- a/easybuild/easyconfigs/i/impi/impi-4.1.0.027.eb +++ b/easybuild/easyconfigs/i/impi/impi-4.1.0.027.eb @@ -4,7 +4,7 @@ version = '4.1.0.027' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 2.2 (MPI-2) specification.""" toolchain = {'name': 'dummy', 'version': 'dummy'} diff --git a/easybuild/easyconfigs/i/impi/impi-4.1.0.030-iccifort-2013.2.146.eb b/easybuild/easyconfigs/i/impi/impi-4.1.0.030-iccifort-2013.2.146.eb index c4e43d9fa9..ab6d7960f3 100644 --- a/easybuild/easyconfigs/i/impi/impi-4.1.0.030-iccifort-2013.2.146.eb +++ b/easybuild/easyconfigs/i/impi/impi-4.1.0.030-iccifort-2013.2.146.eb @@ -4,7 +4,7 @@ version = '4.1.0.030' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 2.2 (MPI-2) specification.""" toolchain = {'name': 'iccifort', 'version': '2013.2.146'} diff --git a/easybuild/easyconfigs/i/impi/impi-4.1.0.030-iccifort-2013.3.163.eb b/easybuild/easyconfigs/i/impi/impi-4.1.0.030-iccifort-2013.3.163.eb index 9b5a71ce36..e04df8a494 100644 --- a/easybuild/easyconfigs/i/impi/impi-4.1.0.030-iccifort-2013.3.163.eb +++ b/easybuild/easyconfigs/i/impi/impi-4.1.0.030-iccifort-2013.3.163.eb @@ -4,7 +4,7 @@ version = '4.1.0.030' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 2.2 (MPI-2) specification.""" toolchain = {'name': 'iccifort', 'version': '2013.3.163'} diff --git a/easybuild/easyconfigs/i/impi/impi-4.1.0.030-iccifort-2013.4.183.eb b/easybuild/easyconfigs/i/impi/impi-4.1.0.030-iccifort-2013.4.183.eb index 36a86386a0..0cb097158e 100644 --- a/easybuild/easyconfigs/i/impi/impi-4.1.0.030-iccifort-2013.4.183.eb +++ b/easybuild/easyconfigs/i/impi/impi-4.1.0.030-iccifort-2013.4.183.eb @@ -4,7 +4,7 @@ version = '4.1.0.030' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 2.2 (MPI-2) specification.""" toolchain = {'name': 'iccifort', 'version': '2013.4.183'} diff --git a/easybuild/easyconfigs/i/impi/impi-4.1.0.030.eb b/easybuild/easyconfigs/i/impi/impi-4.1.0.030.eb index 3f28cb9676..159af122db 100644 --- a/easybuild/easyconfigs/i/impi/impi-4.1.0.030.eb +++ b/easybuild/easyconfigs/i/impi/impi-4.1.0.030.eb @@ -4,7 +4,7 @@ version = '4.1.0.030' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 2.2 (MPI-2) specification.""" toolchain = {'name': 'dummy', 'version': 'dummy'} diff --git a/easybuild/easyconfigs/i/impi/impi-4.1.1.036-iccifort-2013.5.192-GCC-4.8.3.eb b/easybuild/easyconfigs/i/impi/impi-4.1.1.036-iccifort-2013.5.192-GCC-4.8.3.eb index ee1796488d..be19fa0081 100644 --- a/easybuild/easyconfigs/i/impi/impi-4.1.1.036-iccifort-2013.5.192-GCC-4.8.3.eb +++ b/easybuild/easyconfigs/i/impi/impi-4.1.1.036-iccifort-2013.5.192-GCC-4.8.3.eb @@ -4,7 +4,7 @@ version = '4.1.1.036' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 2.2 (MPI-2) specification.""" toolchain = {'name': 'iccifort', 'version': '2013.5.192-GCC-4.8.3'} diff --git a/easybuild/easyconfigs/i/impi/impi-4.1.1.036-iccifort-2013.5.192.eb b/easybuild/easyconfigs/i/impi/impi-4.1.1.036-iccifort-2013.5.192.eb index 97573c0075..118bb8c103 100644 --- a/easybuild/easyconfigs/i/impi/impi-4.1.1.036-iccifort-2013.5.192.eb +++ b/easybuild/easyconfigs/i/impi/impi-4.1.1.036-iccifort-2013.5.192.eb @@ -4,7 +4,7 @@ version = '4.1.1.036' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 2.2 (MPI-2) specification.""" toolchain = {'name': 'iccifort', 'version': '2013.5.192'} diff --git a/easybuild/easyconfigs/i/impi/impi-4.1.1.036.eb b/easybuild/easyconfigs/i/impi/impi-4.1.1.036.eb index 5524846083..6f14962150 100644 --- a/easybuild/easyconfigs/i/impi/impi-4.1.1.036.eb +++ b/easybuild/easyconfigs/i/impi/impi-4.1.1.036.eb @@ -4,7 +4,7 @@ version = '4.1.1.036' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 2.2 (MPI-2) specification.""" toolchain = {'name': 'dummy', 'version': 'dummy'} diff --git a/easybuild/easyconfigs/i/impi/impi-4.1.2.040.eb b/easybuild/easyconfigs/i/impi/impi-4.1.2.040.eb index 5301684735..dd8f68cc71 100644 --- a/easybuild/easyconfigs/i/impi/impi-4.1.2.040.eb +++ b/easybuild/easyconfigs/i/impi/impi-4.1.2.040.eb @@ -4,7 +4,7 @@ version = '4.1.2.040' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 2.2 (MPI-2) specification.""" toolchain = {'name': 'dummy', 'version': 'dummy'} diff --git a/easybuild/easyconfigs/i/impi/impi-4.1.3.045-iccifort-2013_sp1.1.106.eb b/easybuild/easyconfigs/i/impi/impi-4.1.3.045-iccifort-2013_sp1.1.106.eb index 3eef4c39b6..8841eb5e48 100644 --- a/easybuild/easyconfigs/i/impi/impi-4.1.3.045-iccifort-2013_sp1.1.106.eb +++ b/easybuild/easyconfigs/i/impi/impi-4.1.3.045-iccifort-2013_sp1.1.106.eb @@ -4,7 +4,7 @@ version = '4.1.3.045' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 2.2 (MPI-2) specification.""" toolchain = {'name': 'iccifort', 'version': '2013_sp1.1.106'} diff --git a/easybuild/easyconfigs/i/impi/impi-4.1.3.045.eb b/easybuild/easyconfigs/i/impi/impi-4.1.3.045.eb index de266ab029..53f0e55211 100644 --- a/easybuild/easyconfigs/i/impi/impi-4.1.3.045.eb +++ b/easybuild/easyconfigs/i/impi/impi-4.1.3.045.eb @@ -4,7 +4,7 @@ version = '4.1.3.045' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 2.2 (MPI-2) specification.""" toolchain = {'name': 'dummy', 'version': 'dummy'} diff --git a/easybuild/easyconfigs/i/impi/impi-4.1.3.049-GCC-4.8.3.eb b/easybuild/easyconfigs/i/impi/impi-4.1.3.049-GCC-4.8.3.eb index 81b707143d..f9f2e44736 100644 --- a/easybuild/easyconfigs/i/impi/impi-4.1.3.049-GCC-4.8.3.eb +++ b/easybuild/easyconfigs/i/impi/impi-4.1.3.049-GCC-4.8.3.eb @@ -4,7 +4,7 @@ version = '4.1.3.049' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 2.2 (MPI-2) specification.""" toolchain = {'name': 'GCC', 'version': '4.8.3'} diff --git a/easybuild/easyconfigs/i/impi/impi-4.1.3.049-iccifort-2013.5.192-GCC-4.8.3.eb b/easybuild/easyconfigs/i/impi/impi-4.1.3.049-iccifort-2013.5.192-GCC-4.8.3.eb index 91e7ec80d3..db7602586f 100644 --- a/easybuild/easyconfigs/i/impi/impi-4.1.3.049-iccifort-2013.5.192-GCC-4.8.3.eb +++ b/easybuild/easyconfigs/i/impi/impi-4.1.3.049-iccifort-2013.5.192-GCC-4.8.3.eb @@ -4,7 +4,7 @@ version = '4.1.3.049' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 2.2 (MPI-2) specification.""" toolchain = {'name': 'iccifort', 'version': '2013.5.192-GCC-4.8.3'} diff --git a/easybuild/easyconfigs/i/impi/impi-4.1.3.049-iccifort-2013_sp1.2.144.eb b/easybuild/easyconfigs/i/impi/impi-4.1.3.049-iccifort-2013_sp1.2.144.eb index 3b51024f12..3970ddc476 100644 --- a/easybuild/easyconfigs/i/impi/impi-4.1.3.049-iccifort-2013_sp1.2.144.eb +++ b/easybuild/easyconfigs/i/impi/impi-4.1.3.049-iccifort-2013_sp1.2.144.eb @@ -4,7 +4,7 @@ version = '4.1.3.049' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 2.2 (MPI-2) specification.""" toolchain = {'name': 'iccifort', 'version': '2013_sp1.2.144'} diff --git a/easybuild/easyconfigs/i/impi/impi-4.1.3.049.eb b/easybuild/easyconfigs/i/impi/impi-4.1.3.049.eb index 7b345a78e7..8b558e1f1c 100644 --- a/easybuild/easyconfigs/i/impi/impi-4.1.3.049.eb +++ b/easybuild/easyconfigs/i/impi/impi-4.1.3.049.eb @@ -4,7 +4,7 @@ version = '4.1.3.049' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 2.2 (MPI-2) specification.""" toolchain = {'name': 'dummy', 'version': 'dummy'} diff --git a/easybuild/easyconfigs/i/impi/impi-5.0.1.035-iccifort-2015.0.090-GCC-4.9.2.eb b/easybuild/easyconfigs/i/impi/impi-5.0.1.035-iccifort-2015.0.090-GCC-4.9.2.eb index 154d705ccf..68543c277e 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.0.1.035-iccifort-2015.0.090-GCC-4.9.2.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.0.1.035-iccifort-2015.0.090-GCC-4.9.2.eb @@ -4,7 +4,7 @@ version = '5.0.1.035' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 3.0 (MPI-3) specification.""" toolchain = {'name': 'iccifort', 'version': '2015.0.090-GCC-4.9.2'} diff --git a/easybuild/easyconfigs/i/impi/impi-5.0.1.035-iccifort-2015.0.090.eb b/easybuild/easyconfigs/i/impi/impi-5.0.1.035-iccifort-2015.0.090.eb index 952a3f2313..f8d4105279 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.0.1.035-iccifort-2015.0.090.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.0.1.035-iccifort-2015.0.090.eb @@ -4,7 +4,7 @@ version = '5.0.1.035' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 3.0 (MPI-3) specification.""" toolchain = {'name': 'iccifort', 'version': '2015.0.090'} diff --git a/easybuild/easyconfigs/i/impi/impi-5.0.2.044-iccifort-2015.1.133-GCC-4.9.2.eb b/easybuild/easyconfigs/i/impi/impi-5.0.2.044-iccifort-2015.1.133-GCC-4.9.2.eb index 62a9caf2ee..42da75af9c 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.0.2.044-iccifort-2015.1.133-GCC-4.9.2.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.0.2.044-iccifort-2015.1.133-GCC-4.9.2.eb @@ -4,7 +4,7 @@ version = '5.0.2.044' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 3.0 (MPI-3) specification.""" toolchain = {'name': 'iccifort', 'version': '2015.1.133-GCC-4.9.2'} diff --git a/easybuild/easyconfigs/i/impi/impi-5.0.3.048-GCC-4.9.3.eb b/easybuild/easyconfigs/i/impi/impi-5.0.3.048-GCC-4.9.3.eb index 46722880e7..c9221491ef 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.0.3.048-GCC-4.9.3.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.0.3.048-GCC-4.9.3.eb @@ -4,7 +4,7 @@ version = '5.0.3.048' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 3.0 (MPI-3) specification.""" toolchain = {'name': 'GCC', 'version': '4.9.3'} diff --git a/easybuild/easyconfigs/i/impi/impi-5.0.3.048-iccifort-2015.2.164-GCC-4.9.2.eb b/easybuild/easyconfigs/i/impi/impi-5.0.3.048-iccifort-2015.2.164-GCC-4.9.2.eb index 452ab3ddd5..8a9edd8c88 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.0.3.048-iccifort-2015.2.164-GCC-4.9.2.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.0.3.048-iccifort-2015.2.164-GCC-4.9.2.eb @@ -4,7 +4,7 @@ version = '5.0.3.048' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 3.0 (MPI-3) specification.""" toolchain = {'name': 'iccifort', 'version': '2015.2.164-GCC-4.9.2'} diff --git a/easybuild/easyconfigs/i/impi/impi-5.0.3.048-iccifort-2015.3.187-GNU-4.9.3-2.25.eb b/easybuild/easyconfigs/i/impi/impi-5.0.3.048-iccifort-2015.3.187-GNU-4.9.3-2.25.eb index 7de5ce16aa..b10c36dc27 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.0.3.048-iccifort-2015.3.187-GNU-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.0.3.048-iccifort-2015.3.187-GNU-4.9.3-2.25.eb @@ -4,7 +4,7 @@ version = '5.0.3.048' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 3.0 (MPI-3) specification.""" toolchain = {'name': 'iccifort', 'version': '2015.3.187-GNU-4.9.3-2.25'} diff --git a/easybuild/easyconfigs/i/impi/impi-5.0.3.048-iccifort-2015.3.187.eb b/easybuild/easyconfigs/i/impi/impi-5.0.3.048-iccifort-2015.3.187.eb index 51baff5e35..ea4314e4dc 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.0.3.048-iccifort-2015.3.187.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.0.3.048-iccifort-2015.3.187.eb @@ -4,7 +4,7 @@ version = '5.0.3.048' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 3.0 (MPI-3) specification.""" toolchain = {'name': 'iccifort', 'version': '2015.3.187'} diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-4.9.3-2.25.eb index 845f7631f8..ff29599396 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-4.9.3-2.25.eb @@ -6,7 +6,7 @@ version = '5.1.3.181' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 3.1 (MPI-3) specification.""" toolchain = {'name': 'iccifort', 'version': '2016.2.181-GCC-4.9.3-2.25'} diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-5.3.0-2.26.eb b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-5.3.0-2.26.eb index eaf9a3b7a7..b683120608 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-5.3.0-2.26.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-5.3.0-2.26.eb @@ -6,7 +6,7 @@ version = '5.1.3.181' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 3.1 (MPI-3) specification.""" toolchain = {'name': 'iccifort', 'version': '2016.2.181-GCC-5.3.0-2.26'} diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-4.9.3-2.25.eb index 56d81448bf..82952d9703 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-4.9.3-2.25.eb @@ -6,7 +6,7 @@ version = '5.1.3.181' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 3.1 (MPI-3) specification.""" toolchain = {'name': 'iccifort', 'version': '2016.3.210-GCC-4.9.3-2.25'} diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.3.0-2.26.eb b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.3.0-2.26.eb index cc0d58235f..c9693689db 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.3.0-2.26.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.3.0-2.26.eb @@ -6,7 +6,7 @@ version = '5.1.3.181' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 3.1 (MPI-3) specification.""" toolchain = {'name': 'iccifort', 'version': '2016.3.210-GCC-5.3.0-2.26'} diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.4.0-2.26.eb index 565380f44c..28540e5444 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.4.0-2.26.eb @@ -6,7 +6,7 @@ version = '5.1.3.181' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 3.1 (MPI-3) specification.""" toolchain = {'name': 'iccifort', 'version': '2016.3.210-GCC-5.4.0-2.26'} diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifortcuda-2016.10.eb b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifortcuda-2016.10.eb index 292b8c704e..9873b9f096 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifortcuda-2016.10.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifortcuda-2016.10.eb @@ -6,7 +6,7 @@ version = '5.1.3.181' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 3.1 (MPI-3) specification.""" toolchain = {'name': 'iccifortcuda', 'version': '2016.10'} -- GitLab From dfd0a7ee896a9a0a1f96931842ca436897f66b5e Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 9 Jun 2017 13:30:31 +0930 Subject: [PATCH 189/608] {bio}{dummy} SEED added --- easybuild/easyconfigs/s/SEED/SEED-2015.eb | 36 +++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 easybuild/easyconfigs/s/SEED/SEED-2015.eb diff --git a/easybuild/easyconfigs/s/SEED/SEED-2015.eb b/easybuild/easyconfigs/s/SEED/SEED-2015.eb new file mode 100644 index 0000000000..b186b85f21 --- /dev/null +++ b/easybuild/easyconfigs/s/SEED/SEED-2015.eb @@ -0,0 +1,36 @@ +## +# This is a contribution from Phoenix HPC Service, The University of Adelaide, Australia +# Homepage: https://www.adelaide.edu.au/phoenix/ +# +# Copyright:: Copyright 2014-2017 adelaide.edu.au/phoenix +# Authors:: Robert Qiao , Exequiel Sepulveda +# License:: Artistic-v2.0 +# +# Notes:: +## + +easyblock = 'CmdCp' + +name = 'SEED' +version = '2015' + +homepage = 'http://www.theseed.org/wiki/Main_Page' +description = """ SEED is a software for clustering large sets of Next Generation Sequences (NGS) +with hundreds of millions of reads in a time and memory efficient manner. +Its algorithm joins highly similar sequences into clusters that can differ +by up to three mismatches and three overhanging residues. +""" + +toolchain = {'name': 'dummy', 'version': 'dummy'} + +sources = ['master.zip'] +source_urls = ['https://github.com/baoe/SEED/archive'] + +files_to_copy = (['SEED/SEED'], 'bin'), + +sanity_check_paths = { + 'files': ["bin/SEED"], + 'dirs': [], +} + +moduleclass = 'bio' -- GitLab From 5b0f4797cfda1e3bc685e45a60701eb8131d47cf Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Fri, 9 Jun 2017 16:23:45 +1200 Subject: [PATCH 190/608] Ensure PREFIX is set at build, not only at install, so that NE_GLOBAL_DIR is correctly set --- easybuild/easyconfigs/n/ne/ne-3.0.1-foss-2015a.eb | 1 + easybuild/easyconfigs/n/ne/ne-3.0.1-gimkl-2017a.eb | 1 + 2 files changed, 2 insertions(+) diff --git a/easybuild/easyconfigs/n/ne/ne-3.0.1-foss-2015a.eb b/easybuild/easyconfigs/n/ne/ne-3.0.1-foss-2015a.eb index 4898061930..ebfa1fab31 100644 --- a/easybuild/easyconfigs/n/ne/ne-3.0.1-foss-2015a.eb +++ b/easybuild/easyconfigs/n/ne/ne-3.0.1-foss-2015a.eb @@ -15,6 +15,7 @@ source_urls = ['http://ne.di.unimi.it/'] sources = [SOURCELOWER_TAR_GZ] skipsteps = ['configure'] +buildopts = "PREFIX=%(installdir)s" installopts = "PREFIX=%(installdir)s" sanity_check_paths = { diff --git a/easybuild/easyconfigs/n/ne/ne-3.0.1-gimkl-2017a.eb b/easybuild/easyconfigs/n/ne/ne-3.0.1-gimkl-2017a.eb index f6ca385967..b43f3a5a81 100644 --- a/easybuild/easyconfigs/n/ne/ne-3.0.1-gimkl-2017a.eb +++ b/easybuild/easyconfigs/n/ne/ne-3.0.1-gimkl-2017a.eb @@ -19,6 +19,7 @@ dependencies = [ ] skipsteps = ['configure'] +buildopts = "PREFIX=%(installdir)s" installopts = "PREFIX=%(installdir)s" sanity_check_paths = { -- GitLab From 04a431ff6ff6184621160ce03e90c730b54ff06c Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Fri, 9 Jun 2017 15:01:28 +0200 Subject: [PATCH 191/608] adding easyconfigs: sleuth-0.29.0-intel-2017a-R-3.4.0.eb --- .../sleuth-0.29.0-intel-2017a-R-3.4.0.eb | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 easybuild/easyconfigs/s/sleuth/sleuth-0.29.0-intel-2017a-R-3.4.0.eb diff --git a/easybuild/easyconfigs/s/sleuth/sleuth-0.29.0-intel-2017a-R-3.4.0.eb b/easybuild/easyconfigs/s/sleuth/sleuth-0.29.0-intel-2017a-R-3.4.0.eb new file mode 100644 index 0000000000..aba646221e --- /dev/null +++ b/easybuild/easyconfigs/s/sleuth/sleuth-0.29.0-intel-2017a-R-3.4.0.eb @@ -0,0 +1,25 @@ +easyblock = 'RPackage' + +name = 'sleuth' +version = '0.29.0' +versionsuffix = '-R-%(rver)s' + +homepage = 'http://pachterlab.github.io/sleuth' +description = """Investigate RNA-Seq transcript abundance from kallisto and perform differential expression analysis.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['https://github.com/pachterlab/sleuth/archive/'] +sources = ['v%(version)s.tar.gz'] + +dependencies = [ + ('R', '3.4.0', '-X11-20170314'), + ('R-bundle-Bioconductor', '3.5', versionsuffix), +] + +sanity_check_paths = { + 'files': [], + 'dirs': [name], +} + +moduleclass = 'bio' -- GitLab From c932408af5283c17fd34ddae5eb097910d9eb2a8 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Fri, 9 Jun 2017 18:23:29 +0200 Subject: [PATCH 192/608] use --with-x=yes in R easyconfigs that include X11 as a dependency --- easybuild/easyconfigs/r/R/R-3.3.3-foss-2016b-X11-20160819.eb | 2 +- easybuild/easyconfigs/r/R/R-3.3.3-intel-2017a-X11-20170314.eb | 2 +- easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/easybuild/easyconfigs/r/R/R-3.3.3-foss-2016b-X11-20160819.eb b/easybuild/easyconfigs/r/R/R-3.3.3-foss-2016b-X11-20160819.eb index 3b6ee9a746..17436647a4 100644 --- a/easybuild/easyconfigs/r/R/R-3.3.3-foss-2016b-X11-20160819.eb +++ b/easybuild/easyconfigs/r/R/R-3.3.3-foss-2016b-X11-20160819.eb @@ -12,7 +12,7 @@ sources = [SOURCE_TAR_GZ] source_urls = ['http://cran.us.r-project.org/src/base/R-%(version_major)s'] preconfigopts = 'BLAS_LIBS="$LIBBLAS" LAPACK_LIBS="$LIBLAPACK"' -configopts = "--with-lapack --with-blas --with-pic --enable-threads --with-x=no --enable-R-shlib" +configopts = "--with-lapack --with-blas --with-pic --enable-threads --with-x=yes --enable-R-shlib" #Actually use Tcl/Tk configopts += ' --with-tcl-config=$EBROOTTCL/lib/tclConfig.sh --with-tk-config=$EBROOTTK/lib/tkConfig.sh ' # Enable graphics capabilities for plotting. diff --git a/easybuild/easyconfigs/r/R/R-3.3.3-intel-2017a-X11-20170314.eb b/easybuild/easyconfigs/r/R/R-3.3.3-intel-2017a-X11-20170314.eb index 963e074572..dd6b13d0c2 100644 --- a/easybuild/easyconfigs/r/R/R-3.3.3-intel-2017a-X11-20170314.eb +++ b/easybuild/easyconfigs/r/R/R-3.3.3-intel-2017a-X11-20170314.eb @@ -12,7 +12,7 @@ sources = [SOURCE_TAR_GZ] source_urls = ['http://cran.us.r-project.org/src/base/R-%(version_major)s'] preconfigopts = 'BLAS_LIBS="$LIBBLAS" LAPACK_LIBS="$LIBLAPACK"' -configopts = "--with-lapack --with-blas --with-pic --enable-threads --with-x=no --enable-R-shlib" +configopts = "--with-lapack --with-blas --with-pic --enable-threads --with-x=yes --enable-R-shlib" #Actually use Tcl/Tk configopts += ' --with-tcl-config=$EBROOTTCL/lib/tclConfig.sh --with-tk-config=$EBROOTTK/lib/tkConfig.sh ' # Enable graphics capabilities for plotting. diff --git a/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb b/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb index b17ecb1531..db02d8833d 100644 --- a/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb +++ b/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb @@ -12,7 +12,7 @@ sources = [SOURCE_TAR_GZ] source_urls = ['http://cran.us.r-project.org/src/base/R-%(version_major)s'] preconfigopts = 'BLAS_LIBS="$LIBBLAS" LAPACK_LIBS="$LIBLAPACK"' -configopts = "--with-lapack --with-blas --with-pic --enable-threads --with-x=no --enable-R-shlib" +configopts = "--with-lapack --with-blas --with-pic --enable-threads --with-x=yes --enable-R-shlib" # Actually use Tcl/Tk configopts += ' --with-tcl-config=$EBROOTTCL/lib/tclConfig.sh --with-tk-config=$EBROOTTK/lib/tkConfig.sh ' # Enable graphics capabilities for plotting. -- GitLab From 8a545e4e062c77c5f35e68362f7537fa919a94fb Mon Sep 17 00:00:00 2001 From: Davide Vanzo Date: Fri, 9 Jun 2017 17:07:11 -0500 Subject: [PATCH 193/608] adding easyconfigs: Tcl-8.6.5-iccifort-2016.3.210-GCC-5.4.0-2.26.eb, SQLite-3.13.0-iccifort-2016.3.210-GCC-5.4.0-2.26.eb, Tk-8.6.5-iccifort-2016.3.210-GCC-5.4.0-2.26.eb, Python-2.7.12-iccifort-2016.3.210-GCC-5.4.0-2.26-bare.eb --- ...iccifort-2016.3.210-GCC-5.4.0-2.26-bare.eb | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 easybuild/easyconfigs/p/Python/Python-2.7.12-iccifort-2016.3.210-GCC-5.4.0-2.26-bare.eb diff --git a/easybuild/easyconfigs/p/Python/Python-2.7.12-iccifort-2016.3.210-GCC-5.4.0-2.26-bare.eb b/easybuild/easyconfigs/p/Python/Python-2.7.12-iccifort-2016.3.210-GCC-5.4.0-2.26-bare.eb new file mode 100644 index 0000000000..d9fd114759 --- /dev/null +++ b/easybuild/easyconfigs/p/Python/Python-2.7.12-iccifort-2016.3.210-GCC-5.4.0-2.26-bare.eb @@ -0,0 +1,35 @@ +name = 'Python' +version = '2.7.12' +versionsuffix = '-bare' + +homepage = 'http://python.org/' +description = """Python is a programming language that lets you work more quickly and integrate your systems + more effectively.""" + +toolchain = {'name': 'iccifort', 'version': '2016.3.210-GCC-5.4.0-2.26'} +toolchainopts = {'pic': True, 'opt': True, 'optarch': True} + +source_urls = ['http://www.python.org/ftp/%(namelower)s/%(version)s/'] +sources = [SOURCE_TGZ] + +# python needs bzip2 to build the bz2 package +dependencies = [ + ('bzip2', '1.0.6'), + ('zlib', '1.2.8'), + ('libreadline', '6.3'), + ('ncurses', '6.0'), + ('SQLite', '3.13.0'), + ('Tk', '8.6.5'), # this requires a full X11 stack + # OS dependency should be preferred if the os version is more recent then this version, + # it's nice to have an up to date openssl for security reasons + # ('OpenSSL', '1.0.2h'), +] + +osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')] + +modluafooter = 'family("python")' + +# bare installation: no extensions included +exts_list = [] + +moduleclass = 'lang' -- GitLab From 045e29d93edb740575e27d03287bee21f55f1e60 Mon Sep 17 00:00:00 2001 From: Robert Date: Sat, 10 Jun 2017 11:40:06 +0930 Subject: [PATCH 194/608] OrfM easyconfig added --- .../o/OrfM/OrfM-0.6.1-foss-2016b.eb | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 easybuild/easyconfigs/o/OrfM/OrfM-0.6.1-foss-2016b.eb diff --git a/easybuild/easyconfigs/o/OrfM/OrfM-0.6.1-foss-2016b.eb b/easybuild/easyconfigs/o/OrfM/OrfM-0.6.1-foss-2016b.eb new file mode 100644 index 0000000000..ae95bf0649 --- /dev/null +++ b/easybuild/easyconfigs/o/OrfM/OrfM-0.6.1-foss-2016b.eb @@ -0,0 +1,37 @@ +## +# This is a contribution from Phoenix HPC Service, The University of Adelaide, Australia +# Homepage: https://www.adelaide.edu.au/phoenix/ +# +# Copyright:: Copyright 2014-2017 adelaide.edu.au/phoenix +# Authors:: Robert Qiao , Exequiel Sepulveda +# License:: LGPL-v3.0 +# +# Notes:: +## + +easyblock = 'ConfigureMake' + +name = 'OrfM' +version = '0.6.1' +namelower = 'orfm' + +homepage = 'https://github.com/wwood/OrfM' +description = """A simple and not slow open reading frame (ORF) caller. +No bells or whistles like frameshift detection, +just a straightforward goal of returning a FASTA file +of open reading frames over a certain length from a FASTA/Q file +of nucleotide sequences. +""" + +toolchain = {'name': 'foss', 'version': '2016b'} +toolchainopts = {'usempi': True} + +sources = ['v%(version)s/%(namelower)s-%(version)s.tar.gz'] +source_urls = ['https://github.com/wwood/OrfM/releases/download'] + +sanity_check_paths = { + 'files': ['bin/orfm'], + 'dirs': [], +} + +moduleclass = 'bio' -- GitLab From 20d3efacb6ab40bc6729d727ec861e81a01dd068 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Fri, 9 Jun 2017 22:50:18 -0500 Subject: [PATCH 195/608] adding easyconfigs: tbb-2017.6.196.eb --- easybuild/easyconfigs/t/tbb/tbb-2017.6.196.eb | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 easybuild/easyconfigs/t/tbb/tbb-2017.6.196.eb diff --git a/easybuild/easyconfigs/t/tbb/tbb-2017.6.196.eb b/easybuild/easyconfigs/t/tbb/tbb-2017.6.196.eb new file mode 100644 index 0000000000..458116d68c --- /dev/null +++ b/easybuild/easyconfigs/t/tbb/tbb-2017.6.196.eb @@ -0,0 +1,25 @@ +name = 'tbb' +version = '2017.6.196' + +homepage = 'http://software.intel.com/en-us/articles/intel-tbb/' + +description = """ + Intel Threading Building Blocks 4.0 (Intel TBB) is a widely used, + award-winning C++ template library for creating reliable, portable, and + scalable parallel applications. Use Intel TBB for a simple and rapid way + of developing robust task-based parallel applications that scale to available + processor cores, are compatible with multiple environments, and are easier to + maintain. Intel TBB is the most proficient way to implement future-proof + parallel applications that tap into the power and performance of multicore + and manycore hardware platforms. +""" + +toolchain = {'name': 'dummy', 'version': 'dummy'} + +sources = ['l_tbb_%(version)s.tgz'] + +requires_runtime_license = False + +dontcreateinstalldir = True + +moduleclass = 'lib' -- GitLab From 734e3e1f0706ce8edb5d0e440e96628277091d44 Mon Sep 17 00:00:00 2001 From: John Donners Date: Sat, 10 Jun 2017 10:33:06 +0200 Subject: [PATCH 196/608] Fixed descriptions of impi-5.1.\* --- .../easyconfigs/i/impi/impi-5.1.0.079-iccifort-2015.3.187.eb | 2 +- .../i/impi/impi-5.1.1.109-iccifort-2016.0.109-GCC-4.9.3-2.25.eb | 2 +- .../i/impi/impi-5.1.2.150-iccifort-2015.5.223-GCC-4.9.3-2.25.eb | 2 +- .../i/impi/impi-5.1.2.150-iccifort-2016.1.150-GCC-4.9.3-2.25.eb | 2 +- .../i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-4.9.3-2.25.eb | 2 +- .../i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-5.3.0-2.26.eb | 2 +- .../i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-4.9.3-2.25.eb | 2 +- .../i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.3.0-2.26.eb | 2 +- .../i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.4.0-2.26.eb | 2 +- .../easyconfigs/i/impi/impi-5.1.3.181-iccifortcuda-2016.10.eb | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.0.079-iccifort-2015.3.187.eb b/easybuild/easyconfigs/i/impi/impi-5.1.0.079-iccifort-2015.3.187.eb index 51936e972d..66832f4bce 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.0.079-iccifort-2015.3.187.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.0.079-iccifort-2015.3.187.eb @@ -4,7 +4,7 @@ version = '5.1.0.079' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 3.0 (MPI-3) specification.""" toolchain = {'name': 'iccifort', 'version': '2015.3.187'} diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.1.109-iccifort-2016.0.109-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/impi/impi-5.1.1.109-iccifort-2016.0.109-GCC-4.9.3-2.25.eb index 8d146fd342..2a54c28eb8 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.1.109-iccifort-2016.0.109-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.1.109-iccifort-2016.0.109-GCC-4.9.3-2.25.eb @@ -6,7 +6,7 @@ version = '5.1.1.109' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 3.0 (MPI-3) specification.""" toolchain = {'name': 'iccifort', 'version': '2016.0.109-GCC-4.9.3-2.25'} diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.2.150-iccifort-2015.5.223-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/impi/impi-5.1.2.150-iccifort-2015.5.223-GCC-4.9.3-2.25.eb index af79fd7190..562b27bc40 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.2.150-iccifort-2015.5.223-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.2.150-iccifort-2015.5.223-GCC-4.9.3-2.25.eb @@ -4,7 +4,7 @@ version = '5.1.2.150' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 3.0 (MPI-3) specification.""" toolchain = {'name': 'iccifort', 'version': '2015.5.223-GCC-4.9.3-2.25'} diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.2.150-iccifort-2016.1.150-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/impi/impi-5.1.2.150-iccifort-2016.1.150-GCC-4.9.3-2.25.eb index 6042d117f6..71b0e15d81 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.2.150-iccifort-2016.1.150-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.2.150-iccifort-2016.1.150-GCC-4.9.3-2.25.eb @@ -6,7 +6,7 @@ version = '5.1.2.150' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.""" + Linux OS implements the Message Passing Interface, version 3.0 (MPI-3) specification.""" toolchain = {'name': 'iccifort', 'version': '2016.1.150-GCC-4.9.3-2.25'} diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-4.9.3-2.25.eb index ff29599396..8f1eb713c5 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-4.9.3-2.25.eb @@ -6,7 +6,7 @@ version = '5.1.3.181' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 3.1 (MPI-3) specification.""" + Linux OS implements the Message Passing Interface, version 3.0 (MPI-3) specification.""" toolchain = {'name': 'iccifort', 'version': '2016.2.181-GCC-4.9.3-2.25'} diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-5.3.0-2.26.eb b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-5.3.0-2.26.eb index b683120608..72d570c9ae 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-5.3.0-2.26.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-5.3.0-2.26.eb @@ -6,7 +6,7 @@ version = '5.1.3.181' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 3.1 (MPI-3) specification.""" + Linux OS implements the Message Passing Interface, version 3.0 (MPI-3) specification.""" toolchain = {'name': 'iccifort', 'version': '2016.2.181-GCC-5.3.0-2.26'} diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-4.9.3-2.25.eb index 82952d9703..212b21a522 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-4.9.3-2.25.eb @@ -6,7 +6,7 @@ version = '5.1.3.181' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 3.1 (MPI-3) specification.""" + Linux OS implements the Message Passing Interface, version 3.0 (MPI-3) specification.""" toolchain = {'name': 'iccifort', 'version': '2016.3.210-GCC-4.9.3-2.25'} diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.3.0-2.26.eb b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.3.0-2.26.eb index c9693689db..783cda572d 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.3.0-2.26.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.3.0-2.26.eb @@ -6,7 +6,7 @@ version = '5.1.3.181' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 3.1 (MPI-3) specification.""" + Linux OS implements the Message Passing Interface, version 3.0 (MPI-3) specification.""" toolchain = {'name': 'iccifort', 'version': '2016.3.210-GCC-5.3.0-2.26'} diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.4.0-2.26.eb index 28540e5444..420224789e 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.4.0-2.26.eb @@ -6,7 +6,7 @@ version = '5.1.3.181' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 3.1 (MPI-3) specification.""" + Linux OS implements the Message Passing Interface, version 3.0 (MPI-3) specification.""" toolchain = {'name': 'iccifort', 'version': '2016.3.210-GCC-5.4.0-2.26'} diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifortcuda-2016.10.eb b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifortcuda-2016.10.eb index 9873b9f096..b61daed0c1 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifortcuda-2016.10.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifortcuda-2016.10.eb @@ -6,7 +6,7 @@ version = '5.1.3.181' homepage = 'http://software.intel.com/en-us/intel-mpi-library/' description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for - Linux OS implements the Message Passing Interface, version 3.1 (MPI-3) specification.""" + Linux OS implements the Message Passing Interface, version 3.0 (MPI-3) specification.""" toolchain = {'name': 'iccifortcuda', 'version': '2016.10'} -- GitLab From 6e0c6e7f6755f0507de970fe643c1dacc279b39c Mon Sep 17 00:00:00 2001 From: Yann Sagon Date: Mon, 12 Jun 2017 16:56:56 +0200 Subject: [PATCH 197/608] MaSuRCA for foss 2016a --- .../m/MaSuRCA/MaSuRCA-3.2.2-foss-206a.eb | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-206a.eb diff --git a/easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-206a.eb b/easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-206a.eb new file mode 100644 index 0000000000..57cbf4b326 --- /dev/null +++ b/easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-206a.eb @@ -0,0 +1,44 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# +# Copyright:: Copyright 2017 University of Geneva +# Authors:: Yann Sagon +# License:: MIT/GPL +# $Id$ +# +## + +easyblock = 'ConfigureMake' + +name = 'MaSuRCA' +version = '3.2.2' + +homepage = 'http://www.genome.umd.edu/masurca.html' + +description = '''MaSuRCA is whole genome assembly software. It combines the efficiency of the de Bruijn graph + and Overlap-Layout-Consensus (OLC) approaches. MaSuRCA can assemble data sets containing + only short reads from Illumina sequencing or a mixture of short reads and long reads + (Sanger, 454, Pacbio and Nanopore).''' + +toolchain = {'name': 'foss', 'version': '2016a'} + +buildopts="install-special" +start_dir="global-1" + +#need a temporary url to download it. Do it manually. +source_urls = ['http://www.genome.umd.edu/masurca_form.html'] +sources = ['%(name)s-%(version)s.tar.gz'] + +dependencies = [ + ('libreadline', '6.3'), + ('Tcl', '8.6.3'), + ('Boost', '1.61.0'), + ('zlib', '1.2.8'), +] + +sanity_check_paths = { + 'files': [], + 'dirs': ["bin"], +} + +moduleclass = 'bio' -- GitLab From eb98f583f62a69a35e73ecc52ec4fbbc40cb4cc2 Mon Sep 17 00:00:00 2001 From: Yann Sagon Date: Mon, 12 Jun 2017 17:07:19 +0200 Subject: [PATCH 198/608] typo filename --- .../{MaSuRCA-3.2.2-foss-206a.eb => MaSuRCA-3.2.2-foss-2016a.eb} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename easybuild/easyconfigs/m/MaSuRCA/{MaSuRCA-3.2.2-foss-206a.eb => MaSuRCA-3.2.2-foss-2016a.eb} (100%) diff --git a/easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-206a.eb b/easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-2016a.eb similarity index 100% rename from easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-206a.eb rename to easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-2016a.eb -- GitLab From 843775d27184e4e0d5292a83e886a36ba2c65adc Mon Sep 17 00:00:00 2001 From: Yann Sagon Date: Mon, 12 Jun 2017 17:21:42 +0200 Subject: [PATCH 199/608] fix tcl dep --- easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-2016a.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-2016a.eb b/easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-2016a.eb index 57cbf4b326..56f1d8c0ac 100644 --- a/easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-2016a.eb +++ b/easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-2016a.eb @@ -31,7 +31,7 @@ sources = ['%(name)s-%(version)s.tar.gz'] dependencies = [ ('libreadline', '6.3'), - ('Tcl', '8.6.3'), + ('Tcl', '8.6.5'), ('Boost', '1.61.0'), ('zlib', '1.2.8'), ] -- GitLab From 8a90950abebac4b1d13636fd13ff8aad29faba52 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 12 Jun 2017 17:54:32 +0200 Subject: [PATCH 200/608] remove '4.0' in tbb description --- easybuild/easyconfigs/t/tbb/tbb-2017.2.132.eb | 2 +- easybuild/easyconfigs/t/tbb/tbb-2017.4.174.eb | 2 +- easybuild/easyconfigs/t/tbb/tbb-2017.6.196.eb | 2 +- easybuild/easyconfigs/t/tbb/tbb-4.0.0.233.eb | 2 +- easybuild/easyconfigs/t/tbb/tbb-4.0.5.339.eb | 2 +- easybuild/easyconfigs/t/tbb/tbb-4.3.6.211.eb | 2 +- easybuild/easyconfigs/t/tbb/tbb-4.4.2.152.eb | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/easybuild/easyconfigs/t/tbb/tbb-2017.2.132.eb b/easybuild/easyconfigs/t/tbb/tbb-2017.2.132.eb index c81d846fca..c472a12964 100644 --- a/easybuild/easyconfigs/t/tbb/tbb-2017.2.132.eb +++ b/easybuild/easyconfigs/t/tbb/tbb-2017.2.132.eb @@ -2,7 +2,7 @@ name = 'tbb' version = '2017.2.132' homepage = 'http://software.intel.com/en-us/articles/intel-tbb/' -description = """Intel Threading Building Blocks 4.0 (Intel TBB) +description = """Intel Threading Building Blocks (Intel TBB) is a widely used, award-winning C++ template library for creating reliable, portable, and scalable parallel applications. Use Intel TBB for a simple and rapid way of developing robust task-based diff --git a/easybuild/easyconfigs/t/tbb/tbb-2017.4.174.eb b/easybuild/easyconfigs/t/tbb/tbb-2017.4.174.eb index 925ecf0fc9..3644e3125e 100644 --- a/easybuild/easyconfigs/t/tbb/tbb-2017.4.174.eb +++ b/easybuild/easyconfigs/t/tbb/tbb-2017.4.174.eb @@ -2,7 +2,7 @@ name = 'tbb' version = '2017.4.174' homepage = 'http://software.intel.com/en-us/articles/intel-tbb/' -description = """Intel Threading Building Blocks 4.0 (Intel TBB) +description = """Intel Threading Building Blocks (Intel TBB) is a widely used, award-winning C++ template library for creating reliable, portable, and scalable parallel applications. Use Intel TBB for a simple and rapid way of developing robust task-based diff --git a/easybuild/easyconfigs/t/tbb/tbb-2017.6.196.eb b/easybuild/easyconfigs/t/tbb/tbb-2017.6.196.eb index 458116d68c..8156aab23b 100644 --- a/easybuild/easyconfigs/t/tbb/tbb-2017.6.196.eb +++ b/easybuild/easyconfigs/t/tbb/tbb-2017.6.196.eb @@ -4,7 +4,7 @@ version = '2017.6.196' homepage = 'http://software.intel.com/en-us/articles/intel-tbb/' description = """ - Intel Threading Building Blocks 4.0 (Intel TBB) is a widely used, + Intel Threading Building Blocks (Intel TBB) is a widely used, award-winning C++ template library for creating reliable, portable, and scalable parallel applications. Use Intel TBB for a simple and rapid way of developing robust task-based parallel applications that scale to available diff --git a/easybuild/easyconfigs/t/tbb/tbb-4.0.0.233.eb b/easybuild/easyconfigs/t/tbb/tbb-4.0.0.233.eb index 276beb485d..fe58ba8f6d 100644 --- a/easybuild/easyconfigs/t/tbb/tbb-4.0.0.233.eb +++ b/easybuild/easyconfigs/t/tbb/tbb-4.0.0.233.eb @@ -2,7 +2,7 @@ name = 'tbb' version = '4.0.0.233' homepage = 'http://software.intel.com/en-us/articles/intel-tbb/' -description = """Intel Threading Building Blocks 4.0 (Intel TBB) +description = """Intel Threading Building Blocks (Intel TBB) is a widely used, award-winning C++ template library for creating reliable, portable, and scalable parallel applications. Use Intel TBB for a simple and rapid way of developing robust task-based diff --git a/easybuild/easyconfigs/t/tbb/tbb-4.0.5.339.eb b/easybuild/easyconfigs/t/tbb/tbb-4.0.5.339.eb index 88a0f19397..db524b2407 100644 --- a/easybuild/easyconfigs/t/tbb/tbb-4.0.5.339.eb +++ b/easybuild/easyconfigs/t/tbb/tbb-4.0.5.339.eb @@ -2,7 +2,7 @@ name = 'tbb' version = '4.0.5.339' homepage = 'http://software.intel.com/en-us/articles/intel-tbb/' -description = """Intel Threading Building Blocks 4.0 (Intel TBB) +description = """Intel Threading Building Blocks (Intel TBB) is a widely used, award-winning C++ template library for creating reliable, portable, and scalable parallel applications. Use Intel TBB for a simple and rapid way of developing robust task-based diff --git a/easybuild/easyconfigs/t/tbb/tbb-4.3.6.211.eb b/easybuild/easyconfigs/t/tbb/tbb-4.3.6.211.eb index bf885c9389..8f93bdda02 100644 --- a/easybuild/easyconfigs/t/tbb/tbb-4.3.6.211.eb +++ b/easybuild/easyconfigs/t/tbb/tbb-4.3.6.211.eb @@ -2,7 +2,7 @@ name = 'tbb' version = '4.3.6.211' homepage = 'http://software.intel.com/en-us/articles/intel-tbb/' -description = """Intel Threading Building Blocks 4.0 (Intel TBB) +description = """Intel Threading Building Blocks (Intel TBB) is a widely used, award-winning C++ template library for creating reliable, portable, and scalable parallel applications. Use Intel TBB for a simple and rapid way of developing robust task-based diff --git a/easybuild/easyconfigs/t/tbb/tbb-4.4.2.152.eb b/easybuild/easyconfigs/t/tbb/tbb-4.4.2.152.eb index c5d8deaf1f..11fd6f658a 100644 --- a/easybuild/easyconfigs/t/tbb/tbb-4.4.2.152.eb +++ b/easybuild/easyconfigs/t/tbb/tbb-4.4.2.152.eb @@ -2,7 +2,7 @@ name = 'tbb' version = '4.4.2.152' homepage = 'http://software.intel.com/en-us/articles/intel-tbb/' -description = """Intel Threading Building Blocks 4.0 (Intel TBB) +description = """Intel Threading Building Blocks (Intel TBB) is a widely used, award-winning C++ template library for creating reliable, portable, and scalable parallel applications. Use Intel TBB for a simple and rapid way of developing robust task-based -- GitLab From 988ceabc4b734b57bb6920fdc0fd22dd03fe0824 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 12 Jun 2017 17:55:21 +0200 Subject: [PATCH 201/608] adding easyconfigs: basemap-1.0.7-intel-2017a-Python-2.7.13.eb, PIL-1.1.7-intel-2017a-Python-2.7.13.eb --- ...basemap-1.0.7-intel-2017a-Python-2.7.13.eb | 32 +++++++++++++++++++ .../PIL-1.1.7-intel-2017a-Python-2.7.13.eb | 32 +++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 easybuild/easyconfigs/b/basemap/basemap-1.0.7-intel-2017a-Python-2.7.13.eb create mode 100644 easybuild/easyconfigs/p/PIL/PIL-1.1.7-intel-2017a-Python-2.7.13.eb diff --git a/easybuild/easyconfigs/b/basemap/basemap-1.0.7-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/b/basemap/basemap-1.0.7-intel-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..69a5b6b4c4 --- /dev/null +++ b/easybuild/easyconfigs/b/basemap/basemap-1.0.7-intel-2017a-Python-2.7.13.eb @@ -0,0 +1,32 @@ +easyblock = 'PythonPackage' + +name = 'basemap' +version = '1.0.7' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://matplotlib.org/basemap/' +description = """The matplotlib basemap toolkit is a library for plotting 2D data on maps in Python""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +sources = [SOURCE_TAR_GZ] +source_urls = ['https://downloads.sourceforge.net/project/matplotlib/matplotlib-toolkits/basemap-%(version)s'] + +prebuildopts = 'GEOS_DIR=$EBROOTGEOS' +preinstallopts = prebuildopts + +dependencies = [ + ('Python', '2.7.13'), + ('matplotlib', '2.0.2', versionsuffix + '-libpng-1.6.29'), + ('GEOS', '3.6.1', versionsuffix), + ('PIL', '1.1.7', versionsuffix), +] + +sanity_check_paths = { + 'files': ['lib/python%%(pyshortver)s/site-packages/_geoslib.%s' % SHLIB_EXT], + 'dirs': ['lib/python%(pyshortver)s/site-packages/mpl_toolkits/basemap'] +} + +options = {'modulename': 'mpl_toolkits.basemap'} + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/p/PIL/PIL-1.1.7-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/p/PIL/PIL-1.1.7-intel-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..050e2ce1af --- /dev/null +++ b/easybuild/easyconfigs/p/PIL/PIL-1.1.7-intel-2017a-Python-2.7.13.eb @@ -0,0 +1,32 @@ +easyblock = 'PythonPackage' + +name = 'PIL' +version = '1.1.7' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://www.pythonware.com/products/pil' +description = """The Python Imaging Library (PIL) adds image processing capabilities to your Python interpreter. + This library supports many file formats, and provides powerful image processing and graphics capabilities.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['http://effbot.org/downloads/'] +sources = ['Imaging-%(version)s.tar.gz'] + +patches = ['PIL-%(version)s-find-deps.patch'] + +dependencies = [ + ('zlib', '1.2.11'), + ('Python', '2.7.13'), + ('libjpeg-turbo', '1.5.1'), + ('freetype', '2.7.1', '-libpng-1.6.29'), +] + +options = {'modulename': 'PIL'} + +sanity_check_paths = { + 'files': [], + 'dirs': ['bin', 'lib/python%(pyshortver)s/site-packages/%(name)s'], +} + +moduleclass = 'vis' -- GitLab From 68112e92789b25e551e13ce5ec69384c4fbec105 Mon Sep 17 00:00:00 2001 From: Davide Vanzo Date: Mon, 12 Jun 2017 11:24:32 -0500 Subject: [PATCH 202/608] adding easyconfigs: nettle-3.2-GCCcore-5.4.0.eb --- .../n/nettle/nettle-3.2-GCCcore-5.4.0.eb | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 easybuild/easyconfigs/n/nettle/nettle-3.2-GCCcore-5.4.0.eb diff --git a/easybuild/easyconfigs/n/nettle/nettle-3.2-GCCcore-5.4.0.eb b/easybuild/easyconfigs/n/nettle/nettle-3.2-GCCcore-5.4.0.eb new file mode 100644 index 0000000000..295f442406 --- /dev/null +++ b/easybuild/easyconfigs/n/nettle/nettle-3.2-GCCcore-5.4.0.eb @@ -0,0 +1,30 @@ +easyblock = 'ConfigureMake' + +name = 'nettle' +version = '3.2' + +homepage = 'http://www.lysator.liu.se/~nisse/nettle/' +description = """Nettle is a cryptographic library that is designed to fit easily + in more or less any context: In crypto toolkits for object-oriented + languages (C++, Python, Pike, ...), in applications like LSH or GNUPG, + or even in kernel space.""" + +toolchain = {'name': 'GCCcore', 'version': '5.4.0'} + +source_urls = [GNU_SOURCE] +sources = [SOURCE_TAR_GZ] + +builddependencies = [('binutils', '2.26', '', True)] + +dependencies = [ + ('GMP', '6.1.1'), +] + +sanity_check_paths = { + 'files': ['bin/%s' % x for x in ['nettle-hash', 'nettle-lfib-stream', 'pkcs1-conv', 'sexp-conv']] + + [('lib/libhogweed.a', 'lib64/libhogweed.a'), ('lib/libhogweed.%s' % SHLIB_EXT, 'lib64/libhogweed.%s' % SHLIB_EXT), + ('lib/libnettle.a', 'lib64/libnettle.a'), ('lib/libnettle.%s' % SHLIB_EXT, 'lib64/libnettle.%s' % SHLIB_EXT)], + 'dirs': ['include/nettle'], +} + +moduleclass = 'lib' -- GitLab From 350b9c5778715a22f782d9453d046bbc9a80ff47 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Wed, 14 Jun 2017 13:51:24 +1200 Subject: [PATCH 203/608] Do a serial build so that Convert::Binary::C compiles --- easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a-mt.eb | 7 +++++-- easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a.eb | 2 ++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a-mt.eb b/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a-mt.eb index 7b23b1c105..3fb8ef382e 100644 --- a/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a-mt.eb +++ b/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a-mt.eb @@ -14,10 +14,13 @@ dependencies = [ ('SQLite', '3.8.9'), # for DBD::SQLite module ('expat', '2.1.0'), # for XML::Parser I think ('libxml2', '2.9.2'), # for XML::LibXML - ] +] source_urls = ['http://www.cpan.org/src/5.0'] sources = [SOURCELOWER_TAR_GZ] + +maxparallel = 1 + #runtest = 'test' exts_list = [ @@ -32,7 +35,7 @@ exts_list = [ ('local::lib', '2.000011', { 'source_tmpl': 'local-lib-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/E/ET/ETHER/'], - ):, + }), ('IO::String', '1.08', { 'source_tmpl': 'IO-String-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/G/GA/GAAS/'], diff --git a/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a.eb b/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a.eb index b4c631de0e..519a5ec0ca 100644 --- a/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a.eb +++ b/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a.eb @@ -18,6 +18,8 @@ dependencies = [ source_urls = ['http://www.cpan.org/src/5.0'] sources = [SOURCELOWER_TAR_GZ] +maxparallel = 1 + exts_list = [ ('Module::Build', '0.4210', { # std module but recent BioPerl needs a recent version for some reason 'source_tmpl': 'Module-Build-%(version)s.tar.gz', -- GitLab From 6832dc15184789421d72664619744c5a8c410b2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Wed, 14 Jun 2017 11:17:37 +0200 Subject: [PATCH 204/608] Add GD 2.66 with updated dependencies --- .../g/GD/GD-2.66-foss-2016b-Perl-5.24.0.eb | 31 +++++++++++++++++++ .../l/libgd/libgd-2.2.4-foss-2016b.eb | 30 ++++++++++++++++++ .../l/libpng/libpng-1.6.29-foss-2016b.eb | 30 ++++++++++++++++++ 3 files changed, 91 insertions(+) create mode 100644 easybuild/easyconfigs/g/GD/GD-2.66-foss-2016b-Perl-5.24.0.eb create mode 100644 easybuild/easyconfigs/l/libgd/libgd-2.2.4-foss-2016b.eb create mode 100644 easybuild/easyconfigs/l/libpng/libpng-1.6.29-foss-2016b.eb diff --git a/easybuild/easyconfigs/g/GD/GD-2.66-foss-2016b-Perl-5.24.0.eb b/easybuild/easyconfigs/g/GD/GD-2.66-foss-2016b-Perl-5.24.0.eb new file mode 100644 index 0000000000..d3f08d5c1c --- /dev/null +++ b/easybuild/easyconfigs/g/GD/GD-2.66-foss-2016b-Perl-5.24.0.eb @@ -0,0 +1,31 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild + +easyblock = 'PerlModule' + +name = 'GD' +version = '2.66' +versionsuffix = '-Perl-%(perlver)s' + +homepage = 'https://github.com/lstein/Perl-GD' +description = """GD.pm - Interface to Gd Graphics Library""" + +toolchain = {'name': 'foss', 'version': '2016b'} + +source_urls = ['https://github.com/lstein/Perl-GD/archive/'] +sources = ['release_%(version_major)s_%(version_minor)s.tar.gz'] + +checksums = ['47a1388f3364e70dd2eaab072d127835'] + +dependencies = [ + ('Perl', '5.24.0'), + ('libgd', '2.2.4'), + ('libpng', '1.6.27'), + ('libjpeg-turbo', '1.5.0'), +] + +sanity_check_paths = { + 'files': ['bin/bdf2gdfont.pl', 'lib/perl5/site_perl/%(perlver)s/x86_64-linux-thread-multi/%(name)s.pm'], + 'dirs': ['lib/perl5/site_perl/%(perlver)s/x86_64-linux-thread-multi/%(name)s'], +} + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/l/libgd/libgd-2.2.4-foss-2016b.eb b/easybuild/easyconfigs/l/libgd/libgd-2.2.4-foss-2016b.eb new file mode 100644 index 0000000000..e46a716330 --- /dev/null +++ b/easybuild/easyconfigs/l/libgd/libgd-2.2.4-foss-2016b.eb @@ -0,0 +1,30 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild + +easyblock = 'ConfigureMake' + +name = 'libgd' +version = '2.2.4' + +homepage = 'http://libgd.bitbucket.org/' +description = """GD is an open source code library for the dynamic creation of images by programmers.""" + +toolchain = {'name': 'foss', 'version': '2016b'} + +source_urls = ['https://github.com/libgd/libgd/releases/download/gd-%(version)s/'] +sources = [SOURCELOWER_TAR_GZ] + +checksums = ['0a3c307b5075edbe1883543dd1153c02'] + +dependencies = [ + ('fontconfig', '2.12.1'), + ('libjpeg-turbo', '1.5.0'), + ('libpng', '1.6.27'), + ('zlib', '1.2.8'), +] + +sanity_check_paths = { + 'files': ['lib/libgd.a', 'lib/libgd.%s' % SHLIB_EXT], + 'dirs': ['bin', 'include'], +} + +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/l/libpng/libpng-1.6.29-foss-2016b.eb b/easybuild/easyconfigs/l/libpng/libpng-1.6.29-foss-2016b.eb new file mode 100644 index 0000000000..33cd96fc7f --- /dev/null +++ b/easybuild/easyconfigs/l/libpng/libpng-1.6.29-foss-2016b.eb @@ -0,0 +1,30 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild + +easyblock = 'ConfigureMake' + +name = 'libpng' +version = '1.6.29' + +homepage = 'http://www.libpng.org/pub/png/libpng.html' +description = """libpng is the official PNG reference library""" + +toolchain = {'name': 'foss', 'version': '2016b'} +toolchainopts = {'pic': True} + +source_urls = [SOURCEFORGE_SOURCE] +sources = [SOURCELOWER_TAR_GZ] + +checksums = ['68553080685f812d1dd7a6b8215c37d8'] + +dependencies = [('zlib', '1.2.8')] + +configopts = '--with-pic' + +majminver = ''.join(version.split('.')[:2]) +sanity_check_paths = { + 'files': ['include/pngconf.h', 'include/png.h', 'include/pnglibconf.h', 'lib/libpng.a', + 'lib/libpng.%s' % SHLIB_EXT, 'lib/libpng%s.a' % majminver, 'lib/libpng%s.%s' % (majminver, SHLIB_EXT)], + 'dirs': ['bin', 'include/libpng%s' % majminver, 'share/man'], +} + +moduleclass = 'lib' -- GitLab From 1c51fbdd60ad6a40931aac70d8b5b1c15f1859a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Wed, 14 Jun 2017 11:43:08 +0200 Subject: [PATCH 205/608] Fix version of libpng used --- easybuild/easyconfigs/g/GD/GD-2.66-foss-2016b-Perl-5.24.0.eb | 2 +- easybuild/easyconfigs/l/libgd/libgd-2.2.4-foss-2016b.eb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/g/GD/GD-2.66-foss-2016b-Perl-5.24.0.eb b/easybuild/easyconfigs/g/GD/GD-2.66-foss-2016b-Perl-5.24.0.eb index d3f08d5c1c..523435b933 100644 --- a/easybuild/easyconfigs/g/GD/GD-2.66-foss-2016b-Perl-5.24.0.eb +++ b/easybuild/easyconfigs/g/GD/GD-2.66-foss-2016b-Perl-5.24.0.eb @@ -19,7 +19,7 @@ checksums = ['47a1388f3364e70dd2eaab072d127835'] dependencies = [ ('Perl', '5.24.0'), ('libgd', '2.2.4'), - ('libpng', '1.6.27'), + ('libpng', '1.6.29'), ('libjpeg-turbo', '1.5.0'), ] diff --git a/easybuild/easyconfigs/l/libgd/libgd-2.2.4-foss-2016b.eb b/easybuild/easyconfigs/l/libgd/libgd-2.2.4-foss-2016b.eb index e46a716330..5e8f0d2bfb 100644 --- a/easybuild/easyconfigs/l/libgd/libgd-2.2.4-foss-2016b.eb +++ b/easybuild/easyconfigs/l/libgd/libgd-2.2.4-foss-2016b.eb @@ -18,7 +18,7 @@ checksums = ['0a3c307b5075edbe1883543dd1153c02'] dependencies = [ ('fontconfig', '2.12.1'), ('libjpeg-turbo', '1.5.0'), - ('libpng', '1.6.27'), + ('libpng', '1.6.29'), ('zlib', '1.2.8'), ] -- GitLab From 017ed7ef5666cd18dbd8f2a707318374d5a52428 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Wed, 14 Jun 2017 12:42:45 +0200 Subject: [PATCH 206/608] Revert to libpng version 1.6.24 --- .../g/GD/GD-2.66-foss-2016b-Perl-5.24.0.eb | 2 +- .../l/libgd/libgd-2.2.4-foss-2016b.eb | 2 +- .../l/libpng/libpng-1.6.29-foss-2016b.eb | 30 ------------------- 3 files changed, 2 insertions(+), 32 deletions(-) delete mode 100644 easybuild/easyconfigs/l/libpng/libpng-1.6.29-foss-2016b.eb diff --git a/easybuild/easyconfigs/g/GD/GD-2.66-foss-2016b-Perl-5.24.0.eb b/easybuild/easyconfigs/g/GD/GD-2.66-foss-2016b-Perl-5.24.0.eb index 523435b933..88f756e1ce 100644 --- a/easybuild/easyconfigs/g/GD/GD-2.66-foss-2016b-Perl-5.24.0.eb +++ b/easybuild/easyconfigs/g/GD/GD-2.66-foss-2016b-Perl-5.24.0.eb @@ -19,7 +19,7 @@ checksums = ['47a1388f3364e70dd2eaab072d127835'] dependencies = [ ('Perl', '5.24.0'), ('libgd', '2.2.4'), - ('libpng', '1.6.29'), + ('libpng', '1.6.24'), ('libjpeg-turbo', '1.5.0'), ] diff --git a/easybuild/easyconfigs/l/libgd/libgd-2.2.4-foss-2016b.eb b/easybuild/easyconfigs/l/libgd/libgd-2.2.4-foss-2016b.eb index 5e8f0d2bfb..36c51236e2 100644 --- a/easybuild/easyconfigs/l/libgd/libgd-2.2.4-foss-2016b.eb +++ b/easybuild/easyconfigs/l/libgd/libgd-2.2.4-foss-2016b.eb @@ -18,7 +18,7 @@ checksums = ['0a3c307b5075edbe1883543dd1153c02'] dependencies = [ ('fontconfig', '2.12.1'), ('libjpeg-turbo', '1.5.0'), - ('libpng', '1.6.29'), + ('libpng', '1.6.24'), ('zlib', '1.2.8'), ] diff --git a/easybuild/easyconfigs/l/libpng/libpng-1.6.29-foss-2016b.eb b/easybuild/easyconfigs/l/libpng/libpng-1.6.29-foss-2016b.eb deleted file mode 100644 index 33cd96fc7f..0000000000 --- a/easybuild/easyconfigs/l/libpng/libpng-1.6.29-foss-2016b.eb +++ /dev/null @@ -1,30 +0,0 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild - -easyblock = 'ConfigureMake' - -name = 'libpng' -version = '1.6.29' - -homepage = 'http://www.libpng.org/pub/png/libpng.html' -description = """libpng is the official PNG reference library""" - -toolchain = {'name': 'foss', 'version': '2016b'} -toolchainopts = {'pic': True} - -source_urls = [SOURCEFORGE_SOURCE] -sources = [SOURCELOWER_TAR_GZ] - -checksums = ['68553080685f812d1dd7a6b8215c37d8'] - -dependencies = [('zlib', '1.2.8')] - -configopts = '--with-pic' - -majminver = ''.join(version.split('.')[:2]) -sanity_check_paths = { - 'files': ['include/pngconf.h', 'include/png.h', 'include/pnglibconf.h', 'lib/libpng.a', - 'lib/libpng.%s' % SHLIB_EXT, 'lib/libpng%s.a' % majminver, 'lib/libpng%s.%s' % (majminver, SHLIB_EXT)], - 'dirs': ['bin', 'include/libpng%s' % majminver, 'share/man'], -} - -moduleclass = 'lib' -- GitLab From 4b8bb3ddb4152e00e335701e11675fe9d06d903b Mon Sep 17 00:00:00 2001 From: Yann Sagon Date: Wed, 14 Jun 2017 14:20:39 +0200 Subject: [PATCH 207/608] changes according to requests --- .../m/MaSuRCA/MaSuRCA-3.2.2-foss-2016a.eb | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-2016a.eb b/easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-2016a.eb index 56f1d8c0ac..98a1ad1c1c 100644 --- a/easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-2016a.eb +++ b/easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-2016a.eb @@ -20,13 +20,8 @@ description = '''MaSuRCA is whole genome assembly software. It combines the effi only short reads from Illumina sequencing or a mixture of short reads and long reads (Sanger, 454, Pacbio and Nanopore).''' -toolchain = {'name': 'foss', 'version': '2016a'} - -buildopts="install-special" -start_dir="global-1" - -#need a temporary url to download it. Do it manually. -source_urls = ['http://www.genome.umd.edu/masurca_form.html'] +# need a temporary url to download it. Do it manually here: +# http://www.genome.umd.edu/masurca_form.html sources = ['%(name)s-%(version)s.tar.gz'] dependencies = [ @@ -36,9 +31,14 @@ dependencies = [ ('zlib', '1.2.8'), ] +toolchain = {'name': 'foss', 'version': '2016a'} + +buildopts="install-special" +start_dir="global-1" + sanity_check_paths = { - 'files': [], - 'dirs': ["bin"], + 'files': ['bin/masurca'], + 'dirs': ['include', 'lib'], } moduleclass = 'bio' -- GitLab From f9a8f455e5ed87849c0c64fccf237fd2b94ef138 Mon Sep 17 00:00:00 2001 From: Yann Sagon Date: Thu, 15 Jun 2017 14:00:40 +0200 Subject: [PATCH 208/608] fix style --- easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-2016a.eb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-2016a.eb b/easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-2016a.eb index 98a1ad1c1c..6a0e136d4e 100644 --- a/easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-2016a.eb +++ b/easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-2016a.eb @@ -20,6 +20,8 @@ description = '''MaSuRCA is whole genome assembly software. It combines the effi only short reads from Illumina sequencing or a mixture of short reads and long reads (Sanger, 454, Pacbio and Nanopore).''' +toolchain = {'name': 'foss', 'version': '2016a'} + # need a temporary url to download it. Do it manually here: # http://www.genome.umd.edu/masurca_form.html sources = ['%(name)s-%(version)s.tar.gz'] @@ -31,8 +33,6 @@ dependencies = [ ('zlib', '1.2.8'), ] -toolchain = {'name': 'foss', 'version': '2016a'} - buildopts="install-special" start_dir="global-1" -- GitLab From b7409f13627bfe1b8029994ca75da65e9cb8b420 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Thu, 15 Jun 2017 15:04:16 +0200 Subject: [PATCH 209/608] Change URL to github.io --- easybuild/easyconfigs/l/libgd/libgd-2.2.4-foss-2016b.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/l/libgd/libgd-2.2.4-foss-2016b.eb b/easybuild/easyconfigs/l/libgd/libgd-2.2.4-foss-2016b.eb index 36c51236e2..5856a57c8d 100644 --- a/easybuild/easyconfigs/l/libgd/libgd-2.2.4-foss-2016b.eb +++ b/easybuild/easyconfigs/l/libgd/libgd-2.2.4-foss-2016b.eb @@ -5,7 +5,7 @@ easyblock = 'ConfigureMake' name = 'libgd' version = '2.2.4' -homepage = 'http://libgd.bitbucket.org/' +homepage = 'https://libgd.github.io' description = """GD is an open source code library for the dynamic creation of images by programmers.""" toolchain = {'name': 'foss', 'version': '2016b'} -- GitLab From 54b9e5721079cf268683e14783e5b3514611ff0d Mon Sep 17 00:00:00 2001 From: Robert Date: Thu, 15 Jun 2017 22:49:32 +0930 Subject: [PATCH 210/608] error fixed --- .../o/OrfM/OrfM-0.6.1-foss-2016b.eb | 1 - easybuild/easyconfigs/s/SEED/SEED-2015.eb | 36 ------------------- 2 files changed, 37 deletions(-) delete mode 100644 easybuild/easyconfigs/s/SEED/SEED-2015.eb diff --git a/easybuild/easyconfigs/o/OrfM/OrfM-0.6.1-foss-2016b.eb b/easybuild/easyconfigs/o/OrfM/OrfM-0.6.1-foss-2016b.eb index ae95bf0649..5a1afb1351 100644 --- a/easybuild/easyconfigs/o/OrfM/OrfM-0.6.1-foss-2016b.eb +++ b/easybuild/easyconfigs/o/OrfM/OrfM-0.6.1-foss-2016b.eb @@ -13,7 +13,6 @@ easyblock = 'ConfigureMake' name = 'OrfM' version = '0.6.1' -namelower = 'orfm' homepage = 'https://github.com/wwood/OrfM' description = """A simple and not slow open reading frame (ORF) caller. diff --git a/easybuild/easyconfigs/s/SEED/SEED-2015.eb b/easybuild/easyconfigs/s/SEED/SEED-2015.eb deleted file mode 100644 index b186b85f21..0000000000 --- a/easybuild/easyconfigs/s/SEED/SEED-2015.eb +++ /dev/null @@ -1,36 +0,0 @@ -## -# This is a contribution from Phoenix HPC Service, The University of Adelaide, Australia -# Homepage: https://www.adelaide.edu.au/phoenix/ -# -# Copyright:: Copyright 2014-2017 adelaide.edu.au/phoenix -# Authors:: Robert Qiao , Exequiel Sepulveda -# License:: Artistic-v2.0 -# -# Notes:: -## - -easyblock = 'CmdCp' - -name = 'SEED' -version = '2015' - -homepage = 'http://www.theseed.org/wiki/Main_Page' -description = """ SEED is a software for clustering large sets of Next Generation Sequences (NGS) -with hundreds of millions of reads in a time and memory efficient manner. -Its algorithm joins highly similar sequences into clusters that can differ -by up to three mismatches and three overhanging residues. -""" - -toolchain = {'name': 'dummy', 'version': 'dummy'} - -sources = ['master.zip'] -source_urls = ['https://github.com/baoe/SEED/archive'] - -files_to_copy = (['SEED/SEED'], 'bin'), - -sanity_check_paths = { - 'files': ["bin/SEED"], - 'dirs': [], -} - -moduleclass = 'bio' -- GitLab From 0a472f8ad884c8ffd5be2a6f13767c8a7c040644 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Fri, 16 Jun 2017 12:10:42 +1200 Subject: [PATCH 211/608] New EasyConfig for expat 2.2.0 with the gimkl-2017a toolchain --- .../e/expat/expat-2.2.0-gimkl-2017a.eb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 easybuild/easyconfigs/e/expat/expat-2.2.0-gimkl-2017a.eb diff --git a/easybuild/easyconfigs/e/expat/expat-2.2.0-gimkl-2017a.eb b/easybuild/easyconfigs/e/expat/expat-2.2.0-gimkl-2017a.eb new file mode 100644 index 0000000000..555f4a3da3 --- /dev/null +++ b/easybuild/easyconfigs/e/expat/expat-2.2.0-gimkl-2017a.eb @@ -0,0 +1,16 @@ +easyblock = 'ConfigureMake' + +name = 'expat' +version = '2.2.0' + +homepage = 'http://expat.sourceforge.net/' +description = """Expat is an XML parser library written in C. It is a stream-oriented parser in which an application + registers handlers for things the parser might find in the XML document (like start tags)""" + +toolchain = {'name': 'gimkl', 'version': '2017a'} +toolchainopts = {'pic': True} + +sources = [SOURCELOWER_TAR_BZ2] +source_urls = [SOURCEFORGE_SOURCE] + +moduleclass = 'tools' -- GitLab From 6737a5e9ec0be4f3edd006a2031494e1014f6aa6 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Fri, 16 Jun 2017 12:14:22 +1200 Subject: [PATCH 212/608] Adjusted source URL per request from K.H. --- easybuild/easyconfigs/z/zlib/zlib-1.2.11-gimkl-2017a.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/z/zlib/zlib-1.2.11-gimkl-2017a.eb b/easybuild/easyconfigs/z/zlib/zlib-1.2.11-gimkl-2017a.eb index 1362fe53c9..1346eea81c 100644 --- a/easybuild/easyconfigs/z/zlib/zlib-1.2.11-gimkl-2017a.eb +++ b/easybuild/easyconfigs/z/zlib/zlib-1.2.11-gimkl-2017a.eb @@ -12,7 +12,7 @@ toolchain = {'version': '2017a', 'name': 'gimkl'} toolchainopts = {'pic': True} sources = [SOURCELOWER_TAR_GZ] -source_urls = [('http://sourceforge.net/projects/libpng/files/zlib/%(version)s', 'download')] +source_urls = ['http://zlib.net/fossils'] sanity_check_paths = { 'files': ['include/zconf.h', 'include/zlib.h', 'lib/libz.a', 'lib/libz.%s' % SHLIB_EXT], -- GitLab From e10ae8dc4da3d2f0cb1709678aad65933d5e464b Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Fri, 16 Jun 2017 12:17:38 +1200 Subject: [PATCH 213/608] Adjusted indenting on two lines per request from K.H. --- .../easyconfigs/l/libreadline/libreadline-6.3-gimkl-2017a.eb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/l/libreadline/libreadline-6.3-gimkl-2017a.eb b/easybuild/easyconfigs/l/libreadline/libreadline-6.3-gimkl-2017a.eb index 3c72c2c527..375e6cccf2 100644 --- a/easybuild/easyconfigs/l/libreadline/libreadline-6.3-gimkl-2017a.eb +++ b/easybuild/easyconfigs/l/libreadline/libreadline-6.3-gimkl-2017a.eb @@ -24,8 +24,8 @@ preconfigopts = "env LDFLAGS='-lncurses'" sanity_check_paths = { 'files': ['lib/libreadline.a', 'lib/libhistory.a'] + - ['include/readline/%s' % x for x in ['chardefs.h', 'history.h', 'keymaps.h', 'readline.h', 'rlconf.h', - 'rlstdc.h', 'rltypedefs.h', 'tilde.h']], + ['include/readline/%s' % x for x in ['chardefs.h', 'history.h', 'keymaps.h', 'readline.h', 'rlconf.h', + 'rlstdc.h', 'rltypedefs.h', 'tilde.h']], 'dirs': [], } -- GitLab From 7deaa57c95bb3806bb2d2399ecd53db3b2e76300 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Fri, 16 Jun 2017 12:25:44 +1200 Subject: [PATCH 214/608] Patch for XZ requested by K.H. to avoid breaking rpm --- easybuild/easyconfigs/x/XZ/XZ-5.2.3-gimkl-2017a.eb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/easybuild/easyconfigs/x/XZ/XZ-5.2.3-gimkl-2017a.eb b/easybuild/easyconfigs/x/XZ/XZ-5.2.3-gimkl-2017a.eb index 4b1d474ab3..8d7242f13f 100644 --- a/easybuild/easyconfigs/x/XZ/XZ-5.2.3-gimkl-2017a.eb +++ b/easybuild/easyconfigs/x/XZ/XZ-5.2.3-gimkl-2017a.eb @@ -11,6 +11,8 @@ toolchain = {'version': '2017a', 'name': 'gimkl'} sources = [SOURCELOWER_TAR_BZ2] source_urls = ['http://tukaani.org/xz/'] +patches = ['XZ-5.2.2_compat-libs.patch'] + # non-toolchain gettext because otherwise there is a circular dependency: # XZ (presumably its executables) depends on gettext, which depends on # xmllib2, which depends (optionally) on XZ -- GitLab From 744ace0a17291f13f3d30cd85cb943d2eb128f22 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Fri, 16 Jun 2017 13:15:25 +1200 Subject: [PATCH 215/608] New EasyConfig for cURL 7.52.1 with the gimkl-2017a toolchain --- .../c/cURL/cURL-7.52.1-gimkl-2017a.eb | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 easybuild/easyconfigs/c/cURL/cURL-7.52.1-gimkl-2017a.eb diff --git a/easybuild/easyconfigs/c/cURL/cURL-7.52.1-gimkl-2017a.eb b/easybuild/easyconfigs/c/cURL/cURL-7.52.1-gimkl-2017a.eb new file mode 100644 index 0000000000..85452813a1 --- /dev/null +++ b/easybuild/easyconfigs/c/cURL/cURL-7.52.1-gimkl-2017a.eb @@ -0,0 +1,28 @@ +easyblock = 'ConfigureMake' + +name = 'cURL' +version = '7.52.1' + +homepage = 'http://curl.haxx.se' +description = """libcurl is a free and easy-to-use client-side URL transfer library, + supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, + POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports + SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, + proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, + Kerberos), file transfer resume, http proxy tunneling and more.""" + +toolchain = {'name': 'gimkl', 'version': '2017a'} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = ['http://curl.haxx.se/download/'] + +osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')] + +modextravars = {'CURL_INCLUDES': '%(installdir)s/include'} + +sanity_check_paths = { + 'files': ['bin/curl', 'lib/libcurl.a', 'lib/libcurl.%s' % SHLIB_EXT], + 'dirs': ['lib/pkgconfig'], +} + +moduleclass = 'tools' -- GitLab From b88b6a34589d8b5f53f42be33e798f758ccf95af Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Fri, 16 Jun 2017 13:34:02 +1200 Subject: [PATCH 216/608] New EasyConfig for FFmpeg 3.2.4 with the gimkl 2017a toolchain (plus dependencies) --- .../f/FFmpeg/FFmpeg-3.2.4-gimkl-2017a.eb | 30 ++++++++++++++++++ easybuild/easyconfigs/n/NASM/NASM-2.12.02.eb | 31 +++++++++++++++++++ .../x/x264/x264-20170406-gimkl-2017a.eb | 27 ++++++++++++++++ .../y/Yasm/Yasm-1.3.0-gimkl-2017a.eb | 31 +++++++++++++++++++ 4 files changed, 119 insertions(+) create mode 100644 easybuild/easyconfigs/f/FFmpeg/FFmpeg-3.2.4-gimkl-2017a.eb create mode 100644 easybuild/easyconfigs/n/NASM/NASM-2.12.02.eb create mode 100644 easybuild/easyconfigs/x/x264/x264-20170406-gimkl-2017a.eb create mode 100644 easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-gimkl-2017a.eb diff --git a/easybuild/easyconfigs/f/FFmpeg/FFmpeg-3.2.4-gimkl-2017a.eb b/easybuild/easyconfigs/f/FFmpeg/FFmpeg-3.2.4-gimkl-2017a.eb new file mode 100644 index 0000000000..2070339683 --- /dev/null +++ b/easybuild/easyconfigs/f/FFmpeg/FFmpeg-3.2.4-gimkl-2017a.eb @@ -0,0 +1,30 @@ +easyblock = 'ConfigureMake' + +name = 'FFmpeg' +version = '3.2.4' + +homepage = 'https://www.ffmpeg.org/' +description = """A complete, cross-platform solution to record, convert and stream audio and video.""" + +toolchain = {'name': 'gimkl', 'version': '2017a'} + +sources = [SOURCELOWER_TAR_BZ2] +source_urls = ['http://ffmpeg.org/releases/'] + +dependencies = [ + ('NASM', '2.12.02', '', True), + ('x264', '20170406'), + ('X11', '20170129'), # pulls in bzip2 and zlib +] + +configopts = '--enable-pic --enable-shared --enable-gpl --enable-version3 --enable-nonfree --cc="$CC" --cxx="$CXX" ' +configopts += '--enable-libx264' + +sanity_check_paths = { + 'files': ['bin/ff%s' % x for x in ['mpeg', 'probe', 'server']] + + ['lib/lib%s.%s' % (x, y) for x in ['avdevice', 'avfilter', 'avformat', 'avcodec', 'postproc', + 'swresample', 'swscale', 'avutil'] for y in [SHLIB_EXT, 'a']], + 'dirs': ['include'] +} + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.12.02.eb b/easybuild/easyconfigs/n/NASM/NASM-2.12.02.eb new file mode 100644 index 0000000000..b96d1d70fb --- /dev/null +++ b/easybuild/easyconfigs/n/NASM/NASM-2.12.02.eb @@ -0,0 +1,31 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# +# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA +# Authors:: Fotis Georgatos +# License:: MIT/GPL +# $Id$ +# +# This work implements a part of the HPCBIOS project and is a component of the policy: +# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-90.html +## + +easyblock = 'ConfigureMake' + +name = 'NASM' +version = '2.12.02' + +homepage = 'http://www.nasm.us/' +description = """NASM: General-purpose x86 assembler""" + +toolchain = {'version': 'dummy', 'name': 'dummy'} + +sources = [SOURCELOWER_TAR_BZ2] +source_urls = ['http://www.nasm.us/pub/nasm/releasebuilds/%(version)s'] + +sanity_check_paths = { + 'files': ['bin/nasm'], + 'dirs': [], +} + +moduleclass = 'lang' diff --git a/easybuild/easyconfigs/x/x264/x264-20170406-gimkl-2017a.eb b/easybuild/easyconfigs/x/x264/x264-20170406-gimkl-2017a.eb new file mode 100644 index 0000000000..38fbb83df0 --- /dev/null +++ b/easybuild/easyconfigs/x/x264/x264-20170406-gimkl-2017a.eb @@ -0,0 +1,27 @@ +easyblock = 'ConfigureMake' + +name = 'x264' +version = '20170406' + +homepage = 'http://www.videolan.org/developers/x264.html' +description = """x264 is a free software library and application for encoding video streams into the H.264/MPEG-4 + AVC compression format, and is released under the terms of the GNU GPL.""" + +toolchain = {'name': 'gimkl', 'version': '2017a'} + +source_urls = [ + 'https://download.videolan.org/pub/videolan/x264/snapshots/', + 'ftp://ftp.videolan.org/pub/videolan/x264/snapshots/', +] +sources = ['x264-snapshot-%(version)s-2245-stable.tar.bz2'] + +dependencies = [('Yasm', '1.3.0')] + +configopts = " --enable-shared --enable-static " + +sanity_check_paths = { + 'files': ['bin/x264', 'include/x264_config.h', 'include/x264.h', 'lib/libx264.a', 'lib/libx264.%s' % SHLIB_EXT], + 'dirs': [], +} + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-gimkl-2017a.eb b/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-gimkl-2017a.eb new file mode 100644 index 0000000000..78f408a971 --- /dev/null +++ b/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-gimkl-2017a.eb @@ -0,0 +1,31 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# +# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA +# Authors:: Fotis Georgatos +# License:: MIT/GPL +# $Id$ +# +# This work implements a part of the HPCBIOS project and is a component of the policy: +# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-90.html +## + +easyblock = 'ConfigureMake' + +name = 'Yasm' +version = '1.3.0' + +homepage = 'http://www.tortall.net/projects/yasm/' +description = """Yasm: Complete rewrite of the NASM assembler with BSD license""" + +toolchain = {'name': 'gimkl', 'version': '2017a'} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = ['http://www.tortall.net/projects/yasm/releases/'] + +sanity_check_paths = { + 'files': ['bin/yasm'], + 'dirs': [], +} + +moduleclass = 'lang' -- GitLab From 606d6664ec88002a1f049f29cdcefc328d874a2b Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Fri, 16 Jun 2017 13:40:12 +1200 Subject: [PATCH 217/608] New EasyConfig for bzip2 1.0.6 with the gimkl-2017a toolchain --- .../b/bzip2/bzip2-1.0.6-gimkl-2017a.eb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 easybuild/easyconfigs/b/bzip2/bzip2-1.0.6-gimkl-2017a.eb diff --git a/easybuild/easyconfigs/b/bzip2/bzip2-1.0.6-gimkl-2017a.eb b/easybuild/easyconfigs/b/bzip2/bzip2-1.0.6-gimkl-2017a.eb new file mode 100644 index 0000000000..e5eb2cbd9d --- /dev/null +++ b/easybuild/easyconfigs/b/bzip2/bzip2-1.0.6-gimkl-2017a.eb @@ -0,0 +1,15 @@ +name = 'bzip2' +version = '1.0.6' + +homepage = 'http://www.bzip.org/' +description = """bzip2 is a freely available, patent free, high-quality data compressor. It typically + compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical + compressors), whilst being around twice as fast at compression and six times faster at decompression.""" + +toolchain = {'version': '2017a', 'name': 'gimkl'} +toolchainopts = {'pic': True} + +sources = [SOURCE_TAR_GZ] +source_urls = ['http://www.bzip.org/%(version)s'] + +moduleclass = 'tools' -- GitLab From 62393710ae97e94c9a25b8f22c1c92ce70cf0a7d Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Fri, 16 Jun 2017 14:45:05 +1200 Subject: [PATCH 218/608] New EasyConfig for libpng 1.6.28 with the gimkl-2017a toolchain --- .../l/libpng/libpng-1.6.28-gimkl-2017a.eb | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 easybuild/easyconfigs/l/libpng/libpng-1.6.28-gimkl-2017a.eb diff --git a/easybuild/easyconfigs/l/libpng/libpng-1.6.28-gimkl-2017a.eb b/easybuild/easyconfigs/l/libpng/libpng-1.6.28-gimkl-2017a.eb new file mode 100644 index 0000000000..64f18118dd --- /dev/null +++ b/easybuild/easyconfigs/l/libpng/libpng-1.6.28-gimkl-2017a.eb @@ -0,0 +1,26 @@ +easyblock = 'ConfigureMake' + +name = 'libpng' +version = "1.6.28" + +homepage = 'http://www.libpng.org/pub/png/libpng.html' +description = "libpng is the official PNG reference library" + +toolchain = {'version': '2017a', 'name': 'gimkl'} +toolchainopts = {'pic': True} + +source_urls = [SOURCEFORGE_SOURCE] +sources = [SOURCELOWER_TAR_GZ] + +dependencies = [('zlib', '1.2.11')] + +configopts = "--with-pic" + +majminver = ''.join(version.split('.')[:2]) +sanity_check_paths = { + 'files': ['include/pngconf.h', 'include/png.h', 'include/pnglibconf.h', 'lib/libpng.a', + 'lib/libpng.%s' % SHLIB_EXT, 'lib/libpng%s.a' % majminver, 'lib/libpng%s.%s' % (majminver, SHLIB_EXT)], + 'dirs': ['bin', 'include/libpng%s' % majminver, 'share/man'], +} + +moduleclass = 'lib' -- GitLab From fa50667be0d65d67726421f60d3a371aa66dbe16 Mon Sep 17 00:00:00 2001 From: Robert Qiao Date: Fri, 16 Jun 2017 16:08:33 +0930 Subject: [PATCH 219/608] format updated --- easybuild/easyconfigs/o/OrfM/OrfM-0.6.1-foss-2016b.eb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/o/OrfM/OrfM-0.6.1-foss-2016b.eb b/easybuild/easyconfigs/o/OrfM/OrfM-0.6.1-foss-2016b.eb index 5a1afb1351..904722c279 100644 --- a/easybuild/easyconfigs/o/OrfM/OrfM-0.6.1-foss-2016b.eb +++ b/easybuild/easyconfigs/o/OrfM/OrfM-0.6.1-foss-2016b.eb @@ -25,8 +25,8 @@ of nucleotide sequences. toolchain = {'name': 'foss', 'version': '2016b'} toolchainopts = {'usempi': True} -sources = ['v%(version)s/%(namelower)s-%(version)s.tar.gz'] -source_urls = ['https://github.com/wwood/OrfM/releases/download'] +sources = ['%(namelower)s-%(version)s.tar.gz'] +source_urls = ['https://github.com/wwood/OrfM/releases/download/v%(version)s'] sanity_check_paths = { 'files': ['bin/orfm'], -- GitLab From 6373bff93ae4157fcbf5d6bdc305902438ebc814 Mon Sep 17 00:00:00 2001 From: Davide Vanzo Date: Fri, 16 Jun 2017 09:54:14 -0500 Subject: [PATCH 220/608] Removed site customizations and redundant options --- .../Python-2.7.12-iccifort-2016.3.210-GCC-5.4.0-2.26-bare.eb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/easybuild/easyconfigs/p/Python/Python-2.7.12-iccifort-2016.3.210-GCC-5.4.0-2.26-bare.eb b/easybuild/easyconfigs/p/Python/Python-2.7.12-iccifort-2016.3.210-GCC-5.4.0-2.26-bare.eb index d9fd114759..78379d4923 100644 --- a/easybuild/easyconfigs/p/Python/Python-2.7.12-iccifort-2016.3.210-GCC-5.4.0-2.26-bare.eb +++ b/easybuild/easyconfigs/p/Python/Python-2.7.12-iccifort-2016.3.210-GCC-5.4.0-2.26-bare.eb @@ -7,7 +7,7 @@ description = """Python is a programming language that lets you work more quickl more effectively.""" toolchain = {'name': 'iccifort', 'version': '2016.3.210-GCC-5.4.0-2.26'} -toolchainopts = {'pic': True, 'opt': True, 'optarch': True} +toolchainopts = {'pic': True} source_urls = ['http://www.python.org/ftp/%(namelower)s/%(version)s/'] sources = [SOURCE_TGZ] @@ -27,8 +27,6 @@ dependencies = [ osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')] -modluafooter = 'family("python")' - # bare installation: no extensions included exts_list = [] -- GitLab From a0ecc32a106c84fd1513530fbed7dd7cf55e8f54 Mon Sep 17 00:00:00 2001 From: Davide Vanzo Date: Fri, 16 Jun 2017 10:49:58 -0500 Subject: [PATCH 221/608] Added lib sanity check paths for debian compatibility --- easybuild/easyconfigs/n/nettle/nettle-2.6-goolf-1.4.10.eb | 4 ++-- easybuild/easyconfigs/n/nettle/nettle-3.1.1-GNU-4.9.3-2.25.eb | 4 ++-- easybuild/easyconfigs/n/nettle/nettle-3.1.1-foss-2016a.eb | 4 ++-- easybuild/easyconfigs/n/nettle/nettle-3.1.1-intel-2016a.eb | 4 ++-- easybuild/easyconfigs/n/nettle/nettle-3.2-foss-2016b.eb | 4 ++-- easybuild/easyconfigs/n/nettle/nettle-3.2-intel-2016b.eb | 4 ++-- easybuild/easyconfigs/n/nettle/nettle-3.3-intel-2017a.eb | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/easybuild/easyconfigs/n/nettle/nettle-2.6-goolf-1.4.10.eb b/easybuild/easyconfigs/n/nettle/nettle-2.6-goolf-1.4.10.eb index b72cd92143..eb26f01e29 100644 --- a/easybuild/easyconfigs/n/nettle/nettle-2.6-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/n/nettle/nettle-2.6-goolf-1.4.10.eb @@ -15,8 +15,8 @@ dependencies = [('GMP', '5.0.5')] sanity_check_paths = { 'files': ['bin/%s' % x for x in ['nettle-hash', 'nettle-lfib-stream', 'pkcs1-conv', 'sexp-conv']] + - ['lib64/libhogweed.a', 'lib64/libhogweed.%s' % SHLIB_EXT, - 'lib64/libnettle.a', 'lib64/libnettle.%s' % SHLIB_EXT], + [('lib/libhogweed.a', 'lib64/libhogweed.a'), ('lib/libhogweed.%s' % SHLIB_EXT, 'lib64/libhogweed.%s' % SHLIB_EXT), + ('lib/libnettle.a', 'lib64/libnettle.a'), ('lib/libnettle.%s' % SHLIB_EXT, 'lib64/libnettle.%s' % SHLIB_EXT)], 'dirs': ['include/nettle'], } diff --git a/easybuild/easyconfigs/n/nettle/nettle-3.1.1-GNU-4.9.3-2.25.eb b/easybuild/easyconfigs/n/nettle/nettle-3.1.1-GNU-4.9.3-2.25.eb index e764834b2d..27c65b25e8 100644 --- a/easybuild/easyconfigs/n/nettle/nettle-3.1.1-GNU-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/n/nettle/nettle-3.1.1-GNU-4.9.3-2.25.eb @@ -20,8 +20,8 @@ dependencies = [ sanity_check_paths = { 'files': ['bin/%s' % x for x in ['nettle-hash', 'nettle-lfib-stream', 'pkcs1-conv', 'sexp-conv']] + - ['lib64/libhogweed.a', 'lib64/libhogweed.%s' % SHLIB_EXT, - 'lib64/libnettle.a', 'lib64/libnettle.%s' % SHLIB_EXT], + [('lib/libhogweed.a', 'lib64/libhogweed.a'), ('lib/libhogweed.%s' % SHLIB_EXT, 'lib64/libhogweed.%s' % SHLIB_EXT), + ('lib/libnettle.a', 'lib64/libnettle.a'), ('lib/libnettle.%s' % SHLIB_EXT, 'lib64/libnettle.%s' % SHLIB_EXT)], 'dirs': ['include/nettle'], } diff --git a/easybuild/easyconfigs/n/nettle/nettle-3.1.1-foss-2016a.eb b/easybuild/easyconfigs/n/nettle/nettle-3.1.1-foss-2016a.eb index fc3be53324..f658dc22c5 100644 --- a/easybuild/easyconfigs/n/nettle/nettle-3.1.1-foss-2016a.eb +++ b/easybuild/easyconfigs/n/nettle/nettle-3.1.1-foss-2016a.eb @@ -20,8 +20,8 @@ dependencies = [ sanity_check_paths = { 'files': ['bin/%s' % x for x in ['nettle-hash', 'nettle-lfib-stream', 'pkcs1-conv', 'sexp-conv']] + - ['lib64/libhogweed.a', 'lib64/libhogweed.%s' % SHLIB_EXT, - 'lib64/libnettle.a', 'lib64/libnettle.%s' % SHLIB_EXT], + [('lib/libhogweed.a', 'lib64/libhogweed.a'), ('lib/libhogweed.%s' % SHLIB_EXT, 'lib64/libhogweed.%s' % SHLIB_EXT), + ('lib/libnettle.a', 'lib64/libnettle.a'), ('lib/libnettle.%s' % SHLIB_EXT, 'lib64/libnettle.%s' % SHLIB_EXT)], 'dirs': ['include/nettle'], } diff --git a/easybuild/easyconfigs/n/nettle/nettle-3.1.1-intel-2016a.eb b/easybuild/easyconfigs/n/nettle/nettle-3.1.1-intel-2016a.eb index c725853009..b0fd192537 100644 --- a/easybuild/easyconfigs/n/nettle/nettle-3.1.1-intel-2016a.eb +++ b/easybuild/easyconfigs/n/nettle/nettle-3.1.1-intel-2016a.eb @@ -20,8 +20,8 @@ dependencies = [ sanity_check_paths = { 'files': ['bin/%s' % x for x in ['nettle-hash', 'nettle-lfib-stream', 'pkcs1-conv', 'sexp-conv']] + - ['lib64/libhogweed.a', 'lib64/libhogweed.%s' % SHLIB_EXT, - 'lib64/libnettle.a', 'lib64/libnettle.%s' % SHLIB_EXT], + [('lib/libhogweed.a', 'lib64/libhogweed.a'), ('lib/libhogweed.%s' % SHLIB_EXT, 'lib64/libhogweed.%s' % SHLIB_EXT), + ('lib/libnettle.a', 'lib64/libnettle.a'), ('lib/libnettle.%s' % SHLIB_EXT, 'lib64/libnettle.%s' % SHLIB_EXT)], 'dirs': ['include/nettle'], } diff --git a/easybuild/easyconfigs/n/nettle/nettle-3.2-foss-2016b.eb b/easybuild/easyconfigs/n/nettle/nettle-3.2-foss-2016b.eb index d8b0e1009d..2f73f07946 100644 --- a/easybuild/easyconfigs/n/nettle/nettle-3.2-foss-2016b.eb +++ b/easybuild/easyconfigs/n/nettle/nettle-3.2-foss-2016b.eb @@ -20,8 +20,8 @@ dependencies = [ sanity_check_paths = { 'files': ['bin/%s' % x for x in ['nettle-hash', 'nettle-lfib-stream', 'pkcs1-conv', 'sexp-conv']] + - ['lib64/libhogweed.a', 'lib64/libhogweed.%s' % SHLIB_EXT, - 'lib64/libnettle.a', 'lib64/libnettle.%s' % SHLIB_EXT], + [('lib/libhogweed.a', 'lib64/libhogweed.a'), ('lib/libhogweed.%s' % SHLIB_EXT, 'lib64/libhogweed.%s' % SHLIB_EXT), + ('lib/libnettle.a', 'lib64/libnettle.a'), ('lib/libnettle.%s' % SHLIB_EXT, 'lib64/libnettle.%s' % SHLIB_EXT)], 'dirs': ['include/nettle'], } diff --git a/easybuild/easyconfigs/n/nettle/nettle-3.2-intel-2016b.eb b/easybuild/easyconfigs/n/nettle/nettle-3.2-intel-2016b.eb index 728d252367..d49da80e3c 100644 --- a/easybuild/easyconfigs/n/nettle/nettle-3.2-intel-2016b.eb +++ b/easybuild/easyconfigs/n/nettle/nettle-3.2-intel-2016b.eb @@ -20,8 +20,8 @@ dependencies = [ sanity_check_paths = { 'files': ['bin/%s' % x for x in ['nettle-hash', 'nettle-lfib-stream', 'pkcs1-conv', 'sexp-conv']] + - ['lib64/libhogweed.a', 'lib64/libhogweed.%s' % SHLIB_EXT, - 'lib64/libnettle.a', 'lib64/libnettle.%s' % SHLIB_EXT], + [('lib/libhogweed.a', 'lib64/libhogweed.a'), ('lib/libhogweed.%s' % SHLIB_EXT, 'lib64/libhogweed.%s' % SHLIB_EXT), + ('lib/libnettle.a', 'lib64/libnettle.a'), ('lib/libnettle.%s' % SHLIB_EXT, 'lib64/libnettle.%s' % SHLIB_EXT)], 'dirs': ['include/nettle'], } diff --git a/easybuild/easyconfigs/n/nettle/nettle-3.3-intel-2017a.eb b/easybuild/easyconfigs/n/nettle/nettle-3.3-intel-2017a.eb index d8f9e8fc31..9683896ee0 100644 --- a/easybuild/easyconfigs/n/nettle/nettle-3.3-intel-2017a.eb +++ b/easybuild/easyconfigs/n/nettle/nettle-3.3-intel-2017a.eb @@ -20,8 +20,8 @@ dependencies = [ sanity_check_paths = { 'files': ['bin/%s' % x for x in ['nettle-hash', 'nettle-lfib-stream', 'pkcs1-conv', 'sexp-conv']] + - ['lib64/libhogweed.a', 'lib64/libhogweed.%s' % SHLIB_EXT, - 'lib64/libnettle.a', 'lib64/libnettle.%s' % SHLIB_EXT], + [('lib/libhogweed.a', 'lib64/libhogweed.a'), ('lib/libhogweed.%s' % SHLIB_EXT, 'lib64/libhogweed.%s' % SHLIB_EXT), + ('lib/libnettle.a', 'lib64/libnettle.a'), ('lib/libnettle.%s' % SHLIB_EXT, 'lib64/libnettle.%s' % SHLIB_EXT)], 'dirs': ['include/nettle'], } -- GitLab From 5449a5d6d4f1459eb7a04f3a542ab2a5a15cf1e7 Mon Sep 17 00:00:00 2001 From: Davide Vanzo Date: Fri, 16 Jun 2017 12:06:33 -0500 Subject: [PATCH 222/608] adding easyconfigs: Python-3.5.2-iccifort-2016.3.210-GCC-5.4.0-2.26-bare.eb --- ...iccifort-2016.3.210-GCC-5.4.0-2.26-bare.eb | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 easybuild/easyconfigs/p/Python/Python-3.5.2-iccifort-2016.3.210-GCC-5.4.0-2.26-bare.eb diff --git a/easybuild/easyconfigs/p/Python/Python-3.5.2-iccifort-2016.3.210-GCC-5.4.0-2.26-bare.eb b/easybuild/easyconfigs/p/Python/Python-3.5.2-iccifort-2016.3.210-GCC-5.4.0-2.26-bare.eb new file mode 100644 index 0000000000..7c126a4294 --- /dev/null +++ b/easybuild/easyconfigs/p/Python/Python-3.5.2-iccifort-2016.3.210-GCC-5.4.0-2.26-bare.eb @@ -0,0 +1,32 @@ +name = 'Python' +version = '3.5.2' +versionsuffix = '-bare' + +homepage = 'http://python.org/' +description = """Python is a programming language that lets you work more quickly and integrate your systems + more effectively.""" + +toolchain = {'name': 'iccifort', 'version': '2016.3.210-GCC-5.4.0-2.26'} +toolchainopts = {'pic': True} + +source_urls = ['http://www.python.org/ftp/%(namelower)s/%(version)s/'] +sources = [SOURCE_TGZ] + +dependencies = [ + ('bzip2', '1.0.6'), + ('zlib', '1.2.8'), + ('libreadline', '6.3'), + ('ncurses', '6.0'), + ('SQLite', '3.13.0'), + ('Tk', '8.6.5'), # this requires a full X11 stack + # OS dependency should be preferred if the os version is more recent then this version, + # it's nice to have an up to date openssl for security reasons + # ('OpenSSL', '1.0.2h'), +] + +osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')] + +# bare installation: no extensions included +exts_list = [] + +moduleclass = 'lang' -- GitLab From 711bb3ab39f29187ae2b536f57cec10b77cc4676 Mon Sep 17 00:00:00 2001 From: Davide Vanzo Date: Fri, 16 Jun 2017 12:13:04 -0500 Subject: [PATCH 223/608] adding easyconfigs: Python-3.5.2-GCC-5.4.0-2.26-bare.eb --- .../Python-3.5.2-GCC-5.4.0-2.26-bare.eb | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 easybuild/easyconfigs/p/Python/Python-3.5.2-GCC-5.4.0-2.26-bare.eb diff --git a/easybuild/easyconfigs/p/Python/Python-3.5.2-GCC-5.4.0-2.26-bare.eb b/easybuild/easyconfigs/p/Python/Python-3.5.2-GCC-5.4.0-2.26-bare.eb new file mode 100644 index 0000000000..1e9fd31ecc --- /dev/null +++ b/easybuild/easyconfigs/p/Python/Python-3.5.2-GCC-5.4.0-2.26-bare.eb @@ -0,0 +1,31 @@ +name = 'Python' +version = '3.5.2' +versionsuffix = '-bare' + +homepage = 'http://python.org/' +description = """Python is a programming language that lets you work more quickly and integrate your systems + more effectively.""" + +toolchain = {'name': 'GCC', 'version': '5.4.0-2.26'} +toolchainopts = {'pic': True} + +source_urls = ['http://www.python.org/ftp/%(namelower)s/%(version)s/'] +sources = [SOURCE_TGZ] + +dependencies = [ + ('bzip2', '1.0.6'), + ('zlib', '1.2.8'), + ('libreadline', '6.3'), + ('ncurses', '6.0'), + ('SQLite', '3.13.0'), + ('Tk', '8.6.5'), # this requires a full X11 stack + ('GMP', '6.1.1'), + ('libffi', '3.2.1'), + # OS dependency should be preferred if the os version is more recent then this version, + # it's nice to have an up to date openssl for security reasons + # ('OpenSSL', '1.0.2h'), +] + +osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')] + +moduleclass = 'lang' -- GitLab From 222682e50bd5e1b59792aa7eaaafe53220049d4a Mon Sep 17 00:00:00 2001 From: Davide Vanzo Date: Fri, 16 Jun 2017 13:18:51 -0500 Subject: [PATCH 224/608] adding easyconfigs: libtasn1-4.12-GCCcore-5.4.0.eb, libidn-1.32-GCCcore-5.4.0.eb, libunistring-0.9.6-GCCcore-5.4.0.eb --- .../l/libidn/libidn-1.32-GCCcore-5.4.0.eb | 21 +++++++++++++++ .../l/libtasn1/libtasn1-4.12-GCCcore-5.4.0.eb | 24 +++++++++++++++++ .../libunistring-0.9.6-GCCcore-5.4.0.eb | 26 +++++++++++++++++++ 3 files changed, 71 insertions(+) create mode 100644 easybuild/easyconfigs/l/libidn/libidn-1.32-GCCcore-5.4.0.eb create mode 100644 easybuild/easyconfigs/l/libtasn1/libtasn1-4.12-GCCcore-5.4.0.eb create mode 100644 easybuild/easyconfigs/l/libunistring/libunistring-0.9.6-GCCcore-5.4.0.eb diff --git a/easybuild/easyconfigs/l/libidn/libidn-1.32-GCCcore-5.4.0.eb b/easybuild/easyconfigs/l/libidn/libidn-1.32-GCCcore-5.4.0.eb new file mode 100644 index 0000000000..8fe50e9968 --- /dev/null +++ b/easybuild/easyconfigs/l/libidn/libidn-1.32-GCCcore-5.4.0.eb @@ -0,0 +1,21 @@ +easyblock = 'ConfigureMake' + +name = 'libidn' +version = '1.32' + +homepage = 'http://www.gnu.org/software/libidn' +description = """GNU Libidn is a fully documented implementation of the Stringprep, Punycode and IDNA specifications. +Libidn's purpose is to encode and decode internationalized domain names.""" + +toolchain = {'name': 'GCCcore', 'version': '5.4.0'} + +source_urls = [GNU_SOURCE] +sources = [SOURCELOWER_TAR_GZ] + +builddependencies = [('binutils', '2.26', '', True)] + +sanity_check_paths = { + 'files': ['bin/idn', 'lib/libidn.%s' % SHLIB_EXT], + 'dirs': ['include'], +} +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/l/libtasn1/libtasn1-4.12-GCCcore-5.4.0.eb b/easybuild/easyconfigs/l/libtasn1/libtasn1-4.12-GCCcore-5.4.0.eb new file mode 100644 index 0000000000..e8763aba9c --- /dev/null +++ b/easybuild/easyconfigs/l/libtasn1/libtasn1-4.12-GCCcore-5.4.0.eb @@ -0,0 +1,24 @@ +easyblock = 'ConfigureMake' + +name = 'libtasn1' +version = '4.12' + +homepage = 'https://www.gnu.org/software/libtasn1/' +description = """Libtasn1 is the ASN.1 library used by GnuTLS, GNU Shishi and some other packages. + It was written by Fabio Fiorina, and has been shipped as part of GnuTLS + for some time but is now a proper GNU package.""" + +toolchain = {'name': 'GCCcore', 'version': '5.4.0'} + +source_urls = [GNU_SOURCE] +sources = [SOURCE_TAR_GZ] + +builddependencies = [('binutils', '2.26', '', True)] + +sanity_check_paths = { + 'files': ['bin/asn1%s' % x for x in ['Coding', 'Decoding', 'Parser']] + + ['lib/libtasn1.%s' % x for x in ['a', SHLIB_EXT]], + 'dirs': ['include'], +} + +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/l/libunistring/libunistring-0.9.6-GCCcore-5.4.0.eb b/easybuild/easyconfigs/l/libunistring/libunistring-0.9.6-GCCcore-5.4.0.eb new file mode 100644 index 0000000000..c1f1541e7a --- /dev/null +++ b/easybuild/easyconfigs/l/libunistring/libunistring-0.9.6-GCCcore-5.4.0.eb @@ -0,0 +1,26 @@ +easyblock = 'ConfigureMake' + +name = 'libunistring' +version = '0.9.6' + +homepage = 'http://www.gnu.org/software/libunistring/' +description = """This library provides functions for manipulating Unicode strings and for manipulating C strings + according to the Unicode standard.""" + +toolchain = {'name': 'GCCcore', 'version': '5.4.0'} + +sources = [SOURCELOWER_TAR_XZ] +source_urls = [GNU_SOURCE] + +builddependencies = [('binutils', '2.26', '', True)] + +parallel = 1 + +sanity_check_paths = { + 'files': ['lib/libunistring.a', 'lib/libunistring.%s' % SHLIB_EXT] + + ['include/uni%s.h' % x for x in ['case', 'conv', 'ctype', 'lbrk', 'name', 'norm', + 'stdio', 'str', 'types', 'wbrk', 'width']], + 'dirs': ['include/unistring'], +} + +moduleclass = 'lib' -- GitLab From 3165263b822850b2c389d0cb46545de0dac85c86 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 19 Jun 2017 13:42:18 +0200 Subject: [PATCH 225/608] adding easyconfigs: VTune-2017_update3.eb --- .../easyconfigs/v/VTune/VTune-2017_update3.eb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 easybuild/easyconfigs/v/VTune/VTune-2017_update3.eb diff --git a/easybuild/easyconfigs/v/VTune/VTune-2017_update3.eb b/easybuild/easyconfigs/v/VTune/VTune-2017_update3.eb new file mode 100644 index 0000000000..e35eec8996 --- /dev/null +++ b/easybuild/easyconfigs/v/VTune/VTune-2017_update3.eb @@ -0,0 +1,15 @@ +name = 'VTune' +version = '2017_update3' + +homepage = 'http://software.intel.com/en-us/intel-vtune-amplifier-xe' +description = """Intel VTune Amplifier XE is the premier performance profiler for C, C++, C#, Fortran, + Assembly and Java.""" + +toolchain = {'name': 'dummy', 'version': 'dummy'} + +sources = ['vtune_amplifier_xe_%(version)s.tar.gz'] +checksums = ['1e32ce4a591439d42b23ad2960350f3354fe5f805f96c98f21ce315b66789025'] + +license_file = HOME + '/licenses/intel/license.lic' + +moduleclass = 'tools' -- GitLab From 7a9cbedfdc2c6641973bf6fc70c006cfb6a6ed02 Mon Sep 17 00:00:00 2001 From: iotaka Date: Mon, 19 Jun 2017 15:56:03 +0200 Subject: [PATCH 226/608] adding easyconfigs: modred-2.0.2-foss-2016b-Python-3.5.2.eb --- .../modred-2.0.2-foss-2016b-Python-3.5.2.eb | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 easybuild/easyconfigs/m/modred/modred-2.0.2-foss-2016b-Python-3.5.2.eb diff --git a/easybuild/easyconfigs/m/modred/modred-2.0.2-foss-2016b-Python-3.5.2.eb b/easybuild/easyconfigs/m/modred/modred-2.0.2-foss-2016b-Python-3.5.2.eb new file mode 100644 index 0000000000..d45b071d80 --- /dev/null +++ b/easybuild/easyconfigs/m/modred/modred-2.0.2-foss-2016b-Python-3.5.2.eb @@ -0,0 +1,22 @@ +easyblock = 'PythonPackage' + +name = 'modred' +version = '2.0.2' +versionsuffix = '-Python-%(pyver)s' + +homepage = "https://pypi.python.org/pypi/modred/" +description = """Compute modal decompositions and reduced-order models, easily, efficiently, and in parallel.""" + +toolchain = {'name': 'foss', 'version': '2016b'} + +source_urls = [PYPI_SOURCE] +sources = [SOURCE_TAR_GZ] + +dependencies = [('Python', '3.5.2')] + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages'], +} + +moduleclass = 'lib' -- GitLab From 9d21dd733f27f29d3cf88d5230d775ba8649619c Mon Sep 17 00:00:00 2001 From: Davide Vanzo Date: Mon, 19 Jun 2017 11:51:22 -0500 Subject: [PATCH 227/608] adding easyconfigs: Guile-1.8.8-GCCcore-5.4.0.eb --- .../g/Guile/Guile-1.8.8-GCCcore-5.4.0.eb | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 easybuild/easyconfigs/g/Guile/Guile-1.8.8-GCCcore-5.4.0.eb diff --git a/easybuild/easyconfigs/g/Guile/Guile-1.8.8-GCCcore-5.4.0.eb b/easybuild/easyconfigs/g/Guile/Guile-1.8.8-GCCcore-5.4.0.eb new file mode 100644 index 0000000000..4f4fa3e2f0 --- /dev/null +++ b/easybuild/easyconfigs/g/Guile/Guile-1.8.8-GCCcore-5.4.0.eb @@ -0,0 +1,34 @@ +easyblock = 'ConfigureMake' + +name = 'Guile' +version = '1.8.8' + +homepage = 'http://www.gnu.org/software/guile' +description = """Guile is the GNU Ubiquitous Intelligent Language for Extensions, + the official extension language for the GNU operating system.""" + +toolchain = {'name': 'GCCcore', 'version': '5.4.0'} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = [GNU_SOURCE] + +dependencies = [ + ('libtool', '2.4.6'), + ('GMP', '6.1.1'), + ('libunistring', '0.9.6'), + ('pkg-config', '0.29.1'), + ('libffi', '3.2.1'), + ('libreadline', '6.3'), +] + +builddependencies = [('binutils', '2.26', '', True)] + +configopts = " --enable-error-on-warning=no" + +sanity_check_paths = { + 'files': ["bin/%s" % x for x in ["guile", 'guile-config', 'guile-snarf', 'guile-tools']] + + ["lib/libguile.a", "include/libguile.h"], + 'dirs': [] +} + +moduleclass = 'devel' -- GitLab From ac00de53f113e340ebb7abd62e73baa22b594bb5 Mon Sep 17 00:00:00 2001 From: Davide Vanzo Date: Mon, 19 Jun 2017 11:51:45 -0500 Subject: [PATCH 228/608] adding easyconfigs: p11-kit-0.23.2-GCCcore-5.4.0.eb --- .../p/p11-kit/p11-kit-0.23.2-GCCcore-5.4.0.eb | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 easybuild/easyconfigs/p/p11-kit/p11-kit-0.23.2-GCCcore-5.4.0.eb diff --git a/easybuild/easyconfigs/p/p11-kit/p11-kit-0.23.2-GCCcore-5.4.0.eb b/easybuild/easyconfigs/p/p11-kit/p11-kit-0.23.2-GCCcore-5.4.0.eb new file mode 100644 index 0000000000..0e997ce499 --- /dev/null +++ b/easybuild/easyconfigs/p/p11-kit/p11-kit-0.23.2-GCCcore-5.4.0.eb @@ -0,0 +1,31 @@ +easyblock = 'ConfigureMake' + +name = 'p11-kit' +version = '0.23.2' + +homepage = 'http://p11-glue.freedesktop.org/p11-kit.html' +description = """Provides a way to load and enumerate PKCS#11 modules. + Provides a standard configuration setup for installing + PKCS#11 modules in such a way that they're discoverable. + Also solves problems with coordinating the use of PKCS#11 + by different components or libraries living in the same process.""" + +toolchain = {'name': 'GCCcore', 'version': '5.4.0'} + +source_urls = ['http://p11-glue.freedesktop.org/releases/'] +sources = [SOURCE_TAR_GZ] + +dependencies = [ + ('libtasn1', '4.12'), + ('libffi', '3.2.1'), +] + +builddependencies = [('binutils', '2.26', '', True)] + +sanity_check_paths = { + 'files': ['bin/p11-kit', 'bin/trust'] + + ['lib/libp11-kit.%s' % SHLIB_EXT], + 'dirs': ['include/p11-kit-1/p11-kit'], +} + +moduleclass = 'lib' -- GitLab From aa6b3d0674cf37ad46f7fc7183bda66f22efc7c3 Mon Sep 17 00:00:00 2001 From: Davide Vanzo Date: Mon, 19 Jun 2017 14:26:27 -0500 Subject: [PATCH 229/608] adding easyconfigs: cURL-7.49.1-GCCcore-5.4.0.eb, Doxygen-1.8.11-GCCcore-5.4.0.eb, Szip-2.1-GCCcore-5.4.0.eb --- .../c/cURL/cURL-7.49.1-GCCcore-5.4.0.eb | 33 +++++++++++++++++++ .../d/Doxygen/Doxygen-1.8.11-GCCcore-5.4.0.eb | 21 ++++++++++++ .../s/Szip/Szip-2.1-GCCcore-5.4.0.eb | 25 ++++++++++++++ 3 files changed, 79 insertions(+) create mode 100644 easybuild/easyconfigs/c/cURL/cURL-7.49.1-GCCcore-5.4.0.eb create mode 100644 easybuild/easyconfigs/d/Doxygen/Doxygen-1.8.11-GCCcore-5.4.0.eb create mode 100644 easybuild/easyconfigs/s/Szip/Szip-2.1-GCCcore-5.4.0.eb diff --git a/easybuild/easyconfigs/c/cURL/cURL-7.49.1-GCCcore-5.4.0.eb b/easybuild/easyconfigs/c/cURL/cURL-7.49.1-GCCcore-5.4.0.eb new file mode 100644 index 0000000000..9bb277e7b1 --- /dev/null +++ b/easybuild/easyconfigs/c/cURL/cURL-7.49.1-GCCcore-5.4.0.eb @@ -0,0 +1,33 @@ +easyblock = 'ConfigureMake' + +name = 'cURL' +version = '7.49.1' + +homepage = 'http://curl.haxx.se' +description = """libcurl is a free and easy-to-use client-side URL transfer library, + supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, + POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports + SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, + proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, + Kerberos), file transfer resume, http proxy tunneling and more.""" + +toolchain = {'name': 'GCCcore', 'version': '5.4.0'} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = ['http://curl.haxx.se/download/'] + +builddependencies = [('binutils', '2.26', '', True)] + +osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')] + +# dependencies = [('OpenSSL', '1.0.1t')] +# configopts = "--with-ssl=$EBROOTOPENSSL" + +modextravars = {'CURL_INCLUDES': '%(installdir)s/include'} + +sanity_check_paths = { + 'files': ['bin/curl', 'lib/libcurl.a', 'lib/libcurl.%s' % SHLIB_EXT], + 'dirs': ['lib/pkgconfig'], +} + +moduleclass = 'tools' diff --git a/easybuild/easyconfigs/d/Doxygen/Doxygen-1.8.11-GCCcore-5.4.0.eb b/easybuild/easyconfigs/d/Doxygen/Doxygen-1.8.11-GCCcore-5.4.0.eb new file mode 100644 index 0000000000..f55dbe8583 --- /dev/null +++ b/easybuild/easyconfigs/d/Doxygen/Doxygen-1.8.11-GCCcore-5.4.0.eb @@ -0,0 +1,21 @@ +name = 'Doxygen' +version = '1.8.11' + +homepage = 'http://www.doxygen.org' +description = """Doxygen is a documentation system for C++, C, Java, Objective-C, Python, + IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D.""" + +toolchain = {'name': 'GCCcore', 'version': '5.4.0'} + +sources = ['%(namelower)s-%(version)s.src.tar.gz'] +source_urls = ['http://ftp.stack.nl/pub/users/dimitri/'] + +builddependencies = [ + ('CMake', '3.7.1'), + ('flex', '2.6.0'), + ('Bison', '3.0.4'), +] + +parallel = 1 + +moduleclass = 'devel' diff --git a/easybuild/easyconfigs/s/Szip/Szip-2.1-GCCcore-5.4.0.eb b/easybuild/easyconfigs/s/Szip/Szip-2.1-GCCcore-5.4.0.eb new file mode 100644 index 0000000000..51caf7745b --- /dev/null +++ b/easybuild/easyconfigs/s/Szip/Szip-2.1-GCCcore-5.4.0.eb @@ -0,0 +1,25 @@ +easyblock = 'ConfigureMake' + +name = 'Szip' +version = '2.1' + +homepage = 'http://www.hdfgroup.org/doc_resource/SZIP/' +description = "Szip compression software, providing lossless compression of scientific data" + +toolchain = {'name': 'GCCcore', 'version': '5.4.0'} +toolchainopts = {'pic': True} + +source_urls = ['http://www.hdfgroup.org/ftp/lib-external/szip/%(version)s/src'] +sources = [SOURCELOWER_TAR_GZ] + +configopts = "--with-pic" + +builddependencies = [('binutils', '2.26', '', True)] + +sanity_check_paths = { + 'files': ["lib/libsz.a", "lib/libsz.%s" % SHLIB_EXT] + + ["include/%s" % x for x in ["ricehdf.h", "szip_adpt.h", "szlib.h"]], + 'dirs': [], +} + +moduleclass = 'tools' -- GitLab From 450a7f3930fa0e6167a48ab803191a5275f489ec Mon Sep 17 00:00:00 2001 From: Davide Vanzo Date: Mon, 19 Jun 2017 14:31:16 -0500 Subject: [PATCH 230/608] adding easyconfigs: libxc-3.0.0-GCC-5.4.0-2.26.eb --- .../l/libxc/libxc-3.0.0-GCC-5.4.0-2.26.eb | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 easybuild/easyconfigs/l/libxc/libxc-3.0.0-GCC-5.4.0-2.26.eb diff --git a/easybuild/easyconfigs/l/libxc/libxc-3.0.0-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/l/libxc/libxc-3.0.0-GCC-5.4.0-2.26.eb new file mode 100644 index 0000000000..c3570aaed3 --- /dev/null +++ b/easybuild/easyconfigs/l/libxc/libxc-3.0.0-GCC-5.4.0-2.26.eb @@ -0,0 +1,33 @@ +easyblock = 'ConfigureMake' + +name = 'libxc' +version = '3.0.0' + +homepage = 'http://www.tddft.org/programs/octopus/wiki/index.php/Libxc' +description = """Libxc is a library of exchange-correlation functionals for density-functional theory. + The aim is to provide a portable, well tested and reliable set of exchange and correlation functionals.""" + +toolchain = {'name': 'GCC', 'version': '5.4.0-2.26'} +# Results for some functionals (e.g. mgga_c_tpss) deviate with too aggressive optimization settings. +toolchainopts = {'lowopt': True} + +sources = [SOURCE_TAR_GZ] +source_urls = ['http://www.tddft.org/programs/octopus/down.php?file=libxc/'] + +configopts = 'FC="$F77" FCFLAGS="$FFLAGS" --enable-shared --enable-fortran' + +# From the libxc mailing list +# To summarize: expect less tests to fail in libxc 2.0.2, but don't expect +# a fully working testsuite soon (unless someone wants to volunteer to do +# it, of course ) In the meantime, unless the majority of the tests +# fail, your build should be fine. +# runtest = 'check' + +sanity_check_paths = { + 'files': ['lib/libxc%s.%s' % (x, y) for x in ['', 'f90'] for y in ['a', SHLIB_EXT]], + 'dirs': ['include'], +} + +parallel = 1 + +moduleclass = 'chem' -- GitLab From 76a807808549fec43273cd896e8cc05d529f7989 Mon Sep 17 00:00:00 2001 From: Davide Vanzo Date: Mon, 19 Jun 2017 14:32:00 -0500 Subject: [PATCH 231/608] adding easyconfigs: libxc-3.0.0-iccifort-2016.3.210-GCC-5.4.0-2.26.eb --- ....0.0-iccifort-2016.3.210-GCC-5.4.0-2.26.eb | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 easybuild/easyconfigs/l/libxc/libxc-3.0.0-iccifort-2016.3.210-GCC-5.4.0-2.26.eb diff --git a/easybuild/easyconfigs/l/libxc/libxc-3.0.0-iccifort-2016.3.210-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/l/libxc/libxc-3.0.0-iccifort-2016.3.210-GCC-5.4.0-2.26.eb new file mode 100644 index 0000000000..5dad1c142c --- /dev/null +++ b/easybuild/easyconfigs/l/libxc/libxc-3.0.0-iccifort-2016.3.210-GCC-5.4.0-2.26.eb @@ -0,0 +1,33 @@ +easyblock = 'ConfigureMake' + +name = 'libxc' +version = '3.0.0' + +homepage = 'http://www.tddft.org/programs/octopus/wiki/index.php/Libxc' +description = """Libxc is a library of exchange-correlation functionals for density-functional theory. + The aim is to provide a portable, well tested and reliable set of exchange and correlation functionals.""" + +toolchain = {'name': 'iccifort', 'version': '2016.3.210-GCC-5.4.0-2.26'} +# Results for some functionals (e.g. mgga_c_tpss) deviate with too aggressive optimization settings. +toolchainopts = {'lowopt': True} + +sources = [SOURCE_TAR_GZ] +source_urls = ['http://www.tddft.org/programs/octopus/down.php?file=libxc/'] + +configopts = 'FC="$F77" FCFLAGS="$FFLAGS" --enable-shared --enable-fortran' + +# From the libxc mailing list +# To summarize: expect less tests to fail in libxc 2.0.2, but don't expect +# a fully working testsuite soon (unless someone wants to volunteer to do +# it, of course ) In the meantime, unless the majority of the tests +# fail, your build should be fine. +# runtest = 'check' + +sanity_check_paths = { + 'files': ['lib/libxc%s.%s' % (x, y) for x in ['', 'f90'] for y in ['a', SHLIB_EXT]], + 'dirs': ['include'], +} + +parallel = 1 + +moduleclass = 'chem' -- GitLab From 9fb4fa4582db42b986b3d2449c9a963e9ed528c8 Mon Sep 17 00:00:00 2001 From: Davide Vanzo Date: Mon, 19 Jun 2017 14:51:44 -0500 Subject: [PATCH 232/608] adding easyconfigs: ABINIT-8.2.2-foss-2016b.eb --- .../a/ABINIT/ABINIT-8.2.2-foss-2016b.eb | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 easybuild/easyconfigs/a/ABINIT/ABINIT-8.2.2-foss-2016b.eb diff --git a/easybuild/easyconfigs/a/ABINIT/ABINIT-8.2.2-foss-2016b.eb b/easybuild/easyconfigs/a/ABINIT/ABINIT-8.2.2-foss-2016b.eb new file mode 100644 index 0000000000..0042cb41f3 --- /dev/null +++ b/easybuild/easyconfigs/a/ABINIT/ABINIT-8.2.2-foss-2016b.eb @@ -0,0 +1,34 @@ +easyblock = 'ConfigureMake' + +name = 'ABINIT' +version = '8.2.2' + +homepage = 'http://www.abinit.org/' +description = """ABINIT is a package whose main program allows one to find the total energy, charge density and + electronic structure of systems made of electrons and nuclei (molecules and periodic solids) within Density Functional + Theory (DFT), using pseudopotentials and a planewave or wavelet basis.""" + +toolchain = {'name': 'foss', 'version': '2016b'} + +source_urls = ['http://ftp.abinit.org/'] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['5f25250e06fdc0815c224ffd29858860'] + +configopts = "--with-mpi-prefix=$EBROOTOPENMPI/intel64 --with-trio-flavor='etsf_io+netcdf' --with-dft=flavor='libxc' " +configopts += '--with-netcdf-incs="-I$EBROOTNETCDF/include -I$EBROOTNETCDFMINFORTRAN/include" ' +configopts += '--with-netcdf-libs="-L$EBROOTNETCDF/lib -lnetcdf -L$EBROOTNETCDFMINFORTRAN/lib -lnetcdff" ' +configopts += '--with-libxc-incs="-I$EBROOTLIBXC/include" --with-libxc-libs="-L$EBROOTLIBXC/lib -lxc" ' +configopts += 'FCFLAGS="-ffree-line-length-none" ' + +dependencies = [ + ('libxc', '3.0.0'), + ('netCDF', '4.4.1'), + ('netCDF-Fortran', '4.4.4'), +] + +sanity_check_paths = { + 'files': ['bin/%s' % x for x in ['abinit', 'aim', 'cut3d', 'conducti', 'mrgddb', 'mrgscr', 'optic']], + 'dirs': ['lib/pkgconfig'], +} + +moduleclass = 'chem' -- GitLab From 0c4ecdaf2045e4021ebe29aa803135813ec8d4d6 Mon Sep 17 00:00:00 2001 From: Davide Vanzo Date: Mon, 19 Jun 2017 14:58:44 -0500 Subject: [PATCH 233/608] adding easyconfigs: ABINIT-8.2.2-intel-2016b.eb --- .../a/ABINIT/ABINIT-8.2.2-intel-2016b.eb | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 easybuild/easyconfigs/a/ABINIT/ABINIT-8.2.2-intel-2016b.eb diff --git a/easybuild/easyconfigs/a/ABINIT/ABINIT-8.2.2-intel-2016b.eb b/easybuild/easyconfigs/a/ABINIT/ABINIT-8.2.2-intel-2016b.eb new file mode 100644 index 0000000000..5ea50a6af7 --- /dev/null +++ b/easybuild/easyconfigs/a/ABINIT/ABINIT-8.2.2-intel-2016b.eb @@ -0,0 +1,33 @@ +easyblock = 'ConfigureMake' + +name = 'ABINIT' +version = '8.2.2' + +homepage = 'http://www.abinit.org/' +description = """ABINIT is a package whose main program allows one to find the total energy, charge density and + electronic structure of systems made of electrons and nuclei (molecules and periodic solids) within Density Functional + Theory (DFT), using pseudopotentials and a planewave or wavelet basis.""" + +toolchain = {'name': 'intel', 'version': '2016b'} + +source_urls = ['http://ftp.abinit.org/'] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['5f25250e06fdc0815c224ffd29858860'] + +configopts = "--with-mpi-prefix=$EBROOTIMPI/intel64 --with-trio-flavor='etsf_io+netcdf' --with-dft=flavor='libxc' " +configopts += '--with-netcdf-incs="-I$EBROOTNETCDF/include -I$EBROOTNETCDFMINFORTRAN/include" ' +configopts += '--with-netcdf-libs="-L$EBROOTNETCDF/lib -lnetcdf -L$EBROOTNETCDFMINFORTRAN/lib -lnetcdff" ' +configopts += '--with-libxc-incs="-I$EBROOTLIBXC/include" --with-libxc-libs="-L$EBROOTLIBXC/lib -lxc" ' + +dependencies = [ + ('libxc', '3.0.0'), + ('netCDF', '4.4.1'), + ('netCDF-Fortran', '4.4.4'), +] + +sanity_check_paths = { + 'files': ['bin/%s' % x for x in ['abinit', 'aim', 'cut3d', 'conducti', 'mrgddb', 'mrgscr', 'optic']], + 'dirs': ['lib/pkgconfig'], +} + +moduleclass = 'chem' -- GitLab From 87eb3c20e106aa923e247c7a9fa30b5cbf3b55b4 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Tue, 20 Jun 2017 10:49:55 +1200 Subject: [PATCH 234/608] The NASM (Netwide Assembler) with no toolchain --- easybuild/easyconfigs/n/NASM/NASM-2.12.02.eb | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 easybuild/easyconfigs/n/NASM/NASM-2.12.02.eb diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.12.02.eb b/easybuild/easyconfigs/n/NASM/NASM-2.12.02.eb new file mode 100644 index 0000000000..3c18189624 --- /dev/null +++ b/easybuild/easyconfigs/n/NASM/NASM-2.12.02.eb @@ -0,0 +1,19 @@ +easyblock = 'ConfigureMake' + +name = 'NASM' +version = '2.12.02' + +homepage = 'http://www.nasm.us/' +description = """NASM: General-purpose x86 assembler""" + +toolchain = {'version': 'dummy', 'name': 'dummy'} + +sources = [SOURCELOWER_TAR_BZ2] +source_urls = ['http://www.nasm.us/pub/nasm/releasebuilds/%(version)s'] + +sanity_check_paths = { + 'files': ['bin/nasm'], + 'dirs': [], +} + +moduleclass = 'lang' -- GitLab From 73dc6584e2f75e85b49dee751275211ed71b8b4c Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Tue, 20 Jun 2017 10:59:23 +1200 Subject: [PATCH 235/608] New EasyConfigs for Szip and HDF5 with the gimkl-2017a toolchain --- .../h/HDF5/HDF5-1.8.18-gimkl-2017a.eb | 31 +++++++++++++++++++ .../s/Szip/Szip-2.1-gimkl-2017a.eb | 23 ++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-gimkl-2017a.eb create mode 100644 easybuild/easyconfigs/s/Szip/Szip-2.1-gimkl-2017a.eb diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-gimkl-2017a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-gimkl-2017a.eb new file mode 100644 index 0000000000..57cd66e064 --- /dev/null +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-gimkl-2017a.eb @@ -0,0 +1,31 @@ +name = 'HDF5' +version = '1.8.18' + +homepage = 'http://www.hdfgroup.org/HDF5/' +description = """HDF5 is a unique technology suite that makes possible the management of + extremely large and complex data collections.""" + +toolchain = {'name': 'gimkl', 'version': '2017a'} +toolchainopts = {'pic': True, 'usempi': True} + +source_urls = [ + 'https://support.hdfgroup.org/ftp/HDF5/current18/src/', + 'https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(versions)/src/' +] + +sources = [SOURCELOWER_TAR_GZ] +checksums = ['dd2148b740713ca0295442ec683d7b1c'] + +buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' + +dependencies = [ + ('zlib', '1.2.11'), + ('Szip', '2.1'), +] + +# Needed for h5py in Python (at least sometimes) +modextravars = { + 'HDF5_DIR': '%(installdir)s', +} + +moduleclass = 'data' diff --git a/easybuild/easyconfigs/s/Szip/Szip-2.1-gimkl-2017a.eb b/easybuild/easyconfigs/s/Szip/Szip-2.1-gimkl-2017a.eb new file mode 100644 index 0000000000..4d2a5188f4 --- /dev/null +++ b/easybuild/easyconfigs/s/Szip/Szip-2.1-gimkl-2017a.eb @@ -0,0 +1,23 @@ +easyblock = 'ConfigureMake' + +name = 'Szip' +version = '2.1' + +homepage = 'http://www.hdfgroup.org/doc_resource/SZIP/' +description = "Szip compression software, providing lossless compression of scientific data" + +toolchain = {'version': '2017a', 'name': 'gimkl'} +toolchainopts = {'pic': True} + +source_urls = ['http://www.hdfgroup.org/ftp/lib-external/szip/%(version)s/src'] +sources = [SOURCELOWER_TAR_GZ] + +configopts = "--with-pic" + +sanity_check_paths = { + 'files': ["lib/libsz.a", "lib/libsz.%s" % SHLIB_EXT] + + ["include/%s" % x for x in ["ricehdf.h", "szip_adpt.h", "szlib.h"]], + 'dirs': [], +} + +moduleclass = 'tools' -- GitLab From 9920d9c15dc10952d8c64fd8f739b88a8dd26ebe Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Tue, 20 Jun 2017 11:13:57 +1200 Subject: [PATCH 236/608] Remove executable permissions on HDF5-1.8.10-ictce-5.3.0-gpfs-zlib-1.2.5.eb --- .../easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.3.0-gpfs-zlib-1.2.5.eb | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.3.0-gpfs-zlib-1.2.5.eb diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.3.0-gpfs-zlib-1.2.5.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.3.0-gpfs-zlib-1.2.5.eb old mode 100755 new mode 100644 -- GitLab From 4b035601e78e5cfa5095d447b19557e31d8e1d9a Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 20 Jun 2017 10:07:47 +0200 Subject: [PATCH 237/608] adding easyconfigs: FUNWAVE-TVD-3.1-20170525-intel-2017a-no-storm.eb --- ...E-TVD-3.1-20170525-intel-2017a-no-storm.eb | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 easybuild/easyconfigs/f/FUNWAVE-TVD/FUNWAVE-TVD-3.1-20170525-intel-2017a-no-storm.eb diff --git a/easybuild/easyconfigs/f/FUNWAVE-TVD/FUNWAVE-TVD-3.1-20170525-intel-2017a-no-storm.eb b/easybuild/easyconfigs/f/FUNWAVE-TVD/FUNWAVE-TVD-3.1-20170525-intel-2017a-no-storm.eb new file mode 100644 index 0000000000..4fd23347c3 --- /dev/null +++ b/easybuild/easyconfigs/f/FUNWAVE-TVD/FUNWAVE-TVD-3.1-20170525-intel-2017a-no-storm.eb @@ -0,0 +1,31 @@ +easyblock = 'MakeCp' + +name = 'FUNWAVE-TVD' +version = '3.1-20170525' +commit = '814107a' +versionsuffix = '-no-storm' + +homepage = 'https://fengyanshi.github.io' +description = """FUNWAVE–TVD is the TVD version of the fully nonlinear Boussinesq wave model (FUNWAVE) + initially developed by Kirby et al.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'usempi': True} + +source_urls = ['https://github.com/fengyanshi/FUNWAVE-TVD/archive/'] +sources = ['%s.tar.gz' % commit] + +start_dir = 'src' +parallel = 1 +buildopts = 'FC="$FC" FFLAGS="$FFLAGS -fpp" CPPFLAGS="-DINTEL -DMIXING -DMANNING -DVIS_KENNEDY" ' +# don't use -DSTORM +buildopts += "FLAG_16='' " + +files_to_copy = [(['mytvd'], 'bin')] + +sanity_check_paths = { + 'files': ['bin/mytvd'], + 'dirs': [], +} + +moduleclass = 'math' -- GitLab From 5bc9a78ea5bff968906d375839a81e30f342528e Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 20 Jun 2017 10:31:28 +0200 Subject: [PATCH 238/608] adding easyconfigs: sharutils-4.15-GCCcore-6.3.0.eb --- .../sharutils/sharutils-4.15-GCCcore-6.3.0.eb | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 easybuild/easyconfigs/s/sharutils/sharutils-4.15-GCCcore-6.3.0.eb diff --git a/easybuild/easyconfigs/s/sharutils/sharutils-4.15-GCCcore-6.3.0.eb b/easybuild/easyconfigs/s/sharutils/sharutils-4.15-GCCcore-6.3.0.eb new file mode 100644 index 0000000000..06f3fc97f7 --- /dev/null +++ b/easybuild/easyconfigs/s/sharutils/sharutils-4.15-GCCcore-6.3.0.eb @@ -0,0 +1,23 @@ +easyblock = 'ConfigureMake' + +name = 'sharutils' +version = '4.15' + +homepage = 'https://www.gnu.org/software/sharutils/' +description = """GNU shar makes so-called shell archives out of many files, preparing them for transmission by + electronic mail services, while unshar helps unpacking shell archives after reception.""" + +toolchain = {'name': 'GCCcore', 'version': '6.3.0'} + +source_urls = [GNU_SOURCE] +sources = [SOURCE_TAR_GZ] + +# use same binutils version that was used when building GCC toolchain +builddependencies = [('binutils', '2.27', '', True)] + +sanity_check_paths = { + 'files': ['bin/shar', 'bin/uudecode', 'bin/uuencode', 'bin/unshar'], + 'dirs': [], +} + +moduleclass = 'tools' -- GitLab From d1310b028c90f173f3ba5cd759519d2af289c84f Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 20 Jun 2017 13:14:28 +0200 Subject: [PATCH 239/608] add glmmML & ordinal (+ ucminf) as R extensions --- easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb b/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb index db02d8833d..5616a94b6a 100644 --- a/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb +++ b/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb @@ -524,6 +524,9 @@ exts_list = [ ('memuse', '3.0-1', ext_options), ('pinfsc50', '1.1.0', ext_options), ('vcfR', '1.5.0', ext_options), + ('glmmML', '1.0.2', ext_options), + ('ucminf', '1.1-4', ext_options), + ('ordinal', '2015.6-28', ext_options), ] moduleclass = 'lang' -- GitLab From 6bde8f4b0dbaa02cbd112f6d99f706a3a63905d8 Mon Sep 17 00:00:00 2001 From: Adam Huffman Date: Tue, 20 Jun 2017 16:47:44 +0100 Subject: [PATCH 240/608] adding easyconfigs: Trim_Galore-0.4.4-foss-2016b.eb --- .../Trim_Galore-0.4.4-foss-2016b.eb | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100755 easybuild/easyconfigs/t/Trim_Galore/Trim_Galore-0.4.4-foss-2016b.eb diff --git a/easybuild/easyconfigs/t/Trim_Galore/Trim_Galore-0.4.4-foss-2016b.eb b/easybuild/easyconfigs/t/Trim_Galore/Trim_Galore-0.4.4-foss-2016b.eb new file mode 100755 index 0000000000..ed3b679410 --- /dev/null +++ b/easybuild/easyconfigs/t/Trim_Galore/Trim_Galore-0.4.4-foss-2016b.eb @@ -0,0 +1,33 @@ +# 0.4.2 modified by: +# Adam Huffman +# The Francis Crick Institute +# TODO: deal with the hardcoding of /usr/bin/perl + +easyblock = "PackedBinary" + +name = 'Trim_Galore' +version = '0.4.4' + +homepage = 'http://www.bioinformatics.babraham.ac.uk/projects/trim_galore/' +description = """A wrapper tool around Cutadapt and FastQC to consistently apply + quality and adapter trimming to FastQ files, with some extra functionality for + MspI-digested RRBS-type (Reduced Representation Bisufite-Seq) libraries.""" + +toolchain = {'name': 'foss', 'version': '2016b'} + +sources = ['%(namelower)s_v%(version)s.zip'] +source_urls = ['http://www.bioinformatics.babraham.ac.uk/projects/%(namelower)s'] + +install_cmd = "cp -a * %(installdir)s && chmod +x %(installdir)s/%(namelower)s" + +dependencies = [ + ('FastQC', '0.11.5', '-Java-1.7.0_80', True), + ('cutadapt', '1.9.1', '-Python-2.7.12'), +] + +sanity_check_paths = { + 'files': ["trim_galore"], + 'dirs': [], +} + +moduleclass = 'bio' -- GitLab From 910a55f08aa99a644510a10708ea8ab8e317ddc1 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 20 Jun 2017 20:34:47 +0200 Subject: [PATCH 241/608] fix source URLs for HDF5 --- .../easyconfigs/h/HDF5/HDF5-1.10.0-patch1-foss-2016b.eb | 2 +- .../h/HDF5/HDF5-1.10.0-patch1-goolfc-2016.10.eb | 2 +- .../easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2016b.eb | 2 +- .../easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2017.01.eb | 2 +- .../easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2017a.eb | 2 +- easybuild/easyconfigs/h/HDF5/HDF5-1.10.1-intel-2017a.eb | 2 +- .../easyconfigs/h/HDF5/HDF5-1.8.10-GCC-4.8.1-serial.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-goolf-1.4.10.eb | 4 ++-- .../h/HDF5/HDF5-1.8.10-ictce-5.3.0-gpfs-zlib-1.2.5.eb | 4 ++-- .../easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.3.0-gpfs.eb | 4 ++-- .../easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.3.0-serial.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.3.0.eb | 4 ++-- .../easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.4.0-gpfs.eb | 4 ++-- .../easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.5.0-gpfs.eb | 4 ++-- .../easyconfigs/h/HDF5/HDF5-1.8.10-ictce-6.1.5-gpfs.eb | 4 ++-- .../easyconfigs/h/HDF5/HDF5-1.8.10-intel-2014b-gpfs.eb | 4 ++-- .../easyconfigs/h/HDF5/HDF5-1.8.10-patch1-goolf-1.4.10.eb | 4 ++-- .../easyconfigs/h/HDF5/HDF5-1.8.10-patch1-goolf-1.5.14.eb | 4 ++-- .../easyconfigs/h/HDF5/HDF5-1.8.10-patch1-ictce-5.3.0.eb | 4 ++-- .../easyconfigs/h/HDF5/HDF5-1.8.11-GCC-4.8.1-serial.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.11-goolf-1.4.10.eb | 4 ++-- .../easyconfigs/h/HDF5/HDF5-1.8.11-ictce-5.3.0-serial.eb | 4 ++-- .../h/HDF5/HDF5-1.8.12-goolf-1.4.10-zlib-1.2.7.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.12-ictce-5.4.0.eb | 4 ++-- .../h/HDF5/HDF5-1.8.12-ictce-5.5.0-zlib-1.2.8.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.12-ictce-5.5.0.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.12-intel-2016b.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-foss-2014b.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-foss-2015a.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2014b.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2015a.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2015b.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-foss-2015a.eb | 4 ++-- .../easyconfigs/h/HDF5/HDF5-1.8.14-ictce-7.1.2-serial.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-ictce-7.1.2.eb | 4 ++-- .../easyconfigs/h/HDF5/HDF5-1.8.14-intel-2015a-serial.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-intel-2015a.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-foss-2015a.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-intel-2015a.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-intel-2015b.eb | 4 ++-- .../easyconfigs/h/HDF5/HDF5-1.8.15-patch1-foss-2015a.eb | 4 ++-- .../easyconfigs/h/HDF5/HDF5-1.8.15-patch1-foss-2015b.eb | 4 ++-- .../easyconfigs/h/HDF5/HDF5-1.8.15-patch1-intel-2015a.eb | 4 ++-- .../easyconfigs/h/HDF5/HDF5-1.8.15-patch1-intel-2015b.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-foss-2015a.eb | 4 ++-- .../easyconfigs/h/HDF5/HDF5-1.8.16-foss-2016a-serial.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-foss-2016a.eb | 4 ++-- .../easyconfigs/h/HDF5/HDF5-1.8.16-gimkl-2.11.5-serial.eb | 4 ++-- .../easyconfigs/h/HDF5/HDF5-1.8.16-intel-2015b-serial.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2015b.eb | 4 ++-- .../h/HDF5/HDF5-1.8.16-intel-2016.02-GCC-4.9.eb | 4 ++-- .../easyconfigs/h/HDF5/HDF5-1.8.16-intel-2016a-serial.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2016a.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-iomkl-2016.07.eb | 4 ++-- .../h/HDF5/HDF5-1.8.16-iomkl-2016.09-GCC-4.9.3-2.25.eb | 4 ++-- .../easyconfigs/h/HDF5/HDF5-1.8.17-foss-2016a-serial.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-foss-2016a.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-foss-2016b.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016a.eb | 4 ++-- .../easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016b-serial.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016b.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-foss-2016b.eb | 7 ++----- easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-foss-2017a.eb | 7 ++----- easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2016b.eb | 7 ++----- easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017.01.eb | 7 ++----- .../easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017a-serial.eb | 7 ++----- easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017a.eb | 7 ++----- easybuild/easyconfigs/h/HDF5/HDF5-1.8.7-goolf-1.4.10.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.7-ictce-5.3.0.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-goolf-1.4.10.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-goolf-1.5.16.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-ictce-5.2.0.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-ictce-5.3.0.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-ictce-5.4.0.eb | 4 ++-- easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-intel-2014b.eb | 4 ++-- 75 files changed, 144 insertions(+), 162 deletions(-) diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-foss-2016b.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-foss-2016b.eb index 55975c97d5..11a5ffcadd 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-foss-2016b.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-foss-2016b.eb @@ -1,7 +1,7 @@ name = 'HDF5' version = '1.10.0-patch1' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-goolfc-2016.10.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-goolfc-2016.10.eb index a728a33f56..761c68b5eb 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-goolfc-2016.10.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-goolfc-2016.10.eb @@ -1,7 +1,7 @@ name = 'HDF5' version = '1.10.0-patch1' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2016b.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2016b.eb index 8eddf5504b..7253681751 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2016b.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2016b.eb @@ -1,7 +1,7 @@ name = 'HDF5' version = '1.10.0-patch1' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2017.01.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2017.01.eb index 5cf3a3e7f5..cb5285d7c5 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2017.01.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2017.01.eb @@ -1,7 +1,7 @@ name = 'HDF5' version = '1.10.0-patch1' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2017a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2017a.eb index bc132a2144..9d04fbcf11 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2017a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2017a.eb @@ -1,7 +1,7 @@ name = 'HDF5' version = '1.10.0-patch1' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.10.1-intel-2017a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.10.1-intel-2017a.eb index d72f14fe00..2cb7193188 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.10.1-intel-2017a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.10.1-intel-2017a.eb @@ -1,7 +1,7 @@ name = 'HDF5' version = '1.10.1' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-GCC-4.8.1-serial.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-GCC-4.8.1-serial.eb index 9d10ec816c..1e95612a1b 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-GCC-4.8.1-serial.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-GCC-4.8.1-serial.eb @@ -2,14 +2,14 @@ name = 'HDF5' version = '1.8.10' versionsuffix = '-serial' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'GCC', 'version': '4.8.1'} toolchainopts = {'optarch': True, 'pic': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] dependencies = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-goolf-1.4.10.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-goolf-1.4.10.eb index 288a2e47ff..1f3a15a705 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-goolf-1.4.10.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.10' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'goolf', 'version': '1.4.10'} toolchainopts = {'optarch': True, 'usempi': True, 'pic': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] dependencies = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.3.0-gpfs-zlib-1.2.5.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.3.0-gpfs-zlib-1.2.5.eb index 1b26514524..9f3153cef8 100755 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.3.0-gpfs-zlib-1.2.5.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.3.0-gpfs-zlib-1.2.5.eb @@ -2,14 +2,14 @@ name = 'HDF5' version = '1.8.10' versionsuffix = "-gpfs" -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'ictce', 'version': '5.3.0'} toolchainopts = {'optarch': True, 'usempi': True, 'pic': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.3.0-gpfs.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.3.0-gpfs.eb index 20e204943c..314870506e 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.3.0-gpfs.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.3.0-gpfs.eb @@ -2,14 +2,14 @@ name = 'HDF5' version = '1.8.10' versionsuffix = "-gpfs" -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'ictce', 'version': '5.3.0'} toolchainopts = {'optarch': True, 'usempi': True, 'pic': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.3.0-serial.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.3.0-serial.eb index 4923cec819..54393d6cef 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.3.0-serial.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.3.0-serial.eb @@ -2,14 +2,14 @@ name = 'HDF5' version = '1.8.10' versionsuffix = '-serial' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'ictce', 'version': '5.3.0'} toolchainopts = {'optarch': True, 'pic': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] dependencies = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.3.0.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.3.0.eb index 53c166e963..75fb24dc93 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.3.0.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.10' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'ictce', 'version': '5.3.0'} toolchainopts = {'optarch': True, 'usempi': True, 'pic': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.4.0-gpfs.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.4.0-gpfs.eb index 126e473584..2aaf800fdb 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.4.0-gpfs.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.4.0-gpfs.eb @@ -2,14 +2,14 @@ name = 'HDF5' version = '1.8.10' versionsuffix = "-gpfs" -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'ictce', 'version': '5.4.0'} toolchainopts = {'optarch': True, 'usempi': True, 'pic': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.5.0-gpfs.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.5.0-gpfs.eb index eec3211c35..664ac4915d 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.5.0-gpfs.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-5.5.0-gpfs.eb @@ -2,14 +2,14 @@ name = 'HDF5' version = '1.8.10' versionsuffix = "-gpfs" -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'ictce', 'version': '5.5.0'} toolchainopts = {'optarch': True, 'usempi': True, 'pic': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-6.1.5-gpfs.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-6.1.5-gpfs.eb index caf75ce765..4f6fffd29a 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-6.1.5-gpfs.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-ictce-6.1.5-gpfs.eb @@ -2,14 +2,14 @@ name = 'HDF5' version = '1.8.10' versionsuffix = "-gpfs" -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'ictce', 'version': '6.1.5'} toolchainopts = {'optarch': True, 'usempi': True, 'pic': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-intel-2014b-gpfs.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-intel-2014b-gpfs.eb index fa45e3d80d..55ac49288a 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-intel-2014b-gpfs.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-intel-2014b-gpfs.eb @@ -2,14 +2,14 @@ name = 'HDF5' version = '1.8.10' versionsuffix = "-gpfs" -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'intel', 'version': '2014b'} toolchainopts = {'optarch': True, 'usempi': True, 'pic': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-patch1-goolf-1.4.10.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-patch1-goolf-1.4.10.eb index 0f94ca89b3..ed6d0e1c4e 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-patch1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-patch1-goolf-1.4.10.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.10-patch1' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'goolf', 'version': '1.4.10'} toolchainopts = {'optarch': True, 'usempi': True, 'pic': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-patch1-goolf-1.5.14.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-patch1-goolf-1.5.14.eb index c83b2a6347..da6a6ac07e 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-patch1-goolf-1.5.14.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-patch1-goolf-1.5.14.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.10-patch1' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'goolf', 'version': '1.5.14'} toolchainopts = {'optarch': True, 'usempi': True, 'pic': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-patch1-ictce-5.3.0.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-patch1-ictce-5.3.0.eb index 96aaf04223..df1a74ad9a 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-patch1-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.10-patch1-ictce-5.3.0.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.10-patch1' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'ictce', 'version': '5.3.0'} toolchainopts = {'optarch': True, 'usempi': True, 'pic': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.11-GCC-4.8.1-serial.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.11-GCC-4.8.1-serial.eb index d4743307f6..69b3336df0 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.11-GCC-4.8.1-serial.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.11-GCC-4.8.1-serial.eb @@ -2,14 +2,14 @@ name = 'HDF5' version = '1.8.11' versionsuffix = '-serial' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'GCC', 'version': '4.8.1'} toolchainopts = {'optarch': True, 'pic': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] dependencies = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.11-goolf-1.4.10.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.11-goolf-1.4.10.eb index 4406c160f4..baa65b4571 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.11-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.11-goolf-1.4.10.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.11' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'goolf', 'version': '1.4.10'} toolchainopts = {'optarch': True, 'pic': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] dependencies = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.11-ictce-5.3.0-serial.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.11-ictce-5.3.0-serial.eb index d1cfae6705..7095cb38b8 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.11-ictce-5.3.0-serial.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.11-ictce-5.3.0-serial.eb @@ -2,14 +2,14 @@ name = 'HDF5' version = '1.8.11' versionsuffix = '-serial' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'ictce', 'version': '5.3.0'} toolchainopts = {'optarch': True, 'pic': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] dependencies = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.12-goolf-1.4.10-zlib-1.2.7.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.12-goolf-1.4.10-zlib-1.2.7.eb index a0a7586662..d0013da7bf 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.12-goolf-1.4.10-zlib-1.2.7.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.12-goolf-1.4.10-zlib-1.2.7.eb @@ -2,14 +2,14 @@ name = 'HDF5' version = '1.8.12' versionsuffix = '-zlib-1.2.7' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'goolf', 'version': '1.4.10'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = ['configure_libtool.patch'] diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.12-ictce-5.4.0.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.12-ictce-5.4.0.eb index 233b7e31da..777fc010e6 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.12-ictce-5.4.0.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.12-ictce-5.4.0.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.12' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'ictce', 'version': '5.4.0'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.12-ictce-5.5.0-zlib-1.2.8.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.12-ictce-5.5.0-zlib-1.2.8.eb index bf02342e7c..ba8d085626 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.12-ictce-5.5.0-zlib-1.2.8.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.12-ictce-5.5.0-zlib-1.2.8.eb @@ -2,14 +2,14 @@ name = 'HDF5' version = '1.8.12' versionsuffix = '-zlib-1.2.8' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'ictce', 'version': '5.5.0'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.12-ictce-5.5.0.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.12-ictce-5.5.0.eb index 0a10444693..fd08cc083e 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.12-ictce-5.5.0.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.12-ictce-5.5.0.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.12' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'ictce', 'version': '5.5.0'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.12-intel-2016b.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.12-intel-2016b.eb index da7a64fcf9..ba130d5f31 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.12-intel-2016b.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.12-intel-2016b.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.12' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'intel', 'version': '2016b'} toolchainopts = {'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-foss-2014b.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-foss-2014b.eb index 2af8e449bf..c5622dfd07 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-foss-2014b.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-foss-2014b.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.13' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'foss', 'version': '2014b'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = ['configure_libtool.patch'] diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-foss-2015a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-foss-2015a.eb index f79d365b61..f8f32df424 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-foss-2015a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-foss-2015a.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.13' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'foss', 'version': '2015a'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2014b.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2014b.eb index e20cda0940..14daa11265 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2014b.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2014b.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.13' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'intel', 'version': '2014b'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2015a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2015a.eb index 16f7a03776..901fd44392 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2015a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2015a.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.13' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'intel', 'version': '2015a'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2015b.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2015b.eb index a74b48d664..6a1a9188e1 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2015b.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2015b.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.13' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'intel', 'version': '2015b'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-foss-2015a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-foss-2015a.eb index 35077bfe35..6720320b04 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-foss-2015a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-foss-2015a.eb @@ -2,14 +2,14 @@ name = 'HDF5' version = "1.8.14" -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'foss', 'version': '2015a'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-ictce-7.1.2-serial.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-ictce-7.1.2-serial.eb index 8ffb9102ba..8708c7b4dd 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-ictce-7.1.2-serial.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-ictce-7.1.2-serial.eb @@ -2,14 +2,14 @@ name = 'HDF5' version = '1.8.14' versionsuffix = '-serial' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'ictce', 'version': '7.1.2'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': False} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-ictce-7.1.2.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-ictce-7.1.2.eb index 5d8a6788d3..bfef0cbb11 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-ictce-7.1.2.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-ictce-7.1.2.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.14' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'ictce', 'version': '7.1.2'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-intel-2015a-serial.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-intel-2015a-serial.eb index 0db92859a2..5414c97fd0 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-intel-2015a-serial.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-intel-2015a-serial.eb @@ -2,14 +2,14 @@ name = 'HDF5' version = '1.8.14' versionsuffix = '-serial' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'intel', 'version': '2015a'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': False} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-intel-2015a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-intel-2015a.eb index 2b7af38374..8811c59a40 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-intel-2015a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-intel-2015a.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.14' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'intel', 'version': '2015a'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-foss-2015a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-foss-2015a.eb index ef7549e987..88e2ae54b1 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-foss-2015a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-foss-2015a.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.15' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'foss', 'version': '2015a'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = ['configure_libtool.patch'] diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-intel-2015a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-intel-2015a.eb index 9b028b25b8..e5738f0904 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-intel-2015a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-intel-2015a.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.15' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'intel', 'version': '2015a'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-intel-2015b.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-intel-2015b.eb index 802e3dd6a1..b35f180383 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-intel-2015b.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-intel-2015b.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.15' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'intel', 'version': '2015b'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-foss-2015a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-foss-2015a.eb index a9ec210198..152a305c88 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-foss-2015a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-foss-2015a.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.15-patch1' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'foss', 'version': '2015a'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = ['configure_libtool.patch'] diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-foss-2015b.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-foss-2015b.eb index 8b6038c4ee..d234a1dcc1 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-foss-2015b.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-foss-2015b.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.15-patch1' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'foss', 'version': '2015b'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = ['configure_libtool.patch'] diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-intel-2015a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-intel-2015a.eb index ec9b5d3a8a..03fb175bd6 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-intel-2015a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-intel-2015a.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.15-patch1' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'intel', 'version': '2015a'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-intel-2015b.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-intel-2015b.eb index aabe3f8e81..2ddc5c482c 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-intel-2015b.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-intel-2015b.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.15-patch1' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'intel', 'version': '2015b'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-foss-2015a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-foss-2015a.eb index 25e05e8e27..2309adbc85 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-foss-2015a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-foss-2015a.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.16' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'foss', 'version': '2015a'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = ['configure_libtool.patch'] diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-foss-2016a-serial.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-foss-2016a-serial.eb index 2936e9795e..1f315f8f38 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-foss-2016a-serial.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-foss-2016a-serial.eb @@ -2,14 +2,14 @@ name = 'HDF5' version = '1.8.16' versionsuffix = '-serial' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'foss', 'version': '2016a'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': False} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = ['configure_libtool.patch'] diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-foss-2016a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-foss-2016a.eb index 7250d32fe5..67235e28b4 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-foss-2016a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-foss-2016a.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.16' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'foss', 'version': '2016a'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-gimkl-2.11.5-serial.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-gimkl-2.11.5-serial.eb index 3f80a99e71..ac5b554944 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-gimkl-2.11.5-serial.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-gimkl-2.11.5-serial.eb @@ -2,14 +2,14 @@ name = 'HDF5' version = '1.8.16' versionsuffix = '-serial' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'gimkl', 'version': '2.11.5'} toolchainopts = {'pic': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = ['configure_libtool.patch'] diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2015b-serial.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2015b-serial.eb index 1b0486b830..d28779cc9c 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2015b-serial.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2015b-serial.eb @@ -2,14 +2,14 @@ name = 'HDF5' version = '1.8.16' versionsuffix = '-serial' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'intel', 'version': '2015b'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': False} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2015b.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2015b.eb index 8df4b88524..0903315947 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2015b.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2015b.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.16' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'intel', 'version': '2015b'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2016.02-GCC-4.9.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2016.02-GCC-4.9.eb index d1c17ce30e..0aa0ce34f3 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2016.02-GCC-4.9.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2016.02-GCC-4.9.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.16' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'intel', 'version': '2016.02-GCC-4.9'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2016a-serial.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2016a-serial.eb index dc2e939bfa..930a707634 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2016a-serial.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2016a-serial.eb @@ -2,14 +2,14 @@ name = 'HDF5' version = '1.8.16' versionsuffix = '-serial' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'intel', 'version': '2016a'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': False} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2016a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2016a.eb index dc65dce562..cade57c186 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2016a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2016a.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.16' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'intel', 'version': '2016a'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-iomkl-2016.07.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-iomkl-2016.07.eb index d61bff1fff..feea5f3d11 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-iomkl-2016.07.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-iomkl-2016.07.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.16' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'iomkl', 'version': '2016.07'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = ['configure_libtool.patch'] diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-iomkl-2016.09-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-iomkl-2016.09-GCC-4.9.3-2.25.eb index e3d38f1976..847ddbbde6 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-iomkl-2016.09-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-iomkl-2016.09-GCC-4.9.3-2.25.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.16' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'iomkl', 'version': '2016.09-GCC-4.9.3-2.25'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = ['configure_libtool.patch'] diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-foss-2016a-serial.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-foss-2016a-serial.eb index 1cc3adf6f7..9ed0a9b12d 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-foss-2016a-serial.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-foss-2016a-serial.eb @@ -2,14 +2,14 @@ name = 'HDF5' version = '1.8.17' versionsuffix = '-serial' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'foss', 'version': '2016a'} toolchainopts = {'optarch': True, 'pic': True, 'usempi': False} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = ['configure_libtool.patch'] diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-foss-2016a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-foss-2016a.eb index 359ef33d9b..7de9eafbba 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-foss-2016a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-foss-2016a.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.17' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'foss', 'version': '2016a'} toolchainopts = {'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-foss-2016b.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-foss-2016b.eb index 5063dd3bc6..396a16a44d 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-foss-2016b.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-foss-2016b.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.17' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'foss', 'version': '2016b'} toolchainopts = {'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016a.eb index 7ab0f77fba..a5deac4990 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016a.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.17' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'intel', 'version': '2016a'} toolchainopts = {'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016b-serial.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016b-serial.eb index ded2abcfa1..529a200b16 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016b-serial.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016b-serial.eb @@ -2,14 +2,14 @@ name = 'HDF5' version = '1.8.17' versionsuffix = '-serial' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'intel', 'version': '2016b'} toolchainopts = {'pic': True, 'usempi': False} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016b.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016b.eb index d67a77ebd2..24a6c22972 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016b.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016b.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.17' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'intel', 'version': '2016b'} toolchainopts = {'pic': True, 'usempi': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-foss-2016b.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-foss-2016b.eb index e6c0e7eab7..f6e11b3e6a 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-foss-2016b.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-foss-2016b.eb @@ -1,17 +1,14 @@ name = 'HDF5' version = '1.8.18' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'foss', 'version': '2016b'} toolchainopts = {'pic': True, 'usempi': True} -source_urls = [ - 'https://support.hdfgroup.org/ftp/HDF5/current18/src/', - 'https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(versions)/src/' -] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] checksums = ['dd2148b740713ca0295442ec683d7b1c'] diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-foss-2017a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-foss-2017a.eb index 1febe1c832..addd6deb8d 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-foss-2017a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-foss-2017a.eb @@ -1,17 +1,14 @@ name = 'HDF5' version = '1.8.18' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'foss', 'version': '2017a'} toolchainopts = {'pic': True, 'usempi': True} -source_urls = [ - 'https://support.hdfgroup.org/ftp/HDF5/current18/src/', - 'https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(versions)/src/' -] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] checksums = ['dd2148b740713ca0295442ec683d7b1c'] diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2016b.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2016b.eb index d1efd2d906..1b22bab5d5 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2016b.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2016b.eb @@ -1,17 +1,14 @@ name = 'HDF5' version = '1.8.18' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'intel', 'version': '2016b'} toolchainopts = {'pic': True, 'usempi': True} -source_urls = [ - 'https://support.hdfgroup.org/ftp/HDF5/current18/src/', - 'https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(versions)/src/' -] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] checksums = ['dd2148b740713ca0295442ec683d7b1c'] diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017.01.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017.01.eb index 2b7452c39b..52424da991 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017.01.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017.01.eb @@ -1,17 +1,14 @@ name = 'HDF5' version = '1.8.18' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'intel', 'version': '2017.01'} toolchainopts = {'pic': True, 'usempi': True} -source_urls = [ - 'https://support.hdfgroup.org/ftp/HDF5/current18/src/', - 'https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(versions)/src/' -] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] checksums = ['dd2148b740713ca0295442ec683d7b1c'] diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017a-serial.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017a-serial.eb index ef054b6cdf..dd0fd05bf2 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017a-serial.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017a-serial.eb @@ -2,17 +2,14 @@ name = 'HDF5' version = '1.8.18' versionsuffix = '-serial' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'intel', 'version': '2017a'} toolchainopts = {'pic': True, 'usempi': False} -source_urls = [ - 'https://support.hdfgroup.org/ftp/HDF5/current18/src/', - 'https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(versions)/src/' -] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] checksums = ['dd2148b740713ca0295442ec683d7b1c'] diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017a.eb index 570e4a8ff2..630ef958f3 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017a.eb @@ -1,17 +1,14 @@ name = 'HDF5' version = '1.8.18' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'intel', 'version': '2017a'} toolchainopts = {'pic': True, 'usempi': True} -source_urls = [ - 'https://support.hdfgroup.org/ftp/HDF5/current18/src/', - 'https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(versions)/src/' -] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] checksums = ['dd2148b740713ca0295442ec683d7b1c'] diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.7-goolf-1.4.10.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.7-goolf-1.4.10.eb index b8dd1adc77..3b0999608a 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.7-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.7-goolf-1.4.10.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.7' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'goolf', 'version': '1.4.10'} toolchainopts = {'optarch': True, 'usempi': True, 'pic': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = ['configure_libtool.patch'] diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.7-ictce-5.3.0.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.7-ictce-5.3.0.eb index d33b58408f..efc7ae1f6e 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.7-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.7-ictce-5.3.0.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.7' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'ictce', 'version': '5.3.0'} toolchainopts = {'optarch': True, 'usempi': True, 'pic': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-goolf-1.4.10.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-goolf-1.4.10.eb index 513cb0e22b..ddc5289cb5 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-goolf-1.4.10.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.9' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'goolf', 'version': '1.4.10'} toolchainopts = {'optarch': True, 'usempi': True, 'pic': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = ['configure_libtool.patch'] diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-goolf-1.5.16.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-goolf-1.5.16.eb index 46dd3d15ad..e77a9b41a1 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-goolf-1.5.16.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-goolf-1.5.16.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.9' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'goolf', 'version': '1.5.16'} toolchainopts = {'optarch': True, 'usempi': True, 'pic': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = ['configure_libtool.patch'] diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-ictce-5.2.0.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-ictce-5.2.0.eb index 7cd6cdf595..24dd608c18 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-ictce-5.2.0.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-ictce-5.2.0.eb @@ -1,15 +1,15 @@ name = 'HDF5' version = '1.8.9' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'ictce', 'version': '5.2.0'} toolchainopts = {'optarch': True, 'usempi': True, 'pic': True} +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] patches = [ 'HDF5_configure_ictce.patch', diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-ictce-5.3.0.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-ictce-5.3.0.eb index fd4fb4e5c0..202a1ff1e5 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-ictce-5.3.0.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.9' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'ictce', 'version': '5.3.0'} toolchainopts = {'optarch': True, 'usempi': True, 'pic': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-ictce-5.4.0.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-ictce-5.4.0.eb index 4c1c1db157..51723ed590 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-ictce-5.4.0.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-ictce-5.4.0.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.9' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'ictce', 'version': '5.4.0'} toolchainopts = {'optarch': True, 'usempi': True, 'pic': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-intel-2014b.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-intel-2014b.eb index 24af13ad70..e3dd542387 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-intel-2014b.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.9-intel-2014b.eb @@ -1,14 +1,14 @@ name = 'HDF5' version = '1.8.9' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'intel', 'version': '2014b'} toolchainopts = {'optarch': True, 'usempi': True, 'pic': True} -source_urls = ['http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version)s/src'] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] patches = [ -- GitLab From 5aae227867f8c4c0de857c68da96fb79d101e32e Mon Sep 17 00:00:00 2001 From: Davide Vanzo Date: Tue, 20 Jun 2017 14:48:06 -0500 Subject: [PATCH 242/608] adding easyconfigs: ABINIT-8.0.8b-foss-2016b.eb --- .../a/ABINIT/ABINIT-8.0.8b-foss-2016b.eb | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 easybuild/easyconfigs/a/ABINIT/ABINIT-8.0.8b-foss-2016b.eb diff --git a/easybuild/easyconfigs/a/ABINIT/ABINIT-8.0.8b-foss-2016b.eb b/easybuild/easyconfigs/a/ABINIT/ABINIT-8.0.8b-foss-2016b.eb new file mode 100644 index 0000000000..461d6b226e --- /dev/null +++ b/easybuild/easyconfigs/a/ABINIT/ABINIT-8.0.8b-foss-2016b.eb @@ -0,0 +1,34 @@ +easyblock = 'ConfigureMake' + +name = 'ABINIT' +version = '8.0.8b' + +homepage = 'http://www.abinit.org/' +description = """ABINIT is a package whose main program allows one to find the total energy, charge density and + electronic structure of systems made of electrons and nuclei (molecules and periodic solids) within Density Functional + Theory (DFT), using pseudopotentials and a planewave or wavelet basis.""" + +toolchain = {'name': 'foss', 'version': '2016b'} + +source_urls = ['http://ftp.abinit.org/'] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['abc9e303bfa7f9f43f95598f87d84d5d'] + +configopts = "--with-mpi-prefix=$EBROOTIMPI/intel64 --with-trio-flavor='etsf_io+netcdf' --with-dft=flavor='libxc' " +configopts += '--with-netcdf-incs="-I$EBROOTNETCDF/include -I$EBROOTNETCDFMINFORTRAN/include" ' +configopts += '--with-netcdf-libs="-L$EBROOTNETCDF/lib -lnetcdf -L$EBROOTNETCDFMINFORTRAN/lib -lnetcdff" ' +configopts += '--with-libxc-incs="-I$EBROOTLIBXC/include" --with-libxc-libs="-L$EBROOTLIBXC/lib -lxc" ' +configopts += 'FCFLAGS="-ffree-line-length-none" ' + +dependencies = [ + ('libxc', '3.0.0'), + ('netCDF', '4.4.1'), + ('netCDF-Fortran', '4.4.4'), +] + +sanity_check_paths = { + 'files': ['bin/%s' % x for x in ['abinit', 'aim', 'cut3d', 'conducti', 'mrgddb', 'mrgscr', 'optic']], + 'dirs': ['lib/pkgconfig'], +} + +moduleclass = 'chem' -- GitLab From 4dfab70c387a6de9848001e4cea524714d1ae9cd Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 20 Jun 2017 21:56:55 +0200 Subject: [PATCH 243/608] adding easyconfigs: Ruby-2.3.4.eb --- easybuild/easyconfigs/r/Ruby/Ruby-2.3.4.eb | 58 ++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 easybuild/easyconfigs/r/Ruby/Ruby-2.3.4.eb diff --git a/easybuild/easyconfigs/r/Ruby/Ruby-2.3.4.eb b/easybuild/easyconfigs/r/Ruby/Ruby-2.3.4.eb new file mode 100644 index 0000000000..3149eef3ad --- /dev/null +++ b/easybuild/easyconfigs/r/Ruby/Ruby-2.3.4.eb @@ -0,0 +1,58 @@ +name = 'Ruby' +version = '2.3.4' + +homepage = 'https://www.ruby-lang.org' +description = """Ruby is a dynamic, open source programming language with + a focus on simplicity and productivity. It has an elegant syntax that is + natural to read and easy to write.""" + +toolchain = {'name': 'dummy', 'version': 'dummy'} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = ['http://cache.ruby-lang.org/pub/ruby/'] + +ext_options = { + 'source_urls': ['http://rubygems.org/downloads/'], + 'source_tmpl': '%(name)s-%(version)s.gem', +} + +exts_list = [ + ('ffi', '1.9.18', ext_options), + ('childprocess', '0.7.0', ext_options), + ('json', '2.1.0', ext_options), + ('cabin', '0.9.0', ext_options), + ('backports', '3.8.0', ext_options), + ('arr-pm', '0.0.10', ext_options), + ('clamp', '1.1.2', ext_options), + ('multipart-post', '2.0.0', ext_options), + ('faraday', '0.12.1', ext_options), + ('faraday_middleware', '0.11.0.1', ext_options), + ('highline', '1.7.8', ext_options), + ('net-http-pipeline', '1.0.1', ext_options), + ('connection_pool', '2.2.1', ext_options), + ('net-http-persistent', '2.9.4', ext_options), + ('multi_json', '1.12.1', ext_options), + ('public_suffix', '2.0.5', ext_options), + ('addressable', '2.4.0', ext_options), + ('gh', '0.15.1', ext_options), + ('launchy', '2.4.3', ext_options), + ('ethon', '0.10.1', ext_options), + ('typhoeus', '1.1.2', ext_options), + ('websocket', '1.2.4', ext_options), + ('pusher-client', '0.6.2', ext_options), + ('diff-lcs', '1.3', ext_options), + ('rspec-support', '3.6.0', ext_options), + ('rspec-mocks', '3.6.0', ext_options), + ('rspec-expectations', '3.6.0', ext_options), + ('rspec-core', '3.6.0', ext_options), + ('rspec', '3.6.0', ext_options), + ('rack', '2.0.3', ext_options), + ('rack-protection', '2.0.0', ext_options), + ('tilt', '2.0.7', ext_options), + ('mustermann', '1.0.0', ext_options), + ('sinatra', '2.0.0', ext_options), + ('rack-test', '0.6.3', ext_options), + ('bundler', '1.15.1', ext_options), +] + +moduleclass = 'lang' -- GitLab From b6169899ea7e248ba4868b61a594d5d7bb18d43e Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 20 Jun 2017 21:57:28 +0200 Subject: [PATCH 244/608] adding easyconfigs: Rust-1.18.0-foss-2017a.eb --- .../r/Rust/Rust-1.18.0-foss-2017a.eb | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 easybuild/easyconfigs/r/Rust/Rust-1.18.0-foss-2017a.eb diff --git a/easybuild/easyconfigs/r/Rust/Rust-1.18.0-foss-2017a.eb b/easybuild/easyconfigs/r/Rust/Rust-1.18.0-foss-2017a.eb new file mode 100644 index 0000000000..22f0bbe798 --- /dev/null +++ b/easybuild/easyconfigs/r/Rust/Rust-1.18.0-foss-2017a.eb @@ -0,0 +1,22 @@ +easyblock = 'ConfigureMake' + +name = 'Rust' +version = '1.18.0' + +homepage = 'https://www.rust-lang.org' +description = """Rust is a systems programming language that runs blazingly fast, prevents segfaults, + and guarantees thread safety.""" + +toolchain = {'name': 'foss', 'version': '2017a'} + +source_urls = ['https://static.rust-lang.org/dist/'] +sources = ['rustc-%(version)s-src.tar.gz'] + +builddependencies = [('CMake', '3.8.2')] + +sanity_check_paths = { + 'files': ['bin/rustc', 'bin/rustdoc'], + 'dirs': ['share/doc', 'share/man', 'lib/rustlib'], +} + +moduleclass = 'lang' -- GitLab From 3c32734d5ef41679343539f1526aa5bc6d734801 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 21 Jun 2017 08:38:51 +0200 Subject: [PATCH 245/608] adding easyconfigs: CMake-3.8.2-GCCcore-6.3.0.eb --- .../c/CMake/CMake-3.8.2-GCCcore-6.3.0.eb | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 easybuild/easyconfigs/c/CMake/CMake-3.8.2-GCCcore-6.3.0.eb diff --git a/easybuild/easyconfigs/c/CMake/CMake-3.8.2-GCCcore-6.3.0.eb b/easybuild/easyconfigs/c/CMake/CMake-3.8.2-GCCcore-6.3.0.eb new file mode 100644 index 0000000000..23aa365a15 --- /dev/null +++ b/easybuild/easyconfigs/c/CMake/CMake-3.8.2-GCCcore-6.3.0.eb @@ -0,0 +1,36 @@ +easyblock = 'ConfigureMake' + +name = 'CMake' +version = '3.8.2' + +homepage = 'http://www.cmake.org' +description = """CMake, the cross-platform, open-source build system. + CMake is a family of tools designed to build, test and package software.""" + +toolchain = {'name': 'GCCcore', 'version': '6.3.0'} + +source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s'] +sources = [SOURCELOWER_TAR_GZ] + +configopts = '-- -DCMAKE_USE_OPENSSL=1 -DCMAKE_PREFIX_PATH=$EBROOTNCURSES' + +builddependencies = [ + ('binutils', '2.27'), +] + + +dependencies = [ + ('ncurses', '6.0'), + # OS dependency should be preferred if the os version is more recent then this version, + # it's nice to have an up to date openssl for security reasons + # ('OpenSSL', '1.1.0c'), +] + +osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')] + +sanity_check_paths = { + 'files': ["bin/%s" % x for x in ['ccmake', 'cmake', 'cpack', 'ctest']], + 'dirs': [], +} + +moduleclass = 'devel' -- GitLab From b3a350b8e2d687d3485dc3280668908462b424f7 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 21 Jun 2017 10:15:55 +0200 Subject: [PATCH 246/608] adding easyconfigs: pydlpoly-20150225-intel-2016b-Python-2.7.12.eb, FFTW-2.1.5-intel-2016b.eb --- .../f/FFTW/FFTW-2.1.5-intel-2016b.eb | 35 +++++++++++++++++ ...poly-20150225-intel-2016b-Python-2.7.12.eb | 39 +++++++++++++++++++ 2 files changed, 74 insertions(+) create mode 100644 easybuild/easyconfigs/f/FFTW/FFTW-2.1.5-intel-2016b.eb create mode 100644 easybuild/easyconfigs/p/pydlpoly/pydlpoly-20150225-intel-2016b-Python-2.7.12.eb diff --git a/easybuild/easyconfigs/f/FFTW/FFTW-2.1.5-intel-2016b.eb b/easybuild/easyconfigs/f/FFTW/FFTW-2.1.5-intel-2016b.eb new file mode 100644 index 0000000000..77bea4672e --- /dev/null +++ b/easybuild/easyconfigs/f/FFTW/FFTW-2.1.5-intel-2016b.eb @@ -0,0 +1,35 @@ +easyblock = 'ConfigureMake' + +name = 'FFTW' +version = '2.1.5' + +homepage = 'http://www.fftw.org' +description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) + in one or more dimensions, of arbitrary input size, and of both real and complex data.""" + +toolchain = {'name': 'intel', 'version': '2016b'} +toolchainopts = {'pic': True} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = [homepage] + +patches = ['FFTW-%(version)s_fix-configure-Fortran-linking.patch'] + +common_configopts = "--enable-shared --enable-type-prefix --enable-threads --with-pic" + +configopts = [ + common_configopts + " --enable-float --enable-mpi", + common_configopts + " --enable-mpi", # default as last +] + +sanity_check_paths = { + 'files': ['include/%sfftw%s.h' % (x, y) for x in ['d', 'dr', 's', 'sr'] for y in ['', '_mpi', '_threads']] + + ['lib/lib%sfftw%s.a' % (x, y) for x in ['d', 'dr', 's', 'sr'] for y in ['', '_mpi', '_threads']] + + ['lib/lib%sfftw%s.%s' % (x, y, SHLIB_EXT) for x in ['d', 'dr', 's', 'sr'] + for y in ['', '_mpi', '_threads']], + 'dirs': [], +} +# make sure *_f77 symbols are there (patch is required to avoid --disable-fortran being used automatically) +sanity_check_commands = ["nm %(installdir)s/lib/libdfftw.a | grep _f77"] + +moduleclass = 'numlib' diff --git a/easybuild/easyconfigs/p/pydlpoly/pydlpoly-20150225-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/p/pydlpoly/pydlpoly-20150225-intel-2016b-Python-2.7.12.eb new file mode 100644 index 0000000000..9e06a0f8d2 --- /dev/null +++ b/easybuild/easyconfigs/p/pydlpoly/pydlpoly-20150225-intel-2016b-Python-2.7.12.eb @@ -0,0 +1,39 @@ +easyblock = 'MakeCp' + +name = 'pydlpoly' +version = '20150225' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://cmc.aci.ruhr-uni-bochum.de/cmc/' +description = """Pydlpoly is a molecular dynamics simulation package which is a modified version of DL-POLY with + a Python language interface.""" + +toolchain = {'name': 'intel', 'version': '2016b'} +toolchainopts = {'usempi': True, 'pic': True} + +sources = ['%(name)s_250215.tgz'] +checksums = ['cd84a4b563dd16823e22fe6c450b07fd95036e20e0c6b7fc308afdb347241122'] + +dependencies = [ + ('Python', '2.7.12'), # also provides mpi4py, numpy + ('h5py', '2.7.0', versionsuffix), + ('FFTW', '2.1.5'), +] + +start_dir = 'source' + +parallel = 1 +buildopts = 'FC="$FC" LD="$FC -o" LDFLAGS="$FFLAGS" FFLAGS="-c $FFLAGS" LDLIBS="-ldfftw" F2PY_COMP=intelem' + +files_to_copy = ['doc', 'py', 'scripts', 'so'] + +sanity_check_paths = { + 'files': ['so/_pydlpoly.%s' % SHLIB_EXT], + 'dirs': ['py'], +} +sanity_check_commands = ["python -c 'import pydlpoly'"] + +modextrapaths = {'PYTHONPATH': ['py', 'so']} +modextravars = {'PDLPDIR': '%(installdir)s'} + +moduleclass = 'chem' -- GitLab From 91223e02053ee50498fd81041fc24acc35f1c99d Mon Sep 17 00:00:00 2001 From: Samuel Moors Date: Mon, 12 Jun 2017 16:20:00 +0200 Subject: [PATCH 247/608] install gSOAP --- .../d/davix/davix-0.6.6-intel-2017a.eb | 37 +++++++++++++++++++ .../g/gSOAP/gSOAP-2.8.47-GCCcore-6.3.0.eb | 35 ++++++++++++++++++ .../g/gtest/gtest-1.8.0-GCCcore-6.3.0.eb | 19 ++++++++++ 3 files changed, 91 insertions(+) create mode 100644 easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb create mode 100644 easybuild/easyconfigs/g/gSOAP/gSOAP-2.8.47-GCCcore-6.3.0.eb create mode 100644 easybuild/easyconfigs/g/gtest/gtest-1.8.0-GCCcore-6.3.0.eb diff --git a/easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb b/easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb new file mode 100644 index 0000000000..2ad043d6bd --- /dev/null +++ b/easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb @@ -0,0 +1,37 @@ +easyblock = 'CMakeMake' + +name = 'davix' +version = '0.6.6' + +homepage = 'http://dmc.web.cern.ch/projects/davix/home' +description = """The davix project aims to make file management over HTTP-based protocols simple. + The focus is on high-performance remote I/O and data management of large collections of files. + Currently, there is support for the WebDav (link is external), Amazon S3 (link is external), + Microsoft Azure (link is external), and HTTP (link is external) protocols.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['https://github.com/cern-it-sdc-id/davix/archive/'] +sources = ['R_%s.tar.gz' % version.replace('.','_')] + +builddependencies = [ + ('CMake', '3.8.1'), +] + +dependencies = [ + ('libxml2', '2.9.4'), + ('gtest', '1.8.0'), + ('gSOAP', '2.8.47'), + ('Doxygen', '1.8.13'), + ('Boost', '1.63.0', '-Python-2.7.13'), + # ('abi-compliance-checker', ''), +] + +osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')] + +sanity_check_paths = { + 'files': ['lib/liblib_g2logger.a', 'lib/liblib_activeobject.a'], + 'dirs': [], +} + +moduleclass = 'tools' diff --git a/easybuild/easyconfigs/g/gSOAP/gSOAP-2.8.47-GCCcore-6.3.0.eb b/easybuild/easyconfigs/g/gSOAP/gSOAP-2.8.47-GCCcore-6.3.0.eb new file mode 100644 index 0000000000..d5e9165011 --- /dev/null +++ b/easybuild/easyconfigs/g/gSOAP/gSOAP-2.8.47-GCCcore-6.3.0.eb @@ -0,0 +1,35 @@ +easyblock = "ConfigureMake" + +name = 'gSOAP' +version = '2.8.47' + +homepage = 'http://www.cs.fsu.edu/~engelen/soap.html' +description = """The gSOAP toolkit is a C and C++ software development toolkit for + SOAP and REST XML Web services and generic C/C++ XML data bindings. + The toolkit analyzes WSDLs and XML schemas (separately or as a combined set) and maps the XML schema types + and the SOAP/REST XML messaging protocols to easy-to-use and efficient C and C++ code. + It also supports exposing (legacy) C and C++ applications as XML Web services + by auto-generating XML serialization code and WSDL specifications. + Or you can simply use it to automatically convert XML to/from C and C++ data. + The toolkit supports options to generate pure ANSI C or C++ with or without STL.""" + +toolchain = {'name': 'GCCcore', 'version': '6.3.0'} + +builddependencies = [ + ('Bison', '3.0.4'), + ('flex', '2.6.3'), +] + +dependencies = [('zlib', '1.2.11')] + +sources = ['%(namelower)s_%(version)s.zip'] +source_urls = [SOURCEFORGE_SOURCE] + +parallel = 1 + +sanity_check_paths = { + 'files': ['bin/soapcpp2', 'bin/wsdl2h'] + 'dirs': ['include', 'lib'], +} + +moduleclass = 'devel' diff --git a/easybuild/easyconfigs/g/gtest/gtest-1.8.0-GCCcore-6.3.0.eb b/easybuild/easyconfigs/g/gtest/gtest-1.8.0-GCCcore-6.3.0.eb new file mode 100644 index 0000000000..d48012e5d8 --- /dev/null +++ b/easybuild/easyconfigs/g/gtest/gtest-1.8.0-GCCcore-6.3.0.eb @@ -0,0 +1,19 @@ +easyblock = "Tarball" + +name = 'gtest' +version = '1.8.0' + +homepage = 'https://code.google.com/p/googletest/' +description = "Google's framework for writing C++ tests on a variety of platforms" + +toolchain = {'name': 'GCCcore', 'version': '6.3.0'} + +sources = [SOURCE_ZIP] +source_urls = ['https://googletest.googlecode.com/files'] + +sanity_check_paths = { + 'files': ['CMakeLists.txt', ], + 'dirs': ['include', 'src'], +} + +moduleclass = 'devel' -- GitLab From b5c6db24f28080f818f251d957c1cd5c896578e3 Mon Sep 17 00:00:00 2001 From: Samuel Moors Date: Tue, 13 Jun 2017 14:34:05 +0200 Subject: [PATCH 248/608] install gtest, gSOAP, davix --- .../easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb | 13 +++++++++++-- .../g/gSOAP/gSOAP-2.8.47-GCCcore-6.3.0.eb | 2 +- .../g/gtest/gtest-1.8.0-GCCcore-6.3.0.eb | 6 +++--- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb b/easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb index 2ad043d6bd..e169a1b8ba 100644 --- a/easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb +++ b/easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb @@ -16,6 +16,7 @@ sources = ['R_%s.tar.gz' % version.replace('.','_')] builddependencies = [ ('CMake', '3.8.1'), + ('LibUUID', '1.0.3'), ] dependencies = [ @@ -30,8 +31,16 @@ dependencies = [ osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')] sanity_check_paths = { - 'files': ['lib/liblib_g2logger.a', 'lib/liblib_activeobject.a'], - 'dirs': [], + 'files': [ + 'bin/davix-get', + 'bin/davix-http', + 'bin/davix-ls', + 'bin/davix-mkdir', + 'bin/davix-mv', + 'bin/davix-put', + 'bin/davix-rm' + ], + 'dirs': ['include', 'lib64'], } moduleclass = 'tools' diff --git a/easybuild/easyconfigs/g/gSOAP/gSOAP-2.8.47-GCCcore-6.3.0.eb b/easybuild/easyconfigs/g/gSOAP/gSOAP-2.8.47-GCCcore-6.3.0.eb index d5e9165011..386dbdf5e8 100644 --- a/easybuild/easyconfigs/g/gSOAP/gSOAP-2.8.47-GCCcore-6.3.0.eb +++ b/easybuild/easyconfigs/g/gSOAP/gSOAP-2.8.47-GCCcore-6.3.0.eb @@ -28,7 +28,7 @@ source_urls = [SOURCEFORGE_SOURCE] parallel = 1 sanity_check_paths = { - 'files': ['bin/soapcpp2', 'bin/wsdl2h'] + 'files': ['bin/soapcpp2', 'bin/wsdl2h'], 'dirs': ['include', 'lib'], } diff --git a/easybuild/easyconfigs/g/gtest/gtest-1.8.0-GCCcore-6.3.0.eb b/easybuild/easyconfigs/g/gtest/gtest-1.8.0-GCCcore-6.3.0.eb index d48012e5d8..55b27244e4 100644 --- a/easybuild/easyconfigs/g/gtest/gtest-1.8.0-GCCcore-6.3.0.eb +++ b/easybuild/easyconfigs/g/gtest/gtest-1.8.0-GCCcore-6.3.0.eb @@ -8,12 +8,12 @@ description = "Google's framework for writing C++ tests on a variety of platform toolchain = {'name': 'GCCcore', 'version': '6.3.0'} -sources = [SOURCE_ZIP] -source_urls = ['https://googletest.googlecode.com/files'] +sources = ['release-%(version)s.tar.gz'] +source_urls = ['https://github.com/google/googletest/archive/'] sanity_check_paths = { 'files': ['CMakeLists.txt', ], - 'dirs': ['include', 'src'], + 'dirs': ['googletest/include', 'googletest/src'], } moduleclass = 'devel' -- GitLab From 357fe53db8337ad167e9c25dae6fe32a5775e6e5 Mon Sep 17 00:00:00 2001 From: Samuel Moors Date: Tue, 20 Jun 2017 11:02:48 +0200 Subject: [PATCH 249/608] delete comment --- easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb | 1 - 1 file changed, 1 deletion(-) diff --git a/easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb b/easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb index e169a1b8ba..c35600e22c 100644 --- a/easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb +++ b/easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb @@ -25,7 +25,6 @@ dependencies = [ ('gSOAP', '2.8.47'), ('Doxygen', '1.8.13'), ('Boost', '1.63.0', '-Python-2.7.13'), - # ('abi-compliance-checker', ''), ] osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')] -- GitLab From ddfc7ba922497ceb27648aa1266a0367a1278159 Mon Sep 17 00:00:00 2001 From: Samuel Moors Date: Tue, 20 Jun 2017 11:24:36 +0200 Subject: [PATCH 250/608] fix build dependencies --- easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb b/easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb index c35600e22c..c0b7fbe385 100644 --- a/easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb +++ b/easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb @@ -17,13 +17,13 @@ sources = ['R_%s.tar.gz' % version.replace('.','_')] builddependencies = [ ('CMake', '3.8.1'), ('LibUUID', '1.0.3'), + ('gtest', '1.8.0'), + ('Doxygen', '1.8.13'), ] dependencies = [ ('libxml2', '2.9.4'), - ('gtest', '1.8.0'), ('gSOAP', '2.8.47'), - ('Doxygen', '1.8.13'), ('Boost', '1.63.0', '-Python-2.7.13'), ] -- GitLab From feee6dc88d4ab81e7183cc430723b0e104b21531 Mon Sep 17 00:00:00 2001 From: Samuel Moors Date: Tue, 20 Jun 2017 12:23:33 +0200 Subject: [PATCH 251/608] fix style nits --- .../easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb | 10 +--------- .../easyconfigs/g/gSOAP/gSOAP-2.8.47-GCCcore-6.3.0.eb | 6 +++--- 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb b/easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb index c0b7fbe385..ff2cf5d69f 100644 --- a/easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb +++ b/easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb @@ -30,15 +30,7 @@ dependencies = [ osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')] sanity_check_paths = { - 'files': [ - 'bin/davix-get', - 'bin/davix-http', - 'bin/davix-ls', - 'bin/davix-mkdir', - 'bin/davix-mv', - 'bin/davix-put', - 'bin/davix-rm' - ], + 'files': ['bin/davix-%s' % x for x in ['get', 'http', 'ls', 'mkdir', 'mv', 'put', 'rm']], 'dirs': ['include', 'lib64'], } diff --git a/easybuild/easyconfigs/g/gSOAP/gSOAP-2.8.47-GCCcore-6.3.0.eb b/easybuild/easyconfigs/g/gSOAP/gSOAP-2.8.47-GCCcore-6.3.0.eb index 386dbdf5e8..14c4a424bc 100644 --- a/easybuild/easyconfigs/g/gSOAP/gSOAP-2.8.47-GCCcore-6.3.0.eb +++ b/easybuild/easyconfigs/g/gSOAP/gSOAP-2.8.47-GCCcore-6.3.0.eb @@ -15,6 +15,9 @@ description = """The gSOAP toolkit is a C and C++ software development toolkit f toolchain = {'name': 'GCCcore', 'version': '6.3.0'} +sources = ['%(namelower)s_%(version)s.zip'] +source_urls = [SOURCEFORGE_SOURCE] + builddependencies = [ ('Bison', '3.0.4'), ('flex', '2.6.3'), @@ -22,9 +25,6 @@ builddependencies = [ dependencies = [('zlib', '1.2.11')] -sources = ['%(namelower)s_%(version)s.zip'] -source_urls = [SOURCEFORGE_SOURCE] - parallel = 1 sanity_check_paths = { -- GitLab From 64f4ebca8138d401b309a33700c15768e00174a8 Mon Sep 17 00:00:00 2001 From: Samuel Moors Date: Tue, 20 Jun 2017 12:46:03 +0200 Subject: [PATCH 252/608] gsoap: fix source_urls and bump version to 2.8.48 --- easybuild/easyconfigs/g/gSOAP/gSOAP-2.8.47-GCCcore-6.3.0.eb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/g/gSOAP/gSOAP-2.8.47-GCCcore-6.3.0.eb b/easybuild/easyconfigs/g/gSOAP/gSOAP-2.8.47-GCCcore-6.3.0.eb index 14c4a424bc..1d8dbc1f53 100644 --- a/easybuild/easyconfigs/g/gSOAP/gSOAP-2.8.47-GCCcore-6.3.0.eb +++ b/easybuild/easyconfigs/g/gSOAP/gSOAP-2.8.47-GCCcore-6.3.0.eb @@ -1,7 +1,7 @@ easyblock = "ConfigureMake" name = 'gSOAP' -version = '2.8.47' +version = '2.8.48' homepage = 'http://www.cs.fsu.edu/~engelen/soap.html' description = """The gSOAP toolkit is a C and C++ software development toolkit for @@ -16,7 +16,7 @@ description = """The gSOAP toolkit is a C and C++ software development toolkit f toolchain = {'name': 'GCCcore', 'version': '6.3.0'} sources = ['%(namelower)s_%(version)s.zip'] -source_urls = [SOURCEFORGE_SOURCE] +source_urls = ['https://downloads.sourceforge.net/project/gsoap%(version_major)s/gsoap-%(version_major_minor)s/'] builddependencies = [ ('Bison', '3.0.4'), -- GitLab From d4a48a1592a999fd51561d3a601ed28181b55339 Mon Sep 17 00:00:00 2001 From: Samuel Moors Date: Tue, 20 Jun 2017 14:38:54 +0200 Subject: [PATCH 253/608] fix gsoap version numbering --- easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb | 2 +- ...AP-2.8.47-GCCcore-6.3.0.eb => gSOAP-2.8.48-GCCcore-6.3.0.eb} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename easybuild/easyconfigs/g/gSOAP/{gSOAP-2.8.47-GCCcore-6.3.0.eb => gSOAP-2.8.48-GCCcore-6.3.0.eb} (100%) diff --git a/easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb b/easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb index ff2cf5d69f..d5ca616647 100644 --- a/easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb +++ b/easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb @@ -23,7 +23,7 @@ builddependencies = [ dependencies = [ ('libxml2', '2.9.4'), - ('gSOAP', '2.8.47'), + ('gSOAP', '2.8.48'), ('Boost', '1.63.0', '-Python-2.7.13'), ] diff --git a/easybuild/easyconfigs/g/gSOAP/gSOAP-2.8.47-GCCcore-6.3.0.eb b/easybuild/easyconfigs/g/gSOAP/gSOAP-2.8.48-GCCcore-6.3.0.eb similarity index 100% rename from easybuild/easyconfigs/g/gSOAP/gSOAP-2.8.47-GCCcore-6.3.0.eb rename to easybuild/easyconfigs/g/gSOAP/gSOAP-2.8.48-GCCcore-6.3.0.eb -- GitLab From f62d25efc2d97006cac424b067d884345270a5c3 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 21 Jun 2017 11:48:33 +0200 Subject: [PATCH 254/608] adding easyconfigs: DBD-mysql-4.042-intel-2017a-Perl-5.24.1.eb, MariaDB-10.1.24-intel-2017a.eb, Perl-5.24.1-intel-2017a.eb --- ...DBD-mysql-4.042-intel-2017a-Perl-5.24.1.eb | 36 ++++++++++++++++ .../m/MariaDB/MariaDB-10.1.24-intel-2017a.eb | 42 +++++++++++++++++++ .../p/Perl/Perl-5.24.1-intel-2017a.eb | 4 ++ 3 files changed, 82 insertions(+) create mode 100644 easybuild/easyconfigs/d/DBD-mysql/DBD-mysql-4.042-intel-2017a-Perl-5.24.1.eb create mode 100644 easybuild/easyconfigs/m/MariaDB/MariaDB-10.1.24-intel-2017a.eb diff --git a/easybuild/easyconfigs/d/DBD-mysql/DBD-mysql-4.042-intel-2017a-Perl-5.24.1.eb b/easybuild/easyconfigs/d/DBD-mysql/DBD-mysql-4.042-intel-2017a-Perl-5.24.1.eb new file mode 100644 index 0000000000..0990091ea3 --- /dev/null +++ b/easybuild/easyconfigs/d/DBD-mysql/DBD-mysql-4.042-intel-2017a-Perl-5.24.1.eb @@ -0,0 +1,36 @@ +easyblock = 'PerlModule' + +name = 'DBD-mysql' +version = '4.042' +versionsuffix = '-Perl-%(perlver)s' + +homepage = 'http://search.cpan.org/dist/DBD-mysql/lib/DBD/mysql.pm' +description = """Perl binding for MySQL""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['http://cpan.metacpan.org/authors/id/M/MI/MICHIELB/'] +sources = [SOURCE_TAR_GZ] + +dependencies = [ + ('Perl', '5.24.1'), + ('MariaDB', '10.1.24'), + ('zlib', '1.2.11'), + # OS dependency should be preferred if the os version is more recent then this version + # it's nice to have an up to date openssl for security reasons + # ('OpenSSL', '1.0.1q'), +] + +osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')] + +# force static linking of libmysqlclient to dance around problem with unresolved symbols +#configopts = '--libs="-L$EBROOTMARIADB/lib -Wl,-Bstatic -lmariadbclient -Wl,-Bdynamic -lpthread -lz -lrt -lssl -lcrypto"' + +options = {'modulename': 'DBD::mysql'} + +sanity_check_paths = { + 'files': ['lib/perl5/site_perl/%(perlver)s/x86_64-linux-thread-multi/DBD/mysql.pm'], + 'dirs': ['lib/perl5/site_perl/%(perlver)s/x86_64-linux-thread-multi/DBD/mysql'], +} + +moduleclass = 'data' diff --git a/easybuild/easyconfigs/m/MariaDB/MariaDB-10.1.24-intel-2017a.eb b/easybuild/easyconfigs/m/MariaDB/MariaDB-10.1.24-intel-2017a.eb new file mode 100644 index 0000000000..9869ac1342 --- /dev/null +++ b/easybuild/easyconfigs/m/MariaDB/MariaDB-10.1.24-intel-2017a.eb @@ -0,0 +1,42 @@ +easyblock = 'CMakeMake' + +name = 'MariaDB' +version = '10.1.24' + +homepage = 'https://mariadb.org/' +description = """MariaDB An enhanced, drop-in replacement for MySQL.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['https://downloads.mariadb.org/f/mariadb-%(version)s/source'] +sources = [SOURCELOWER_TAR_GZ] + +patches = [ + 'MariaDB-10.1.13-link-rt-for-jemalloc.patch', +] + +dependencies = [ + ('zlib', '1.2.11'), + ('ncurses', '6.0'), + ('jemalloc', '4.5.0'), + ('PCRE', '8.40'), + ('XZ', '5.2.3'), + ('Boost', '1.64.0'), + ('libxml2', '2.9.4'), +] + +builddependencies = [('CMake', '3.8.2')] + +separate_build_dir = True + +configopts = "-DWITH_PCRE=system -DWITH_JEMALLOC=yes -DWITH_ZLIB=system -DMYSQL_MAINTAINER_MODE=ON " +configopts += "-DWITH_EMBEDDED_SERVER=ON " # for libmysqld.so & co +configopts += "-DWITHOUT_TOKUDB=ON " # not supported with Intel compilers + +sanity_check_paths = { + 'files': ['bin/mysql', 'bin/mysqld_safe', 'lib/libmysqlclient.%s' % SHLIB_EXT, 'lib/libmysqld.%s' % SHLIB_EXT, + 'scripts/mysql_install_db'], + 'dirs': ['include', 'share'], +} + +moduleclass = 'data' diff --git a/easybuild/easyconfigs/p/Perl/Perl-5.24.1-intel-2017a.eb b/easybuild/easyconfigs/p/Perl/Perl-5.24.1-intel-2017a.eb index 7186e3ec91..cc1cd43ca8 100644 --- a/easybuild/easyconfigs/p/Perl/Perl-5.24.1-intel-2017a.eb +++ b/easybuild/easyconfigs/p/Perl/Perl-5.24.1-intel-2017a.eb @@ -890,6 +890,10 @@ exts_list = [ 'source_tmpl': 'PDF-API2-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SS/SSIMMS'], }), + ('Devel::CheckLib', '1.11', { + 'source_tmpl': 'Devel-CheckLib-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MA/MATTN'], + }), ] moduleclass = 'lang' -- GitLab From 709e2a7d4d783bdd939c497cd238331c5d320dca Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 21 Jun 2017 13:17:33 +0200 Subject: [PATCH 255/608] get rid of tabs --- .../l/LLVM/LLVM-3.7.1-foss-2015a.eb | 2 +- .../MultiQC-0.7-goolf-1.7.20-Python-2.7.11.eb | 25 +++++++++---------- .../MultiQC-0.9-foss-2016b-Python-2.7.12.eb | 24 +++++++++--------- 3 files changed, 25 insertions(+), 26 deletions(-) diff --git a/easybuild/easyconfigs/l/LLVM/LLVM-3.7.1-foss-2015a.eb b/easybuild/easyconfigs/l/LLVM/LLVM-3.7.1-foss-2015a.eb index 031705af89..531f4e4816 100644 --- a/easybuild/easyconfigs/l/LLVM/LLVM-3.7.1-foss-2015a.eb +++ b/easybuild/easyconfigs/l/LLVM/LLVM-3.7.1-foss-2015a.eb @@ -12,7 +12,7 @@ sources = ['%(namelower)s-%(version)s.src.tar.xz'] source_urls = ['http://llvm.org/releases/%(version)s'] builddependencies = [ - ('Python', '2.7.9'), + ('Python', '2.7.9'), ] # No build allowed in source dir diff --git a/easybuild/easyconfigs/m/MultiQC/MultiQC-0.7-goolf-1.7.20-Python-2.7.11.eb b/easybuild/easyconfigs/m/MultiQC/MultiQC-0.7-goolf-1.7.20-Python-2.7.11.eb index 52da5ecd72..e9c753506d 100644 --- a/easybuild/easyconfigs/m/MultiQC/MultiQC-0.7-goolf-1.7.20-Python-2.7.11.eb +++ b/easybuild/easyconfigs/m/MultiQC/MultiQC-0.7-goolf-1.7.20-Python-2.7.11.eb @@ -27,39 +27,38 @@ exts_defaultclass = 'PythonPackage' exts_list = [ ('six', '1.10.0', { - 'source_urls': ['https://pypi.python.org/packages/source/s/six/'], + 'source_urls': ['https://pypi.python.org/packages/source/s/six/'], }), ('pyparsing', '2.1.9', { - 'source_urls': ['https://pypi.python.org/packages/source/p/pyparsing/'], + 'source_urls': ['https://pypi.python.org/packages/source/p/pyparsing/'], }), ('pytz', '2016.6.1', { - 'source_urls': ['https://pypi.python.org/packages/source/p/pytz/'], + 'source_urls': ['https://pypi.python.org/packages/source/p/pytz/'], }), ('cycler', '0.10.0', { - 'source_urls': ['https://pypi.python.org/packages/source/c/cycler/'], + 'source_urls': ['https://pypi.python.org/packages/source/c/cycler/'], }), ('python-dateutil', '2.5.3', { - 'source_urls': ['https://pypi.python.org/packages/source/p/python-dateutil/'], - 'modulename': 'dateutil', + 'source_urls': ['https://pypi.python.org/packages/source/p/python-dateutil/'], + 'modulename': 'dateutil', }), ('MarkupSafe', '0.23', { - 'source_urls': ['https://pypi.python.org/packages/source/m/markupsafe'], + 'source_urls': ['https://pypi.python.org/packages/source/m/markupsafe'], }), ('click', '6.6', { - 'source_urls': ['https://pypi.python.org/packages/source/c/click/'], + 'source_urls': ['https://pypi.python.org/packages/source/c/click/'], }), ('PyYAML', '3.12', { - 'source_urls': ['https://pypi.python.org/packages/source/p/pyyaml'], - 'modulename': 'yaml', + 'source_urls': ['https://pypi.python.org/packages/source/p/pyyaml'], + 'modulename': 'yaml', }), ('simplejson', '3.8.2', { - 'source_urls': ['https://pypi.python.org/packages/source/s/simplejson/'], + 'source_urls': ['https://pypi.python.org/packages/source/s/simplejson/'], }), ('Jinja2', '2.8', { - 'source_urls': ['https://pypi.python.org/packages/source/J/Jinja2/'], + 'source_urls': ['https://pypi.python.org/packages/source/J/Jinja2/'], }), ('multiqc', version, { - #'source_tmpl': 'v%(version)s.tar.gz', 'source_urls': ['https://pypi.python.org/packages/source/m/multiqc/'], }), ] diff --git a/easybuild/easyconfigs/m/MultiQC/MultiQC-0.9-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/m/MultiQC/MultiQC-0.9-foss-2016b-Python-2.7.12.eb index 4ca3af6861..cb0f244915 100644 --- a/easybuild/easyconfigs/m/MultiQC/MultiQC-0.9-foss-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/m/MultiQC/MultiQC-0.9-foss-2016b-Python-2.7.12.eb @@ -29,36 +29,36 @@ exts_defaultclass = 'PythonPackage' exts_list = [ ('six', '1.10.0', { - 'source_urls': ['https://pypi.python.org/packages/source/s/six/'], + 'source_urls': ['https://pypi.python.org/packages/source/s/six/'], }), ('pyparsing', '2.1.9', { - 'source_urls': ['https://pypi.python.org/packages/source/p/pyparsing/'], + 'source_urls': ['https://pypi.python.org/packages/source/p/pyparsing/'], }), ('pytz', '2016.6.1', { - 'source_urls': ['https://pypi.python.org/packages/source/p/pytz/'], + 'source_urls': ['https://pypi.python.org/packages/source/p/pytz/'], }), ('cycler', '0.10.0', { - 'source_urls': ['https://pypi.python.org/packages/source/c/cycler/'], + 'source_urls': ['https://pypi.python.org/packages/source/c/cycler/'], }), ('python-dateutil', '2.5.3', { - 'source_urls': ['https://pypi.python.org/packages/source/p/python-dateutil/'], - 'modulename': 'dateutil', + 'source_urls': ['https://pypi.python.org/packages/source/p/python-dateutil/'], + 'modulename': 'dateutil', }), ('MarkupSafe', '0.23', { - 'source_urls': ['https://pypi.python.org/packages/source/m/markupsafe'], + 'source_urls': ['https://pypi.python.org/packages/source/m/markupsafe'], }), ('click', '6.6', { - 'source_urls': ['https://pypi.python.org/packages/source/c/click/'], + 'source_urls': ['https://pypi.python.org/packages/source/c/click/'], }), ('PyYAML', '3.12', { - 'source_urls': ['https://pypi.python.org/packages/source/p/pyyaml'], - 'modulename': 'yaml', + 'source_urls': ['https://pypi.python.org/packages/source/p/pyyaml'], + 'modulename': 'yaml', }), ('simplejson', '3.8.2', { - 'source_urls': ['https://pypi.python.org/packages/source/s/simplejson/'], + 'source_urls': ['https://pypi.python.org/packages/source/s/simplejson/'], }), ('Jinja2', '2.8', { - 'source_urls': ['https://pypi.python.org/packages/source/J/Jinja2/'], + 'source_urls': ['https://pypi.python.org/packages/source/J/Jinja2/'], }), ('multiqc', version, { 'source_urls': ['https://pypi.python.org/packages/source/m/multiqc/'], -- GitLab From 583e3348d4c464baab85cbec638edc4fa9aec02f Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 21 Jun 2017 14:32:43 +0200 Subject: [PATCH 256/608] clean up commented out configopts in DBD-mysql easyconfig --- .../d/DBD-mysql/DBD-mysql-4.042-intel-2017a-Perl-5.24.1.eb | 3 --- 1 file changed, 3 deletions(-) diff --git a/easybuild/easyconfigs/d/DBD-mysql/DBD-mysql-4.042-intel-2017a-Perl-5.24.1.eb b/easybuild/easyconfigs/d/DBD-mysql/DBD-mysql-4.042-intel-2017a-Perl-5.24.1.eb index 0990091ea3..0db79a7f27 100644 --- a/easybuild/easyconfigs/d/DBD-mysql/DBD-mysql-4.042-intel-2017a-Perl-5.24.1.eb +++ b/easybuild/easyconfigs/d/DBD-mysql/DBD-mysql-4.042-intel-2017a-Perl-5.24.1.eb @@ -23,9 +23,6 @@ dependencies = [ osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')] -# force static linking of libmysqlclient to dance around problem with unresolved symbols -#configopts = '--libs="-L$EBROOTMARIADB/lib -Wl,-Bstatic -lmariadbclient -Wl,-Bdynamic -lpthread -lz -lrt -lssl -lcrypto"' - options = {'modulename': 'DBD::mysql'} sanity_check_paths = { -- GitLab From 2a26abf2408e73e60b74b538c92ef9c05b2abccf Mon Sep 17 00:00:00 2001 From: Adam Huffman Date: Wed, 21 Jun 2017 14:23:19 +0100 Subject: [PATCH 257/608] adding easyconfigs: SAMtools-1.5-intel-2017a.eb --- .../s/SAMtools/SAMtools-1.5-intel-2017a.eb | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100755 easybuild/easyconfigs/s/SAMtools/SAMtools-1.5-intel-2017a.eb diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.5-intel-2017a.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.5-intel-2017a.eb new file mode 100755 index 0000000000..07e6c5020c --- /dev/null +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.5-intel-2017a.eb @@ -0,0 +1,37 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# +# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA +# Authors:: Robert Schmidt , Cedric Laczny , Fotis Georgatos +# License:: MIT/GPL +# $Id$ +# +# Modified by: Adam Huffman +# The Francis Crick Institute +# +# Modified for version 1.4 by: Kurt Lust, UAntwerpen +# +## +name = 'SAMtools' +version = '1.5' + +homepage = 'http://www.htslib.org/' +description = """SAM Tools provide various utilities for manipulating alignments in the SAM format, + including sorting, merging, indexing and generating alignments in a per-position format.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'pic': True} + +source_urls = ['https://github.com/samtools/%(namelower)s/releases/download/%(version)s'] +sources = [SOURCELOWER_TAR_BZ2] + +# The htslib component of SAMtools 1.4 uses zlib, bzip2 and lzma compression. +# The latter is currently provided by XZ. +dependencies = [ + ('ncurses', '6.0'), + ('zlib', '1.2.11'), + ('bzip2', '1.0.6'), + ('XZ', '5.2.3'), +] + +moduleclass = 'bio' -- GitLab From ddba7fe2052267fdf848c8c43638803e7b50ba71 Mon Sep 17 00:00:00 2001 From: Samuel Moors Date: Wed, 21 Jun 2017 15:46:48 +0200 Subject: [PATCH 258/608] style fix --- easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb b/easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb index d5ca616647..f4e5dff775 100644 --- a/easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb +++ b/easybuild/easyconfigs/d/davix/davix-0.6.6-intel-2017a.eb @@ -12,7 +12,7 @@ description = """The davix project aims to make file management over HTTP-based toolchain = {'name': 'intel', 'version': '2017a'} source_urls = ['https://github.com/cern-it-sdc-id/davix/archive/'] -sources = ['R_%s.tar.gz' % version.replace('.','_')] +sources = ['R_%s.tar.gz' % version.replace('.', '_')] builddependencies = [ ('CMake', '3.8.1'), -- GitLab From b3967ff49c8c53a157588b42c41676a45000b5fb Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 21 Jun 2017 20:40:09 +0200 Subject: [PATCH 259/608] more trivial style fixes --- .../b/BCFtools/BCFtools-1.3.1-goolf-1.7.20.eb | 2 +- .../easyconfigs/b/BLAT/BLAT-3.5-intel-2016b.eb | 3 ++- .../Boost/Boost-1.63.0-foss-2017a-Python-2.7.13.eb | 1 - .../easyconfigs/b/Boost/Boost-1.63.0-foss-2017a.eb | 1 - .../b/Bowtie2/Bowtie2-2.2.9-intel-2016b.eb | 2 +- .../b/Bowtie2/Bowtie2-2.3.2-intel-2017a.eb | 2 +- .../b/Bullet/Bullet-2.83.7-foss-2016a.eb | 2 +- ...AL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb | 2 +- .../c/CP2K/CP2K-2.4.0-goolf-1.4.10-ipi.eb | 2 +- .../easyconfigs/c/CP2K/CP2K-2.4.0-goolf-1.4.10.eb | 4 ++-- .../ConnectomeWorkbench-1.2.2.eb | 2 +- ...Cookiecutter-1.4.0-goolf-1.7.20-Python-2.7.11.eb | 4 ++-- .../easyconfigs/d/DBus/DBus-1.10.12-intel-2016b.eb | 2 +- .../d/DCA++/DCA++-1.0-CrayGNU-2015.11-cpu.eb | 4 ++-- .../d/DCA++/DCA++-1.0-CrayGNU-2015.11-cuda.eb | 2 +- .../d/DIAL/DIAL-2011.06.06-foss-2016a.eb | 2 +- ...disambiguate-1.0.0-goolf-1.7.20-Python-2.7.11.eb | 8 ++++---- .../e/ETSF_IO/ETSF_IO-1.0.4-intel-2015b.eb | 2 +- .../EricScript-0.5.5-intel-2017a-R-3.4.0.eb | 2 +- .../e/ea-utils/ea-utils-1.04.807-foss-2016a.eb | 2 +- .../e/ea-utils/ea-utils-1.04.807-foss-2016b.eb | 2 +- .../e/ea-utils/ea-utils-1.04.807-intel-2016b.eb | 2 +- .../f/FFTW/FFTW-3.3.4-intel-2015b-PFFT-20150905.eb | 2 +- easybuild/easyconfigs/f/findhap/findhap-4.eb | 2 +- .../f/freetype/freetype-2.5.5-goolf-1.7.20.eb | 3 ++- .../f/freetype/freetype-2.6.2-goolf-1.7.20.eb | 3 ++- .../easyconfigs/g/GFOLD/GFOLD-1.1.4-goolf-1.7.20.eb | 2 +- .../easyconfigs/g/GFOLD/GFOLD-1.1.4-intel-2016a.eb | 2 +- .../easyconfigs/g/GLib/GLib-2.48.2-foss-2015a.eb | 3 ++- .../easyconfigs/g/Guile/Guile-2.0.11-foss-2016a.eb | 2 +- .../easyconfigs/g/gflags/gflags-2.1.2-foss-2016a.eb | 4 ++-- .../g/grib_api/grib_api-1.21.0-foss-2017a.eb | 1 - .../g/gtkglext/gtkglext-1.2.0-intel-2015b.eb | 2 +- ...2015b-Python-2.7.10-HDF5-1.8.15-patch1-serial.eb | 2 +- .../easyconfigs/i/IGV/IGV-2.3.68-Java-1.7.0_80.eb | 2 +- .../easyconfigs/i/IGV/IGV-2.3.80-Java-1.7.0_80.eb | 2 +- .../i/IGVTools/IGVTools-2.3.68-Java-1.7.0_80.eb | 2 +- .../i/IGVTools/IGVTools-2.3.72-Java-1.7.0_80.eb | 2 +- .../i/IGVTools/IGVTools-2.3.75-Java-1.7.0_80.eb | 2 +- .../easyconfigs/i/IOzone/IOzone-3.434-foss-2016a.eb | 2 +- .../i/igraph/igraph-0.7.1-intel-2016b.eb | 2 +- .../i/impi/impi-2017.1.132-GCC-5.4.0-2.26.eb | 2 +- .../j/JasPer/JasPer-1.900.1-foss-2017a.eb | 1 - .../jModelTest-2.1.10r20160303-Java-1.8.0_92.eb | 2 +- ...est-2.1.9r20160115-goolf-1.4.10-Java-1.7.0_75.eb | 2 +- .../j/jhbuild/jhbuild-3.15.92-GCCcore-4.9.3.eb | 2 +- .../easyconfigs/l/LLVM/LLVM-3.7.1-foss-2015a.eb | 2 +- .../easyconfigs/l/LLVM/LLVM-3.9.1-foss-2017a.eb | 1 - .../easyconfigs/l/LLVM/LLVM-4.0.0-foss-2017a.eb | 1 - .../easyconfigs/l/LSMS/LSMS-3_rev237-foss-2016a.eb | 4 ++-- .../easyconfigs/l/libXi/libXi-1.7.2-goolf-1.4.10.eb | 2 +- .../easyconfigs/l/libXi/libXi-1.7.4-intel-2015b.eb | 2 +- .../l/libreadline/libreadline-6.2-foss-2015a.eb | 8 ++++---- .../easyconfigs/m/METIS/METIS-5.1.0-foss-2017a.eb | 3 +-- .../m/MaSuRCA/MaSuRCA-3.2.2-foss-2016a.eb | 4 ++-- .../easyconfigs/m/Mesa/Mesa-11.2.1-foss-2015a.eb | 2 +- .../m/memkind/memkind-1.5.0-GCCcore-5.4.0.eb | 6 +++--- .../molmod/molmod-1.1-intel-2015b-Python-2.7.10.eb | 2 +- .../molmod/molmod-1.1-intel-2016a-Python-2.7.11.eb | 2 +- .../molmod/molmod-1.1-intel-2016b-Python-2.7.12.eb | 2 +- .../easyconfigs/n/NAMD/NAMD-2.12-foss-2017a-mpi.eb | 2 -- .../NRGLjubljana-2.4.3.23-foss-2016b.eb | 12 ++++++------ .../easyconfigs/n/nettle/nettle-2.6-goolf-1.4.10.eb | 6 ++++-- .../n/nettle/nettle-3.1.1-GNU-4.9.3-2.25.eb | 6 ++++-- .../easyconfigs/n/nettle/nettle-3.1.1-foss-2016a.eb | 6 ++++-- .../n/nettle/nettle-3.1.1-intel-2016a.eb | 6 ++++-- .../n/nettle/nettle-3.2-GCCcore-5.4.0.eb | 6 ++++-- .../easyconfigs/n/nettle/nettle-3.2-foss-2016b.eb | 6 ++++-- .../easyconfigs/n/nettle/nettle-3.2-intel-2016b.eb | 6 ++++-- .../easyconfigs/n/nettle/nettle-3.3-intel-2017a.eb | 6 ++++-- .../o/ORCA/ORCA-4.0.0.2-OpenMPI-2.0.2.eb | 13 ++++++------- .../OSU-Micro-Benchmarks-5.3.2-foss-2017a.eb | 1 - easybuild/easyconfigs/o/OTF2/OTF2-2.0-foss-2017a.eb | 3 +-- .../o/Octopus/Octopus-5.0.0-intel-2015b-mpi.eb | 4 ++-- .../o/OpenFOAM/OpenFOAM-3.0.0-foss-2016a.eb | 2 +- .../o/OpenMPI/OpenMPI-2.0.2-GCC-6.3.0-2.27-opa.eb | 4 +--- .../easyconfigs/p/PEAR/PEAR-0.9.6-goolf-1.4.10.eb | 2 +- .../easyconfigs/p/PEAR/PEAR-0.9.8-foss-2016b.eb | 2 +- .../easyconfigs/p/PEAR/PEAR-0.9.8-intel-2016b.eb | 2 +- .../PETSc-3.7.5-intel-2016b-downloaded-deps.eb | 2 +- .../PRINSEQ-0.20.4-foss-2015b-Perl-5.20.3.eb | 2 +- .../PRINSEQ-0.20.4-goolf-1.4.10-Perl-5.16.3.eb | 2 +- .../easyconfigs/p/PROJ/PROJ-4.8.0-foss-2015b.eb | 2 +- .../easyconfigs/p/PROJ/PROJ-4.9.1-foss-2015a.eb | 2 +- .../easyconfigs/p/Perl/Perl-5.22.0-foss-2015a-mt.eb | 4 ++-- .../easyconfigs/p/Perl/Perl-5.22.0-foss-2015a.eb | 2 +- .../p/Platanus/Platanus-1.2.4-foss-2017a.eb | 4 ++-- .../Pysam/Pysam-0.9.0-goolf-1.7.20-Python-2.7.11.eb | 4 ++-- .../Pysam/Pysam-0.9.1.4-foss-2016b-Python-2.7.12.eb | 4 ++-- .../p/Python/Python-2.7.11-CrayGNU-2015.11.eb | 2 +- .../p/Python/Python-2.7.11-CrayGNU-2016.03.eb | 2 +- .../p/pbbam/pbbam-20170508-intel-2017a.eb | 2 +- .../easyconfigs/p/pigz/pigz-2.3.1-goolf-1.4.10.eb | 2 +- easybuild/easyconfigs/r/R/R-3.2.3-foss-2015b.eb | 2 +- easybuild/easyconfigs/r/R/R-3.2.3-foss-2016a.eb | 2 +- easybuild/easyconfigs/r/R/R-3.2.3-foss-2016b.eb | 2 +- .../r/R/R-3.2.3-intel-2016a-libX11-1.6.3.eb | 2 +- easybuild/easyconfigs/r/R/R-3.2.3-intel-2016a.eb | 2 +- .../r/R/R-3.3.3-foss-2016b-X11-20160819.eb | 3 +-- .../r/R/R-3.3.3-intel-2017a-X11-20170314.eb | 3 +-- .../r/RELION/RELION-1.4-intel-2016b-single.eb | 2 +- .../RSeQC-2.6.4-foss-2016b-Python-2.7.12-R-3.3.1.eb | 2 +- .../r/RepastHPC/RepastHPC-2.2.0-foss-2016a.eb | 2 +- .../rootpy/rootpy-0.8.0-foss-2016a-Python-2.7.11.eb | 2 +- .../s/SIONlib/SIONlib-1.7.1-foss-2017a-tools.eb | 1 - .../s/SIONlib/SIONlib-1.7.1-foss-2017a.eb | 1 - .../s/SUMATRA/SUMATRA-1.0.20-foss-2016a.eb | 2 +- easybuild/easyconfigs/s/Sambamba/Sambamba-0.6.6.eb | 2 +- .../easyconfigs/s/SeqAn/SeqAn-2.3.2-foss-2016b.eb | 5 +++-- .../Singularity/Singularity-2.2.1-GCC-6.3.0-2.27.eb | 3 ++- .../easyconfigs/s/Stacks/Stacks-1.40-foss-2016a.eb | 4 ++-- .../easyconfigs/s/Stacks/Stacks-1.42-foss-2016a.eb | 4 ++-- .../easyconfigs/s/Stacks/Stacks-1.44-foss-2016a.eb | 4 ++-- .../easyconfigs/s/Stacks/Stacks-1.45-foss-2016a.eb | 4 ++-- .../easyconfigs/s/Stacks/Stacks-1.46-intel-2017a.eb | 4 ++-- .../SuiteSparse-4.5.5-foss-2017a-METIS-5.1.0.eb | 1 - easybuild/easyconfigs/s/Szip/Szip-2.1-foss-2017a.eb | 1 - .../s/samblaster/samblaster-0.1.24-goolf-1.7.20.eb | 8 ++++---- .../s/segemehl/segemehl-0.2.0-foss-2016b.eb | 4 ++-- easybuild/easyconfigs/s/splitRef/splitRef-0.0.2.eb | 2 +- .../easyconfigs/t/Tcl/Tcl-8.5.19-foss-2017a.eb | 1 - .../VCFtools-0.1.14-goolf-1.4.10-Perl-5.16.3.eb | 6 +++--- .../VCFtools-0.1.14-goolf-1.7.20-Perl-5.22.2.eb | 6 +++--- .../v/VMD/VMD-1.9.3-intel-2016b-Python-2.7.12.eb | 2 +- .../v/Valgrind/Valgrind-3.11.0-foss-2016a.eb | 2 +- .../wkhtmltopdf/wkhtmltopdf-0.12.3-Linux-x86_64.eb | 10 +++++----- easybuild/easyconfigs/x/XZ/XZ-5.2.3-gimkl-2017a.eb | 2 +- .../x/xtrans/xtrans-1.3.5-gimkl-2.11.5.eb | 2 +- .../y/Yade/Yade-1.20.0-foss-2016a-Python-2.7.11.eb | 2 +- .../y/Yade/Yade-1.20.0-intel-2016a-Python-2.7.11.eb | 2 +- ....0.2-rev.90-intel-2015b-QuantumESPRESSO-5.2.1.eb | 2 +- .../easyconfigs/y/Yasm/Yasm-1.3.0-goolf-1.7.20.eb | 2 +- 132 files changed, 196 insertions(+), 195 deletions(-) diff --git a/easybuild/easyconfigs/b/BCFtools/BCFtools-1.3.1-goolf-1.7.20.eb b/easybuild/easyconfigs/b/BCFtools/BCFtools-1.3.1-goolf-1.7.20.eb index 885f9339b0..d1c00e81a6 100644 --- a/easybuild/easyconfigs/b/BCFtools/BCFtools-1.3.1-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/b/BCFtools/BCFtools-1.3.1-goolf-1.7.20.eb @@ -26,7 +26,7 @@ buildopts = " USE_GPL=1 GSL_LIBS='-lgsl -lgslcblas'" runtest = 'test' -files_to_copy = [(["bcftools", "plot-vcfstats", "vcfutils.pl"], "bin"), +files_to_copy = [(["bcftools", "plot-vcfstats", "vcfutils.pl"], "bin"), "doc", "plugins", "test", "LICENSE", "README", "AUTHORS"] sanity_check_paths = { diff --git a/easybuild/easyconfigs/b/BLAT/BLAT-3.5-intel-2016b.eb b/easybuild/easyconfigs/b/BLAT/BLAT-3.5-intel-2016b.eb index 48a47daaa1..dfa7db4489 100644 --- a/easybuild/easyconfigs/b/BLAT/BLAT-3.5-intel-2016b.eb +++ b/easybuild/easyconfigs/b/BLAT/BLAT-3.5-intel-2016b.eb @@ -11,7 +11,8 @@ name = 'BLAT' version = '3.5' homepage = 'http://genome.ucsc.edu/FAQ/FAQblat.html' -description = "BLAT on DNA is designed to quickly find sequences of 95% and greater similarity of length 25 bases or more." +description = """BLAT on DNA is designed to quickly find sequences of 95% and greater similarity of length 25 bases + or more.""" toolchain = {'name': 'intel', 'version': '2016b'} diff --git a/easybuild/easyconfigs/b/Boost/Boost-1.63.0-foss-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/b/Boost/Boost-1.63.0-foss-2017a-Python-2.7.13.eb index 49051608e1..5fac3580db 100644 --- a/easybuild/easyconfigs/b/Boost/Boost-1.63.0-foss-2017a-Python-2.7.13.eb +++ b/easybuild/easyconfigs/b/Boost/Boost-1.63.0-foss-2017a-Python-2.7.13.eb @@ -21,4 +21,3 @@ dependencies = [ boost_mpi = True moduleclass = 'devel' - diff --git a/easybuild/easyconfigs/b/Boost/Boost-1.63.0-foss-2017a.eb b/easybuild/easyconfigs/b/Boost/Boost-1.63.0-foss-2017a.eb index ea4624e01d..09208d29d9 100644 --- a/easybuild/easyconfigs/b/Boost/Boost-1.63.0-foss-2017a.eb +++ b/easybuild/easyconfigs/b/Boost/Boost-1.63.0-foss-2017a.eb @@ -21,4 +21,3 @@ configopts = '--without-libraries=python' boost_mpi = True moduleclass = 'devel' - diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.9-intel-2016b.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.9-intel-2016b.eb index 826bc88a15..ba74ca9337 100644 --- a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.9-intel-2016b.eb +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.9-intel-2016b.eb @@ -25,6 +25,6 @@ sources = ['%(namelower)s-%(version)s-source.zip'] source_urls = [('http://sourceforge.net/projects/bowtie-bio/files/%(namelower)s/%(version)s', 'download')] # to add script folder to path just uncomment this line -#modextrapaths = {'PATH': 'scripts'} +# modextrapaths = {'PATH': 'scripts'} moduleclass = 'bio' diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-intel-2017a.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-intel-2017a.eb index 98d5525da2..8b78bff172 100644 --- a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-intel-2017a.eb +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-intel-2017a.eb @@ -30,6 +30,6 @@ dependencies = [('tbb', '2017_U6')] buildopts = "EXTRA_FLAGS='-wd809'" # to add script folder to path just uncomment this line -#modextrapaths = {'PATH': 'scripts'} +# modextrapaths = {'PATH': 'scripts'} moduleclass = 'bio' diff --git a/easybuild/easyconfigs/b/Bullet/Bullet-2.83.7-foss-2016a.eb b/easybuild/easyconfigs/b/Bullet/Bullet-2.83.7-foss-2016a.eb index bcb89c1b4e..e9318b4588 100644 --- a/easybuild/easyconfigs/b/Bullet/Bullet-2.83.7-foss-2016a.eb +++ b/easybuild/easyconfigs/b/Bullet/Bullet-2.83.7-foss-2016a.eb @@ -19,7 +19,7 @@ builddependencies = [('CMake', '3.5.2')] configopts = "-DBUILD_SHARED_LIBS=ON" sanity_check_paths = { - 'files': ['include/bullet/btBullet%sCommon.h' % x for x in ['Collision', 'Dynamics']] + + 'files': ['include/bullet/btBullet%sCommon.h' % x for x in ['Collision', 'Dynamics']] + ['lib/libBullet%s.%s' % (x, SHLIB_EXT) for x in ['Collision', 'Dynamics']], 'dirs': [], } diff --git a/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb b/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb index 462e46256b..874fac82e5 100644 --- a/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb +++ b/easybuild/easyconfigs/c/CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb @@ -25,7 +25,7 @@ dependencies = [ ('Qt', '4.8.7', versionsuffix), ] -configopts = "-DCMAKE_VERBOSE_MAKEFILE=ON " +configopts = "-DCMAKE_VERBOSE_MAKEFILE=ON " configopts += "-DOPENGL_INCLUDE_DIR=$EBROOTMESA/include\;$EBROOTLIBGLU/include " configopts += "-DOPENGL_gl_LIBRARY=$EBROOTMESA/lib/libGL.%s " % SHLIB_EXT configopts += "-DOPENGL_glu_LIBRARY=$EBROOTLIBGLU/lib/libGLU.%s " % SHLIB_EXT diff --git a/easybuild/easyconfigs/c/CP2K/CP2K-2.4.0-goolf-1.4.10-ipi.eb b/easybuild/easyconfigs/c/CP2K/CP2K-2.4.0-goolf-1.4.10-ipi.eb index 7188e62917..0a291108ae 100644 --- a/easybuild/easyconfigs/c/CP2K/CP2K-2.4.0-goolf-1.4.10-ipi.eb +++ b/easybuild/easyconfigs/c/CP2K/CP2K-2.4.0-goolf-1.4.10-ipi.eb @@ -32,6 +32,6 @@ dependencies = [('Libint', '1.1.4')] parallel = 1 # about 100 tests fail -ignore_regtest_fails=True +ignore_regtest_fails = True moduleclass = 'chem' diff --git a/easybuild/easyconfigs/c/CP2K/CP2K-2.4.0-goolf-1.4.10.eb b/easybuild/easyconfigs/c/CP2K/CP2K-2.4.0-goolf-1.4.10.eb index 5c6f21e195..985781685d 100644 --- a/easybuild/easyconfigs/c/CP2K/CP2K-2.4.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/c/CP2K/CP2K-2.4.0-goolf-1.4.10.eb @@ -14,7 +14,7 @@ source_urls = ['http://sourceforge.net/projects/cp2k/files/'] sources = [SOURCELOWER_TAR_BZ2] patches = [ - 'CP2K-%(version)s-fix_compile_date_lastsvn.patch', + 'CP2K-%(version)s-fix_compile_date_lastsvn.patch', 'do_regtest_nocompile.patch' ] @@ -30,6 +30,6 @@ dependencies = [('Libint', '1.1.4')] parallel = 1 # about 100 tests fail -ignore_regtest_fails=True +ignore_regtest_fails = True moduleclass = 'chem' diff --git a/easybuild/easyconfigs/c/ConnectomeWorkbench/ConnectomeWorkbench-1.2.2.eb b/easybuild/easyconfigs/c/ConnectomeWorkbench/ConnectomeWorkbench-1.2.2.eb index fce250c7cf..0cb98a2054 100644 --- a/easybuild/easyconfigs/c/ConnectomeWorkbench/ConnectomeWorkbench-1.2.2.eb +++ b/easybuild/easyconfigs/c/ConnectomeWorkbench/ConnectomeWorkbench-1.2.2.eb @@ -27,7 +27,7 @@ modextrapaths = { } sanity_check_paths = { - 'files': ["bin_rh_linux64/wb_import", "bin_rh_linux64/wb_command", + 'files': ["bin_rh_linux64/wb_import", "bin_rh_linux64/wb_command", "bin_rh_linux64/wb_view"], 'dirs': ["resources"] } diff --git a/easybuild/easyconfigs/c/Cookiecutter/Cookiecutter-1.4.0-goolf-1.7.20-Python-2.7.11.eb b/easybuild/easyconfigs/c/Cookiecutter/Cookiecutter-1.4.0-goolf-1.7.20-Python-2.7.11.eb index 6a2974e5b4..88fa4436a0 100644 --- a/easybuild/easyconfigs/c/Cookiecutter/Cookiecutter-1.4.0-goolf-1.7.20-Python-2.7.11.eb +++ b/easybuild/easyconfigs/c/Cookiecutter/Cookiecutter-1.4.0-goolf-1.7.20-Python-2.7.11.eb @@ -46,10 +46,10 @@ exts_list = [ }), ('binaryornot', '0.4.0', { 'source_urls': ['https://pypi.io/packages/source/b/binaryornot/'], - }), + }), ('Jinja2', '2.8', { 'source_urls': ['https://pypi.python.org/packages/source/J/Jinja2/'], - }), + }), ('jinja2-time', '0.2.0', { 'source_urls': ['https://pypi.python.org/packages/source/j/jinja2-time/'], 'modulename': 'jinja2', diff --git a/easybuild/easyconfigs/d/DBus/DBus-1.10.12-intel-2016b.eb b/easybuild/easyconfigs/d/DBus/DBus-1.10.12-intel-2016b.eb index 2a15cb846c..7697871a45 100644 --- a/easybuild/easyconfigs/d/DBus/DBus-1.10.12-intel-2016b.eb +++ b/easybuild/easyconfigs/d/DBus/DBus-1.10.12-intel-2016b.eb @@ -16,7 +16,7 @@ source_urls = ['http://dbus.freedesktop.org/releases/dbus'] sources = [SOURCELOWER_TAR_GZ] sanity_check_paths = { - 'files': ['bin/dbus-%s' % x for x in ['cleanup-sockets', 'daemon', 'launch', 'monitor', 'run-session', + 'files': ['bin/dbus-%s' % x for x in ['cleanup-sockets', 'daemon', 'launch', 'monitor', 'run-session', 'send', 'uuidgen']] + ['lib/libdbus-1.%s' % x for x in ['a', SHLIB_EXT]], 'dirs': ['include', 'share'] diff --git a/easybuild/easyconfigs/d/DCA++/DCA++-1.0-CrayGNU-2015.11-cpu.eb b/easybuild/easyconfigs/d/DCA++/DCA++-1.0-CrayGNU-2015.11-cpu.eb index 86590d12e7..088f873ddb 100644 --- a/easybuild/easyconfigs/d/DCA++/DCA++-1.0-CrayGNU-2015.11-cpu.eb +++ b/easybuild/easyconfigs/d/DCA++/DCA++-1.0-CrayGNU-2015.11-cpu.eb @@ -14,10 +14,10 @@ toolchain = {'name': 'CrayGNU', 'version': '2015.11'} dependencies = [ ('CMake', '3.5.0'), - ('spglib', '1.7.3'), + ('spglib', '1.7.3'), ('NFFT', '3.3.0'), ('GSL', '2.1'), - ('gtest', '1.7.0'), + ('gtest', '1.7.0'), ('cray-hdf5/1.8.13', EXTERNAL_MODULE), ] diff --git a/easybuild/easyconfigs/d/DCA++/DCA++-1.0-CrayGNU-2015.11-cuda.eb b/easybuild/easyconfigs/d/DCA++/DCA++-1.0-CrayGNU-2015.11-cuda.eb index 231148074a..3f3f75acda 100644 --- a/easybuild/easyconfigs/d/DCA++/DCA++-1.0-CrayGNU-2015.11-cuda.eb +++ b/easybuild/easyconfigs/d/DCA++/DCA++-1.0-CrayGNU-2015.11-cuda.eb @@ -14,7 +14,7 @@ toolchain = {'name': 'CrayGNU', 'version': '2015.11'} dependencies = [ ('CMake', '3.5.0'), - ('spglib', '1.7.3'), + ('spglib', '1.7.3'), ('NFFT', '3.3.0'), ('GSL', '2.1'), ('gtest', '1.7.0'), diff --git a/easybuild/easyconfigs/d/DIAL/DIAL-2011.06.06-foss-2016a.eb b/easybuild/easyconfigs/d/DIAL/DIAL-2011.06.06-foss-2016a.eb index 1a6bd6a25d..82b2e17255 100644 --- a/easybuild/easyconfigs/d/DIAL/DIAL-2011.06.06-foss-2016a.eb +++ b/easybuild/easyconfigs/d/DIAL/DIAL-2011.06.06-foss-2016a.eb @@ -21,7 +21,7 @@ dependencies = [ ] binaries = ['assemble', 'assemble1', 'assemble_illumina', 'build_sff_index', 'convertFastqFasta', - 'cull_components', 'DIAL', 'filter', 'filter_clusters', 'fish_clusters', 'make_template', + 'cull_components', 'DIAL', 'filter', 'filter_clusters', 'fish_clusters', 'make_template', 'masker', 'partition', 'remove_clones', 'remove_clusters', 'update', 'update_clusters', 'update_status'] diff --git a/easybuild/easyconfigs/d/disambiguate/disambiguate-1.0.0-goolf-1.7.20-Python-2.7.11.eb b/easybuild/easyconfigs/d/disambiguate/disambiguate-1.0.0-goolf-1.7.20-Python-2.7.11.eb index 7de0a8ea92..8b40d87ea0 100644 --- a/easybuild/easyconfigs/d/disambiguate/disambiguate-1.0.0-goolf-1.7.20-Python-2.7.11.eb +++ b/easybuild/easyconfigs/d/disambiguate/disambiguate-1.0.0-goolf-1.7.20-Python-2.7.11.eb @@ -6,7 +6,7 @@ easyblock = "PythonPackage" name = 'disambiguate' -version = '1.0.0' +version = '1.0.0' versionsuffix = '-Python-%(pyver)s' homepage = "https://github.com/AstraZeneca-NGS/disambiguate" @@ -19,9 +19,9 @@ sources = ["v%(version)s.tar.gz"] dependencies = [ ('Python', '2.7.11'), - ('BamTools', '2.4.0'), - ('zlib', '1.2.8'), - ('Pysam', '0.9.0', versionsuffix), + ('BamTools', '2.4.0'), + ('zlib', '1.2.8'), + ('Pysam', '0.9.0', versionsuffix), ] # this application provides a python implementation and a C++ implementation diff --git a/easybuild/easyconfigs/e/ETSF_IO/ETSF_IO-1.0.4-intel-2015b.eb b/easybuild/easyconfigs/e/ETSF_IO/ETSF_IO-1.0.4-intel-2015b.eb index 0e4a07c55e..7e7f19b2ca 100644 --- a/easybuild/easyconfigs/e/ETSF_IO/ETSF_IO-1.0.4-intel-2015b.eb +++ b/easybuild/easyconfigs/e/ETSF_IO/ETSF_IO-1.0.4-intel-2015b.eb @@ -30,7 +30,7 @@ dependencies = [ ] sanity_check_paths = { - 'files': ["bin/etsf_io"], + 'files': ["bin/etsf_io"], 'dirs': [] } diff --git a/easybuild/easyconfigs/e/EricScript/EricScript-0.5.5-intel-2017a-R-3.4.0.eb b/easybuild/easyconfigs/e/EricScript/EricScript-0.5.5-intel-2017a-R-3.4.0.eb index adaed6879a..222274d259 100644 --- a/easybuild/easyconfigs/e/EricScript/EricScript-0.5.5-intel-2017a-R-3.4.0.eb +++ b/easybuild/easyconfigs/e/EricScript/EricScript-0.5.5-intel-2017a-R-3.4.0.eb @@ -31,4 +31,4 @@ sanity_check_paths = { modextrapaths = {'PATH': ''} -moduleclass = 'bio' +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/e/ea-utils/ea-utils-1.04.807-foss-2016a.eb b/easybuild/easyconfigs/e/ea-utils/ea-utils-1.04.807-foss-2016a.eb index 498218ede9..26cdd728d0 100644 --- a/easybuild/easyconfigs/e/ea-utils/ea-utils-1.04.807-foss-2016a.eb +++ b/easybuild/easyconfigs/e/ea-utils/ea-utils-1.04.807-foss-2016a.eb @@ -32,7 +32,7 @@ dependencies = [ ] files_to_copy = [([ - 'fastq-mcf', 'fastq-multx', 'fastq-join', 'fastq-stats', 'fastq-clipper', + 'fastq-mcf', 'fastq-multx', 'fastq-join', 'fastq-stats', 'fastq-clipper', 'sam-stats', 'varcall', 'randomFQ', 'alc', 'determine-phred'], 'bin' )] diff --git a/easybuild/easyconfigs/e/ea-utils/ea-utils-1.04.807-foss-2016b.eb b/easybuild/easyconfigs/e/ea-utils/ea-utils-1.04.807-foss-2016b.eb index 5bd575648e..8409d2b2d3 100644 --- a/easybuild/easyconfigs/e/ea-utils/ea-utils-1.04.807-foss-2016b.eb +++ b/easybuild/easyconfigs/e/ea-utils/ea-utils-1.04.807-foss-2016b.eb @@ -32,7 +32,7 @@ dependencies = [ ] files_to_copy = [([ - 'fastq-mcf', 'fastq-multx', 'fastq-join', 'fastq-stats', 'fastq-clipper', + 'fastq-mcf', 'fastq-multx', 'fastq-join', 'fastq-stats', 'fastq-clipper', 'sam-stats', 'varcall', 'randomFQ', 'alc', 'determine-phred'], 'bin' )] diff --git a/easybuild/easyconfigs/e/ea-utils/ea-utils-1.04.807-intel-2016b.eb b/easybuild/easyconfigs/e/ea-utils/ea-utils-1.04.807-intel-2016b.eb index a1c32a3e34..1763f70eb3 100644 --- a/easybuild/easyconfigs/e/ea-utils/ea-utils-1.04.807-intel-2016b.eb +++ b/easybuild/easyconfigs/e/ea-utils/ea-utils-1.04.807-intel-2016b.eb @@ -34,7 +34,7 @@ dependencies = [ ] files_to_copy = [([ - 'fastq-mcf', 'fastq-multx', 'fastq-join', 'fastq-stats', 'fastq-clipper', + 'fastq-mcf', 'fastq-multx', 'fastq-join', 'fastq-stats', 'fastq-clipper', 'sam-stats', 'varcall', 'randomFQ', 'alc', 'determine-phred'], 'bin' )] diff --git a/easybuild/easyconfigs/f/FFTW/FFTW-3.3.4-intel-2015b-PFFT-20150905.eb b/easybuild/easyconfigs/f/FFTW/FFTW-3.3.4-intel-2015b-PFFT-20150905.eb index d127590485..1f513106f6 100644 --- a/easybuild/easyconfigs/f/FFTW/FFTW-3.3.4-intel-2015b-PFFT-20150905.eb +++ b/easybuild/easyconfigs/f/FFTW/FFTW-3.3.4-intel-2015b-PFFT-20150905.eb @@ -21,7 +21,7 @@ builddependencies = [ ] # the patch changed a Makefile.am, so we need to call autoreconf -preconfigopts = "autoreconf --verbose --symlink --force && " +preconfigopts = "autoreconf --verbose --symlink --force && " common_configopts = "--enable-threads --enable-openmp --with-pic" diff --git a/easybuild/easyconfigs/f/findhap/findhap-4.eb b/easybuild/easyconfigs/f/findhap/findhap-4.eb index 7622374b66..732e2ab92d 100644 --- a/easybuild/easyconfigs/f/findhap/findhap-4.eb +++ b/easybuild/easyconfigs/f/findhap/findhap-4.eb @@ -19,7 +19,7 @@ modextrapaths = { } modloadmsg = """ -Copy the following file to the directory from which you will be running the executable: +Copy the following file to the directory from which you will be running the executable: $EBROOTFINDHAP/findhap.options Other files in the $EBROOTFINDHAP directory are: diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.5.5-goolf-1.7.20.eb b/easybuild/easyconfigs/f/freetype/freetype-2.5.5-goolf-1.7.20.eb index f26f3a1cf8..415f10d874 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.5.5-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.5.5-goolf-1.7.20.eb @@ -19,7 +19,8 @@ dependencies = [ configopts = '--with-harfbuzz=no' sanity_check_paths = { - 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], + 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, + 'lib/pkgconfig/freetype2.pc'], 'dirs': ['include/freetype2'], } diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.6.2-goolf-1.7.20.eb b/easybuild/easyconfigs/f/freetype/freetype-2.6.2-goolf-1.7.20.eb index fefd237604..e7a7a3593d 100644 --- a/easybuild/easyconfigs/f/freetype/freetype-2.6.2-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/f/freetype/freetype-2.6.2-goolf-1.7.20.eb @@ -19,7 +19,8 @@ dependencies = [ configopts = '--with-harfbuzz=no' sanity_check_paths = { - 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], + 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, + 'lib/pkgconfig/freetype2.pc'], 'dirs': ['include/freetype2'], } diff --git a/easybuild/easyconfigs/g/GFOLD/GFOLD-1.1.4-goolf-1.7.20.eb b/easybuild/easyconfigs/g/GFOLD/GFOLD-1.1.4-goolf-1.7.20.eb index 8d11408e6b..ae8931f569 100644 --- a/easybuild/easyconfigs/g/GFOLD/GFOLD-1.1.4-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/g/GFOLD/GFOLD-1.1.4-goolf-1.7.20.eb @@ -25,7 +25,7 @@ dependencies = [ files_to_copy = [(['gfold'], 'bin'), 'README', 'doc'] parallel = 1 - + sanity_check_paths = { 'files': ['bin/gfold'], 'dirs': [], diff --git a/easybuild/easyconfigs/g/GFOLD/GFOLD-1.1.4-intel-2016a.eb b/easybuild/easyconfigs/g/GFOLD/GFOLD-1.1.4-intel-2016a.eb index 3b289b47ea..5afa7f55f9 100644 --- a/easybuild/easyconfigs/g/GFOLD/GFOLD-1.1.4-intel-2016a.eb +++ b/easybuild/easyconfigs/g/GFOLD/GFOLD-1.1.4-intel-2016a.eb @@ -25,7 +25,7 @@ dependencies = [ files_to_copy = [(['gfold'], 'bin'), 'README', 'doc'] parallel = 1 - + sanity_check_paths = { 'files': ['bin/gfold'], 'dirs': [], diff --git a/easybuild/easyconfigs/g/GLib/GLib-2.48.2-foss-2015a.eb b/easybuild/easyconfigs/g/GLib/GLib-2.48.2-foss-2015a.eb index 9af7e1beb3..3d7e4ba822 100644 --- a/easybuild/easyconfigs/g/GLib/GLib-2.48.2-foss-2015a.eb +++ b/easybuild/easyconfigs/g/GLib/GLib-2.48.2-foss-2015a.eb @@ -21,7 +21,8 @@ dependencies = [ builddependencies = [('Python', '2.7.9')] -configopts = "--disable-maintainer-mode --disable-silent-rules --disable-libelf --enable-static --enable-shared --disable-systemtap --with-pcre=system" +configopts = "--disable-maintainer-mode --disable-silent-rules --disable-libelf --enable-static --enable-shared " +configopts += "--disable-systemtap --with-pcre=system" postinstallcmds = ["sed -i -e 's|#!.*python|#!/usr/bin/env python|' %(installdir)s/bin/*"] diff --git a/easybuild/easyconfigs/g/Guile/Guile-2.0.11-foss-2016a.eb b/easybuild/easyconfigs/g/Guile/Guile-2.0.11-foss-2016a.eb index 94a0abd7af..ec7a8d0587 100644 --- a/easybuild/easyconfigs/g/Guile/Guile-2.0.11-foss-2016a.eb +++ b/easybuild/easyconfigs/g/Guile/Guile-2.0.11-foss-2016a.eb @@ -16,7 +16,7 @@ builddependencies = [('Autotools', '20150215')] dependencies = [ ('libunistring', '0.9.3'), ('libffi', '3.2.1'), - ('gc', '7.4.4'), + ('gc', '7.4.4'), ('GMP', '6.1.0'), ] diff --git a/easybuild/easyconfigs/g/gflags/gflags-2.1.2-foss-2016a.eb b/easybuild/easyconfigs/g/gflags/gflags-2.1.2-foss-2016a.eb index 9a10acf880..5f269fd40d 100644 --- a/easybuild/easyconfigs/g/gflags/gflags-2.1.2-foss-2016a.eb +++ b/easybuild/easyconfigs/g/gflags/gflags-2.1.2-foss-2016a.eb @@ -23,8 +23,8 @@ builddependencies = [ configopts = '-DBUILD_SHARED_LIBS=on -DBUILD_STATIC_LIBS=on' sanity_check_paths = { - 'files': ['bin/gflags_completions.sh'] + - ['lib/%s' % x for x in ['libgflags.%s' % SHLIB_EXT, + 'files': ['bin/gflags_completions.sh'] + + ['lib/%s' % x for x in ['libgflags.%s' % SHLIB_EXT, 'libgflags_nothreads.%s' % SHLIB_EXT, 'libgflags.a', 'libgflags_nothreads.a']] + ['include/gflags/gflags_completions.h'], 'dirs': [], diff --git a/easybuild/easyconfigs/g/grib_api/grib_api-1.21.0-foss-2017a.eb b/easybuild/easyconfigs/g/grib_api/grib_api-1.21.0-foss-2017a.eb index fa7f84d3e3..cd817e4d4a 100644 --- a/easybuild/easyconfigs/g/grib_api/grib_api-1.21.0-foss-2017a.eb +++ b/easybuild/easyconfigs/g/grib_api/grib_api-1.21.0-foss-2017a.eb @@ -22,4 +22,3 @@ configopts = '--with-jasper=$EBROOTJASPER' parallel = 1 moduleclass = 'data' - diff --git a/easybuild/easyconfigs/g/gtkglext/gtkglext-1.2.0-intel-2015b.eb b/easybuild/easyconfigs/g/gtkglext/gtkglext-1.2.0-intel-2015b.eb index 8dc32d3aad..e4de322688 100644 --- a/easybuild/easyconfigs/g/gtkglext/gtkglext-1.2.0-intel-2015b.eb +++ b/easybuild/easyconfigs/g/gtkglext/gtkglext-1.2.0-intel-2015b.eb @@ -21,7 +21,7 @@ dependencies = [ ] sanity_check_paths = { - 'files': ['lib/gtkglext-1.0/include/gdkglext-config.h', + 'files': ['lib/gtkglext-1.0/include/gdkglext-config.h', 'lib/libgdkglext-x11-1.0.a', 'lib/libgdkglext-x11-1.0.%s' % SHLIB_EXT, 'lib/libgtkglext-x11-1.0.a', 'lib/libgtkglext-x11-1.0.%s' % SHLIB_EXT], 'dirs': ['include/gtkglext-1.0/gdk', 'include/gtkglext-1.0/gtk', 'lib/pkgconfig'], diff --git a/easybuild/easyconfigs/h/horton/horton-2.0.0-intel-2015b-Python-2.7.10-HDF5-1.8.15-patch1-serial.eb b/easybuild/easyconfigs/h/horton/horton-2.0.0-intel-2015b-Python-2.7.10-HDF5-1.8.15-patch1-serial.eb index ab045435b2..d0c34c2e67 100644 --- a/easybuild/easyconfigs/h/horton/horton-2.0.0-intel-2015b-Python-2.7.10-HDF5-1.8.15-patch1-serial.eb +++ b/easybuild/easyconfigs/h/horton/horton-2.0.0-intel-2015b-Python-2.7.10-HDF5-1.8.15-patch1-serial.eb @@ -50,4 +50,4 @@ sanity_check_paths = { 'dirs': ['lib/python%s/site-packages/horton' % pyshortver], } -moduleclass = 'chem' +moduleclass = 'chem' diff --git a/easybuild/easyconfigs/i/IGV/IGV-2.3.68-Java-1.7.0_80.eb b/easybuild/easyconfigs/i/IGV/IGV-2.3.68-Java-1.7.0_80.eb index 110b480923..be548b30c0 100644 --- a/easybuild/easyconfigs/i/IGV/IGV-2.3.68-Java-1.7.0_80.eb +++ b/easybuild/easyconfigs/i/IGV/IGV-2.3.68-Java-1.7.0_80.eb @@ -24,7 +24,7 @@ versionsuffix = '-%s-%s' % (java, javaver) dependencies = [(java, javaver)] # add the installation dir to PATH -modextrapaths = { +modextrapaths = { 'PATH': '', } diff --git a/easybuild/easyconfigs/i/IGV/IGV-2.3.80-Java-1.7.0_80.eb b/easybuild/easyconfigs/i/IGV/IGV-2.3.80-Java-1.7.0_80.eb index f8dd5d79f2..fb24a4205c 100644 --- a/easybuild/easyconfigs/i/IGV/IGV-2.3.80-Java-1.7.0_80.eb +++ b/easybuild/easyconfigs/i/IGV/IGV-2.3.80-Java-1.7.0_80.eb @@ -24,7 +24,7 @@ versionsuffix = '-%s-%s' % (java, javaver) dependencies = [(java, javaver)] # add the installation dir to PATH -modextrapaths = { +modextrapaths = { 'PATH': '', } diff --git a/easybuild/easyconfigs/i/IGVTools/IGVTools-2.3.68-Java-1.7.0_80.eb b/easybuild/easyconfigs/i/IGVTools/IGVTools-2.3.68-Java-1.7.0_80.eb index bc16033a08..5610a087c8 100644 --- a/easybuild/easyconfigs/i/IGVTools/IGVTools-2.3.68-Java-1.7.0_80.eb +++ b/easybuild/easyconfigs/i/IGVTools/IGVTools-2.3.68-Java-1.7.0_80.eb @@ -24,7 +24,7 @@ versionsuffix = '-%s-%s' % (java, javaver) dependencies = [(java, javaver)] # add the installation dir to PATH -modextrapaths = { +modextrapaths = { 'PATH': '', } diff --git a/easybuild/easyconfigs/i/IGVTools/IGVTools-2.3.72-Java-1.7.0_80.eb b/easybuild/easyconfigs/i/IGVTools/IGVTools-2.3.72-Java-1.7.0_80.eb index af0616b491..a1e88b7409 100644 --- a/easybuild/easyconfigs/i/IGVTools/IGVTools-2.3.72-Java-1.7.0_80.eb +++ b/easybuild/easyconfigs/i/IGVTools/IGVTools-2.3.72-Java-1.7.0_80.eb @@ -26,7 +26,7 @@ versionsuffix = '-%s-%s' % (java, javaver) dependencies = [(java, javaver)] # add the installation dir to PATH -modextrapaths = { +modextrapaths = { 'PATH': '', } diff --git a/easybuild/easyconfigs/i/IGVTools/IGVTools-2.3.75-Java-1.7.0_80.eb b/easybuild/easyconfigs/i/IGVTools/IGVTools-2.3.75-Java-1.7.0_80.eb index d2575fc6ec..6bb0cfc42f 100644 --- a/easybuild/easyconfigs/i/IGVTools/IGVTools-2.3.75-Java-1.7.0_80.eb +++ b/easybuild/easyconfigs/i/IGVTools/IGVTools-2.3.75-Java-1.7.0_80.eb @@ -24,7 +24,7 @@ sources = ['%(namelower)s_%(version)s.zip'] dependencies = [('Java', '1.7.0_80')] # add the installation dir to PATH -modextrapaths = { +modextrapaths = { 'PATH': '', } diff --git a/easybuild/easyconfigs/i/IOzone/IOzone-3.434-foss-2016a.eb b/easybuild/easyconfigs/i/IOzone/IOzone-3.434-foss-2016a.eb index 6af67462a3..5427eeed24 100644 --- a/easybuild/easyconfigs/i/IOzone/IOzone-3.434-foss-2016a.eb +++ b/easybuild/easyconfigs/i/IOzone/IOzone-3.434-foss-2016a.eb @@ -21,7 +21,7 @@ files_to_copy = [ (['src/current/%s' % docfile for docfile in ['gengnuplot.sh', 'Generate_Graphs', 'gnu3d.dem']], 'share'), (['docs/iozone.1'], 'share/man/man1'), (['docs/%s' % docfile for docfile in ['IOzone_msword_98.doc', 'IOzone_msword_98.pdf', 'Iozone_ps.gz', - 'Run_rules.doc']], + 'Run_rules.doc']], 'share/doc'), ] diff --git a/easybuild/easyconfigs/i/igraph/igraph-0.7.1-intel-2016b.eb b/easybuild/easyconfigs/i/igraph/igraph-0.7.1-intel-2016b.eb index b0f9d10dbb..0c649171c4 100644 --- a/easybuild/easyconfigs/i/igraph/igraph-0.7.1-intel-2016b.eb +++ b/easybuild/easyconfigs/i/igraph/igraph-0.7.1-intel-2016b.eb @@ -17,7 +17,7 @@ source_urls = ['https://github.com/igraph/igraph/releases/download/%(version)s'] builddependencies = [('Autotools', '20150215')] patches = [ - 'igraph-%(version)s-no-lapack-no-blas.patch', + 'igraph-%(version)s-no-lapack-no-blas.patch', 'igraph-%(version)s-fix-aclocal-version.patch' ] diff --git a/easybuild/easyconfigs/i/impi/impi-2017.1.132-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/impi/impi-2017.1.132-GCC-5.4.0-2.26.eb index 57fd16dd93..4dafa137ca 100644 --- a/easybuild/easyconfigs/i/impi/impi-2017.1.132-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/impi/impi-2017.1.132-GCC-5.4.0-2.26.eb @@ -19,7 +19,7 @@ components = ['intel-mpi', 'intel-psxe', 'intel-imb'] license_file = HOME + '/licenses/intel/license.lic' # Set I_MPI_ variables to point at the appropriate compilers -#set_mpi_wrappers_all = True +# set_mpi_wrappers_all = True postinstallcmds = [ 'ln -s %(installdir)s/lib64/libmpi.so %(installdir)s/lib64/libmpich.so', diff --git a/easybuild/easyconfigs/j/JasPer/JasPer-1.900.1-foss-2017a.eb b/easybuild/easyconfigs/j/JasPer/JasPer-1.900.1-foss-2017a.eb index 73e404db1c..1d4d9ee543 100644 --- a/easybuild/easyconfigs/j/JasPer/JasPer-1.900.1-foss-2017a.eb +++ b/easybuild/easyconfigs/j/JasPer/JasPer-1.900.1-foss-2017a.eb @@ -19,4 +19,3 @@ sanity_check_paths = { } moduleclass = 'vis' - diff --git a/easybuild/easyconfigs/j/jModelTest/jModelTest-2.1.10r20160303-Java-1.8.0_92.eb b/easybuild/easyconfigs/j/jModelTest/jModelTest-2.1.10r20160303-Java-1.8.0_92.eb index 4dba96087d..3c4304258a 100644 --- a/easybuild/easyconfigs/j/jModelTest/jModelTest-2.1.10r20160303-Java-1.8.0_92.eb +++ b/easybuild/easyconfigs/j/jModelTest/jModelTest-2.1.10r20160303-Java-1.8.0_92.eb @@ -29,7 +29,7 @@ install_cmd = "cd jmodeltest2-%(version)s && ant -Ddist.dir=%(installdir)s jar" modloadmsg = "To execute jModelTest run: java -jar $EBROOTJMODELTEST/jModelTest.jar\n" sanity_check_paths = { - 'files': ['jModelTest.jar'], + 'files': ['jModelTest.jar'], 'dirs': [], } diff --git a/easybuild/easyconfigs/j/jModelTest/jModelTest-2.1.9r20160115-goolf-1.4.10-Java-1.7.0_75.eb b/easybuild/easyconfigs/j/jModelTest/jModelTest-2.1.9r20160115-goolf-1.4.10-Java-1.7.0_75.eb index 37a4b9dd9a..f01140a3e5 100644 --- a/easybuild/easyconfigs/j/jModelTest/jModelTest-2.1.9r20160115-goolf-1.4.10-Java-1.7.0_75.eb +++ b/easybuild/easyconfigs/j/jModelTest/jModelTest-2.1.9r20160115-goolf-1.4.10-Java-1.7.0_75.eb @@ -29,7 +29,7 @@ install_cmd = "cd jmodeltest2-%(version)s && ant -Ddist.dir=%(installdir)s jar" modloadmsg = "To execute jModelTest run: java -jar $EBROOTJMODELTEST/jModelTest.jar\n" sanity_check_paths = { - 'files': ['jModelTest.jar'], + 'files': ['jModelTest.jar'], 'dirs': [], } diff --git a/easybuild/easyconfigs/j/jhbuild/jhbuild-3.15.92-GCCcore-4.9.3.eb b/easybuild/easyconfigs/j/jhbuild/jhbuild-3.15.92-GCCcore-4.9.3.eb index b2f1cf65eb..401fa1f345 100644 --- a/easybuild/easyconfigs/j/jhbuild/jhbuild-3.15.92-GCCcore-4.9.3.eb +++ b/easybuild/easyconfigs/j/jhbuild/jhbuild-3.15.92-GCCcore-4.9.3.eb @@ -36,7 +36,7 @@ dependencies = [ # to avoid unnecessary dependencies. This requires us to build in the install dir so that all libs are found. buildininstalldir = True skipsteps = ['configure'] -prebuildopts = './autogen.sh --prefix=%(installdir)s &&' +prebuildopts = './autogen.sh --prefix=%(installdir)s &&' # Make sure there are no "not found" in the sanitycheck output sanity_check_commands = [('! jhbuild', 'sanitycheck| grep not\ found')] diff --git a/easybuild/easyconfigs/l/LLVM/LLVM-3.7.1-foss-2015a.eb b/easybuild/easyconfigs/l/LLVM/LLVM-3.7.1-foss-2015a.eb index 531f4e4816..2b4d52c46c 100644 --- a/easybuild/easyconfigs/l/LLVM/LLVM-3.7.1-foss-2015a.eb +++ b/easybuild/easyconfigs/l/LLVM/LLVM-3.7.1-foss-2015a.eb @@ -20,7 +20,7 @@ preconfigopts = "[ ! -e build ] && mkdir build && cd build &&" configure_cmd_prefix = '../' # For llvmpy / Numba: -configopts = '--enable-optimized --enable-pic --enable-shared' +configopts = '--enable-optimized --enable-pic --enable-shared' prebuildopts = 'cd build && REQUIRES_RTTI=1' preinstallopts = 'cd build &&' diff --git a/easybuild/easyconfigs/l/LLVM/LLVM-3.9.1-foss-2017a.eb b/easybuild/easyconfigs/l/LLVM/LLVM-3.9.1-foss-2017a.eb index 6bffed0098..7666df6063 100644 --- a/easybuild/easyconfigs/l/LLVM/LLVM-3.9.1-foss-2017a.eb +++ b/easybuild/easyconfigs/l/LLVM/LLVM-3.9.1-foss-2017a.eb @@ -41,4 +41,3 @@ sanity_check_paths = { separate_build_dir = True moduleclass = 'compiler' - diff --git a/easybuild/easyconfigs/l/LLVM/LLVM-4.0.0-foss-2017a.eb b/easybuild/easyconfigs/l/LLVM/LLVM-4.0.0-foss-2017a.eb index 5a2a5553d5..d9e41a1460 100644 --- a/easybuild/easyconfigs/l/LLVM/LLVM-4.0.0-foss-2017a.eb +++ b/easybuild/easyconfigs/l/LLVM/LLVM-4.0.0-foss-2017a.eb @@ -41,4 +41,3 @@ sanity_check_paths = { separate_build_dir = True moduleclass = 'compiler' - diff --git a/easybuild/easyconfigs/l/LSMS/LSMS-3_rev237-foss-2016a.eb b/easybuild/easyconfigs/l/LSMS/LSMS-3_rev237-foss-2016a.eb index b39dd8a48b..4e067fb22e 100644 --- a/easybuild/easyconfigs/l/LSMS/LSMS-3_rev237-foss-2016a.eb +++ b/easybuild/easyconfigs/l/LSMS/LSMS-3_rev237-foss-2016a.eb @@ -6,7 +6,7 @@ version = '3_rev237' homepage = 'https://asc.llnl.gov/CORAL-benchmarks/#lsms' description = "LSMS benchmark, part of CORAL suite" -toolchain = {'name': 'foss', 'version': '2016a' } +toolchain = {'name': 'foss', 'version': '2016a'} source_urls = ['https://asc.llnl.gov/CORAL-benchmarks/Science/'] sources = ['%(name)s_%(version)s.tar.bz2'] @@ -27,5 +27,5 @@ sanity_check_paths = { 'files': ['bin/lsms', 'bin/wl-lsms'], 'dirs': [], } - + moduleclass = 'tools' diff --git a/easybuild/easyconfigs/l/libXi/libXi-1.7.2-goolf-1.4.10.eb b/easybuild/easyconfigs/l/libXi/libXi-1.7.2-goolf-1.4.10.eb index b4b7228f14..f715404402 100644 --- a/easybuild/easyconfigs/l/libXi/libXi-1.7.2-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/l/libXi/libXi-1.7.2-goolf-1.4.10.eb @@ -20,7 +20,7 @@ dependencies = [ ] sanity_check_paths = { - 'files': ['include/X11/extensions/XInput.h', 'include/X11/extensions/XInput2.h', + 'files': ['include/X11/extensions/XInput.h', 'include/X11/extensions/XInput2.h', 'lib/libXi.%s' % SHLIB_EXT, 'lib/libXi.a'], 'dirs': [], } diff --git a/easybuild/easyconfigs/l/libXi/libXi-1.7.4-intel-2015b.eb b/easybuild/easyconfigs/l/libXi/libXi-1.7.4-intel-2015b.eb index 2316d70175..22b46c1c3e 100644 --- a/easybuild/easyconfigs/l/libXi/libXi-1.7.4-intel-2015b.eb +++ b/easybuild/easyconfigs/l/libXi/libXi-1.7.4-intel-2015b.eb @@ -20,7 +20,7 @@ dependencies = [ ] sanity_check_paths = { - 'files': ['include/X11/extensions/XInput.h', 'include/X11/extensions/XInput2.h', + 'files': ['include/X11/extensions/XInput.h', 'include/X11/extensions/XInput2.h', 'lib/libXi.%s' % SHLIB_EXT, 'lib/libXi.a'], 'dirs': [], } diff --git a/easybuild/easyconfigs/l/libreadline/libreadline-6.2-foss-2015a.eb b/easybuild/easyconfigs/l/libreadline/libreadline-6.2-foss-2015a.eb index 45a556ffec..684bf7dc76 100644 --- a/easybuild/easyconfigs/l/libreadline/libreadline-6.2-foss-2015a.eb +++ b/easybuild/easyconfigs/l/libreadline/libreadline-6.2-foss-2015a.eb @@ -18,10 +18,10 @@ source_urls = ['http://ftp.gnu.org/gnu/readline'] dependencies = [('ncurses', '5.9')] sanity_check_paths = { - 'files' : ['lib/libreadline.a', 'lib/libhistory.a'] + - ['include/readline/%s' % x for x in ['chardefs.h', 'history.h', 'keymaps.h', 'readline.h', 'rlconf.h', - 'rlstdc.h', 'rltypedefs.h', 'tilde.h']], - 'dirs' : [], + 'files': ['lib/libreadline.a', 'lib/libhistory.a'] + + ['include/readline/%s' % x for x in ['chardefs.h', 'history.h', 'keymaps.h', 'readline.h', 'rlconf.h', + 'rlstdc.h', 'rltypedefs.h', 'tilde.h']], + 'dirs': [], } moduleclass = 'lib' diff --git a/easybuild/easyconfigs/m/METIS/METIS-5.1.0-foss-2017a.eb b/easybuild/easyconfigs/m/METIS/METIS-5.1.0-foss-2017a.eb index b1648c008c..e2b238572c 100644 --- a/easybuild/easyconfigs/m/METIS/METIS-5.1.0-foss-2017a.eb +++ b/easybuild/easyconfigs/m/METIS/METIS-5.1.0-foss-2017a.eb @@ -15,7 +15,7 @@ source_urls = [ 'http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/OLD', ] -#We use 32bit for indices and 64bit for content +# we use 32bit for indices and 64bit for content patches = ['METIS-5.1.0-use-doubles.patch'] builddependencies = [('CMake', '3.8.0')] @@ -23,4 +23,3 @@ builddependencies = [('CMake', '3.8.0')] configopts = ['', 'shared=1'] moduleclass = 'math' - diff --git a/easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-2016a.eb b/easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-2016a.eb index 6a0e136d4e..75f0da13ce 100644 --- a/easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-2016a.eb +++ b/easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-2016a.eb @@ -33,8 +33,8 @@ dependencies = [ ('zlib', '1.2.8'), ] -buildopts="install-special" -start_dir="global-1" +buildopts = "install-special" +start_dir = "global-1" sanity_check_paths = { 'files': ['bin/masurca'], diff --git a/easybuild/easyconfigs/m/Mesa/Mesa-11.2.1-foss-2015a.eb b/easybuild/easyconfigs/m/Mesa/Mesa-11.2.1-foss-2015a.eb index 27ac3ec93c..42ded1fee4 100644 --- a/easybuild/easyconfigs/m/Mesa/Mesa-11.2.1-foss-2015a.eb +++ b/easybuild/easyconfigs/m/Mesa/Mesa-11.2.1-foss-2015a.eb @@ -34,7 +34,7 @@ dependencies = [ ] # Use the os provided libudev or the EB provided eudev -#osdependencies = ['libudev'] +# osdependencies = ['libudev'] # GLU is not part anymore of Mesa package! configopts = " --disable-osmesa --enable-gallium-osmesa --enable-gallium-llvm --enable-glx --disable-dri" diff --git a/easybuild/easyconfigs/m/memkind/memkind-1.5.0-GCCcore-5.4.0.eb b/easybuild/easyconfigs/m/memkind/memkind-1.5.0-GCCcore-5.4.0.eb index 6a31d17221..3b6604a72e 100644 --- a/easybuild/easyconfigs/m/memkind/memkind-1.5.0-GCCcore-5.4.0.eb +++ b/easybuild/easyconfigs/m/memkind/memkind-1.5.0-GCCcore-5.4.0.eb @@ -16,12 +16,12 @@ sources = ['v%(version)s.tar.gz'] builddependencies = [ ('binutils', '2.26'), - ('Coreutils', '8.27'), # needed to ensure that ./build_jemalloc.sh works properly - ('Autotools', '20150215'), # needed to ensure that ./build_jemalloc.sh works properly + ('Coreutils', '8.27'), # needed to ensure that ./build_jemalloc.sh works properly + ('Autotools', '20150215'), # needed to ensure that ./build_jemalloc.sh works properly ] dependencies = [ - ('tbb', '2017_U5'), # optional, to enable the tbb heap manager + ('tbb', '2017_U5'), # optional, to enable the tbb heap manager ('numactl', '2.0.11') ] diff --git a/easybuild/easyconfigs/m/molmod/molmod-1.1-intel-2015b-Python-2.7.10.eb b/easybuild/easyconfigs/m/molmod/molmod-1.1-intel-2015b-Python-2.7.10.eb index eb46a80abe..d98ab8d528 100644 --- a/easybuild/easyconfigs/m/molmod/molmod-1.1-intel-2015b-Python-2.7.10.eb +++ b/easybuild/easyconfigs/m/molmod/molmod-1.1-intel-2015b-Python-2.7.10.eb @@ -14,7 +14,7 @@ sources = [SOURCE_TAR_GZ] dependencies = [ ('Python', '2.7.10'), - ('matplotlib', '1.5.0', versionsuffix), + ('matplotlib', '1.5.0', versionsuffix), ] runtest = "export MATPLOTLIBRC=$PWD; echo 'backend: agg' > $MATPLOTLIBRC/matplotlibrc;" diff --git a/easybuild/easyconfigs/m/molmod/molmod-1.1-intel-2016a-Python-2.7.11.eb b/easybuild/easyconfigs/m/molmod/molmod-1.1-intel-2016a-Python-2.7.11.eb index 62f71cc876..c9fec8f432 100644 --- a/easybuild/easyconfigs/m/molmod/molmod-1.1-intel-2016a-Python-2.7.11.eb +++ b/easybuild/easyconfigs/m/molmod/molmod-1.1-intel-2016a-Python-2.7.11.eb @@ -14,7 +14,7 @@ sources = [SOURCE_TAR_GZ] dependencies = [ ('Python', '2.7.11'), - ('matplotlib', '1.5.1', versionsuffix), + ('matplotlib', '1.5.1', versionsuffix), ] runtest = "export MATPLOTLIBRC=$PWD; echo 'backend: agg' > $MATPLOTLIBRC/matplotlibrc;" diff --git a/easybuild/easyconfigs/m/molmod/molmod-1.1-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/m/molmod/molmod-1.1-intel-2016b-Python-2.7.12.eb index 1b74bd9124..a8659a20bf 100644 --- a/easybuild/easyconfigs/m/molmod/molmod-1.1-intel-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/m/molmod/molmod-1.1-intel-2016b-Python-2.7.12.eb @@ -14,7 +14,7 @@ sources = [SOURCE_TAR_GZ] dependencies = [ ('Python', '2.7.12'), - ('matplotlib', '1.5.3', versionsuffix), + ('matplotlib', '1.5.3', versionsuffix), ] runtest = "export MATPLOTLIBRC=$PWD; echo 'backend: agg' > $MATPLOTLIBRC/matplotlibrc;" diff --git a/easybuild/easyconfigs/n/NAMD/NAMD-2.12-foss-2017a-mpi.eb b/easybuild/easyconfigs/n/NAMD/NAMD-2.12-foss-2017a-mpi.eb index 8c793e8447..216d763393 100644 --- a/easybuild/easyconfigs/n/NAMD/NAMD-2.12-foss-2017a-mpi.eb +++ b/easybuild/easyconfigs/n/NAMD/NAMD-2.12-foss-2017a-mpi.eb @@ -22,5 +22,3 @@ osdependencies = ['tcsh'] charm_arch = "mpi-linux-x86_64" moduleclass = 'chem' - - diff --git a/easybuild/easyconfigs/n/NRGLjubljana/NRGLjubljana-2.4.3.23-foss-2016b.eb b/easybuild/easyconfigs/n/NRGLjubljana/NRGLjubljana-2.4.3.23-foss-2016b.eb index 491184693e..e11e467c7e 100644 --- a/easybuild/easyconfigs/n/NRGLjubljana/NRGLjubljana-2.4.3.23-foss-2016b.eb +++ b/easybuild/easyconfigs/n/NRGLjubljana/NRGLjubljana-2.4.3.23-foss-2016b.eb @@ -15,19 +15,19 @@ docurls = 'http://nrgljubljana.ijs.si/examples/' software_license = 'LicenseGPLv3' toolchain = {'name': 'foss', 'version': '2016b'} -toolchainopts = { 'pic': True } +toolchainopts = {'pic': True} -sources = [ '%(namelower)s-%(version)s.tar.gz' ] -source_urls = [ 'http://nrgljubljana.ijs.si/' ] +sources = ['%(namelower)s-%(version)s.tar.gz'] +source_urls = ['http://nrgljubljana.ijs.si/'] configopts = '--with-tools --with-boost-serialization=boost_serialization' configopts += ' CXXFLAGS="-Ddsyev=dsyev_ -Ddsyevr=dsyevr_ -Dzheev=zheev_ -Dzheevr=zheevr_"' configopts += ' LDFLAGS="-lopenblas -L${EBROOTBOOST}/lib"' dependencies = [ - ('GMP', '6.1.2'), - ('GSL', '2.3'), - ('Boost', '1.61.0') + ('GMP', '6.1.2'), + ('GSL', '2.3'), + ('Boost', '1.61.0'), ] sanity_check_paths = { diff --git a/easybuild/easyconfigs/n/nettle/nettle-2.6-goolf-1.4.10.eb b/easybuild/easyconfigs/n/nettle/nettle-2.6-goolf-1.4.10.eb index eb26f01e29..8beb3e1e0d 100644 --- a/easybuild/easyconfigs/n/nettle/nettle-2.6-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/n/nettle/nettle-2.6-goolf-1.4.10.eb @@ -15,8 +15,10 @@ dependencies = [('GMP', '5.0.5')] sanity_check_paths = { 'files': ['bin/%s' % x for x in ['nettle-hash', 'nettle-lfib-stream', 'pkcs1-conv', 'sexp-conv']] + - [('lib/libhogweed.a', 'lib64/libhogweed.a'), ('lib/libhogweed.%s' % SHLIB_EXT, 'lib64/libhogweed.%s' % SHLIB_EXT), - ('lib/libnettle.a', 'lib64/libnettle.a'), ('lib/libnettle.%s' % SHLIB_EXT, 'lib64/libnettle.%s' % SHLIB_EXT)], + [('lib/libhogweed.a', 'lib64/libhogweed.a'), + ('lib/libhogweed.%s' % SHLIB_EXT, 'lib64/libhogweed.%s' % SHLIB_EXT), + ('lib/libnettle.a', 'lib64/libnettle.a'), + ('lib/libnettle.%s' % SHLIB_EXT, 'lib64/libnettle.%s' % SHLIB_EXT)], 'dirs': ['include/nettle'], } diff --git a/easybuild/easyconfigs/n/nettle/nettle-3.1.1-GNU-4.9.3-2.25.eb b/easybuild/easyconfigs/n/nettle/nettle-3.1.1-GNU-4.9.3-2.25.eb index 27c65b25e8..a611494ef0 100644 --- a/easybuild/easyconfigs/n/nettle/nettle-3.1.1-GNU-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/n/nettle/nettle-3.1.1-GNU-4.9.3-2.25.eb @@ -20,8 +20,10 @@ dependencies = [ sanity_check_paths = { 'files': ['bin/%s' % x for x in ['nettle-hash', 'nettle-lfib-stream', 'pkcs1-conv', 'sexp-conv']] + - [('lib/libhogweed.a', 'lib64/libhogweed.a'), ('lib/libhogweed.%s' % SHLIB_EXT, 'lib64/libhogweed.%s' % SHLIB_EXT), - ('lib/libnettle.a', 'lib64/libnettle.a'), ('lib/libnettle.%s' % SHLIB_EXT, 'lib64/libnettle.%s' % SHLIB_EXT)], + [('lib/libhogweed.a', 'lib64/libhogweed.a'), + ('lib/libhogweed.%s' % SHLIB_EXT, 'lib64/libhogweed.%s' % SHLIB_EXT), + ('lib/libnettle.a', 'lib64/libnettle.a'), + ('lib/libnettle.%s' % SHLIB_EXT, 'lib64/libnettle.%s' % SHLIB_EXT)], 'dirs': ['include/nettle'], } diff --git a/easybuild/easyconfigs/n/nettle/nettle-3.1.1-foss-2016a.eb b/easybuild/easyconfigs/n/nettle/nettle-3.1.1-foss-2016a.eb index f658dc22c5..3dfb0c2269 100644 --- a/easybuild/easyconfigs/n/nettle/nettle-3.1.1-foss-2016a.eb +++ b/easybuild/easyconfigs/n/nettle/nettle-3.1.1-foss-2016a.eb @@ -20,8 +20,10 @@ dependencies = [ sanity_check_paths = { 'files': ['bin/%s' % x for x in ['nettle-hash', 'nettle-lfib-stream', 'pkcs1-conv', 'sexp-conv']] + - [('lib/libhogweed.a', 'lib64/libhogweed.a'), ('lib/libhogweed.%s' % SHLIB_EXT, 'lib64/libhogweed.%s' % SHLIB_EXT), - ('lib/libnettle.a', 'lib64/libnettle.a'), ('lib/libnettle.%s' % SHLIB_EXT, 'lib64/libnettle.%s' % SHLIB_EXT)], + [('lib/libhogweed.a', 'lib64/libhogweed.a'), + ('lib/libhogweed.%s' % SHLIB_EXT, 'lib64/libhogweed.%s' % SHLIB_EXT), + ('lib/libnettle.a', 'lib64/libnettle.a'), + ('lib/libnettle.%s' % SHLIB_EXT, 'lib64/libnettle.%s' % SHLIB_EXT)], 'dirs': ['include/nettle'], } diff --git a/easybuild/easyconfigs/n/nettle/nettle-3.1.1-intel-2016a.eb b/easybuild/easyconfigs/n/nettle/nettle-3.1.1-intel-2016a.eb index b0fd192537..a8958f5414 100644 --- a/easybuild/easyconfigs/n/nettle/nettle-3.1.1-intel-2016a.eb +++ b/easybuild/easyconfigs/n/nettle/nettle-3.1.1-intel-2016a.eb @@ -20,8 +20,10 @@ dependencies = [ sanity_check_paths = { 'files': ['bin/%s' % x for x in ['nettle-hash', 'nettle-lfib-stream', 'pkcs1-conv', 'sexp-conv']] + - [('lib/libhogweed.a', 'lib64/libhogweed.a'), ('lib/libhogweed.%s' % SHLIB_EXT, 'lib64/libhogweed.%s' % SHLIB_EXT), - ('lib/libnettle.a', 'lib64/libnettle.a'), ('lib/libnettle.%s' % SHLIB_EXT, 'lib64/libnettle.%s' % SHLIB_EXT)], + [('lib/libhogweed.a', 'lib64/libhogweed.a'), + ('lib/libhogweed.%s' % SHLIB_EXT, 'lib64/libhogweed.%s' % SHLIB_EXT), + ('lib/libnettle.a', 'lib64/libnettle.a'), + ('lib/libnettle.%s' % SHLIB_EXT, 'lib64/libnettle.%s' % SHLIB_EXT)], 'dirs': ['include/nettle'], } diff --git a/easybuild/easyconfigs/n/nettle/nettle-3.2-GCCcore-5.4.0.eb b/easybuild/easyconfigs/n/nettle/nettle-3.2-GCCcore-5.4.0.eb index 295f442406..c818d9c206 100644 --- a/easybuild/easyconfigs/n/nettle/nettle-3.2-GCCcore-5.4.0.eb +++ b/easybuild/easyconfigs/n/nettle/nettle-3.2-GCCcore-5.4.0.eb @@ -22,8 +22,10 @@ dependencies = [ sanity_check_paths = { 'files': ['bin/%s' % x for x in ['nettle-hash', 'nettle-lfib-stream', 'pkcs1-conv', 'sexp-conv']] + - [('lib/libhogweed.a', 'lib64/libhogweed.a'), ('lib/libhogweed.%s' % SHLIB_EXT, 'lib64/libhogweed.%s' % SHLIB_EXT), - ('lib/libnettle.a', 'lib64/libnettle.a'), ('lib/libnettle.%s' % SHLIB_EXT, 'lib64/libnettle.%s' % SHLIB_EXT)], + [('lib/libhogweed.a', 'lib64/libhogweed.a'), + ('lib/libhogweed.%s' % SHLIB_EXT, 'lib64/libhogweed.%s' % SHLIB_EXT), + ('lib/libnettle.a', 'lib64/libnettle.a'), + ('lib/libnettle.%s' % SHLIB_EXT, 'lib64/libnettle.%s' % SHLIB_EXT)], 'dirs': ['include/nettle'], } diff --git a/easybuild/easyconfigs/n/nettle/nettle-3.2-foss-2016b.eb b/easybuild/easyconfigs/n/nettle/nettle-3.2-foss-2016b.eb index 2f73f07946..9ed2f96361 100644 --- a/easybuild/easyconfigs/n/nettle/nettle-3.2-foss-2016b.eb +++ b/easybuild/easyconfigs/n/nettle/nettle-3.2-foss-2016b.eb @@ -20,8 +20,10 @@ dependencies = [ sanity_check_paths = { 'files': ['bin/%s' % x for x in ['nettle-hash', 'nettle-lfib-stream', 'pkcs1-conv', 'sexp-conv']] + - [('lib/libhogweed.a', 'lib64/libhogweed.a'), ('lib/libhogweed.%s' % SHLIB_EXT, 'lib64/libhogweed.%s' % SHLIB_EXT), - ('lib/libnettle.a', 'lib64/libnettle.a'), ('lib/libnettle.%s' % SHLIB_EXT, 'lib64/libnettle.%s' % SHLIB_EXT)], + [('lib/libhogweed.a', 'lib64/libhogweed.a'), + ('lib/libhogweed.%s' % SHLIB_EXT, 'lib64/libhogweed.%s' % SHLIB_EXT), + ('lib/libnettle.a', 'lib64/libnettle.a'), + ('lib/libnettle.%s' % SHLIB_EXT, 'lib64/libnettle.%s' % SHLIB_EXT)], 'dirs': ['include/nettle'], } diff --git a/easybuild/easyconfigs/n/nettle/nettle-3.2-intel-2016b.eb b/easybuild/easyconfigs/n/nettle/nettle-3.2-intel-2016b.eb index d49da80e3c..9441d6c8c5 100644 --- a/easybuild/easyconfigs/n/nettle/nettle-3.2-intel-2016b.eb +++ b/easybuild/easyconfigs/n/nettle/nettle-3.2-intel-2016b.eb @@ -20,8 +20,10 @@ dependencies = [ sanity_check_paths = { 'files': ['bin/%s' % x for x in ['nettle-hash', 'nettle-lfib-stream', 'pkcs1-conv', 'sexp-conv']] + - [('lib/libhogweed.a', 'lib64/libhogweed.a'), ('lib/libhogweed.%s' % SHLIB_EXT, 'lib64/libhogweed.%s' % SHLIB_EXT), - ('lib/libnettle.a', 'lib64/libnettle.a'), ('lib/libnettle.%s' % SHLIB_EXT, 'lib64/libnettle.%s' % SHLIB_EXT)], + [('lib/libhogweed.a', 'lib64/libhogweed.a'), + ('lib/libhogweed.%s' % SHLIB_EXT, 'lib64/libhogweed.%s' % SHLIB_EXT), + ('lib/libnettle.a', 'lib64/libnettle.a'), + ('lib/libnettle.%s' % SHLIB_EXT, 'lib64/libnettle.%s' % SHLIB_EXT)], 'dirs': ['include/nettle'], } diff --git a/easybuild/easyconfigs/n/nettle/nettle-3.3-intel-2017a.eb b/easybuild/easyconfigs/n/nettle/nettle-3.3-intel-2017a.eb index 9683896ee0..eb6cb21d8f 100644 --- a/easybuild/easyconfigs/n/nettle/nettle-3.3-intel-2017a.eb +++ b/easybuild/easyconfigs/n/nettle/nettle-3.3-intel-2017a.eb @@ -20,8 +20,10 @@ dependencies = [ sanity_check_paths = { 'files': ['bin/%s' % x for x in ['nettle-hash', 'nettle-lfib-stream', 'pkcs1-conv', 'sexp-conv']] + - [('lib/libhogweed.a', 'lib64/libhogweed.a'), ('lib/libhogweed.%s' % SHLIB_EXT, 'lib64/libhogweed.%s' % SHLIB_EXT), - ('lib/libnettle.a', 'lib64/libnettle.a'), ('lib/libnettle.%s' % SHLIB_EXT, 'lib64/libnettle.%s' % SHLIB_EXT)], + [('lib/libhogweed.a', 'lib64/libhogweed.a'), + ('lib/libhogweed.%s' % SHLIB_EXT, 'lib64/libhogweed.%s' % SHLIB_EXT), + ('lib/libnettle.a', 'lib64/libnettle.a'), + ('lib/libnettle.%s' % SHLIB_EXT, 'lib64/libnettle.%s' % SHLIB_EXT)], 'dirs': ['include/nettle'], } diff --git a/easybuild/easyconfigs/o/ORCA/ORCA-4.0.0.2-OpenMPI-2.0.2.eb b/easybuild/easyconfigs/o/ORCA/ORCA-4.0.0.2-OpenMPI-2.0.2.eb index c9312c4044..20a5faa397 100644 --- a/easybuild/easyconfigs/o/ORCA/ORCA-4.0.0.2-OpenMPI-2.0.2.eb +++ b/easybuild/easyconfigs/o/ORCA/ORCA-4.0.0.2-OpenMPI-2.0.2.eb @@ -3,8 +3,8 @@ easyblock = "PackedBinary" name = "ORCA" version = '4.0.0.2' -openmpiversion = '2.0.2' -versionsuffix = '-OpenMPI-%s' % openmpiversion +ompi_ver = '2.0.2' +versionsuffix = '-OpenMPI-%s' % ompi_ver homepage = 'http://cec.mpg.de/forum/' description = """ORCA is a flexible, efficient and easy-to-use general purpose tool for quantum chemistry @@ -16,19 +16,18 @@ description = """ORCA is a flexible, efficient and easy-to-use general purpose t toolchain = {'name': 'dummy', 'version': ''} # Download from https://cec.mpg.de/orcadownload/index.php -sources = ['%%(namelower)s_%s_linux_x86-64_openmpi%s.tbz' % (version.replace('.', '_'), openmpiversion.replace('.', ''))] +sources = ['%%(namelower)s_%s_linux_x86-64_openmpi%s.tbz' % (version.replace('.', '_'), ompi_ver.replace('.', ''))] checksums = ['a5b8ecdd3d004af4bc8190c986f34e11'] -dependencies = [('OpenMPI', openmpiversion, '-GCC-6.3.0-2.27')] +dependencies = [('OpenMPI', ompi_ver, '-GCC-6.3.0-2.27')] sanity_check_paths = { 'files': ['orca_%s%s' % (x, y) for x in ['anoint', 'casscf', 'cis', 'cleanup', 'cpscf', 'eprnmr', 'gtoint', 'mdci', 'mp2', 'mrci', 'pc', - 'rocis', 'scf', 'scfgrad', 'soc'] - for y in ["", "_mpi"]] + + 'rocis', 'scf', 'scfgrad', 'soc'] for y in ['', '_mpi']] + ['orca_%s' % x for x in ['2mkl', 'asa', 'chelpg', 'ciprep', 'eca', 'ecplib', - 'euler', 'fci', 'fitpes', 'gstep', 'loc', 'mapspc', + 'euler', 'fci', 'fitpes', 'gstep', 'loc', 'mapspc', 'md', 'mergefrag', 'ndoint', 'numfreq', 'plot', 'pltvib', 'pop', 'rel', 'vib', 'vpot']] + ['orca'], diff --git a/easybuild/easyconfigs/o/OSU-Micro-Benchmarks/OSU-Micro-Benchmarks-5.3.2-foss-2017a.eb b/easybuild/easyconfigs/o/OSU-Micro-Benchmarks/OSU-Micro-Benchmarks-5.3.2-foss-2017a.eb index 3f1b8657b8..009425ac2b 100644 --- a/easybuild/easyconfigs/o/OSU-Micro-Benchmarks/OSU-Micro-Benchmarks-5.3.2-foss-2017a.eb +++ b/easybuild/easyconfigs/o/OSU-Micro-Benchmarks/OSU-Micro-Benchmarks-5.3.2-foss-2017a.eb @@ -22,4 +22,3 @@ sanity_check_paths = { } moduleclass = 'perf' - diff --git a/easybuild/easyconfigs/o/OTF2/OTF2-2.0-foss-2017a.eb b/easybuild/easyconfigs/o/OTF2/OTF2-2.0-foss-2017a.eb index c2ecdc414e..d4318573b4 100644 --- a/easybuild/easyconfigs/o/OTF2/OTF2-2.0-foss-2017a.eb +++ b/easybuild/easyconfigs/o/OTF2/OTF2-2.0-foss-2017a.eb @@ -3,7 +3,7 @@ # Copyright:: Copyright 2013-2016 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # Markus Geimer -## License:: 3-clause BSD +# License:: 3-clause BSD # # This work is based on experiences from the UNITE project # http://apps.fz-juelich.de/unite/ @@ -38,4 +38,3 @@ sanity_check_paths = { } moduleclass = 'perf' - diff --git a/easybuild/easyconfigs/o/Octopus/Octopus-5.0.0-intel-2015b-mpi.eb b/easybuild/easyconfigs/o/Octopus/Octopus-5.0.0-intel-2015b-mpi.eb index 26fbd9394a..88870a022f 100644 --- a/easybuild/easyconfigs/o/Octopus/Octopus-5.0.0-intel-2015b-mpi.eb +++ b/easybuild/easyconfigs/o/Octopus/Octopus-5.0.0-intel-2015b-mpi.eb @@ -41,10 +41,10 @@ configopts += '--with-netcdf-prefix=$EBROOTNETCDFMINFORTRAN ' configopts += '--with-etsf-io-prefix=$EBROOTETSF_IO ' configopts += '--with-pfft-prefix=$EBROOTPFFT --with-mpifftw-prefix=$EBROOTFFTW ' -runtest = 'MPIEXEC=`which mpirun` check' +runtest = 'MPIEXEC=`which mpirun` check' sanity_check_paths = { - 'files': ["bin/octopus_mpi"], + 'files': ["bin/octopus_mpi"], 'dirs': [] } diff --git a/easybuild/easyconfigs/o/OpenFOAM/OpenFOAM-3.0.0-foss-2016a.eb b/easybuild/easyconfigs/o/OpenFOAM/OpenFOAM-3.0.0-foss-2016a.eb index 7985e4b267..b17352b6a7 100644 --- a/easybuild/easyconfigs/o/OpenFOAM/OpenFOAM-3.0.0-foss-2016a.eb +++ b/easybuild/easyconfigs/o/OpenFOAM/OpenFOAM-3.0.0-foss-2016a.eb @@ -21,7 +21,7 @@ patches = [ ('ThirdParty-%(version)s_cleanup.patch', ".."), # patch should not be applied in OpenFOAM subdir ] -dependencies = [ +dependencies = [ ('libreadline', '6.3'), # OpenFOAM requires 64 bit METIS using 32 bit indexes (array indexes) ('METIS', '5.1.0', '-32bitIDX'), diff --git a/easybuild/easyconfigs/o/OpenMPI/OpenMPI-2.0.2-GCC-6.3.0-2.27-opa.eb b/easybuild/easyconfigs/o/OpenMPI/OpenMPI-2.0.2-GCC-6.3.0-2.27-opa.eb index 3413573e74..3736ce11cc 100644 --- a/easybuild/easyconfigs/o/OpenMPI/OpenMPI-2.0.2-GCC-6.3.0-2.27-opa.eb +++ b/easybuild/easyconfigs/o/OpenMPI/OpenMPI-2.0.2-GCC-6.3.0-2.27-opa.eb @@ -2,7 +2,7 @@ easyblock = 'ConfigureMake' name = 'OpenMPI' version = '2.0.2' -versionsuffix= '-opa' +versionsuffix = '-opa' homepage = 'http://www.open-mpi.org/' description = """The Open MPI Project is an open source MPI-2 implementation.""" @@ -33,5 +33,3 @@ sanity_check_paths = { } moduleclass = 'mpi' - - diff --git a/easybuild/easyconfigs/p/PEAR/PEAR-0.9.6-goolf-1.4.10.eb b/easybuild/easyconfigs/p/PEAR/PEAR-0.9.6-goolf-1.4.10.eb index 5ee2eb89d1..1c4f9ab85d 100644 --- a/easybuild/easyconfigs/p/PEAR/PEAR-0.9.6-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/p/PEAR/PEAR-0.9.6-goolf-1.4.10.eb @@ -18,7 +18,7 @@ source_urls = ['http://sco.h-its.org/exelixis/web/software/pear/files/'] sources = ['%(namelower)s-%(version)s-src.tar.gz'] dependencies = [ - ('zlib', '1.2.8'), + ('zlib', '1.2.8'), ('bzip2', '1.0.6'), ] diff --git a/easybuild/easyconfigs/p/PEAR/PEAR-0.9.8-foss-2016b.eb b/easybuild/easyconfigs/p/PEAR/PEAR-0.9.8-foss-2016b.eb index 63d0944c28..37c50aa1df 100644 --- a/easybuild/easyconfigs/p/PEAR/PEAR-0.9.8-foss-2016b.eb +++ b/easybuild/easyconfigs/p/PEAR/PEAR-0.9.8-foss-2016b.eb @@ -17,7 +17,7 @@ sources = ['%(namelower)s-%(version)s.tar.gz'] checksums = ['1ab079a2cea61aee816012966b7ccacd'] dependencies = [ - ('zlib', '1.2.8'), + ('zlib', '1.2.8'), ('bzip2', '1.0.6'), ] diff --git a/easybuild/easyconfigs/p/PEAR/PEAR-0.9.8-intel-2016b.eb b/easybuild/easyconfigs/p/PEAR/PEAR-0.9.8-intel-2016b.eb index 33e09a2ad6..fef4a83c9e 100644 --- a/easybuild/easyconfigs/p/PEAR/PEAR-0.9.8-intel-2016b.eb +++ b/easybuild/easyconfigs/p/PEAR/PEAR-0.9.8-intel-2016b.eb @@ -17,7 +17,7 @@ sources = ['%(namelower)s-%(version)s.tar.gz'] checksums = ['1ab079a2cea61aee816012966b7ccacd'] dependencies = [ - ('zlib', '1.2.8'), + ('zlib', '1.2.8'), ('bzip2', '1.0.6'), ] diff --git a/easybuild/easyconfigs/p/PETSc/PETSc-3.7.5-intel-2016b-downloaded-deps.eb b/easybuild/easyconfigs/p/PETSc/PETSc-3.7.5-intel-2016b-downloaded-deps.eb index 87e4b65750..44a7eca4df 100644 --- a/easybuild/easyconfigs/p/PETSc/PETSc-3.7.5-intel-2016b-downloaded-deps.eb +++ b/easybuild/easyconfigs/p/PETSc/PETSc-3.7.5-intel-2016b-downloaded-deps.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] # (build) dependencies provided through EasyBuild builddependencies = [('CMake', '3.5.2')] -dependencies = [('HDF5','1.8.18')] +dependencies = [('HDF5', '1.8.18')] # external packages that are downloaded with --download-=1 and --download--static=1 download_deps_static = ['hypre', 'metis', 'ml', 'mumps', 'parmetis', 'prometheus', 'ptscotch', 'suitesparse', diff --git a/easybuild/easyconfigs/p/PRINSEQ/PRINSEQ-0.20.4-foss-2015b-Perl-5.20.3.eb b/easybuild/easyconfigs/p/PRINSEQ/PRINSEQ-0.20.4-foss-2015b-Perl-5.20.3.eb index 261f83dd09..0f000df55c 100644 --- a/easybuild/easyconfigs/p/PRINSEQ/PRINSEQ-0.20.4-foss-2015b-Perl-5.20.3.eb +++ b/easybuild/easyconfigs/p/PRINSEQ/PRINSEQ-0.20.4-foss-2015b-Perl-5.20.3.eb @@ -108,7 +108,7 @@ modextrapaths = { postinstallcmds = [ "sed -i -e 's|/usr/bin/perl|/usr/bin/env\ perl|' %(installdir)s/*.pl", # fix shebang line "chmod +x %(installdir)s/*.pl" # add execution permission -] +] sanity_check_paths = { 'files': ['prinseq-lite.pl', 'prinseq-graphs.pl', 'prinseq-graphs-noPCA.pl'], diff --git a/easybuild/easyconfigs/p/PRINSEQ/PRINSEQ-0.20.4-goolf-1.4.10-Perl-5.16.3.eb b/easybuild/easyconfigs/p/PRINSEQ/PRINSEQ-0.20.4-goolf-1.4.10-Perl-5.16.3.eb index f2db549906..8633986686 100644 --- a/easybuild/easyconfigs/p/PRINSEQ/PRINSEQ-0.20.4-goolf-1.4.10-Perl-5.16.3.eb +++ b/easybuild/easyconfigs/p/PRINSEQ/PRINSEQ-0.20.4-goolf-1.4.10-Perl-5.16.3.eb @@ -106,7 +106,7 @@ modextrapaths = { postinstallcmds = [ "sed -i -e 's|/usr/bin/perl|/usr/bin/env\ perl|' %(installdir)s/*.pl", # fix shebang line "chmod +x %(installdir)s/*.pl" # add execution permission -] +] sanity_check_paths = { 'files': ['prinseq-lite.pl', 'prinseq-graphs.pl', 'prinseq-graphs-noPCA.pl'], diff --git a/easybuild/easyconfigs/p/PROJ/PROJ-4.8.0-foss-2015b.eb b/easybuild/easyconfigs/p/PROJ/PROJ-4.8.0-foss-2015b.eb index 8e0db7e9a1..30f8eb2395 100644 --- a/easybuild/easyconfigs/p/PROJ/PROJ-4.8.0-foss-2015b.eb +++ b/easybuild/easyconfigs/p/PROJ/PROJ-4.8.0-foss-2015b.eb @@ -21,7 +21,7 @@ source_urls = ['http://download.osgeo.org/proj/'] sources = [SOURCELOWER_TAR_GZ] sanity_check_paths = { - 'files': ['bin/cs2cs', 'bin/geod', 'bin/invgeod', 'bin/invproj', + 'files': ['bin/cs2cs', 'bin/geod', 'bin/invgeod', 'bin/invproj', 'bin/nad2bin', 'bin/proj'], 'dirs': [], } diff --git a/easybuild/easyconfigs/p/PROJ/PROJ-4.9.1-foss-2015a.eb b/easybuild/easyconfigs/p/PROJ/PROJ-4.9.1-foss-2015a.eb index ce218bd9f2..4c530e2669 100644 --- a/easybuild/easyconfigs/p/PROJ/PROJ-4.9.1-foss-2015a.eb +++ b/easybuild/easyconfigs/p/PROJ/PROJ-4.9.1-foss-2015a.eb @@ -22,7 +22,7 @@ source_urls = ['http://download.osgeo.org/proj/'] sources = [SOURCELOWER_TAR_GZ] sanity_check_paths = { - 'files': ['bin/cs2cs', 'bin/geod', 'bin/invgeod', 'bin/invproj', + 'files': ['bin/cs2cs', 'bin/geod', 'bin/invgeod', 'bin/invproj', 'bin/nad2bin', 'bin/proj'], 'dirs': [], } diff --git a/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a-mt.eb b/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a-mt.eb index 3fb8ef382e..7848df036c 100644 --- a/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a-mt.eb +++ b/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a-mt.eb @@ -21,7 +21,7 @@ sources = [SOURCELOWER_TAR_GZ] maxparallel = 1 -#runtest = 'test' +# runtest = 'test' exts_list = [ ('Module::Build', '0.4210', { # std module but recent BioPerl needs a recent version for some reason @@ -260,7 +260,7 @@ exts_list = [ ('Data::Types', '0.09', { 'source_tmpl': 'Data-Types-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DW/DWHEELER/'], - }), + }), ('Exporter::Tiny', '0.042', { 'source_tmpl': 'Exporter-Tiny-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TO/TOBYINK/'], diff --git a/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a.eb b/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a.eb index 519a5ec0ca..a2edfbd0bd 100644 --- a/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a.eb +++ b/easybuild/easyconfigs/p/Perl/Perl-5.22.0-foss-2015a.eb @@ -257,7 +257,7 @@ exts_list = [ ('Data::Types', '0.09', { 'source_tmpl': 'Data-Types-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/D/DW/DWHEELER/'], - }), + }), ('Exporter::Tiny', '0.042', { 'source_tmpl': 'Exporter-Tiny-%(version)s.tar.gz', 'source_urls': ['http://cpan.metacpan.org/authors/id/T/TO/TOBYINK/'], diff --git a/easybuild/easyconfigs/p/Platanus/Platanus-1.2.4-foss-2017a.eb b/easybuild/easyconfigs/p/Platanus/Platanus-1.2.4-foss-2017a.eb index 47debc3391..b4c1e2fdf5 100644 --- a/easybuild/easyconfigs/p/Platanus/Platanus-1.2.4-foss-2017a.eb +++ b/easybuild/easyconfigs/p/Platanus/Platanus-1.2.4-foss-2017a.eb @@ -1,7 +1,7 @@ easyblock = 'MakeCp' name = 'Platanus' -version = '1.2.4' +version = '1.2.4' homepage = 'http://platanus.bio.titech.ac.jp/' description = """PLATform for Assembling NUcleotide Sequences""" @@ -14,7 +14,7 @@ buildopts = 'CXXFLAGS="$CXXFLAGS -Dnullptr=0 -lm -fpermissive"' source_urls = ['http://platanus.bio.titech.ac.jp/?ddownload=150'] sources = ['%(name)s_v%(version)s.tar.gz'] -files_to_copy = [(["platanus"],'bin'), "README", "LICENSE"] +files_to_copy = [(["platanus"], 'bin'), "README", "LICENSE"] sanity_check_paths = { 'files': ["bin/platanus"], diff --git a/easybuild/easyconfigs/p/Pysam/Pysam-0.9.0-goolf-1.7.20-Python-2.7.11.eb b/easybuild/easyconfigs/p/Pysam/Pysam-0.9.0-goolf-1.7.20-Python-2.7.11.eb index f0889a65b2..160f3b3a15 100644 --- a/easybuild/easyconfigs/p/Pysam/Pysam-0.9.0-goolf-1.7.20-Python-2.7.11.eb +++ b/easybuild/easyconfigs/p/Pysam/Pysam-0.9.0-goolf-1.7.20-Python-2.7.11.eb @@ -20,8 +20,8 @@ parallel = 1 dependencies = [ ('Python', '2.7.11'), ('ncurses', '5.9'), - ('zlib', '1.2.8'), - ('cURL', '7.44.0'), + ('zlib', '1.2.8'), + ('cURL', '7.44.0'), ] # this is a bundle of Python packages diff --git a/easybuild/easyconfigs/p/Pysam/Pysam-0.9.1.4-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/p/Pysam/Pysam-0.9.1.4-foss-2016b-Python-2.7.12.eb index 3deabf6808..e283bd562a 100644 --- a/easybuild/easyconfigs/p/Pysam/Pysam-0.9.1.4-foss-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/p/Pysam/Pysam-0.9.1.4-foss-2016b-Python-2.7.12.eb @@ -23,8 +23,8 @@ parallel = 1 dependencies = [ ('Python', '2.7.12'), ('ncurses', '6.0'), - ('zlib', '1.2.8'), - ('cURL', '7.49.1'), + ('zlib', '1.2.8'), + ('cURL', '7.49.1'), ] # this is a bundle of Python packages diff --git a/easybuild/easyconfigs/p/Python/Python-2.7.11-CrayGNU-2015.11.eb b/easybuild/easyconfigs/p/Python/Python-2.7.11-CrayGNU-2015.11.eb index 8a60745ce6..e436c82dbe 100644 --- a/easybuild/easyconfigs/p/Python/Python-2.7.11-CrayGNU-2015.11.eb +++ b/easybuild/easyconfigs/p/Python/Python-2.7.11-CrayGNU-2015.11.eb @@ -27,7 +27,7 @@ dependencies = [ ('libreadline', '6.3'), ('ncurses', '5.9'), ('SQLite', '3.9.2'), - ('Tk', '8.6.4', '-no-X11'), # this requires a full X11 stack + ('Tk', '8.6.4', '-no-X11'), # this requires a full X11 stack ('GMP', '6.1.0'), ] diff --git a/easybuild/easyconfigs/p/Python/Python-2.7.11-CrayGNU-2016.03.eb b/easybuild/easyconfigs/p/Python/Python-2.7.11-CrayGNU-2016.03.eb index f9d52e68ec..acbb85722b 100644 --- a/easybuild/easyconfigs/p/Python/Python-2.7.11-CrayGNU-2016.03.eb +++ b/easybuild/easyconfigs/p/Python/Python-2.7.11-CrayGNU-2016.03.eb @@ -27,7 +27,7 @@ dependencies = [ ('libreadline', '6.3'), ('ncurses', '6.0'), ('SQLite', '3.9.2'), - ('Tk', '8.6.4', '-no-X11'), # this requires a full X11 stack + ('Tk', '8.6.4', '-no-X11'), # this requires a full X11 stack ('GMP', '6.1.0'), ] diff --git a/easybuild/easyconfigs/p/pbbam/pbbam-20170508-intel-2017a.eb b/easybuild/easyconfigs/p/pbbam/pbbam-20170508-intel-2017a.eb index 5e218a3225..cfbcaf72eb 100644 --- a/easybuild/easyconfigs/p/pbbam/pbbam-20170508-intel-2017a.eb +++ b/easybuild/easyconfigs/p/pbbam/pbbam-20170508-intel-2017a.eb @@ -16,7 +16,7 @@ source_urls = [ 'https://github.com/google/googletest/archive/', ] sources = [ - ('%s.tar.gz' % commit, "tar xfvz %s --strip-components=1"), # pbbam + ('%s.tar.gz' % commit, "tar xfvz %s --strip-components=1"), # pbbam 'release-%s.tar.gz' % gtest_ver, # googletest ] diff --git a/easybuild/easyconfigs/p/pigz/pigz-2.3.1-goolf-1.4.10.eb b/easybuild/easyconfigs/p/pigz/pigz-2.3.1-goolf-1.4.10.eb index b6ccc91bd2..9f34b89624 100644 --- a/easybuild/easyconfigs/p/pigz/pigz-2.3.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/p/pigz/pigz-2.3.1-goolf-1.4.10.eb @@ -18,7 +18,7 @@ toolchain = {'name': 'goolf', 'version': '1.4.10'} source_urls = ['https://github.com/madler/pigz/archive/'] sources = ['v%(version)s.tar.gz'] -checksums = ['3a41409da23ff093b61e414d602c5650'] +checksums = ['3a41409da23ff093b61e414d602c5650'] # README recommends zlib 1.2.6 or higher dependencies = [('zlib', '1.2.8')] diff --git a/easybuild/easyconfigs/r/R/R-3.2.3-foss-2015b.eb b/easybuild/easyconfigs/r/R/R-3.2.3-foss-2015b.eb index 95846046fc..193456e409 100644 --- a/easybuild/easyconfigs/r/R/R-3.2.3-foss-2015b.eb +++ b/easybuild/easyconfigs/r/R/R-3.2.3-foss-2015b.eb @@ -166,7 +166,7 @@ exts_list = [ ('mice', '2.25', ext_options), ('urca', '1.2-8', ext_options), ('fracdiff', '1.4-2', ext_options), - ('logistf', '1.21', ext_options), + ('logistf', '1.21', ext_options), ('akima', '0.5-12', ext_options), ('bitops', '1.0-6', ext_options), ('boot', '1.3-17', ext_options), diff --git a/easybuild/easyconfigs/r/R/R-3.2.3-foss-2016a.eb b/easybuild/easyconfigs/r/R/R-3.2.3-foss-2016a.eb index 1389b272dd..48a36233ea 100644 --- a/easybuild/easyconfigs/r/R/R-3.2.3-foss-2016a.eb +++ b/easybuild/easyconfigs/r/R/R-3.2.3-foss-2016a.eb @@ -166,7 +166,7 @@ exts_list = [ ('mice', '2.25', ext_options), ('urca', '1.2-8', ext_options), ('fracdiff', '1.4-2', ext_options), - ('logistf', '1.21', ext_options), + ('logistf', '1.21', ext_options), ('akima', '0.5-12', ext_options), ('bitops', '1.0-6', ext_options), ('boot', '1.3-17', ext_options), diff --git a/easybuild/easyconfigs/r/R/R-3.2.3-foss-2016b.eb b/easybuild/easyconfigs/r/R/R-3.2.3-foss-2016b.eb index 0acfcbd0b3..c866f9a169 100644 --- a/easybuild/easyconfigs/r/R/R-3.2.3-foss-2016b.eb +++ b/easybuild/easyconfigs/r/R/R-3.2.3-foss-2016b.eb @@ -166,7 +166,7 @@ exts_list = [ ('mice', '2.25', ext_options), ('urca', '1.2-8', ext_options), ('fracdiff', '1.4-2', ext_options), - ('logistf', '1.21', ext_options), + ('logistf', '1.21', ext_options), ('akima', '0.5-12', ext_options), ('bitops', '1.0-6', ext_options), ('boot', '1.3-17', ext_options), diff --git a/easybuild/easyconfigs/r/R/R-3.2.3-intel-2016a-libX11-1.6.3.eb b/easybuild/easyconfigs/r/R/R-3.2.3-intel-2016a-libX11-1.6.3.eb index 39a19900bb..becdf1c504 100644 --- a/easybuild/easyconfigs/r/R/R-3.2.3-intel-2016a-libX11-1.6.3.eb +++ b/easybuild/easyconfigs/r/R/R-3.2.3-intel-2016a-libX11-1.6.3.eb @@ -176,7 +176,7 @@ exts_list = [ ('mice', '2.25', ext_options), ('urca', '1.2-8', ext_options), ('fracdiff', '1.4-2', ext_options), - ('logistf', '1.21', ext_options), + ('logistf', '1.21', ext_options), ('akima', '0.5-12', ext_options), ('bitops', '1.0-6', ext_options), ('boot', '1.3-17', ext_options), diff --git a/easybuild/easyconfigs/r/R/R-3.2.3-intel-2016a.eb b/easybuild/easyconfigs/r/R/R-3.2.3-intel-2016a.eb index ad907eaa04..470ef9623d 100644 --- a/easybuild/easyconfigs/r/R/R-3.2.3-intel-2016a.eb +++ b/easybuild/easyconfigs/r/R/R-3.2.3-intel-2016a.eb @@ -166,7 +166,7 @@ exts_list = [ ('mice', '2.25', ext_options), ('urca', '1.2-8', ext_options), ('fracdiff', '1.4-2', ext_options), - ('logistf', '1.21', ext_options), + ('logistf', '1.21', ext_options), ('akima', '0.5-12', ext_options), ('bitops', '1.0-6', ext_options), ('boot', '1.3-17', ext_options), diff --git a/easybuild/easyconfigs/r/R/R-3.3.3-foss-2016b-X11-20160819.eb b/easybuild/easyconfigs/r/R/R-3.3.3-foss-2016b-X11-20160819.eb index 17436647a4..512b0289b6 100644 --- a/easybuild/easyconfigs/r/R/R-3.3.3-foss-2016b-X11-20160819.eb +++ b/easybuild/easyconfigs/r/R/R-3.3.3-foss-2016b-X11-20160819.eb @@ -13,7 +13,7 @@ source_urls = ['http://cran.us.r-project.org/src/base/R-%(version_major)s'] preconfigopts = 'BLAS_LIBS="$LIBBLAS" LAPACK_LIBS="$LIBLAPACK"' configopts = "--with-lapack --with-blas --with-pic --enable-threads --with-x=yes --enable-R-shlib" -#Actually use Tcl/Tk +# actually use Tcl/Tk configopts += ' --with-tcl-config=$EBROOTTCL/lib/tclConfig.sh --with-tk-config=$EBROOTTK/lib/tkConfig.sh ' # Enable graphics capabilities for plotting. configopts += " --with-cairo --with-libpng --with-jpeglib --with-libtiff" @@ -507,4 +507,3 @@ exts_list = [ ] moduleclass = 'lang' - diff --git a/easybuild/easyconfigs/r/R/R-3.3.3-intel-2017a-X11-20170314.eb b/easybuild/easyconfigs/r/R/R-3.3.3-intel-2017a-X11-20170314.eb index dd6b13d0c2..262dd0c121 100644 --- a/easybuild/easyconfigs/r/R/R-3.3.3-intel-2017a-X11-20170314.eb +++ b/easybuild/easyconfigs/r/R/R-3.3.3-intel-2017a-X11-20170314.eb @@ -13,7 +13,7 @@ source_urls = ['http://cran.us.r-project.org/src/base/R-%(version_major)s'] preconfigopts = 'BLAS_LIBS="$LIBBLAS" LAPACK_LIBS="$LIBLAPACK"' configopts = "--with-lapack --with-blas --with-pic --enable-threads --with-x=yes --enable-R-shlib" -#Actually use Tcl/Tk +# actually use Tcl/Tk configopts += ' --with-tcl-config=$EBROOTTCL/lib/tclConfig.sh --with-tk-config=$EBROOTTK/lib/tkConfig.sh ' # Enable graphics capabilities for plotting. configopts += " --with-cairo --with-libpng --with-jpeglib --with-libtiff" @@ -508,4 +508,3 @@ exts_list = [ ] moduleclass = 'lang' - diff --git a/easybuild/easyconfigs/r/RELION/RELION-1.4-intel-2016b-single.eb b/easybuild/easyconfigs/r/RELION/RELION-1.4-intel-2016b-single.eb index add5ffc72c..2998c29cfd 100644 --- a/easybuild/easyconfigs/r/RELION/RELION-1.4-intel-2016b-single.eb +++ b/easybuild/easyconfigs/r/RELION/RELION-1.4-intel-2016b-single.eb @@ -24,7 +24,7 @@ dependencies = [ ] # RELION expects FLTK to be in external/fltk-1.3.0 and we have to add fltk libraries -configopts = '--enable-mpi --enable-float ' +configopts = '--enable-mpi --enable-float ' configopts += 'LIBS="-lfltk -lXcursor -lXfixes -lXext -lXft -lfontconfig -lXinerama -lpthread -lX11" ' configopts += '&& ln -s $EBROOTFLTK/include external/fltk-1.3.0 ' # users expect the maingui binary to be called relion diff --git a/easybuild/easyconfigs/r/RSeQC/RSeQC-2.6.4-foss-2016b-Python-2.7.12-R-3.3.1.eb b/easybuild/easyconfigs/r/RSeQC/RSeQC-2.6.4-foss-2016b-Python-2.7.12-R-3.3.1.eb index f122fed527..8df3ba88af 100644 --- a/easybuild/easyconfigs/r/RSeQC/RSeQC-2.6.4-foss-2016b-Python-2.7.12-R-3.3.1.eb +++ b/easybuild/easyconfigs/r/RSeQC/RSeQC-2.6.4-foss-2016b-Python-2.7.12-R-3.3.1.eb @@ -25,7 +25,7 @@ source_urls = [SOURCEFORGE_SOURCE] dependencies = [ ('R', '3.3.1'), ('Python', '2.7.12'), - ('Pysam', '0.9.1.4', basepyversionsuffix), + ('Pysam', '0.9.1.4', basepyversionsuffix), ] runtest = "python setup.py test" diff --git a/easybuild/easyconfigs/r/RepastHPC/RepastHPC-2.2.0-foss-2016a.eb b/easybuild/easyconfigs/r/RepastHPC/RepastHPC-2.2.0-foss-2016a.eb index fc07069bff..1ed10f0d18 100644 --- a/easybuild/easyconfigs/r/RepastHPC/RepastHPC-2.2.0-foss-2016a.eb +++ b/easybuild/easyconfigs/r/RepastHPC/RepastHPC-2.2.0-foss-2016a.eb @@ -23,7 +23,7 @@ dependencies = [ configopts = '--with-boost=$EBROOTBOOST --with-netcdf=$EBROOTNETCDFMINCPLUSPLUS' sanity_check_paths = { - 'files': ['lib/librelogo-%%(version)s.%s' % SHLIB_EXT, 'lib/librepast_hpc-%%(version)s.%s' % SHLIB_EXT ], + 'files': ['lib/librelogo-%%(version)s.%s' % SHLIB_EXT, 'lib/librepast_hpc-%%(version)s.%s' % SHLIB_EXT], 'dirs': ['bin/rumor', 'bin/zombie', 'include', 'lib'], } diff --git a/easybuild/easyconfigs/r/rootpy/rootpy-0.8.0-foss-2016a-Python-2.7.11.eb b/easybuild/easyconfigs/r/rootpy/rootpy-0.8.0-foss-2016a-Python-2.7.11.eb index efecae95e8..21a990b69b 100644 --- a/easybuild/easyconfigs/r/rootpy/rootpy-0.8.0-foss-2016a-Python-2.7.11.eb +++ b/easybuild/easyconfigs/r/rootpy/rootpy-0.8.0-foss-2016a-Python-2.7.11.eb @@ -20,7 +20,7 @@ sources = ['%(version)s.tar.gz'] dependencies = [ ('Python', '2.7.11'), - ('ROOT','v6.08.02','-Python-%(pyver)s'), + ('ROOT', 'v6.08.02', '-Python-%(pyver)s'), ('matplotlib', '1.5.1', versionsuffix + '-freetype-2.6.3') ] diff --git a/easybuild/easyconfigs/s/SIONlib/SIONlib-1.7.1-foss-2017a-tools.eb b/easybuild/easyconfigs/s/SIONlib/SIONlib-1.7.1-foss-2017a-tools.eb index 7e537ec0fb..1c00d4b38b 100644 --- a/easybuild/easyconfigs/s/SIONlib/SIONlib-1.7.1-foss-2017a-tools.eb +++ b/easybuild/easyconfigs/s/SIONlib/SIONlib-1.7.1-foss-2017a-tools.eb @@ -42,4 +42,3 @@ sanity_check_paths = { } moduleclass = 'lib' - diff --git a/easybuild/easyconfigs/s/SIONlib/SIONlib-1.7.1-foss-2017a.eb b/easybuild/easyconfigs/s/SIONlib/SIONlib-1.7.1-foss-2017a.eb index 46e980be5f..8dd41bb2de 100644 --- a/easybuild/easyconfigs/s/SIONlib/SIONlib-1.7.1-foss-2017a.eb +++ b/easybuild/easyconfigs/s/SIONlib/SIONlib-1.7.1-foss-2017a.eb @@ -36,4 +36,3 @@ sanity_check_paths = { } moduleclass = 'lib' - diff --git a/easybuild/easyconfigs/s/SUMATRA/SUMATRA-1.0.20-foss-2016a.eb b/easybuild/easyconfigs/s/SUMATRA/SUMATRA-1.0.20-foss-2016a.eb index 352f9013ea..a8666f197a 100644 --- a/easybuild/easyconfigs/s/SUMATRA/SUMATRA-1.0.20-foss-2016a.eb +++ b/easybuild/easyconfigs/s/SUMATRA/SUMATRA-1.0.20-foss-2016a.eb @@ -15,7 +15,7 @@ toolchain = {'name': 'foss', 'version': '2016a'} source_urls = ['https://git.metabarcoding.org/obitools/sumatra/uploads/251020bbbd6c6595cb9fce6077e29952/'] sources = ['%(namelower)s_v%(version)s.tar.gz'] -prebuildopts = 'make clean &&' +prebuildopts = 'make clean &&' files_to_copy = [(['sumatra'], 'bin'), 'sumatra_user_manual.pdf'] diff --git a/easybuild/easyconfigs/s/Sambamba/Sambamba-0.6.6.eb b/easybuild/easyconfigs/s/Sambamba/Sambamba-0.6.6.eb index c6c18b59b8..8b68d940d5 100644 --- a/easybuild/easyconfigs/s/Sambamba/Sambamba-0.6.6.eb +++ b/easybuild/easyconfigs/s/Sambamba/Sambamba-0.6.6.eb @@ -18,7 +18,7 @@ toolchain = {'name': 'dummy', 'version': ''} source_urls = ['https://github.com/lomereiter/sambamba/releases/download/v%(version)s/'] sources = ['%(namelower)s_v%(version)s_linux.tar.bz2'] -postinstallcmds = ['cd %(installdir)s && ln -s sambamba_v%(version)s sambamba',] +postinstallcmds = ['cd %(installdir)s && ln -s sambamba_v%(version)s sambamba'] sanity_check_paths = { 'files': ['sambamba_v%(version)s', 'sambamba'], diff --git a/easybuild/easyconfigs/s/SeqAn/SeqAn-2.3.2-foss-2016b.eb b/easybuild/easyconfigs/s/SeqAn/SeqAn-2.3.2-foss-2016b.eb index b89f6044b4..d894a7f03a 100644 --- a/easybuild/easyconfigs/s/SeqAn/SeqAn-2.3.2-foss-2016b.eb +++ b/easybuild/easyconfigs/s/SeqAn/SeqAn-2.3.2-foss-2016b.eb @@ -29,8 +29,9 @@ dependencies = [ separate_build_dir = True sanity_check_paths = { - 'files': ["bin/%s" % x for x in ["gustaf_mate_joining", "mason_materializer", "mason_variator", "rabema_prepare_sam", - "seqan_tcoffee", "s4_join", "samcat", "splazers", "yara_mapper"]], + 'files': ["bin/%s" % x for x in ["gustaf_mate_joining", "mason_materializer", "mason_variator", + "rabema_prepare_sam", "seqan_tcoffee", "s4_join", "samcat", "splazers", + "yara_mapper"]], 'dirs': [], } diff --git a/easybuild/easyconfigs/s/Singularity/Singularity-2.2.1-GCC-6.3.0-2.27.eb b/easybuild/easyconfigs/s/Singularity/Singularity-2.2.1-GCC-6.3.0-2.27.eb index 8c36b33253..94de58b731 100644 --- a/easybuild/easyconfigs/s/Singularity/Singularity-2.2.1-GCC-6.3.0-2.27.eb +++ b/easybuild/easyconfigs/s/Singularity/Singularity-2.2.1-GCC-6.3.0-2.27.eb @@ -16,7 +16,8 @@ builddependencies = [('Autotools', '20150215')] preconfigopts = './autogen.sh && ' sanity_check_paths = { - 'files': ['bin/run-singularity', 'bin/singularity', 'etc/singularity/singularity.conf', 'libexec/singularity/sexec-suid'], + 'files': ['bin/run-singularity', 'bin/singularity', 'etc/singularity/singularity.conf', + 'libexec/singularity/sexec-suid'], 'dirs': ['etc', 'libexec/singularity'], } diff --git a/easybuild/easyconfigs/s/Stacks/Stacks-1.40-foss-2016a.eb b/easybuild/easyconfigs/s/Stacks/Stacks-1.40-foss-2016a.eb index 197e799318..cdb98a37f5 100644 --- a/easybuild/easyconfigs/s/Stacks/Stacks-1.40-foss-2016a.eb +++ b/easybuild/easyconfigs/s/Stacks/Stacks-1.40-foss-2016a.eb @@ -15,8 +15,8 @@ source_urls = ['http://catchenlab.life.illinois.edu/stacks/source/'] sources = [SOURCELOWER_TAR_GZ] dependencies = [ - ('zlib', '1.2.8'), - ('SAMtools', '1.3.1'), + ('zlib', '1.2.8'), + ('SAMtools', '1.3.1'), ('sparsehash', '2.0.2'), ] diff --git a/easybuild/easyconfigs/s/Stacks/Stacks-1.42-foss-2016a.eb b/easybuild/easyconfigs/s/Stacks/Stacks-1.42-foss-2016a.eb index e042becab7..bb7e9baadc 100644 --- a/easybuild/easyconfigs/s/Stacks/Stacks-1.42-foss-2016a.eb +++ b/easybuild/easyconfigs/s/Stacks/Stacks-1.42-foss-2016a.eb @@ -15,8 +15,8 @@ source_urls = ['http://catchenlab.life.illinois.edu/stacks/source/'] sources = [SOURCELOWER_TAR_GZ] dependencies = [ - ('zlib', '1.2.8'), - ('SAMtools', '1.3.1'), + ('zlib', '1.2.8'), + ('SAMtools', '1.3.1'), ('sparsehash', '2.0.2'), ] diff --git a/easybuild/easyconfigs/s/Stacks/Stacks-1.44-foss-2016a.eb b/easybuild/easyconfigs/s/Stacks/Stacks-1.44-foss-2016a.eb index 1df7d789c0..f99a6a428f 100644 --- a/easybuild/easyconfigs/s/Stacks/Stacks-1.44-foss-2016a.eb +++ b/easybuild/easyconfigs/s/Stacks/Stacks-1.44-foss-2016a.eb @@ -15,8 +15,8 @@ source_urls = ['http://catchenlab.life.illinois.edu/stacks/source/'] sources = [SOURCELOWER_TAR_GZ] dependencies = [ - ('zlib', '1.2.8'), - ('SAMtools', '1.3.1'), + ('zlib', '1.2.8'), + ('SAMtools', '1.3.1'), ('sparsehash', '2.0.2'), ] diff --git a/easybuild/easyconfigs/s/Stacks/Stacks-1.45-foss-2016a.eb b/easybuild/easyconfigs/s/Stacks/Stacks-1.45-foss-2016a.eb index 4f24751d68..116c79b992 100644 --- a/easybuild/easyconfigs/s/Stacks/Stacks-1.45-foss-2016a.eb +++ b/easybuild/easyconfigs/s/Stacks/Stacks-1.45-foss-2016a.eb @@ -15,8 +15,8 @@ source_urls = ['http://catchenlab.life.illinois.edu/stacks/source/'] sources = [SOURCELOWER_TAR_GZ] dependencies = [ - ('zlib', '1.2.8'), - ('SAMtools', '1.3.1'), + ('zlib', '1.2.8'), + ('SAMtools', '1.3.1'), ('sparsehash', '2.0.2'), ] diff --git a/easybuild/easyconfigs/s/Stacks/Stacks-1.46-intel-2017a.eb b/easybuild/easyconfigs/s/Stacks/Stacks-1.46-intel-2017a.eb index 341b4db710..4509b19211 100644 --- a/easybuild/easyconfigs/s/Stacks/Stacks-1.46-intel-2017a.eb +++ b/easybuild/easyconfigs/s/Stacks/Stacks-1.46-intel-2017a.eb @@ -15,8 +15,8 @@ source_urls = ['http://catchenlab.life.illinois.edu/stacks/source/'] sources = [SOURCELOWER_TAR_GZ] dependencies = [ - ('zlib', '1.2.11'), - ('SAMtools', '1.4'), + ('zlib', '1.2.11'), + ('SAMtools', '1.4'), ('sparsehash', '2.0.3'), ] diff --git a/easybuild/easyconfigs/s/SuiteSparse/SuiteSparse-4.5.5-foss-2017a-METIS-5.1.0.eb b/easybuild/easyconfigs/s/SuiteSparse/SuiteSparse-4.5.5-foss-2017a-METIS-5.1.0.eb index 4727d14749..e63d1a798f 100644 --- a/easybuild/easyconfigs/s/SuiteSparse/SuiteSparse-4.5.5-foss-2017a-METIS-5.1.0.eb +++ b/easybuild/easyconfigs/s/SuiteSparse/SuiteSparse-4.5.5-foss-2017a-METIS-5.1.0.eb @@ -17,4 +17,3 @@ dependencies = [('METIS', metis_ver)] maxparallel = 1 moduleclass = 'numlib' - diff --git a/easybuild/easyconfigs/s/Szip/Szip-2.1-foss-2017a.eb b/easybuild/easyconfigs/s/Szip/Szip-2.1-foss-2017a.eb index 9365662b36..7be82daa90 100644 --- a/easybuild/easyconfigs/s/Szip/Szip-2.1-foss-2017a.eb +++ b/easybuild/easyconfigs/s/Szip/Szip-2.1-foss-2017a.eb @@ -21,4 +21,3 @@ sanity_check_paths = { } moduleclass = 'tools' - diff --git a/easybuild/easyconfigs/s/samblaster/samblaster-0.1.24-goolf-1.7.20.eb b/easybuild/easyconfigs/s/samblaster/samblaster-0.1.24-goolf-1.7.20.eb index a99c1c0912..5c35b43fcc 100644 --- a/easybuild/easyconfigs/s/samblaster/samblaster-0.1.24-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/s/samblaster/samblaster-0.1.24-goolf-1.7.20.eb @@ -17,10 +17,10 @@ source_urls = ['https://github.com/GregoryFaust/samblaster/archive/'] sources = ['v.%(version)s.tar.gz'] files_to_copy = [ - (['samblaster'], 'bin/'), - 'README.md', - 'SAMBLASTER_Supplemental.pdf', - 'LICENSE.txt', + (['samblaster'], 'bin/'), + 'README.md', + 'SAMBLASTER_Supplemental.pdf', + 'LICENSE.txt', ] sanity_check_paths = { diff --git a/easybuild/easyconfigs/s/segemehl/segemehl-0.2.0-foss-2016b.eb b/easybuild/easyconfigs/s/segemehl/segemehl-0.2.0-foss-2016b.eb index c7d6d5fcae..3f36bab3c9 100644 --- a/easybuild/easyconfigs/s/segemehl/segemehl-0.2.0-foss-2016b.eb +++ b/easybuild/easyconfigs/s/segemehl/segemehl-0.2.0-foss-2016b.eb @@ -17,7 +17,7 @@ description = """ segemehl is a software to map short sequencer reads to referen toolchain = {'name': 'foss', 'version': '2016b'} source_urls = ['http://www.bioinf.uni-leipzig.de/Software/segemehl/'] -sources = ['%s_%s.tar.gz' % (name, version.replace('.','_'))] +sources = ['%s_%s.tar.gz' % (name, version.replace('.', '_'))] checksums = ['fef4db00ed2742a2bf4131eed674bb08'] @@ -31,7 +31,7 @@ dependencies = [ files_to_copy = [(["lack.x", "segemehl.x", "testrealign.x"], "bin")] sanity_check_paths = { - 'files': ["bin/%s" % x for x in ["lack.x" , "segemehl.x", "testrealign.x"]], + 'files': ["bin/%s" % x for x in ["lack.x", "segemehl.x", "testrealign.x"]], 'dirs': [] } diff --git a/easybuild/easyconfigs/s/splitRef/splitRef-0.0.2.eb b/easybuild/easyconfigs/s/splitRef/splitRef-0.0.2.eb index 585ebb9932..88fc3d4707 100644 --- a/easybuild/easyconfigs/s/splitRef/splitRef-0.0.2.eb +++ b/easybuild/easyconfigs/s/splitRef/splitRef-0.0.2.eb @@ -25,7 +25,7 @@ sanity_check_paths = { } # add folder splitRef_V002 to PATH -modextrapaths = { +modextrapaths = { 'PATH': '%s_V%s' % (name, altver) } diff --git a/easybuild/easyconfigs/t/Tcl/Tcl-8.5.19-foss-2017a.eb b/easybuild/easyconfigs/t/Tcl/Tcl-8.5.19-foss-2017a.eb index 0514b4e682..91e78ce928 100644 --- a/easybuild/easyconfigs/t/Tcl/Tcl-8.5.19-foss-2017a.eb +++ b/easybuild/easyconfigs/t/Tcl/Tcl-8.5.19-foss-2017a.eb @@ -24,4 +24,3 @@ runtest = 'test' start_dir = 'unix' moduleclass = 'lang' - diff --git a/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.14-goolf-1.4.10-Perl-5.16.3.eb b/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.14-goolf-1.4.10-Perl-5.16.3.eb index c4c82d2f79..1213968867 100644 --- a/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.14-goolf-1.4.10-Perl-5.16.3.eb +++ b/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.14-goolf-1.4.10-Perl-5.16.3.eb @@ -19,15 +19,15 @@ sources = [SOURCELOWER_TAR_GZ] dependencies = [ ('Perl', '5.16.3'), -] +] sanity_check_paths = { - 'files': ["bin/%s" % x for x in ["vcftools", "fill-fs", "vcf-compare", "vcf-contrast", + 'files': ["bin/%s" % x for x in ["vcftools", "fill-fs", "vcf-compare", "vcf-contrast", "vcf-fix-ploidy", "vcf-merge"]], 'dirs': [], } -modextrapaths = { +modextrapaths = { 'PERL5LIB': 'lib/perl5/site_perl/', } diff --git a/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.14-goolf-1.7.20-Perl-5.22.2.eb b/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.14-goolf-1.7.20-Perl-5.22.2.eb index 6a770e5ef1..0a12c2e817 100644 --- a/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.14-goolf-1.7.20-Perl-5.22.2.eb +++ b/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.14-goolf-1.7.20-Perl-5.22.2.eb @@ -19,15 +19,15 @@ sources = [SOURCELOWER_TAR_GZ] dependencies = [ ('Perl', '5.22.2'), -] +] sanity_check_paths = { - 'files': ["bin/%s" % x for x in ["vcftools", "fill-fs", "vcf-compare", "vcf-contrast", + 'files': ["bin/%s" % x for x in ["vcftools", "fill-fs", "vcf-compare", "vcf-contrast", "vcf-fix-ploidy", "vcf-merge"]], 'dirs': [], } -modextrapaths = { +modextrapaths = { 'PERL5LIB': 'lib/perl5/site_perl/', } diff --git a/easybuild/easyconfigs/v/VMD/VMD-1.9.3-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/v/VMD/VMD-1.9.3-intel-2016b-Python-2.7.12.eb index 3e3df4bec4..54be12bcef 100644 --- a/easybuild/easyconfigs/v/VMD/VMD-1.9.3-intel-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/v/VMD/VMD-1.9.3-intel-2016b-Python-2.7.12.eb @@ -10,7 +10,7 @@ homepage = 'http://www.ks.uiuc.edu/Research/vmd' description = """VMD is a molecular visualization program for displaying, animating, and analyzing large biomolecular systems using 3-D graphics and built-in scripting.""" -toolchain= {'name': 'intel' , 'version': '2016b'} +toolchain = {'name': 'intel', 'version': '2016b'} # downloading requires registration sources = ['vmd-%(version)s.src.tar.gz'] diff --git a/easybuild/easyconfigs/v/Valgrind/Valgrind-3.11.0-foss-2016a.eb b/easybuild/easyconfigs/v/Valgrind/Valgrind-3.11.0-foss-2016a.eb index 1582b5a179..63ac2b03b0 100644 --- a/easybuild/easyconfigs/v/Valgrind/Valgrind-3.11.0-foss-2016a.eb +++ b/easybuild/easyconfigs/v/Valgrind/Valgrind-3.11.0-foss-2016a.eb @@ -22,6 +22,6 @@ sanity_check_paths = { 'files': ['bin/%s' % x for x in binaries] + ['lib/valgrind/libmpiwrap-amd64-linux.%s' % SHLIB_EXT], 'dirs': [] -} +} moduleclass = 'debugger' diff --git a/easybuild/easyconfigs/w/wkhtmltopdf/wkhtmltopdf-0.12.3-Linux-x86_64.eb b/easybuild/easyconfigs/w/wkhtmltopdf/wkhtmltopdf-0.12.3-Linux-x86_64.eb index daaefceb38..b0bb280f07 100644 --- a/easybuild/easyconfigs/w/wkhtmltopdf/wkhtmltopdf-0.12.3-Linux-x86_64.eb +++ b/easybuild/easyconfigs/w/wkhtmltopdf/wkhtmltopdf-0.12.3-Linux-x86_64.eb @@ -20,11 +20,11 @@ source_urls = ['http://download.gna.org/wkhtmltopdf/%(version_major_minor)s/%(ve sources = ['wkhtmltox-%(version)s_linux-generic-amd64.tar.xz'] osdependencies = [ - ('zlib', 'zlib1g'), - 'fontconfig', - ('freetype', 'libfreetype6'), - ('libX11', 'libx11-6'), - ('libXext', 'libxext6'), + ('zlib', 'zlib1g'), + 'fontconfig', + ('freetype', 'libfreetype6'), + ('libX11', 'libx11-6'), + ('libXext', 'libxext6'), ('libXrender', 'libxrender1') ] diff --git a/easybuild/easyconfigs/x/XZ/XZ-5.2.3-gimkl-2017a.eb b/easybuild/easyconfigs/x/XZ/XZ-5.2.3-gimkl-2017a.eb index 8d7242f13f..cc9e04a571 100644 --- a/easybuild/easyconfigs/x/XZ/XZ-5.2.3-gimkl-2017a.eb +++ b/easybuild/easyconfigs/x/XZ/XZ-5.2.3-gimkl-2017a.eb @@ -22,7 +22,7 @@ builddependencies = [ ] # may become useful in non-x86 archs -#configopts = ' --disable-assembler ' +# configopts = ' --disable-assembler ' sanity_check_paths = { 'files': ["bin/xz", "bin/lzmainfo"], diff --git a/easybuild/easyconfigs/x/xtrans/xtrans-1.3.5-gimkl-2.11.5.eb b/easybuild/easyconfigs/x/xtrans/xtrans-1.3.5-gimkl-2.11.5.eb index 4bfb1d13fb..099fcba246 100644 --- a/easybuild/easyconfigs/x/xtrans/xtrans-1.3.5-gimkl-2.11.5.eb +++ b/easybuild/easyconfigs/x/xtrans/xtrans-1.3.5-gimkl-2.11.5.eb @@ -14,7 +14,7 @@ sources = [SOURCE_TAR_GZ] source_urls = [XORG_LIB_SOURCE] sanity_check_paths = { - 'files': ['include/X11/Xtrans/%s' % x for x in ['transport.c', 'Xtrans.c', 'Xtrans.h', 'Xtransint.h', + 'files': ['include/X11/Xtrans/%s' % x for x in ['transport.c', 'Xtrans.c', 'Xtrans.h', 'Xtransint.h', 'Xtranslcl.c', 'Xtranssock.c', 'Xtransutil.c']], 'dirs': [], } diff --git a/easybuild/easyconfigs/y/Yade/Yade-1.20.0-foss-2016a-Python-2.7.11.eb b/easybuild/easyconfigs/y/Yade/Yade-1.20.0-foss-2016a-Python-2.7.11.eb index eeebc684bc..3fd2d83e18 100644 --- a/easybuild/easyconfigs/y/Yade/Yade-1.20.0-foss-2016a-Python-2.7.11.eb +++ b/easybuild/easyconfigs/y/Yade/Yade-1.20.0-foss-2016a-Python-2.7.11.eb @@ -31,7 +31,7 @@ dependencies = [ ('PyGTS', '0.3.1', versionsuffix), ('Python', '2.7.11'), ('Qt', '4.8.7', '-GLib-2.48.0'), - ('SQLite', '3.9.2'), + ('SQLite', '3.9.2'), ('VTK', '6.3.0', versionsuffix), ('zlib', '1.2.8'), ('bzip2', '1.0.6'), diff --git a/easybuild/easyconfigs/y/Yade/Yade-1.20.0-intel-2016a-Python-2.7.11.eb b/easybuild/easyconfigs/y/Yade/Yade-1.20.0-intel-2016a-Python-2.7.11.eb index 4610fe64fd..91273df8f9 100644 --- a/easybuild/easyconfigs/y/Yade/Yade-1.20.0-intel-2016a-Python-2.7.11.eb +++ b/easybuild/easyconfigs/y/Yade/Yade-1.20.0-intel-2016a-Python-2.7.11.eb @@ -31,7 +31,7 @@ dependencies = [ ('PyGTS', '0.3.1', versionsuffix), ('Python', '2.7.11'), ('Qt', '4.8.7', '-GLib-2.48.0'), - ('SQLite', '3.9.2'), + ('SQLite', '3.9.2'), ('VTK', '6.3.0', versionsuffix), ('zlib', '1.2.8'), ('bzip2', '1.0.6'), diff --git a/easybuild/easyconfigs/y/Yambo/Yambo-4.0.2-rev.90-intel-2015b-QuantumESPRESSO-5.2.1.eb b/easybuild/easyconfigs/y/Yambo/Yambo-4.0.2-rev.90-intel-2015b-QuantumESPRESSO-5.2.1.eb index 0c99f457cb..8696368a68 100644 --- a/easybuild/easyconfigs/y/Yambo/Yambo-4.0.2-rev.90-intel-2015b-QuantumESPRESSO-5.2.1.eb +++ b/easybuild/easyconfigs/y/Yambo/Yambo-4.0.2-rev.90-intel-2015b-QuantumESPRESSO-5.2.1.eb @@ -48,6 +48,6 @@ sanity_check_paths = { # is twice in the PATH. Withouth removing the QuantumESPRESSO one, this version of Yambo would be used, # because it is earlier in the PATH modtclfooter = "remove-path PATH $::env(EBROOTQUANTUMESPRESSO)/espresso-%s/YAMBO/bin" % qever -modluafooter = 'remove_path("PATH", os.getenv("EBROOTQUANTUMESPRESSO") .. "/espresso-%s/YAMBO/bin")' % qever +modluafooter = 'remove_path("PATH", os.getenv("EBROOTQUANTUMESPRESSO") .. "/espresso-%s/YAMBO/bin")' % qever moduleclass = 'phys' diff --git a/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-goolf-1.7.20.eb b/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-goolf-1.7.20.eb index 09279b532a..f3f0a1a915 100644 --- a/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-goolf-1.7.20.eb @@ -16,4 +16,4 @@ sanity_check_paths = { 'dirs': [], } -moduleclass = 'lang' +moduleclass = 'lang' -- GitLab From 9bd59ff89be6be1afc70ecb2dedab11c139fd7e0 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 21 Jun 2017 21:08:06 +0200 Subject: [PATCH 260/608] avoid use of import in ANSYS & MATLAB easyconfigs --- easybuild/easyconfigs/a/ANSYS/ANSYS-15.0.eb | 6 +----- easybuild/easyconfigs/m/MATLAB/MATLAB-2012b.eb | 5 ----- easybuild/easyconfigs/m/MATLAB/MATLAB-2015a.eb | 5 ----- easybuild/easyconfigs/m/MATLAB/MATLAB-2016a.eb | 5 ----- easybuild/easyconfigs/m/MATLAB/MATLAB-2017a.eb | 5 ----- 5 files changed, 1 insertion(+), 25 deletions(-) diff --git a/easybuild/easyconfigs/a/ANSYS/ANSYS-15.0.eb b/easybuild/easyconfigs/a/ANSYS/ANSYS-15.0.eb index 673a19b69d..944ad05e35 100644 --- a/easybuild/easyconfigs/a/ANSYS/ANSYS-15.0.eb +++ b/easybuild/easyconfigs/a/ANSYS/ANSYS-15.0.eb @@ -10,10 +10,6 @@ toolchain = {'name': 'dummy', 'version': 'dummy'} # create a zip file from the 3 install iso files. # make sure all files of the iso's are in the same directory. -sources = ['ANSYS-15.0.zip'] - -import os -license_server = os.getenv('EB_ANSYS_LICENSE_SERVER', 'license.example.com') -license_server_port = os.getenv('EB_ANSYS_LICENSE_SERVER_PORT', '2325:1055') +sources = ['ANSYS-%(version)s.zip'] moduleclass = 'tools' diff --git a/easybuild/easyconfigs/m/MATLAB/MATLAB-2012b.eb b/easybuild/easyconfigs/m/MATLAB/MATLAB-2012b.eb index b0b8036c47..2d79a877de 100644 --- a/easybuild/easyconfigs/m/MATLAB/MATLAB-2012b.eb +++ b/easybuild/easyconfigs/m/MATLAB/MATLAB-2012b.eb @@ -12,9 +12,4 @@ sources = [SOURCELOWER_TAR_GZ] dependencies = [('Java', '1.7.0_10')] -import os -license_server = os.getenv('EB_MATLAB_LICENSE_SERVER', 'license.example.com') -license_server_port = os.getenv('EB_MATLAB_LICENSE_SERVER_PORT', '00000') -key = os.getenv('EB_MATLAB_KEY', '00000-00000-00000-00000-00000-00000-00000-00000-00000-00000') - moduleclass = 'math' diff --git a/easybuild/easyconfigs/m/MATLAB/MATLAB-2015a.eb b/easybuild/easyconfigs/m/MATLAB/MATLAB-2015a.eb index 65e39e1872..068032d310 100644 --- a/easybuild/easyconfigs/m/MATLAB/MATLAB-2015a.eb +++ b/easybuild/easyconfigs/m/MATLAB/MATLAB-2015a.eb @@ -12,9 +12,4 @@ sources = [SOURCELOWER_TAR_GZ] dependencies = [('Java', '1.8.0_45')] -import os -license_server = os.getenv('EB_MATLAB_LICENSE_SERVER', 'license.example.com') -license_server_port = os.getenv('EB_MATLAB_LICENSE_SERVER_PORT', '00000') -key = os.getenv('EB_MATLAB_KEY', '00000-00000-00000-00000-00000-00000-00000-00000-00000-00000') - moduleclass = 'math' diff --git a/easybuild/easyconfigs/m/MATLAB/MATLAB-2016a.eb b/easybuild/easyconfigs/m/MATLAB/MATLAB-2016a.eb index e0113113d0..02024eedff 100644 --- a/easybuild/easyconfigs/m/MATLAB/MATLAB-2016a.eb +++ b/easybuild/easyconfigs/m/MATLAB/MATLAB-2016a.eb @@ -12,9 +12,4 @@ sources = [SOURCELOWER_TAR_GZ] dependencies = [('Java', '1.8.0_92')] -import os -license_server = os.getenv('EB_MATLAB_LICENSE_SERVER', 'license.example.com') -license_server_port = os.getenv('EB_MATLAB_LICENSE_SERVER_PORT', '00000') -key = os.getenv('EB_MATLAB_KEY', '00000-00000-00000-00000-00000-00000-00000-00000-00000-00000') - moduleclass = 'math' diff --git a/easybuild/easyconfigs/m/MATLAB/MATLAB-2017a.eb b/easybuild/easyconfigs/m/MATLAB/MATLAB-2017a.eb index 04d37d4f1e..5aa71b404f 100644 --- a/easybuild/easyconfigs/m/MATLAB/MATLAB-2017a.eb +++ b/easybuild/easyconfigs/m/MATLAB/MATLAB-2017a.eb @@ -14,9 +14,4 @@ sources = [SOURCELOWER_TAR_GZ] dependencies = [('Java', '1.8.0_121')] -import os -license_server = os.getenv('EB_MATLAB_LICENSE_SERVER', 'license.example.com') -license_server_port = os.getenv('EB_MATLAB_LICENSE_SERVER_PORT', '00000') -key = os.getenv('EB_MATLAB_KEY', '00000-00000-00000-00000-00000-00000-00000-00000-00000-00000') - moduleclass = 'math' -- GitLab From 941823b7588db56f33fa954e623f0171cbb863d0 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 21 Jun 2017 21:27:48 +0200 Subject: [PATCH 261/608] set $OMP_NUM_THREADS during CP2K test step via dedicated easyconfig parameter --- .../easyconfigs/c/CP2K/CP2K-20111205-goolf-1.4.10-psmp.eb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/c/CP2K/CP2K-20111205-goolf-1.4.10-psmp.eb b/easybuild/easyconfigs/c/CP2K/CP2K-20111205-goolf-1.4.10-psmp.eb index df760b1c15..a4e80549b5 100644 --- a/easybuild/easyconfigs/c/CP2K/CP2K-20111205-goolf-1.4.10-psmp.eb +++ b/easybuild/easyconfigs/c/CP2K/CP2K-20111205-goolf-1.4.10-psmp.eb @@ -37,7 +37,6 @@ maxtasks = 1 # need to set OMP_NUM_THREADS to 1, to avoid failed tests during regression test # without this, 32 tests (out of 2196) fail -import os -os.environ['OMP_NUM_THREADS'] = '1' +omp_num_threads = '1' moduleclass = 'chem' -- GitLab From afe72ba5206fdc3b6d16f8a926c039a11c0222ee Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 21 Jun 2017 21:36:55 +0200 Subject: [PATCH 262/608] avoid use of 'import' in BFAST easyconfigs, just strip of 'a' from version --- easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-goolf-1.4.10.eb | 5 +---- easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-goolf-1.7.20.eb | 5 +---- easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-ictce-5.3.0.eb | 5 +---- 3 files changed, 3 insertions(+), 12 deletions(-) diff --git a/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-goolf-1.4.10.eb b/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-goolf-1.4.10.eb index 372422bd73..048346809a 100644 --- a/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-goolf-1.4.10.eb @@ -24,11 +24,8 @@ description = """BFAST facilitates the fast and accurate mapping of short reads toolchain = {'name': 'goolf', 'version': '1.4.10'} -import string -swdir = version.rstrip(string.lowercase + string.uppercase) -# eg. http://sourceforge.net/projects/bfast/files/bfast/0.7.0/bfast-0.7.0a.tar.gz/download +source_urls = ['http://sourceforge.net/projects/bfast/files/bfast/%s/' % version.rstrip('a'), 'download'] sources = [SOURCELOWER_TAR_GZ] -source_urls = ['http://sourceforge.net/projects/bfast/files/bfast/%s/' % swdir, 'download'] dependencies = [('bzip2', '1.0.6')] diff --git a/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-goolf-1.7.20.eb b/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-goolf-1.7.20.eb index a5c3af2f9a..aec46bb1ff 100644 --- a/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-goolf-1.7.20.eb @@ -24,11 +24,8 @@ description = """BFAST facilitates the fast and accurate mapping of short reads toolchain = {'name': 'goolf', 'version': '1.7.20'} -import string -swdir = version.rstrip(string.lowercase + string.uppercase) -# eg. http://sourceforge.net/projects/bfast/files/bfast/0.7.0/bfast-0.7.0a.tar.gz/download +source_urls = ['http://sourceforge.net/projects/bfast/files/bfast/%s/' % version.rstrip('a'), 'download'] sources = [SOURCELOWER_TAR_GZ] -source_urls = ['http://sourceforge.net/projects/bfast/files/bfast/%s/' % swdir, 'download'] dependencies = [('bzip2', '1.0.6')] diff --git a/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-ictce-5.3.0.eb b/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-ictce-5.3.0.eb index b792e697b2..46b0a5ba2d 100644 --- a/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-ictce-5.3.0.eb @@ -24,11 +24,8 @@ description = """BFAST facilitates the fast and accurate mapping of short reads toolchain = {'name': 'ictce', 'version': '5.3.0'} -import string -swdir = version.rstrip(string.lowercase + string.uppercase) -# eg. http://sourceforge.net/projects/bfast/files/bfast/0.7.0/bfast-0.7.0a.tar.gz/download +source_urls = ['http://sourceforge.net/projects/bfast/files/bfast/%s/' % version.rstrip('a'), 'download'] sources = [SOURCELOWER_TAR_GZ] -source_urls = ['http://sourceforge.net/projects/bfast/files/bfast/%s/' % swdir, 'download'] dependencies = [('bzip2', '1.0.6')] -- GitLab From d98e34825319602ec797e791c905ad7f2de73d9a Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 21 Jun 2017 22:19:48 +0200 Subject: [PATCH 263/608] avoid hardcoding stripping of 'a' (hat tip @vanzod) --- easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-goolf-1.4.10.eb | 3 ++- easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-goolf-1.7.20.eb | 3 ++- easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-ictce-5.3.0.eb | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-goolf-1.4.10.eb b/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-goolf-1.4.10.eb index 048346809a..a4739e8c8e 100644 --- a/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-goolf-1.4.10.eb @@ -24,7 +24,8 @@ description = """BFAST facilitates the fast and accurate mapping of short reads toolchain = {'name': 'goolf', 'version': '1.4.10'} -source_urls = ['http://sourceforge.net/projects/bfast/files/bfast/%s/' % version.rstrip('a'), 'download'] +verdir = ''.join(char for char in version if not char.isalpha()) +source_urls = ['http://sourceforge.net/projects/bfast/files/bfast/%s/' % verdir, 'download'] sources = [SOURCELOWER_TAR_GZ] dependencies = [('bzip2', '1.0.6')] diff --git a/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-goolf-1.7.20.eb b/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-goolf-1.7.20.eb index aec46bb1ff..76e9215e88 100644 --- a/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-goolf-1.7.20.eb @@ -24,7 +24,8 @@ description = """BFAST facilitates the fast and accurate mapping of short reads toolchain = {'name': 'goolf', 'version': '1.7.20'} -source_urls = ['http://sourceforge.net/projects/bfast/files/bfast/%s/' % version.rstrip('a'), 'download'] +verdir = ''.join(char for char in version if not char.isalpha()) +source_urls = ['http://sourceforge.net/projects/bfast/files/bfast/%s/' % verdir, 'download'] sources = [SOURCELOWER_TAR_GZ] dependencies = [('bzip2', '1.0.6')] diff --git a/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-ictce-5.3.0.eb b/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-ictce-5.3.0.eb index 46b0a5ba2d..5bbf580366 100644 --- a/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-ictce-5.3.0.eb @@ -24,7 +24,8 @@ description = """BFAST facilitates the fast and accurate mapping of short reads toolchain = {'name': 'ictce', 'version': '5.3.0'} -source_urls = ['http://sourceforge.net/projects/bfast/files/bfast/%s/' % version.rstrip('a'), 'download'] +verdir = ''.join(char for char in version if not char.isalpha()) +source_urls = ['http://sourceforge.net/projects/bfast/files/bfast/%s/' % verdir, 'download'] sources = [SOURCELOWER_TAR_GZ] dependencies = [('bzip2', '1.0.6')] -- GitLab From ba0c1a45283e1c354182ba8ae94273ccf93b812f Mon Sep 17 00:00:00 2001 From: Ward Poelmans Date: Thu, 22 Jun 2017 11:55:15 +0200 Subject: [PATCH 264/608] Split of MXNet/0.9.3 with foss/2016b from #4346 The foss one works, the intel one currently doesn't. --- .../MXNet-0.9.3-foss-2016b-Python-2.7.12.eb | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 easybuild/easyconfigs/m/MXNet/MXNet-0.9.3-foss-2016b-Python-2.7.12.eb diff --git a/easybuild/easyconfigs/m/MXNet/MXNet-0.9.3-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/m/MXNet/MXNet-0.9.3-foss-2016b-Python-2.7.12.eb new file mode 100644 index 0000000000..64f4e6cfd3 --- /dev/null +++ b/easybuild/easyconfigs/m/MXNet/MXNet-0.9.3-foss-2016b-Python-2.7.12.eb @@ -0,0 +1,38 @@ +name = 'MXNet' +version = '0.9.3' +versionsuffix = '-Python-%(pyver)s-R-%(rver)s' + +homepage = 'http://mxnet.io/' +description = """Flexible and Efficient Library for Deep Learning""" + +toolchain = {'name': 'foss', 'version': '2016b'} +toolchainopts = {'cstd': 'c++11', 'opt': True, 'pic': True, 'openmp': True} + +source_urls = ['https://github.com/dmlc/mxnet/archive'] + +# MXNet pulls in a bunch of submodules which don't have releases. +# We download the current HEAD of the repos at the current time (13/03/17) +sources = [ + 'v%(version)s.tar.gz', # MXNet + 'https://github.com/dmlc/ps-lite/archive/6856021ca925c7.tar.gz', # ps-lite + 'https://github.com/dmlc/mshadow/archive/c29ac58320d7b0.tar.gz', # mshadow + 'https://github.com/dmlc/nnvm/archive/0d64855f741e04.tar.gz', # nnvm + 'https://github.com/dmlc/dmlc-core/archive/b32ec4aee65a66.tar.gz', # dmlc-core +] + +checksums = [ + "84971e4a0e2e9db3757623657aa5b9ec", # v0.9.3.tar.gz + "12c96664978c545a7269b93635719b18", # 6856021ca925c7.tar.gz + "3dc48183e123c650707bcf26a9254941", # c29ac58320d7b0.tar.gz + "fb04cb1694f1e66591a31a18bc92b451", # 0d64855f741e04.tar.gz + "da873c881758c0e10ac0928f86568456", # b32ec4aee65a66.tar.gz +] + +dependencies = [ + ('Python', '2.7.12'), + ('graphviz', '0.5.1', '-Python-%(pyver)s'), + ('OpenCV', '3.1.0'), + ('R', '3.3.3', '-X11-20160819'), +] + +moduleclass = 'math' -- GitLab From 353396ee951b088e4b96a313d5dd24078a6adb87 Mon Sep 17 00:00:00 2001 From: Ward Poelmans Date: Thu, 22 Jun 2017 12:41:22 +0200 Subject: [PATCH 265/608] Fix for style checks --- .../m/MXNet/MXNet-0.9.3-foss-2016b-Python-2.7.12.eb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/easybuild/easyconfigs/m/MXNet/MXNet-0.9.3-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/m/MXNet/MXNet-0.9.3-foss-2016b-Python-2.7.12.eb index 64f4e6cfd3..ba00fd6f18 100644 --- a/easybuild/easyconfigs/m/MXNet/MXNet-0.9.3-foss-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/m/MXNet/MXNet-0.9.3-foss-2016b-Python-2.7.12.eb @@ -13,11 +13,11 @@ source_urls = ['https://github.com/dmlc/mxnet/archive'] # MXNet pulls in a bunch of submodules which don't have releases. # We download the current HEAD of the repos at the current time (13/03/17) sources = [ - 'v%(version)s.tar.gz', # MXNet - 'https://github.com/dmlc/ps-lite/archive/6856021ca925c7.tar.gz', # ps-lite - 'https://github.com/dmlc/mshadow/archive/c29ac58320d7b0.tar.gz', # mshadow - 'https://github.com/dmlc/nnvm/archive/0d64855f741e04.tar.gz', # nnvm - 'https://github.com/dmlc/dmlc-core/archive/b32ec4aee65a66.tar.gz', # dmlc-core + 'v%(version)s.tar.gz', # MXNet + 'https://github.com/dmlc/ps-lite/archive/6856021ca925c7.tar.gz', # ps-lite + 'https://github.com/dmlc/mshadow/archive/c29ac58320d7b0.tar.gz', # mshadow + 'https://github.com/dmlc/nnvm/archive/0d64855f741e04.tar.gz', # nnvm + 'https://github.com/dmlc/dmlc-core/archive/b32ec4aee65a66.tar.gz', # dmlc-core ] checksums = [ -- GitLab From 8d5e97809793e4aa05bf72c31522b4f039f83341 Mon Sep 17 00:00:00 2001 From: Ward Poelmans Date: Thu, 22 Jun 2017 13:35:51 +0200 Subject: [PATCH 266/608] rename to make tests happy --- ...-2.7.12.eb => MXNet-0.9.3-foss-2016b-Python-2.7.12-R-3.3.3.eb} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename easybuild/easyconfigs/m/MXNet/{MXNet-0.9.3-foss-2016b-Python-2.7.12.eb => MXNet-0.9.3-foss-2016b-Python-2.7.12-R-3.3.3.eb} (100%) diff --git a/easybuild/easyconfigs/m/MXNet/MXNet-0.9.3-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/m/MXNet/MXNet-0.9.3-foss-2016b-Python-2.7.12-R-3.3.3.eb similarity index 100% rename from easybuild/easyconfigs/m/MXNet/MXNet-0.9.3-foss-2016b-Python-2.7.12.eb rename to easybuild/easyconfigs/m/MXNet/MXNet-0.9.3-foss-2016b-Python-2.7.12-R-3.3.3.eb -- GitLab From 961ef5eff1792e725724043d11a14f57ca75c56b Mon Sep 17 00:00:00 2001 From: Sebastien Varrette Date: Thu, 22 Jun 2017 15:58:13 +0200 Subject: [PATCH 267/608] {foss,intel}-2017a versions for LikWid 4.2.0 Signed-off-by: Sebastien Varrette --- .../l/likwid/likwid-4.2.0-foss-2017a.eb | 50 +++++++++++++++++++ .../likwid/likwid-4.2.0-foss-config-mk.patch | 40 +++++++++++++++ .../l/likwid/likwid-4.2.0-intel-2017a.eb | 49 ++++++++++++++++++ .../likwid/likwid-4.2.0-intel-config-mk.patch | 49 ++++++++++++++++++ 4 files changed, 188 insertions(+) create mode 100644 easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-2017a.eb create mode 100644 easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-config-mk.patch create mode 100644 easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-2017a.eb create mode 100644 easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-config-mk.patch diff --git a/easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-2017a.eb b/easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-2017a.eb new file mode 100644 index 0000000000..71712d86cc --- /dev/null +++ b/easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-2017a.eb @@ -0,0 +1,50 @@ +## +# -*- mode: python; -*- +# EasyBuild reciPY for LikWid -- see https://github.com/RRZE-HPC/likwid +# as per https://github.com/hpcugent/easybuild +# +# Copyright:: Copyright 2017 UL HPC -- hpc.uni.lu +# Authors:: UL HPC Team +# License:: MIT/GPL +# +# +easyblock = 'ConfigureMake' + +name = 'likwid' +version = '4.2.0' + +homepage = 'https://github.com/RRZE-HPC/likwid' +description = """Likwid stands for 'Like I knew what I am doing'. Likwid is a +simple to install and use toolsuite of command line applications for performance +oriented programmers. It works for Intel and AMD processors on the Linux +operating system. +""" + +toolchain = {'name': 'foss', 'version': '2017a'} +toolchainopts = {'pic': True} + +source_urls = ['https://github.com/RRZE-HPC/likwid/archive/'] +sources = ['%(version)s.tar.gz'] + +patches = ['likwid-%(version)s-foss-config-mk.patch'] + +builddependencies = [('binutils', '2.27')] + +skipsteps = ['configure'] +buildopts = 'CC="$CC" CFLAGS="$CFLAGS -std=c99" PREFIX=%(installdir)s' +installopts = 'PREFIX=%(installdir)s' + +sanity_check_paths = { + 'files': ["bin/likwid-memsweeper", "bin/likwid-mpirun", "bin/likwid-perfctr", + "bin/likwid-perfscope", "bin/likwid-pin", "bin/likwid-powermeter", "bin/likwid-topology", + "lib/liblikwidpin.%s" % SHLIB_EXT, "lib/liblikwid.%s" % SHLIB_EXT], + 'dirs': ["man/man1"] +} + +postinstallcmds = [ + 'echo "================================================================================\nIMPORTANT: you will have to manually apply the following changes **as root**:\n sudo chown root:root \$EBROOTLIKWID/sbin/likwid-accessD\n sudo chmod u+s \$EBROOTLIKWID/sbin/likwid-accessD\n ================================================================================"' +] + +maxparallel = 1 + +moduleclass = 'devel' diff --git a/easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-config-mk.patch b/easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-config-mk.patch new file mode 100644 index 0000000000..c1de1bdb80 --- /dev/null +++ b/easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-config-mk.patch @@ -0,0 +1,40 @@ +--- likwid-likwid-4.2.orig/config.mk 2016-12-22 13:22:23.000000000 +0100 ++++ likwid-likwid-4.2/config.mk 2017-06-19 14:36:15.521398000 +0200 +@@ -9,7 +9,7 @@ + COLOR = BLUE#NO SPACE + + # Path were to install likwid +-PREFIX = /usr/local#NO SPACE ++# PREFIX = /usr/local#NO SPACE + + # uncomment to optionally set external lua@5.3: + # default is use internally provide lua +@@ -40,7 +40,7 @@ + # chown installed tools to this user/group + # if you change anything here, make sure that the user/group can access + # the MSR devices and (on Intel) the PCI devices. +-INSTALL_CHOWN = -g root -o root ++INSTALL_CHOWN = + + # For the daemon based secure msr/pci access configure + # the absolute path to the msr daemon executable. +@@ -51,7 +51,7 @@ + # Build the accessDaemon. Have a look in the WIKI for details. + BUILDDAEMON = true#NO SPACE + #Build the setFrequencies tool +-BUILDFREQ = true#NO SPACE ++BUILDFREQ = false#NO SPACE + + # Set the default mode for MSR access. + # This can usually be overriden on the commandline. +@@ -82,8 +82,8 @@ + # a proper config file at CFG_FILE_PATH) + MAX_NUM_THREADS = 263 + MAX_NUM_NODES = 64 +-CFG_FILE_PATH = /etc/likwid.cfg +-TOPO_FILE_PATH = /etc/likwid_topo.cfg ++CFG_FILE_PATH = $(PREFIX)/etc/likwid.cfg ++TOPO_FILE_PATH = $(PREFIX)/etc/likwid_topo.cfg + + # Versioning Information + VERSION = 4 diff --git a/easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-2017a.eb b/easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-2017a.eb new file mode 100644 index 0000000000..10441103ad --- /dev/null +++ b/easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-2017a.eb @@ -0,0 +1,49 @@ +## +# -*- mode: python; -*- +# EasyBuild reciPY for LikWid -- see https://github.com/RRZE-HPC/likwid +# as per https://github.com/hpcugent/easybuild +# +# Copyright:: Copyright 2017 UL HPC -- hpc.uni.lu +# Authors:: UL HPC Team +# License:: MIT/GPL +# +# +easyblock = 'ConfigureMake' + +name = 'likwid' +version = '4.2.0' + +homepage = 'https://github.com/RRZE-HPC/likwid' +description = """Likwid stands for 'Like I knew what I am doing'. Likwid is a +simple to install and use toolsuite of command line applications for performance +oriented programmers. It works for Intel and AMD processors on the Linux +operating system.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'pic': True} + +source_urls = ['https://github.com/RRZE-HPC/likwid/archive/'] +sources = ['%(version)s.tar.gz'] + +patches = ['likwid-%(version)s-intel-config-mk.patch'] + +builddependencies = [('binutils', '2.27')] + +skipsteps = ['configure'] +buildopts = 'CC="$CC" CFLAGS="$CFLAGS -std=c99" PREFIX=%(installdir)s' +installopts = 'PREFIX=%(installdir)s' + +sanity_check_paths = { + 'files': ["bin/likwid-memsweeper", "bin/likwid-mpirun", "bin/likwid-perfctr", + "bin/likwid-perfscope", "bin/likwid-pin", "bin/likwid-powermeter", "bin/likwid-topology", + "lib/liblikwidpin.%s" % SHLIB_EXT, "lib/liblikwid.%s" % SHLIB_EXT], + 'dirs': ["man/man1"] +} + +postinstallcmds = [ + 'echo "================================================================================\nIMPORTANT: you will have to manually apply the following changes **as root**:\n sudo chown root:root \$EBROOTLIKWID/sbin/likwid-accessD\n sudo chmod u+s \$EBROOTLIKWID/sbin/likwid-accessD\n ================================================================================"' +] + +maxparallel = 1 + +moduleclass = 'devel' diff --git a/easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-config-mk.patch b/easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-config-mk.patch new file mode 100644 index 0000000000..a7d8fccb54 --- /dev/null +++ b/easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-config-mk.patch @@ -0,0 +1,49 @@ +--- likwid-likwid-4.2.orig/config.mk 2016-12-22 13:22:23.000000000 +0100 ++++ likwid-likwid-4.2/config.mk 2017-06-22 10:14:28.585696000 +0200 +@@ -1,7 +1,7 @@ + # Please have a look in INSTALL and the WIKI for details on + # configuration options setup steps. + # supported: GCC, CLANG, ICC, MIC (ICC), GCCX86 (for 32bit systems) +-COMPILER = GCC#NO SPACE ++COMPILER = ICC#NO SPACE + + # Define the color of the likwid-pin output + # Can be NONE, BLACK, RED, GREEN, YELLOW, BLUE, +@@ -9,7 +9,7 @@ + COLOR = BLUE#NO SPACE + + # Path were to install likwid +-PREFIX = /usr/local#NO SPACE ++# PREFIX = /usr/local#NO SPACE + + # uncomment to optionally set external lua@5.3: + # default is use internally provide lua +@@ -40,7 +40,7 @@ + # chown installed tools to this user/group + # if you change anything here, make sure that the user/group can access + # the MSR devices and (on Intel) the PCI devices. +-INSTALL_CHOWN = -g root -o root ++INSTALL_CHOWN = + + # For the daemon based secure msr/pci access configure + # the absolute path to the msr daemon executable. +@@ -51,7 +51,7 @@ + # Build the accessDaemon. Have a look in the WIKI for details. + BUILDDAEMON = true#NO SPACE + #Build the setFrequencies tool +-BUILDFREQ = true#NO SPACE ++BUILDFREQ = false#NO SPACE + + # Set the default mode for MSR access. + # This can usually be overriden on the commandline. +@@ -82,8 +82,8 @@ + # a proper config file at CFG_FILE_PATH) + MAX_NUM_THREADS = 263 + MAX_NUM_NODES = 64 +-CFG_FILE_PATH = /etc/likwid.cfg +-TOPO_FILE_PATH = /etc/likwid_topo.cfg ++CFG_FILE_PATH = $(PREFIX)/etc/likwid.cfg ++TOPO_FILE_PATH = $(PREFIX)/etc/likwid_topo.cfg + + # Versioning Information + VERSION = 4 -- GitLab From 294af8496d6e1cb5d8b75b21959737898179ec95 Mon Sep 17 00:00:00 2001 From: Miguel Dias Costa Date: Fri, 23 Jun 2017 14:14:23 +0800 Subject: [PATCH 268/608] prepare release notes for eb330 --- RELEASE_NOTES | 39 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 4b1afa6117..9d60ed1d8b 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -3,9 +3,46 @@ For more detailed information, please see the git log. These release notes can also be consulted at http://easybuild.readthedocs.org/en/latest/Release_notes.html. -The latest version of easybuild-easyconfig provides 7,036 easyconfig files, for 1,228 different software packages, +The latest version of easybuild-easyconfig provides 7,260 easyconfig files, for 1,256 different software packages, 25 different (compiler) toolchains, 13 software bundles and 1 meta-package. +v3.3.0 (June 23rd 2017) +----------------------- + +feature release +- enable automatic style checks in easyconfig tests (#2506) +- added example easyconfig files for 28 new software packages: + - AUGUSTUS (#4624), Aspera-CLI (#4635), ada (#4594), BUSCO (#4624), Bio-SamTools (#4637), Bpipe (#4590), CNVnator (#4649), + davix (#4755), EricScript (#4594), FUNWAVE-TVD (#4743), gSOAP (#4755), gmpy2 (#4609), LUMPY (#4682), libsndfile (#4628), + lpsolve (#4264), MXNet (#4765), MaSuRCA (#4706), modred (#4729), NRGLjubljana (#4651), OrfM (#4703), + Perl4-CoreLibs (#4670), prodigal (#4468), pydlpoly (#4756), SeqAn (#4603), Spyder (#4627), sharutils (#4745), + Tkinter (#4620), VariantMetaCaller (#4632) +- added additional easyconfigs for various supported software packages, including: + - ABINIT 8.0.8b, ABINIT 8.2.2, ABINIT 8.2.2, ANTLR 2.7.7, AUGUSTUS 3.2.3, Aspera CLI, ada 2.0, arpack ng, BEDOPS 2.4.26.eb, BEDTools 2.26.0, BLAST+ 2.6.0, BUSCO 2.0.1, BWA 0.7.15, Bio SamTools, Bowtie2 2.3.2, Bpipe 0.9.9.2, basemap 1.0.7, buildenv default, bzip2 1.0.6, CDO 1.8.1, CGAL 4.8.1, CMake 3.6.1.eb, CMake 3.8.2, CNVnator 0.3.3, cURL 7.49.1, cURL 7.52.1, DB 6.0.30, DBD mysql, DIAMOND 0.9.6, Doris 4.04beta4, Doris 4.06beta2, Doxygen 1.8.11, davix 0.6.6, EMBOSS 6.6.0, ESMF 6.3.0rp1, EasyBuild 3.2.1.eb, Eigen 3.2.9, EricScript 0.5.5, eudev 3.1.5, expat 2.2.0, expat 2.2.0, FASTA 36.3.5e, FFTW 2.1.5, FFTW 2.1.5, FFmpeg 3.3.1, FLTK 1.3.4, FSL 5.0.10, FUNWAVE TVD, FUNWAVE TVD, flex 2.6.4, fontconfig 2.12.1, freeglut 3.0.0, freetype 2.6.5, GD 2.66, GDAL 2.1.3, GDAL 2.2.0, GDAL 2.2.0, GEOS 3.6.1, GL2PS 1.4.0, GLPK 4.61, GLib 2.48.2, GMP 6.1.1, GMT 5.4.1, GObject Introspection, GraphicsMagick 1.3.25, Guile 1.8.8, gSOAP 2.8.48, gettext 0.19.8, gettext 0.19.8, gimkl 2017a.eb, gimpi 2017a.eb, gmpy2 2.0.8, gnuplot 5.0.6, gperf 3.0.4, gperf 3.0.4, gtest 1.8.0, HTSlib 1.4.1, HarfBuzz 1.3.1, h5py 2.7.0, ImageMagick 7.0.5, imbalanced learn, imkl 2017.1.132, impi 2017.1.132, JasPer 2.0.12, Java 1.8.0_131.eb, Keras 2.0.4, LAME 3.99.5, LLVM 3.7.1, LUMPY 0.2.13, LibTIFF 4.0.7, LibUUID 1.0.3, LittleCMS 2.8, libGLU 9.0.0, libcerf 1.5, libdap 3.18.1, libdrm 2.4.68, libffi 3.2.1, libgd 2.2.4, libgd 2.2.4, libharu 2.3.0, libidn 1.32, libjpeg turbo, libjpeg turbo, libpciaccess 0.13.4, libpng 1.6.24, libpng 1.6.28, libpthread stubs, libreadline 6.2, libreadline 6.3, libreadline 6.3, libsndfile 1.0.28, libtasn1 4.12, libunistring 0.9.6, libxc 3.0.0, libxc 3.0.0, libxml2 2.9.4, libxml2 2.9.4, lpsolve 5.5.2.5, lynx 2.8.9, MATLAB 2017a.eb, MPC 1.0.3, MUMmer 4.0.0beta, MXNet 0.9.3, MaSuRCA 3.2.2, MariaDB 10.1.24, Mesa 11.2.1, makedepend 1.0.5, matplotlib 2.0.2, matplotlib 2.0.2, matplotlib 2.0.2, modred 2.0.2, motif 2.3.7, NAMD 2.12, NASM 2.11.08, NASM 2.12.02.eb, NCL 6.4.0, NCO 4.6.6, NRGLjubljana 2.4.3.23, ncurses 6.0, ne 3.0.1, netCDF C++4, netCDF Fortran, netCDF 4.4.1.1, nettle 3.2, Octave 4.2.1, OrfM 0.6.1, PGI 16.1, PIL 1.1.7, Pango 1.40.5, Perl 5.22.0, Perl 5.22.0, Perl4 CoreLibs, Platanus 1.2.4, PyOpenGL 3.1.1a1, PyQt 4.12, PyQt5 5.8.2, Python 2.7.12, Python 3.5.2, Python 3.5.2, p11 kit, picard 2.2.4, pkg config, prodigal 2.6.2, pydlpoly 20150225, pydlpoly 20150225, Qhull 2015.2, Qt 4.8.7, qrupdate 1.1.2, Ruby 2.3.4.eb, Rust 1.18.0, SAMtools 0.1.17, SAMtools 1.4.1, SAMtools 1.5, SCons 2.5.1, SIP 4.19.2, SQLite 3.13.0, SQLite 3.8.9, STAR 2.5.3a, SWIG 3.0.12, SeqAn 2.3.2, Singularity 2.2.1, SpiceyPy 1.1.1, Spyder 3.1.4, StringTie 1.3.3b, Szip 2.1, scikit learn, segemehl 0.2.0, seqtk 1.2, sharutils 4.15, sleuth 0.29.0, statsmodels 0.8.0, Tcl 8.6.5, Theano 0.9.0, Tk 8.6.5, Tkinter 2.7.13, TopHat 2.1.1, Trim_Galore 0.4.4, tbb 2017.6.196.eb, tbb 2017_U6, VTK 7.1.1, VTune 2017_update3.eb, VariantMetaCaller 1.0, Velvet 1.2.10, X11 20160819, XZ 5.2.2, XZ 5.2.3, xarray 0.9.5, xbitmaps 1.1.1.eb, xprop 1.2.2, YAXT 0.5.1, zlib 1.2.11 +- minor enhancements, including: + - use 'git diff --name-only' and $TRAVIS_COMMIT_RANGE in Travis config to get list of changed files (#4606) + - fix typo in statsmodels source url (/sources/ -> /source/) (#4612) + - branch to current HEAD in Travis config to get relevant list of changed files (#4619) + - add tuneR, seewave, soundecology extensions for R 3.4.0 (+ libsndfile as dep) (#4628) + - also copy README for GapFiller (#4631) + - enable inclusion of version symbol by using --enable-ld-version-script configure option for LibTIFF (#4639) + - add missing /gnu/ ins ftpmirror.gnu.org source_urls, or use GNU_SOURCE where possible (#4653) + - consistently use --with-harfbuzz=no configure option in freetype easyconfigs (#4668) + - add vcfR extension in R 3.4.0 easyconfig (#4680) + - add SHA256 checksums for libpciaccess (#4688) + - ne (nice editor) fix to correct NE_GLOBAL_DIR path (#4698) + - add location to DotLib.pm to $PERL5LIB for SSPACE Basic (#4638) + - use --with-x=yes in R easyconfigs that include X11 as a dependency (#4701) + - remove '4.0' in tbb description (#4707) + - add lib sanity check paths for debian compatibility in nettle (#4722) + - add glmmML & ordinal (+ ucminf) as R extensions (#4747) + - fix source URLs for HDF5 (#4749) + - more (trivial) style fixes (#4761) + - avoid use of import in ANSYS & MATLAB easyconfigs (#4762) + - set $OMP_NUM_THREADS during CP2K test step via dedicated easyconfig parameter (#4763) + - avoid use of 'import' in BFAST easyconfigs, just strip of 'a' from version (#4764) + + v3.2.1 (May 12th 2017) ---------------------- -- GitLab From cf74d5fe885d0cc43d2e45220161ce06542012b8 Mon Sep 17 00:00:00 2001 From: Pablo Escobar Date: Fri, 23 Jun 2017 11:18:56 +0200 Subject: [PATCH 269/608] adding easyconfigs: skewer-0.2.2-goolf-1.7.20.eb --- .../s/skewer/skewer-0.2.2-goolf-1.7.20.eb | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 easybuild/easyconfigs/s/skewer/skewer-0.2.2-goolf-1.7.20.eb diff --git a/easybuild/easyconfigs/s/skewer/skewer-0.2.2-goolf-1.7.20.eb b/easybuild/easyconfigs/s/skewer/skewer-0.2.2-goolf-1.7.20.eb new file mode 100644 index 0000000000..4b9e2d6f54 --- /dev/null +++ b/easybuild/easyconfigs/s/skewer/skewer-0.2.2-goolf-1.7.20.eb @@ -0,0 +1,30 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# Author: Pablo Escobar Lopez +# sciCORE - University of Basel +# SIB Swiss Institute of Bioinformatics + +easyblock = 'MakeCp' + +name = 'skewer' +version = '0.2.2' + +homepage = 'http://smithlabresearch.org/software/preseq/' +description = """skewer (transferred from https://sourceforge.net/projects/skewer) implements the + bit-masked k-difference matching algorithm dedicated to the task of adapter trimming and it is + specially designed for processing next-generation sequencing (NGS) paired-end sequences""" + +toolchain = {'name': 'goolf', 'version': '1.7.20'} + +source_urls = ['https://github.com/relipmoc/skewer/archive/'] +sources = ['%(version)s.tar.gz'] + +parallel = 1 + +files_to_copy = [(['skewer'], 'bin')] + +sanity_check_paths = { + 'files': ['bin/skewer'], + 'dirs': [], +} + +moduleclass = 'bio' -- GitLab From a88bce6fc0a201edd606f587c4b0032e1f28c650 Mon Sep 17 00:00:00 2001 From: Pablo Escobar Lopez Date: Fri, 23 Jun 2017 11:20:58 +0200 Subject: [PATCH 270/608] fix buildopts --- easybuild/easyconfigs/s/skewer/skewer-0.2.2-goolf-1.7.20.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/s/skewer/skewer-0.2.2-goolf-1.7.20.eb b/easybuild/easyconfigs/s/skewer/skewer-0.2.2-goolf-1.7.20.eb index 4b9e2d6f54..abf4cb6e1f 100644 --- a/easybuild/easyconfigs/s/skewer/skewer-0.2.2-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/s/skewer/skewer-0.2.2-goolf-1.7.20.eb @@ -18,7 +18,7 @@ toolchain = {'name': 'goolf', 'version': '1.7.20'} source_urls = ['https://github.com/relipmoc/skewer/archive/'] sources = ['%(version)s.tar.gz'] -parallel = 1 +buildopts = 'CXX="$CXX" CXXFLAGS="-c $CXXFLAGS" LDFLAGS="$CXXFLAGS -pthread"' files_to_copy = [(['skewer'], 'bin')] -- GitLab From 5e2ed91c780fc712ef54d2b6ba1f482c95589a8a Mon Sep 17 00:00:00 2001 From: Ward Poelmans Date: Fri, 23 Jun 2017 13:09:23 +0200 Subject: [PATCH 271/608] Add the docopt module to all Python 2017a easyconfigs --- easybuild/easyconfigs/p/Python/Python-2.7.12-iomkl-2017a.eb | 3 +++ easybuild/easyconfigs/p/Python/Python-2.7.13-foss-2017a.eb | 3 +++ easybuild/easyconfigs/p/Python/Python-2.7.13-intel-2017a.eb | 3 +++ easybuild/easyconfigs/p/Python/Python-3.6.1-intel-2017a.eb | 3 +++ 4 files changed, 12 insertions(+) diff --git a/easybuild/easyconfigs/p/Python/Python-2.7.12-iomkl-2017a.eb b/easybuild/easyconfigs/p/Python/Python-2.7.12-iomkl-2017a.eb index eb4f43f9dd..bfb67d268a 100644 --- a/easybuild/easyconfigs/p/Python/Python-2.7.12-iomkl-2017a.eb +++ b/easybuild/easyconfigs/p/Python/Python-2.7.12-iomkl-2017a.eb @@ -128,6 +128,9 @@ exts_list = [ ('virtualenv', '15.0.2', { 'source_urls': ['https://pypi.python.org/packages/source/v/virtualenv'], }), + ('docopt', '0.6.2', { + 'source_urls': ['https://pypi.python.org/packages/source/d/docopt'], + }), ] moduleclass = 'lang' diff --git a/easybuild/easyconfigs/p/Python/Python-2.7.13-foss-2017a.eb b/easybuild/easyconfigs/p/Python/Python-2.7.13-foss-2017a.eb index 5abe3e3e7d..21d606f252 100644 --- a/easybuild/easyconfigs/p/Python/Python-2.7.13-foss-2017a.eb +++ b/easybuild/easyconfigs/p/Python/Python-2.7.13-foss-2017a.eb @@ -130,6 +130,9 @@ exts_list = [ ('virtualenv', '15.1.0', { 'source_urls': ['https://pypi.python.org/packages/source/v/virtualenv'], }), + ('docopt', '0.6.2', { + 'source_urls': ['https://pypi.python.org/packages/source/d/docopt'], + }), ] moduleclass = 'lang' diff --git a/easybuild/easyconfigs/p/Python/Python-2.7.13-intel-2017a.eb b/easybuild/easyconfigs/p/Python/Python-2.7.13-intel-2017a.eb index 099f1ae1b2..4ee5f95966 100644 --- a/easybuild/easyconfigs/p/Python/Python-2.7.13-intel-2017a.eb +++ b/easybuild/easyconfigs/p/Python/Python-2.7.13-intel-2017a.eb @@ -130,6 +130,9 @@ exts_list = [ ('virtualenv', '15.1.0', { 'source_urls': ['https://pypi.python.org/packages/source/v/virtualenv'], }), + ('docopt', '0.6.2', { + 'source_urls': ['https://pypi.python.org/packages/source/d/docopt'], + }), ] moduleclass = 'lang' diff --git a/easybuild/easyconfigs/p/Python/Python-3.6.1-intel-2017a.eb b/easybuild/easyconfigs/p/Python/Python-3.6.1-intel-2017a.eb index b226f52d51..e17d931cf2 100644 --- a/easybuild/easyconfigs/p/Python/Python-3.6.1-intel-2017a.eb +++ b/easybuild/easyconfigs/p/Python/Python-3.6.1-intel-2017a.eb @@ -122,6 +122,9 @@ exts_list = [ ('virtualenv', '15.1.0', { 'source_urls': ['https://pypi.python.org/packages/source/v/virtualenv'], }), + ('docopt', '0.6.2', { + 'source_urls': ['https://pypi.python.org/packages/source/d/docopt'], + }), ] moduleclass = 'lang' -- GitLab From 142de8b1f27f9072d0533a75da2ef01dff17f941 Mon Sep 17 00:00:00 2001 From: Yann Pouillon Date: Fri, 23 Jun 2017 13:35:23 +0200 Subject: [PATCH 272/608] adding easyconfigs: ASE-3.13.0-foss-2016b-Python-2.7.12.eb --- .../ASE-3.13.0-foss-2016b-Python-2.7.12.eb | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 easybuild/easyconfigs/a/ASE/ASE-3.13.0-foss-2016b-Python-2.7.12.eb diff --git a/easybuild/easyconfigs/a/ASE/ASE-3.13.0-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/a/ASE/ASE-3.13.0-foss-2016b-Python-2.7.12.eb new file mode 100644 index 0000000000..52093a758b --- /dev/null +++ b/easybuild/easyconfigs/a/ASE/ASE-3.13.0-foss-2016b-Python-2.7.12.eb @@ -0,0 +1,28 @@ +easyblock = 'PythonPackage' + +name = 'ASE' +version = '3.13.0' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://wiki.fysik.dtu.dk/ase' +description = """ASE is a python package providing an open source Atomic Simulation Environment + in the Python scripting language.""" + +toolchain = {'name': 'foss', 'version': '2016b'} + +source_urls = [PYPI_LOWER_SOURCE] +sources = [SOURCELOWER_TAR_GZ] + +checksums = ['e946a0addc5b61e5e2e75857e0f99b89'] + +dependencies = [ + ('Python', '2.7.12'), +] + +sanity_check_paths = { + 'files': ['bin/ase-build', 'bin/ase-db', 'bin/ase-gui', 'bin/ase-info', 'bin/ase-run'], + 'dirs': ['lib/python%(pyshortver)s/site-packages/%(namelower)s'], +} + +moduleclass = 'chem' + -- GitLab From f1ee7342249f0e4fe516e3024080cd0fdff81de1 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Sat, 24 Jun 2017 10:59:47 +0200 Subject: [PATCH 273/608] stop using deprecated 2-element tuple format in sources, use equivalent dict format instead --- .../a/ABINIT/ABINIT-7.0.3-x86_64_linux_gnu4.5.eb | 6 ++++-- .../a/ABINIT/ABINIT-7.0.5-x86_64_linux_gnu4.5.eb | 6 ++++-- .../a/ABINIT/ABINIT-7.2.1-x86_64_linux_gnu4.5.eb | 6 ++++-- .../a/Aspera-CLI/Aspera-CLI-3.7.2.354.010c3b8.eb | 8 ++++---- easybuild/easyconfigs/a/ack/ack-2.14.eb | 2 +- easybuild/easyconfigs/g/GATE/GATE-6.2-goolf-1.4.10.eb | 5 ++++- easybuild/easyconfigs/g/GATE/GATE-6.2-intel-2015a.eb | 5 ++++- .../g/GATE/GATE-6.2-intel-2016a-Python-2.7.11.eb | 5 ++++- easybuild/easyconfigs/g/GATE/GATE-7.0-intel-2015a.eb | 5 ++++- .../g/GATE/GATE-7.1-intel-2016a-Python-2.7.11.eb | 5 ++++- .../g/GATE/GATE-7.2-intel-2016a-Python-2.7.11.eb | 5 ++++- easybuild/easyconfigs/g/GIMPS/GIMPS-p95v279-GCC-4.8.2.eb | 5 ++++- .../OpenBLAS-0.2.18-GCC-4.9.4-2.25-LAPACK-3.6.0.eb | 2 +- .../OpenBLAS-0.2.18-GCC-5.3.0-2.26-LAPACK-3.6.0.eb | 2 +- .../OpenBLAS-0.2.18-GCC-5.4.0-2.26-LAPACK-3.6.0.eb | 2 +- .../OpenBLAS-0.2.18-GCC-5.4.0-2.26-LAPACK-3.6.1.eb | 2 +- .../OpenBLAS-0.2.18-gompi-2016.07-LAPACK-3.6.1.eb | 2 +- .../OpenBLAS-0.2.19-GCC-5.4.0-2.26-LAPACK-3.7.0.eb | 2 +- .../OpenBLAS-0.2.19-GCC-6.3.0-2.27-LAPACK-3.7.0.eb | 2 +- .../OpenBLAS-0.2.19-gompi-2016.09-LAPACK-3.6.1.eb | 2 +- .../OpenBLAS-0.2.19-gompic-2016.10-LAPACK-3.6.1.eb | 2 +- easybuild/easyconfigs/o/OpenCV/OpenCV-3.1.0-foss-2016a.eb | 2 +- easybuild/easyconfigs/o/OpenCV/OpenCV-3.1.0-foss-2016b.eb | 2 +- .../easyconfigs/o/OpenCV/OpenCV-3.1.0-intel-2016a.eb | 2 +- .../easyconfigs/o/OpenCV/OpenCV-3.1.0-intel-2016b.eb | 2 +- .../easyconfigs/p/pbbam/pbbam-20170508-intel-2017a.eb | 2 +- .../s/SURF/SURF-1.0-goolf-1.4.10-LINUXAMD64.eb | 2 +- .../easyconfigs/s/SURF/SURF-1.0-ictce-5.3.0-LINUXAMD64.eb | 2 +- .../easyconfigs/v/VarScan/VarScan-2.3.6-Java-1.7.0_80.eb | 2 +- 29 files changed, 62 insertions(+), 35 deletions(-) diff --git a/easybuild/easyconfigs/a/ABINIT/ABINIT-7.0.3-x86_64_linux_gnu4.5.eb b/easybuild/easyconfigs/a/ABINIT/ABINIT-7.0.3-x86_64_linux_gnu4.5.eb index 9ff4e547c0..0674deea91 100644 --- a/easybuild/easyconfigs/a/ABINIT/ABINIT-7.0.3-x86_64_linux_gnu4.5.eb +++ b/easybuild/easyconfigs/a/ABINIT/ABINIT-7.0.3-x86_64_linux_gnu4.5.eb @@ -22,9 +22,11 @@ description = """Abinit is a plane wave pseudopotential code for doing toolchain = {'name': 'dummy', 'version': 'dummy'} -# eg. http://ftp.abinit.org/abinit-7.0.3_x86_64_linux_gnu4.5.bz2 -sources = [('abinit-%s_%s.bz2' % (version, versionsuffix[1:]), 'tar xfj %s')] source_urls = ['http://ftp.abinit.org/'] +sources = [{ + 'filename': 'abinit-%%(version)s_%s.bz2' % versionsuffix[1:], + 'extract_cmd': "tar xfj %s", +}] sanity_check_paths = { 'files': ["bin/abinit"], diff --git a/easybuild/easyconfigs/a/ABINIT/ABINIT-7.0.5-x86_64_linux_gnu4.5.eb b/easybuild/easyconfigs/a/ABINIT/ABINIT-7.0.5-x86_64_linux_gnu4.5.eb index b5b040ce63..f6e72f3fb7 100644 --- a/easybuild/easyconfigs/a/ABINIT/ABINIT-7.0.5-x86_64_linux_gnu4.5.eb +++ b/easybuild/easyconfigs/a/ABINIT/ABINIT-7.0.5-x86_64_linux_gnu4.5.eb @@ -24,9 +24,11 @@ description = """Abinit is a plane wave pseudopotential code for doing toolchain = {'name': 'dummy', 'version': 'dummy'} -# eg. http://ftp.abinit.org/abinit-7.0.5_x86_64_linux_gnu4.5.bz2 -sources = [('abinit-%s_%s.bz2' % (version, versionsuffix[1:]), 'tar xfj %s')] source_urls = ['http://ftp.abinit.org/'] +sources = [{ + 'filename': 'abinit-%%(version)s_%s.bz2' % versionsuffix[1:], + 'extract_cmd': "tar xfj %s", +}] sanity_check_paths = { 'files': ["bin/abinit"], diff --git a/easybuild/easyconfigs/a/ABINIT/ABINIT-7.2.1-x86_64_linux_gnu4.5.eb b/easybuild/easyconfigs/a/ABINIT/ABINIT-7.2.1-x86_64_linux_gnu4.5.eb index 051d0927bf..a5a53cf83d 100644 --- a/easybuild/easyconfigs/a/ABINIT/ABINIT-7.2.1-x86_64_linux_gnu4.5.eb +++ b/easybuild/easyconfigs/a/ABINIT/ABINIT-7.2.1-x86_64_linux_gnu4.5.eb @@ -25,9 +25,11 @@ description = """Abinit is a plane wave pseudopotential code for doing toolchain = {'name': 'dummy', 'version': 'dummy'} -# eg. http://ftp.abinit.org/abinit-7.0.5_x86_64_linux_gnu4.5.bz2 -sources = [('abinit-%s_%s.bz2' % (version, versionsuffix[1:]), 'tar xfj %s')] source_urls = ['http://ftp.abinit.org/'] +sources = [{ + 'filename': 'abinit-%%(version)s_%s.bz2' % versionsuffix[1:], + 'extract_cmd': "tar xfj %s", +}] sanity_check_paths = { 'files': ["bin/abinit"], diff --git a/easybuild/easyconfigs/a/Aspera-CLI/Aspera-CLI-3.7.2.354.010c3b8.eb b/easybuild/easyconfigs/a/Aspera-CLI/Aspera-CLI-3.7.2.354.010c3b8.eb index c5b603114d..576043e6dd 100644 --- a/easybuild/easyconfigs/a/Aspera-CLI/Aspera-CLI-3.7.2.354.010c3b8.eb +++ b/easybuild/easyconfigs/a/Aspera-CLI/Aspera-CLI-3.7.2.354.010c3b8.eb @@ -22,10 +22,10 @@ toolchain = {'name': 'dummy', 'version': 'dummy'} # fixed location. Need to include custom extract command to pull # tarball out of install script and pipe to tar. %s in the extraction # command will be replaced by the source filename. -sources = [ - ('%(namelower)s-%(version)s%(versionsuffix)s-linux-64-release.sh', - "sed '1,/^__ARCHIVE_FOLLOWS__$/d' %s | tar -xzpo --strip-components 1 -f -") -] +sources = [{ + 'filename': '%(namelower)s-%(version)s%(versionsuffix)s-linux-64-release.sh', + 'extract_cmd': "sed '1,/^__ARCHIVE_FOLLOWS__$/d' %s | tar -xzpo --strip-components 1 -f -", +}] source_urls = ['http://download.asperasoft.com/download/sw/cli/%(version)s'] checksums = ['02787ca46814fb9ae2de5c706461367e'] diff --git a/easybuild/easyconfigs/a/ack/ack-2.14.eb b/easybuild/easyconfigs/a/ack/ack-2.14.eb index 7f10d7a34e..2fd715d572 100644 --- a/easybuild/easyconfigs/a/ack/ack-2.14.eb +++ b/easybuild/easyconfigs/a/ack/ack-2.14.eb @@ -10,7 +10,7 @@ toolchain = {'name': 'dummy', 'version': 'dummy'} source_urls = [homepage] # use 'cp' as 'unpack' command -sources = [('ack-%(version)s-single-file', "cp %s ack")] +sources = [{'filename': 'ack-%(version)s-single-file', 'extract_cmd': "cp %s ack"}] cmds_map = [('ack', "chmod a+rx ack")] diff --git a/easybuild/easyconfigs/g/GATE/GATE-6.2-goolf-1.4.10.eb b/easybuild/easyconfigs/g/GATE/GATE-6.2-goolf-1.4.10.eb index 89a8046f2f..a70370fb6a 100644 --- a/easybuild/easyconfigs/g/GATE/GATE-6.2-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/g/GATE/GATE-6.2-goolf-1.4.10.eb @@ -8,8 +8,11 @@ description = """GATE is an advanced opensource software developed by the intern toolchain = {'name': 'goolf', 'version': '1.4.10'} -sources = [('%%(namelower)s_v%s_tar_gz_15843.gz' % '_'.join(version.split('.')), "tar xfvz %s")] source_urls = ['http://www.opengatecollaboration.org/sites/opengatecollaboration.org/files/gate_release/2012/08/'] +sources = [{ + 'filename': '%%(namelower)s_v%s_tar_gz_15843.gz' % '_'.join(version.split('.')), + 'extract_cmd': "tar xfvz %s", +}] patches = [ 'GATE-%(version)s_Makefile-prefix.patch', diff --git a/easybuild/easyconfigs/g/GATE/GATE-6.2-intel-2015a.eb b/easybuild/easyconfigs/g/GATE/GATE-6.2-intel-2015a.eb index 1a6ef28db9..9cfaecb8e1 100644 --- a/easybuild/easyconfigs/g/GATE/GATE-6.2-intel-2015a.eb +++ b/easybuild/easyconfigs/g/GATE/GATE-6.2-intel-2015a.eb @@ -8,8 +8,11 @@ description = """GATE is an advanced opensource software developed by the intern toolchain = {'name': 'intel', 'version': '2015a'} -sources = [('%%(namelower)s_v%s_tar_gz_15843.gz' % '_'.join(version.split('.')), "tar xfvz %s")] source_urls = ['http://www.opengatecollaboration.org/sites/opengatecollaboration.org/files/gate_release/2012/08/'] +sources = [{ + 'filename': '%%(namelower)s_v%s_tar_gz_15843.gz' % '_'.join(version.split('.')), + 'extract_cmd': "tar xfvz %s", +}] patches = [ 'GATE-%(version)s_Makefile-prefix.patch', diff --git a/easybuild/easyconfigs/g/GATE/GATE-6.2-intel-2016a-Python-2.7.11.eb b/easybuild/easyconfigs/g/GATE/GATE-6.2-intel-2016a-Python-2.7.11.eb index d237afef62..34c0cd8a2e 100644 --- a/easybuild/easyconfigs/g/GATE/GATE-6.2-intel-2016a-Python-2.7.11.eb +++ b/easybuild/easyconfigs/g/GATE/GATE-6.2-intel-2016a-Python-2.7.11.eb @@ -9,8 +9,11 @@ description = """GATE is an advanced opensource software developed by the intern toolchain = {'name': 'intel', 'version': '2016a'} -sources = [('%%(namelower)s_v%s_tar_gz_15843.gz' % '_'.join(version.split('.')), "tar xfvz %s")] source_urls = ['http://www.opengatecollaboration.org/sites/opengatecollaboration.org/files/gate_release/2012/08/'] +sources = [{ + 'filename': '%%(namelower)s_v%s_tar_gz_15843.gz' % '_'.join(version.split('.')), + 'extract_cmd': "tar xfvz %s", +}] patches = [ 'GATE-%(version)s_Makefile-prefix.patch', diff --git a/easybuild/easyconfigs/g/GATE/GATE-7.0-intel-2015a.eb b/easybuild/easyconfigs/g/GATE/GATE-7.0-intel-2015a.eb index 85541021f4..c3235c1acd 100644 --- a/easybuild/easyconfigs/g/GATE/GATE-7.0-intel-2015a.eb +++ b/easybuild/easyconfigs/g/GATE/GATE-7.0-intel-2015a.eb @@ -8,7 +8,10 @@ description = """GATE is an advanced opensource software developed by the intern toolchain = {'name': 'intel', 'version': '2015a'} -sources = [('%(namelower)s_v%(version)s.tar_.gz', "tar xfvz %s")] +sources = [{ + 'filename': '%(namelower)s_v%(version)s.tar_.gz', + 'extract_cmd': "tar xfvz %s", +}] source_urls = ['http://www.opengatecollaboration.org/sites/opengatecollaboration.org/files/'] patches = [ diff --git a/easybuild/easyconfigs/g/GATE/GATE-7.1-intel-2016a-Python-2.7.11.eb b/easybuild/easyconfigs/g/GATE/GATE-7.1-intel-2016a-Python-2.7.11.eb index ddcd9aaa7c..f338b1fb86 100644 --- a/easybuild/easyconfigs/g/GATE/GATE-7.1-intel-2016a-Python-2.7.11.eb +++ b/easybuild/easyconfigs/g/GATE/GATE-7.1-intel-2016a-Python-2.7.11.eb @@ -9,7 +9,10 @@ description = """GATE is an advanced opensource software developed by the intern toolchain = {'name': 'intel', 'version': '2016a'} -sources = [('%(namelower)s_v%(version)s.tar.gz', "tar xfvz %s")] +sources = [{ + 'filename': '%(namelower)s_v%(version)s.tar.gz', + 'extract_cmd': "tar xfvz %s", +}] source_urls = ['http://www.opengatecollaboration.org/sites/opengatecollaboration.org/files/'] patches = [ diff --git a/easybuild/easyconfigs/g/GATE/GATE-7.2-intel-2016a-Python-2.7.11.eb b/easybuild/easyconfigs/g/GATE/GATE-7.2-intel-2016a-Python-2.7.11.eb index 91e8c30f8c..923a13d19f 100644 --- a/easybuild/easyconfigs/g/GATE/GATE-7.2-intel-2016a-Python-2.7.11.eb +++ b/easybuild/easyconfigs/g/GATE/GATE-7.2-intel-2016a-Python-2.7.11.eb @@ -9,7 +9,10 @@ description = """GATE is an advanced opensource software developed by the intern toolchain = {'name': 'intel', 'version': '2016a'} -sources = [('%(namelower)s_v%(version)s.tar.gz', "tar xfvz %s")] +sources = [{ + 'filename': '%(namelower)s_v%(version)s.tar.gz', + 'extract_cmd': "tar xfvz %s", +}] source_urls = ['http://www.opengatecollaboration.org/sites/opengatecollaboration.org/files/'] patches = [ diff --git a/easybuild/easyconfigs/g/GIMPS/GIMPS-p95v279-GCC-4.8.2.eb b/easybuild/easyconfigs/g/GIMPS/GIMPS-p95v279-GCC-4.8.2.eb index b6ac9d8f9f..ebe4c931a7 100644 --- a/easybuild/easyconfigs/g/GIMPS/GIMPS-p95v279-GCC-4.8.2.eb +++ b/easybuild/easyconfigs/g/GIMPS/GIMPS-p95v279-GCC-4.8.2.eb @@ -21,7 +21,10 @@ builddependencies = [('cURL', '7.33.0')] # make sure unzip works, zipped sources may contain some 'corruption', # e.g. "linux64/: ucsize 306 <> csize 0 for STORED entry" -sources = [('%(version)s.source.zip', 'unzip -qq %s || /bin/true')] +sources = [{ + 'filename': '%(version)s.source.zip', + 'extract_cmd': "unzip -qq %s || /bin/true", +}] # e.g. http://www.mersenne.info/gimps/p95v279.source.zip source_urls = ['http://www.mersenne.info/%(namelower)s'] diff --git a/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.18-GCC-4.9.4-2.25-LAPACK-3.6.0.eb b/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.18-GCC-4.9.4-2.25-LAPACK-3.6.0.eb index 28a8a8d5c5..475ac86396 100644 --- a/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.18-GCC-4.9.4-2.25-LAPACK-3.6.0.eb +++ b/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.18-GCC-4.9.4-2.25-LAPACK-3.6.0.eb @@ -21,7 +21,7 @@ lapack_unpack_cmd += 'tar -C lapack-netlib --strip-components=1 -zxf %s; cd -' sources = [ 'v%(version)s.tar.gz', - (lapack_src, lapack_unpack_cmd), + {'filename': lapack_src, 'extract_cmd': lapack_unpack_cmd}, large_src, timing_src, ] diff --git a/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.18-GCC-5.3.0-2.26-LAPACK-3.6.0.eb b/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.18-GCC-5.3.0-2.26-LAPACK-3.6.0.eb index 92f08781e2..06c39b8261 100644 --- a/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.18-GCC-5.3.0-2.26-LAPACK-3.6.0.eb +++ b/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.18-GCC-5.3.0-2.26-LAPACK-3.6.0.eb @@ -21,7 +21,7 @@ lapack_unpack_cmd += 'tar -C lapack-netlib --strip-components=1 -zxf %s; cd -' sources = [ 'v%(version)s.tar.gz', - (lapack_src, lapack_unpack_cmd), + {'filename': lapack_src, 'extract_cmd': lapack_unpack_cmd}, large_src, timing_src, ] diff --git a/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.18-GCC-5.4.0-2.26-LAPACK-3.6.0.eb b/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.18-GCC-5.4.0-2.26-LAPACK-3.6.0.eb index 0b62a315f7..eaa818e625 100644 --- a/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.18-GCC-5.4.0-2.26-LAPACK-3.6.0.eb +++ b/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.18-GCC-5.4.0-2.26-LAPACK-3.6.0.eb @@ -21,7 +21,7 @@ lapack_unpack_cmd += 'tar -C lapack-netlib --strip-components=1 -zxf %s; cd -' sources = [ 'v%(version)s.tar.gz', - (lapack_src, lapack_unpack_cmd), + {'filename': lapack_src, 'extract_cmd': lapack_unpack_cmd}, large_src, timing_src, ] diff --git a/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.18-GCC-5.4.0-2.26-LAPACK-3.6.1.eb b/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.18-GCC-5.4.0-2.26-LAPACK-3.6.1.eb index 85f10c536a..dc7f656e6a 100644 --- a/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.18-GCC-5.4.0-2.26-LAPACK-3.6.1.eb +++ b/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.18-GCC-5.4.0-2.26-LAPACK-3.6.1.eb @@ -21,7 +21,7 @@ lapack_unpack_cmd += 'tar -C lapack-netlib --strip-components=1 -zxf %s; cd -' sources = [ 'v%(version)s.tar.gz', - (lapack_src, lapack_unpack_cmd), + {'filename': lapack_src, 'extract_cmd': lapack_unpack_cmd}, large_src, timing_src, ] diff --git a/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.18-gompi-2016.07-LAPACK-3.6.1.eb b/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.18-gompi-2016.07-LAPACK-3.6.1.eb index 80a706fa33..17a2ecb828 100644 --- a/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.18-gompi-2016.07-LAPACK-3.6.1.eb +++ b/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.18-gompi-2016.07-LAPACK-3.6.1.eb @@ -21,7 +21,7 @@ lapack_unpack_cmd += 'tar -C lapack-netlib --strip-components=1 -zxf %s; cd -' sources = [ 'v%(version)s.tar.gz', - (lapack_src, lapack_unpack_cmd), + {'filename': lapack_src, 'extract_cmd': lapack_unpack_cmd}, large_src, timing_src, ] diff --git a/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.19-GCC-5.4.0-2.26-LAPACK-3.7.0.eb b/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.19-GCC-5.4.0-2.26-LAPACK-3.7.0.eb index 4c55b7dc6c..61372509b2 100644 --- a/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.19-GCC-5.4.0-2.26-LAPACK-3.7.0.eb +++ b/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.19-GCC-5.4.0-2.26-LAPACK-3.7.0.eb @@ -21,7 +21,7 @@ lapack_unpack_cmd += 'tar -C lapack-netlib --strip-components=1 -zxf %s; cd -' sources = [ 'v%(version)s.tar.gz', - (lapack_src, lapack_unpack_cmd), + {'filename': lapack_src, 'extract_cmd': lapack_unpack_cmd}, large_src, timing_src, ] diff --git a/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.19-GCC-6.3.0-2.27-LAPACK-3.7.0.eb b/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.19-GCC-6.3.0-2.27-LAPACK-3.7.0.eb index 143c9edae7..d9aed5da09 100644 --- a/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.19-GCC-6.3.0-2.27-LAPACK-3.7.0.eb +++ b/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.19-GCC-6.3.0-2.27-LAPACK-3.7.0.eb @@ -21,7 +21,7 @@ lapack_unpack_cmd += 'tar -C lapack-netlib --strip-components=1 -zxf %s; cd -' sources = [ 'v%(version)s.tar.gz', - (lapack_src, lapack_unpack_cmd), + {'filename': lapack_src, 'extract_cmd': lapack_unpack_cmd}, large_src, timing_src, ] diff --git a/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.19-gompi-2016.09-LAPACK-3.6.1.eb b/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.19-gompi-2016.09-LAPACK-3.6.1.eb index 0978b24ced..761f990fdb 100644 --- a/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.19-gompi-2016.09-LAPACK-3.6.1.eb +++ b/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.19-gompi-2016.09-LAPACK-3.6.1.eb @@ -21,7 +21,7 @@ lapack_unpack_cmd += 'tar -C lapack-netlib --strip-components=1 -zxf %s; cd -' sources = [ 'v%(version)s.tar.gz', - (lapack_src, lapack_unpack_cmd), + {'filename': lapack_src, 'extract_cmd': lapack_unpack_cmd}, large_src, timing_src, ] diff --git a/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.19-gompic-2016.10-LAPACK-3.6.1.eb b/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.19-gompic-2016.10-LAPACK-3.6.1.eb index 55794b4474..f4055fe601 100644 --- a/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.19-gompic-2016.10-LAPACK-3.6.1.eb +++ b/easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.2.19-gompic-2016.10-LAPACK-3.6.1.eb @@ -21,7 +21,7 @@ lapack_unpack_cmd += 'tar -C lapack-netlib --strip-components=1 -zxf %s; cd -' sources = [ 'v%(version)s.tar.gz', - (lapack_src, lapack_unpack_cmd), + {'filename': lapack_src, 'extract_cmd': lapack_unpack_cmd}, large_src, timing_src, ] diff --git a/easybuild/easyconfigs/o/OpenCV/OpenCV-3.1.0-foss-2016a.eb b/easybuild/easyconfigs/o/OpenCV/OpenCV-3.1.0-foss-2016a.eb index 141e1f7cdd..2faed16c6d 100644 --- a/easybuild/easyconfigs/o/OpenCV/OpenCV-3.1.0-foss-2016a.eb +++ b/easybuild/easyconfigs/o/OpenCV/OpenCV-3.1.0-foss-2016a.eb @@ -19,7 +19,7 @@ source_urls = [ sources = [ '%(version)s.zip', - ('ippicv_linux_20151201.tgz', 'cp %s %(builddir)s'), + {'filename': 'ippicv_linux_20151201.tgz', 'extract_cmd': "cp %s %(builddir)s"}, ] builddependencies = [ diff --git a/easybuild/easyconfigs/o/OpenCV/OpenCV-3.1.0-foss-2016b.eb b/easybuild/easyconfigs/o/OpenCV/OpenCV-3.1.0-foss-2016b.eb index 1495f695f6..31bcd04d21 100644 --- a/easybuild/easyconfigs/o/OpenCV/OpenCV-3.1.0-foss-2016b.eb +++ b/easybuild/easyconfigs/o/OpenCV/OpenCV-3.1.0-foss-2016b.eb @@ -19,7 +19,7 @@ source_urls = [ sources = [ '%(version)s.zip', - ('ippicv_linux_20151201.tgz', 'cp %s %(builddir)s'), + {'filename': 'ippicv_linux_20151201.tgz', 'extract_cmd': "cp %s %(builddir)s"}, ] builddependencies = [ diff --git a/easybuild/easyconfigs/o/OpenCV/OpenCV-3.1.0-intel-2016a.eb b/easybuild/easyconfigs/o/OpenCV/OpenCV-3.1.0-intel-2016a.eb index 23de8de267..7b5c4b2c99 100644 --- a/easybuild/easyconfigs/o/OpenCV/OpenCV-3.1.0-intel-2016a.eb +++ b/easybuild/easyconfigs/o/OpenCV/OpenCV-3.1.0-intel-2016a.eb @@ -19,7 +19,7 @@ source_urls = [ sources = [ '%(version)s.zip', - ('ippicv_linux_20151201.tgz', 'cp %s %(builddir)s'), + {'filename': 'ippicv_linux_20151201.tgz', 'extract_cmd': "cp %s %(builddir)s"}, ] patches = ['OpenCV-%(version)s_with_IPP.patch'] diff --git a/easybuild/easyconfigs/o/OpenCV/OpenCV-3.1.0-intel-2016b.eb b/easybuild/easyconfigs/o/OpenCV/OpenCV-3.1.0-intel-2016b.eb index 0b6f2141a7..dadbcc0e05 100644 --- a/easybuild/easyconfigs/o/OpenCV/OpenCV-3.1.0-intel-2016b.eb +++ b/easybuild/easyconfigs/o/OpenCV/OpenCV-3.1.0-intel-2016b.eb @@ -19,7 +19,7 @@ source_urls = [ sources = [ '%(version)s.zip', - ('ippicv_linux_20151201.tgz', 'cp %s %(builddir)s'), + {'filename': 'ippicv_linux_20151201.tgz', 'extract_cmd': "cp %s %(builddir)s"}, ] patches = ['OpenCV-%(version)s_with_IPP.patch'] diff --git a/easybuild/easyconfigs/p/pbbam/pbbam-20170508-intel-2017a.eb b/easybuild/easyconfigs/p/pbbam/pbbam-20170508-intel-2017a.eb index cfbcaf72eb..a724ce7cbe 100644 --- a/easybuild/easyconfigs/p/pbbam/pbbam-20170508-intel-2017a.eb +++ b/easybuild/easyconfigs/p/pbbam/pbbam-20170508-intel-2017a.eb @@ -16,7 +16,7 @@ source_urls = [ 'https://github.com/google/googletest/archive/', ] sources = [ - ('%s.tar.gz' % commit, "tar xfvz %s --strip-components=1"), # pbbam + {'filename': '%s.tar.gz' % commit, 'extract_cmd': "tar xfvz %s --strip-components=1"}, # pbbam 'release-%s.tar.gz' % gtest_ver, # googletest ] diff --git a/easybuild/easyconfigs/s/SURF/SURF-1.0-goolf-1.4.10-LINUXAMD64.eb b/easybuild/easyconfigs/s/SURF/SURF-1.0-goolf-1.4.10-LINUXAMD64.eb index bf5aca8371..29f05e2070 100644 --- a/easybuild/easyconfigs/s/SURF/SURF-1.0-goolf-1.4.10-LINUXAMD64.eb +++ b/easybuild/easyconfigs/s/SURF/SURF-1.0-goolf-1.4.10-LINUXAMD64.eb @@ -14,7 +14,7 @@ description = "A molecular surface solver, which can be used as rendering method toolchain = {'name': 'goolf', 'version': '1.4.10'} source_urls = ['http://www.ks.uiuc.edu/Research/vmd/extsrcs'] -sources = [('%(namelower)s.tar.Z', 'tar -xzf %s')] +sources = [{'filename': '%(namelower)s.tar.Z', 'extract_cmd': "tar -xzf %s"}] builddependencies = [ ('makedepend', '1.0.4'), diff --git a/easybuild/easyconfigs/s/SURF/SURF-1.0-ictce-5.3.0-LINUXAMD64.eb b/easybuild/easyconfigs/s/SURF/SURF-1.0-ictce-5.3.0-LINUXAMD64.eb index c10863bf70..4fb273d1b6 100644 --- a/easybuild/easyconfigs/s/SURF/SURF-1.0-ictce-5.3.0-LINUXAMD64.eb +++ b/easybuild/easyconfigs/s/SURF/SURF-1.0-ictce-5.3.0-LINUXAMD64.eb @@ -14,7 +14,7 @@ description = "A molecular surface solver, which can be used as rendering method toolchain = {'name': 'ictce', 'version': '5.3.0'} source_urls = ['http://www.ks.uiuc.edu/Research/vmd/extsrcs'] -sources = [('%(namelower)s.tar.Z', 'tar -xzf %s')] +sources = [{'filename': '%(namelower)s.tar.Z', 'extract_cmd': "tar -xzf %s"}] builddependencies = [ ('makedepend', '1.0.4'), diff --git a/easybuild/easyconfigs/v/VarScan/VarScan-2.3.6-Java-1.7.0_80.eb b/easybuild/easyconfigs/v/VarScan/VarScan-2.3.6-Java-1.7.0_80.eb index af1032ae7a..88844689a5 100644 --- a/easybuild/easyconfigs/v/VarScan/VarScan-2.3.6-Java-1.7.0_80.eb +++ b/easybuild/easyconfigs/v/VarScan/VarScan-2.3.6-Java-1.7.0_80.eb @@ -13,7 +13,7 @@ description = """Variant calling and somatic mutation/CNV detection for next-gen toolchain = {'name': 'dummy', 'version': ''} -sources = [('%(name)s.v%(version)s.jar', 'download')] +sources = ['%(name)s.v%(version)s.jar'] source_urls = ['https://sourceforge.net/projects/varscan/files/'] dependencies = [('Java', '1.7.0_80')] -- GitLab From 9c339304b79ccc16782ae33bec338bfcd3c42d66 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Sat, 24 Jun 2017 10:59:19 +0200 Subject: [PATCH 274/608] minor tweaks in EasyBuild v3.3.0 release notes --- RELEASE_NOTES | 43 ++++++++++++++++++++++--------------------- 1 file changed, 22 insertions(+), 21 deletions(-) diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 9d60ed1d8b..a2c55382cb 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -3,44 +3,45 @@ For more detailed information, please see the git log. These release notes can also be consulted at http://easybuild.readthedocs.org/en/latest/Release_notes.html. -The latest version of easybuild-easyconfig provides 7,260 easyconfig files, for 1,256 different software packages, +The latest version of easybuild-easyconfig provides 7,248 easyconfig files, for 1,256 different software packages, 25 different (compiler) toolchains, 13 software bundles and 1 meta-package. -v3.3.0 (June 23rd 2017) +v3.3.0 (June 24th 2017) ----------------------- feature release - enable automatic style checks in easyconfig tests (#2506) - added example easyconfig files for 28 new software packages: - - AUGUSTUS (#4624), Aspera-CLI (#4635), ada (#4594), BUSCO (#4624), Bio-SamTools (#4637), Bpipe (#4590), CNVnator (#4649), - davix (#4755), EricScript (#4594), FUNWAVE-TVD (#4743), gSOAP (#4755), gmpy2 (#4609), LUMPY (#4682), libsndfile (#4628), - lpsolve (#4264), MXNet (#4765), MaSuRCA (#4706), modred (#4729), NRGLjubljana (#4651), OrfM (#4703), - Perl4-CoreLibs (#4670), prodigal (#4468), pydlpoly (#4756), SeqAn (#4603), Spyder (#4627), sharutils (#4745), - Tkinter (#4620), VariantMetaCaller (#4632) + - ada (#4594), Aspera-CLI (#4635), AUGUSTUS (#4624), ada (#4594), Bio-SamTools (#4637), Bpipe (#4590), BUSCO (#4624), + CNVnator (#4649), davix (#4755), EricScript (#4594), FUNWAVE-TVD (#4743), gmpy2 (#4609), gSOAP (#4755), + libsndfile (#4628), lpsolve (#4264), LUMPY (#4682), MaSuRCA (#4706), modred (#4729), MXNet (#4765), + NRGLjubljana (#4651), OrfM (#4703), Perl4-CoreLibs (#4670), prodigal (#4468), pydlpoly (#4756), SeqAn (#4603), + sharutils (#4745), Spyder (#4627), Tkinter (#4620), VariantMetaCaller (#4632) +- added new easyconfigs for existing toolchains: + - gimkl 2017a (#4646) - added additional easyconfigs for various supported software packages, including: - - ABINIT 8.0.8b, ABINIT 8.2.2, ABINIT 8.2.2, ANTLR 2.7.7, AUGUSTUS 3.2.3, Aspera CLI, ada 2.0, arpack ng, BEDOPS 2.4.26.eb, BEDTools 2.26.0, BLAST+ 2.6.0, BUSCO 2.0.1, BWA 0.7.15, Bio SamTools, Bowtie2 2.3.2, Bpipe 0.9.9.2, basemap 1.0.7, buildenv default, bzip2 1.0.6, CDO 1.8.1, CGAL 4.8.1, CMake 3.6.1.eb, CMake 3.8.2, CNVnator 0.3.3, cURL 7.49.1, cURL 7.52.1, DB 6.0.30, DBD mysql, DIAMOND 0.9.6, Doris 4.04beta4, Doris 4.06beta2, Doxygen 1.8.11, davix 0.6.6, EMBOSS 6.6.0, ESMF 6.3.0rp1, EasyBuild 3.2.1.eb, Eigen 3.2.9, EricScript 0.5.5, eudev 3.1.5, expat 2.2.0, expat 2.2.0, FASTA 36.3.5e, FFTW 2.1.5, FFTW 2.1.5, FFmpeg 3.3.1, FLTK 1.3.4, FSL 5.0.10, FUNWAVE TVD, FUNWAVE TVD, flex 2.6.4, fontconfig 2.12.1, freeglut 3.0.0, freetype 2.6.5, GD 2.66, GDAL 2.1.3, GDAL 2.2.0, GDAL 2.2.0, GEOS 3.6.1, GL2PS 1.4.0, GLPK 4.61, GLib 2.48.2, GMP 6.1.1, GMT 5.4.1, GObject Introspection, GraphicsMagick 1.3.25, Guile 1.8.8, gSOAP 2.8.48, gettext 0.19.8, gettext 0.19.8, gimkl 2017a.eb, gimpi 2017a.eb, gmpy2 2.0.8, gnuplot 5.0.6, gperf 3.0.4, gperf 3.0.4, gtest 1.8.0, HTSlib 1.4.1, HarfBuzz 1.3.1, h5py 2.7.0, ImageMagick 7.0.5, imbalanced learn, imkl 2017.1.132, impi 2017.1.132, JasPer 2.0.12, Java 1.8.0_131.eb, Keras 2.0.4, LAME 3.99.5, LLVM 3.7.1, LUMPY 0.2.13, LibTIFF 4.0.7, LibUUID 1.0.3, LittleCMS 2.8, libGLU 9.0.0, libcerf 1.5, libdap 3.18.1, libdrm 2.4.68, libffi 3.2.1, libgd 2.2.4, libgd 2.2.4, libharu 2.3.0, libidn 1.32, libjpeg turbo, libjpeg turbo, libpciaccess 0.13.4, libpng 1.6.24, libpng 1.6.28, libpthread stubs, libreadline 6.2, libreadline 6.3, libreadline 6.3, libsndfile 1.0.28, libtasn1 4.12, libunistring 0.9.6, libxc 3.0.0, libxc 3.0.0, libxml2 2.9.4, libxml2 2.9.4, lpsolve 5.5.2.5, lynx 2.8.9, MATLAB 2017a.eb, MPC 1.0.3, MUMmer 4.0.0beta, MXNet 0.9.3, MaSuRCA 3.2.2, MariaDB 10.1.24, Mesa 11.2.1, makedepend 1.0.5, matplotlib 2.0.2, matplotlib 2.0.2, matplotlib 2.0.2, modred 2.0.2, motif 2.3.7, NAMD 2.12, NASM 2.11.08, NASM 2.12.02.eb, NCL 6.4.0, NCO 4.6.6, NRGLjubljana 2.4.3.23, ncurses 6.0, ne 3.0.1, netCDF C++4, netCDF Fortran, netCDF 4.4.1.1, nettle 3.2, Octave 4.2.1, OrfM 0.6.1, PGI 16.1, PIL 1.1.7, Pango 1.40.5, Perl 5.22.0, Perl 5.22.0, Perl4 CoreLibs, Platanus 1.2.4, PyOpenGL 3.1.1a1, PyQt 4.12, PyQt5 5.8.2, Python 2.7.12, Python 3.5.2, Python 3.5.2, p11 kit, picard 2.2.4, pkg config, prodigal 2.6.2, pydlpoly 20150225, pydlpoly 20150225, Qhull 2015.2, Qt 4.8.7, qrupdate 1.1.2, Ruby 2.3.4.eb, Rust 1.18.0, SAMtools 0.1.17, SAMtools 1.4.1, SAMtools 1.5, SCons 2.5.1, SIP 4.19.2, SQLite 3.13.0, SQLite 3.8.9, STAR 2.5.3a, SWIG 3.0.12, SeqAn 2.3.2, Singularity 2.2.1, SpiceyPy 1.1.1, Spyder 3.1.4, StringTie 1.3.3b, Szip 2.1, scikit learn, segemehl 0.2.0, seqtk 1.2, sharutils 4.15, sleuth 0.29.0, statsmodels 0.8.0, Tcl 8.6.5, Theano 0.9.0, Tk 8.6.5, Tkinter 2.7.13, TopHat 2.1.1, Trim_Galore 0.4.4, tbb 2017.6.196.eb, tbb 2017_U6, VTK 7.1.1, VTune 2017_update3.eb, VariantMetaCaller 1.0, Velvet 1.2.10, X11 20160819, XZ 5.2.2, XZ 5.2.3, xarray 0.9.5, xbitmaps 1.1.1.eb, xprop 1.2.2, YAXT 0.5.1, zlib 1.2.11 + - ABINIT 8.2.2, BLAST+ 2.6.0, Bowtie2 2.3.2, FFmpeg 3.3.1, NCL 6.4.0, Rust 1.18.0, SAMtools 1.5, VTK 7.1.1 - minor enhancements, including: - - use 'git diff --name-only' and $TRAVIS_COMMIT_RANGE in Travis config to get list of changed files (#4606) - - fix typo in statsmodels source url (/sources/ -> /source/) (#4612) - - branch to current HEAD in Travis config to get relevant list of changed files (#4619) - - add tuneR, seewave, soundecology extensions for R 3.4.0 (+ libsndfile as dep) (#4628) + - use 'git diff --name-only' and $TRAVIS_COMMIT_RANGE in Travis config to get list of changed files (#4606, #4619) + - add tuneR, seewave, soundecology, vcfR extensions for R 3.4.0 (+ libsndfile as dep) (#4628, #4680, #4747) - also copy README for GapFiller (#4631) - enable inclusion of version symbol by using --enable-ld-version-script configure option for LibTIFF (#4639) + - add SHA256 checksums for libpciaccess to discriminate from old tarballs that required running autogen.sh (#4688) + - fix NE_GLOBAL_DIR path for ne by also specifying PREFIX in buildopts (#4698) + - more (trivial) style fixes (#4761) + - avoid use of import in ANSYS & MATLAB easyconfigs (#4762) + - set $OMP_NUM_THREADS during CP2K test step via dedicated easyconfig parameter (#4763) + - avoid use of 'import' in BFAST easyconfigs, just strip of 'a' from version (#4764) + - stop using deprecated 2-element tuple format in sources, use equivalent dict format instead (#4774) +- various bug fixes, including: + - fix typo in statsmodels source url (/sources/ -> /source/) (#4612) + - add location to DotLib.pm to $PERL5LIB for SSPACE_Basic (#4638) - add missing /gnu/ ins ftpmirror.gnu.org source_urls, or use GNU_SOURCE where possible (#4653) - consistently use --with-harfbuzz=no configure option in freetype easyconfigs (#4668) - - add vcfR extension in R 3.4.0 easyconfig (#4680) - - add SHA256 checksums for libpciaccess (#4688) - - ne (nice editor) fix to correct NE_GLOBAL_DIR path (#4698) - - add location to DotLib.pm to $PERL5LIB for SSPACE Basic (#4638) - use --with-x=yes in R easyconfigs that include X11 as a dependency (#4701) - remove '4.0' in tbb description (#4707) - add lib sanity check paths for debian compatibility in nettle (#4722) - - add glmmML & ordinal (+ ucminf) as R extensions (#4747) - fix source URLs for HDF5 (#4749) - - more (trivial) style fixes (#4761) - - avoid use of import in ANSYS & MATLAB easyconfigs (#4762) - - set $OMP_NUM_THREADS during CP2K test step via dedicated easyconfig parameter (#4763) - - avoid use of 'import' in BFAST easyconfigs, just strip of 'a' from version (#4764) v3.2.1 (May 12th 2017) -- GitLab From 8f7e530ce1b41980ff827dc46bff43a7c106534c Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Sun, 25 Jun 2017 11:51:32 +0200 Subject: [PATCH 275/608] also include #4770 in EasyBuild v3.3.0 release notes --- RELEASE_NOTES | 1 + 1 file changed, 1 insertion(+) diff --git a/RELEASE_NOTES b/RELEASE_NOTES index a2c55382cb..6775de245c 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -32,6 +32,7 @@ feature release - avoid use of import in ANSYS & MATLAB easyconfigs (#4762) - set $OMP_NUM_THREADS during CP2K test step via dedicated easyconfig parameter (#4763) - avoid use of 'import' in BFAST easyconfigs, just strip of 'a' from version (#4764) + - add the docopt module to all Python 2017a easyconfigs (#4770) - stop using deprecated 2-element tuple format in sources, use equivalent dict format instead (#4774) - various bug fixes, including: - fix typo in statsmodels source url (/sources/ -> /source/) (#4612) -- GitLab From 4ffb4fb69561f7fe69fbc6b339849c92c16002be Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Sun, 25 Jun 2017 11:54:00 +0200 Subject: [PATCH 276/608] bump version to 3.3.0 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 85590c2983..2c5a5b79d5 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ from distutils import log # recent setuptools versions will *TRANSFORM* something like 'X.Y.Zdev' into 'X.Y.Z.dev0', with a warning like # UserWarning: Normalizing '2.4.0dev' to '2.4.0.dev0' # This causes problems further up the dependency chain... -VERSION = '3.3.0.dev0' +VERSION = '3.3.0' API_VERSION = VERSION.split('.')[0] EB_VERSION = '.'.join(VERSION.split('.')[0:2]) -- GitLab From edb13a0170005b7cda6cfca800b72808a29224b8 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Sun, 25 Jun 2017 20:53:18 +0200 Subject: [PATCH 277/608] fix release date for EasyBuild v3.3.0 --- RELEASE_NOTES | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 6775de245c..31cbc5078b 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -3,10 +3,10 @@ For more detailed information, please see the git log. These release notes can also be consulted at http://easybuild.readthedocs.org/en/latest/Release_notes.html. -The latest version of easybuild-easyconfig provides 7,248 easyconfig files, for 1,256 different software packages, +The latest version of easybuild-easyconfig provides 7,247 easyconfig files, for 1,256 different software packages, 25 different (compiler) toolchains, 13 software bundles and 1 meta-package. -v3.3.0 (June 24th 2017) +v3.3.0 (June 26th 2017) ----------------------- feature release @@ -18,7 +18,7 @@ feature release NRGLjubljana (#4651), OrfM (#4703), Perl4-CoreLibs (#4670), prodigal (#4468), pydlpoly (#4756), SeqAn (#4603), sharutils (#4745), Spyder (#4627), Tkinter (#4620), VariantMetaCaller (#4632) - added new easyconfigs for existing toolchains: - - gimkl 2017a (#4646) + - gimkl/2017a (#4646) - added additional easyconfigs for various supported software packages, including: - ABINIT 8.2.2, BLAST+ 2.6.0, Bowtie2 2.3.2, FFmpeg 3.3.1, NCL 6.4.0, Rust 1.18.0, SAMtools 1.5, VTK 7.1.1 - minor enhancements, including: @@ -41,7 +41,7 @@ feature release - consistently use --with-harfbuzz=no configure option in freetype easyconfigs (#4668) - use --with-x=yes in R easyconfigs that include X11 as a dependency (#4701) - remove '4.0' in tbb description (#4707) - - add lib sanity check paths for debian compatibility in nettle (#4722) + - add lib sanity check paths for Debian compatibility in nettle (#4722) - fix source URLs for HDF5 (#4749) -- GitLab From 746ab0874f0dc8840531cbf5130fbfa7b99f071e Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Mon, 26 Jun 2017 15:54:53 +1200 Subject: [PATCH 278/608] New EasyConfig for the X11 bundle with the gimkl-2017a toolchain, plus deps --- .../fontconfig-2.12.1-gimkl-2017a.eb | 22 +++ .../f/freetype/freetype-2.7.1-gimkl-2017a.eb | 26 ++++ .../x/X11/X11-20170129-gimkl-2017a.eb | 135 ++++++++++++++++++ 3 files changed, 183 insertions(+) create mode 100644 easybuild/easyconfigs/f/fontconfig/fontconfig-2.12.1-gimkl-2017a.eb create mode 100644 easybuild/easyconfigs/f/freetype/freetype-2.7.1-gimkl-2017a.eb create mode 100644 easybuild/easyconfigs/x/X11/X11-20170129-gimkl-2017a.eb diff --git a/easybuild/easyconfigs/f/fontconfig/fontconfig-2.12.1-gimkl-2017a.eb b/easybuild/easyconfigs/f/fontconfig/fontconfig-2.12.1-gimkl-2017a.eb new file mode 100644 index 0000000000..5a11636b93 --- /dev/null +++ b/easybuild/easyconfigs/f/fontconfig/fontconfig-2.12.1-gimkl-2017a.eb @@ -0,0 +1,22 @@ +easyblock = 'ConfigureMake' + +name = 'fontconfig' +version = '2.12.1' + +homepage = 'http://www.freedesktop.org/software/fontconfig' +description = """Fontconfig is a library designed to provide system-wide font configuration, customization and +application access.""" + +toolchain = {'name': 'gimkl', 'version': '2017a'} + +source_urls = ['http://www.freedesktop.org/software/fontconfig/release/'] +sources = [SOURCE_TAR_GZ] + +dependencies = [ + ('expat', '2.2.0'), + ('freetype', '2.7.1'), +] + +configopts = '--disable-docs ' + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.7.1-gimkl-2017a.eb b/easybuild/easyconfigs/f/freetype/freetype-2.7.1-gimkl-2017a.eb new file mode 100644 index 0000000000..ec9a259e85 --- /dev/null +++ b/easybuild/easyconfigs/f/freetype/freetype-2.7.1-gimkl-2017a.eb @@ -0,0 +1,26 @@ +name = 'freetype' +version = "2.7.1" + +homepage = 'http://freetype.org' +description = """FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and + portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display + servers, font conversion tools, text image generation tools, and many other products as well.""" + +toolchain = {'name': 'gimkl', 'version': '2017a'} + +source_urls = [GNU_SAVANNAH_SOURCE] +sources = [SOURCE_TAR_GZ] + +dependencies = [ + ('libpng', '1.6.28'), + ('bzip2', '1.0.6'), + ('zlib', '1.2.11'), +] + +sanity_check_paths = { + 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, + 'lib/pkgconfig/freetype2.pc'], + 'dirs': ['include/freetype2'], +} + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/x/X11/X11-20170129-gimkl-2017a.eb b/easybuild/easyconfigs/x/X11/X11-20170129-gimkl-2017a.eb new file mode 100644 index 0000000000..71b0754c39 --- /dev/null +++ b/easybuild/easyconfigs/x/X11/X11-20170129-gimkl-2017a.eb @@ -0,0 +1,135 @@ +easyblock = 'Bundle' + +name = 'X11' +version = '20170129' + +homepage = 'https://www.x.org' +description = "The X Window System (X11) is a windowing system for bitmap displays" + +toolchain = {'name': 'gimkl', 'version': '2017a'} + +source_urls = [ + XORG_LIB_SOURCE, + XORG_PROTO_SOURCE, + 'http://xcb.freedesktop.org/dist/', + 'http://xkbcommon.org/download/', + 'http://cgit.freedesktop.org/xorg/util/macros/snapshot', +] + +dependencies = [ + ('bzip2', '1.0.6'), + ('fontconfig', '2.12.1'), # pulls in freetype + ('zlib', '1.2.11'), +] +builddependencies = [ + ('Autotools', '20150215', '', True), + ('Bison', '3.0.4'), + ('gettext', '0.19.8', '', True), + ('pkg-config', '0.29.1'), +] + +default_easyblock = 'ConfigureMake' + +common_specs = { + 'sources': [SOURCE_TAR_GZ], + 'start_dir': '%(name)s-%(version)s', +} +components = [ + ('xorg-macros', '1.19.1', { # 2017-01-29 + 'sources': ['util-macros-%(version)s.tar.gz'], + 'start_dir': 'util-macros-%(version)s', + }), + ('libpthread-stubs', '0.3', common_specs), # 2009-10-14 + ('bigreqsproto', '1.1.2', common_specs), # 2012-03-23 + ('compositeproto', '0.4.2', common_specs), # 2010-10-30 + ('damageproto', '1.2.1', common_specs), # 2010-10-30 + ('dmxproto', '2.3.1', common_specs), # 2011-01-06 + ('dri2proto', '2.8', common_specs), # 2012-07-11 + ('dri3proto', '1.0', common_specs), # 2013-11-01 + ('fixesproto', '5.0', common_specs), # 2011-03-08 + ('fontsproto', '2.1.3', common_specs), # 2014-04-14 + ('glproto', '1.4.17', common_specs), # 2013-12-10 + ('inputproto', '2.3.2', common_specs), # 2016-04-04 + ('kbproto', '1.0.7', common_specs), # 2015-05-01 + ('presentproto', '1.1', common_specs), # 2017-01-26 + ('randrproto', '1.5.0', common_specs), # 2015-05-17 + ('recordproto', '1.14.2', common_specs), # 2012-03-23 + ('renderproto', '0.11.1', common_specs), # 2010-08-10 + ('resourceproto', '1.2.0', common_specs), # 2011-05-28 + ('scrnsaverproto', '1.2.2', common_specs), # 2012-03-23 + ('videoproto', '2.3.3', common_specs), # 2016-03-11 + ('xcmiscproto', '1.2.2', common_specs), # 2012-03-23 + ('xextproto', '7.3.0', common_specs), # 2013-12-27 + ('xf86bigfontproto', '1.2.0', common_specs), # 2009-08-27 + ('xf86dgaproto', '2.1', common_specs), # 2009-10-01 + ('xf86driproto', '2.1.1', common_specs), # 2011-01-06 + ('xf86vidmodeproto', '2.3.1', common_specs), # 2011-01-06 + ('xineramaproto', '1.2.1', common_specs), # 2011-01-06 + ('xproto', '7.0.31', common_specs), # 2016-09-23 + ('libXau', '1.0.8', common_specs), # 2013-05-24 + ('libXdmcp', '1.1.2', common_specs), # 2015-03-21 + ('xcb-proto', '1.12', common_specs), # 2016-05-18 + ('libxcb', '1.12', common_specs), # 2016-05-18 + ('xtrans', '1.3.5', common_specs), # 2014-09-22 + ('libxkbcommon', '0.7.1', { # 2017-01-18 + 'sources': ['libxkbcommon-%(version)s.tar.xz'], + 'start_dir': 'libxkbcommon-%(version)s', + }), + ('libX11', '1.6.4', common_specs), # 2016-10-04 + ('libXext', '1.3.3', common_specs), # 2014-07-24 + ('libFS', '1.0.7', common_specs), # 2015-05-01 + ('libICE', '1.0.9', common_specs), # 2014-06-07 + ('libSM', '1.2.2', common_specs), # 2013-09-08 + ('libXScrnSaver', '1.2.2', common_specs), # 2012-03-08 + ('libXt', '1.1.5', common_specs), # 2015-05-01 + ('libXmu', '1.1.2', common_specs), # 2013-09-08 + ('libXpm', '3.5.12', common_specs), # 2016-12-15 + ('libXaw', '1.0.13', common_specs), # 2015-05-01 + ('libXfixes', '5.0.3', common_specs), # 2016-10-04 + ('libXcomposite', '0.4.4', common_specs), # 2013-01-03 + ('libXrender', '0.9.10', common_specs), # 2016-10-04 + ('libXcursor', '1.1.14', common_specs), # 2013-05-30 + ('libXdamage', '1.1.4', common_specs), # 2013-01-03 + ('libfontenc', '1.1.3', common_specs), # 2015-05-01 + ('libXfont', '1.5.2', common_specs), # 2016-08-31 + ('libXfont2', '2.0.1', common_specs), # 2015-12-11 + ('libXft', '2.3.2', common_specs), # 2014-06-06 + ('libXi', '1.7.9', common_specs), # 2017-01-23 + ('libXinerama', '1.1.3', common_specs), # 2013-05-31 + ('libXrandr', '1.5.1', common_specs), # 2016-10-04 + ('libXres', '1.0.7', common_specs), # 2013-05-31 + ('libXtst', '1.2.3', common_specs), # 2016-10-04 + ('libXv', '1.0.11', common_specs), # 2016-10-04 + ('libXvMC', '1.0.10', common_specs), # 2016-10-04 + ('libXxf86dga', '1.1.4', common_specs), # 2013-05-31 + ('libXxf86vm', '1.1.4', common_specs), # 2015-02-24 + ('libdmx', '1.1.3', common_specs), # 2013-05-28 + ('libpciaccess', '0.13.4', common_specs), # 2015-05-01 + ('libxkbfile', '1.0.9', common_specs), # 2015-05-01 + ('libxshmfence', '1.2', common_specs), # 2015-01-02 + ('xcb-util', '0.4.0', common_specs), # 2014-10-15 + ('xcb-util-image', '0.4.0', common_specs), # 2014-10-15 + ('xcb-util-keysyms', '0.4.0', common_specs), # 2014-10-01 + ('xcb-util-renderutil', '0.3.9', common_specs), # 2014-06-13 + ('xcb-util-wm', '0.4.1', common_specs), # 2014-02-19 + ('xcb-util-cursor', '0.1.3', common_specs), # 2016-05-12 +] + +# Python is required for xcb-proto +allow_system_deps = [ + ('Python', SYS_PYTHON_VERSION), +] +pyshortver = '.'.join(SYS_PYTHON_VERSION.split('.')[0:2]) + +preconfigopts = "if [ ! -f configure ]; then ./autogen.sh; fi && " + +# specify that Bundle easyblock should run a full sanity check, rather than just trying to load the module +full_sanity_check = True + +sanity_check_paths = { + 'files': ['include/X11/Xlib.h', 'include/X11/Xutil.h'], + 'dirs': ['include/GL', 'include/X11', 'include/X11/extensions', 'lib', + 'lib/python%s/site-packages/xcbgen' % pyshortver, 'lib/pkgconfig', 'share/pkgconfig'], +} + +moduleclass = 'vis' -- GitLab From b6fa490e8ed96e8ded075b565a4a99d057492323 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Mon, 26 Jun 2017 16:03:08 +1200 Subject: [PATCH 279/608] Easyconfig for pkg-config --- .../pkg-config-0.29.1-gimkl-2017a.eb | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 easybuild/easyconfigs/p/pkg-config/pkg-config-0.29.1-gimkl-2017a.eb diff --git a/easybuild/easyconfigs/p/pkg-config/pkg-config-0.29.1-gimkl-2017a.eb b/easybuild/easyconfigs/p/pkg-config/pkg-config-0.29.1-gimkl-2017a.eb new file mode 100644 index 0000000000..b2d6e14f04 --- /dev/null +++ b/easybuild/easyconfigs/p/pkg-config/pkg-config-0.29.1-gimkl-2017a.eb @@ -0,0 +1,27 @@ +easyblock = 'ConfigureMake' + +name = 'pkg-config' +version = '0.29.1' + +homepage = 'http://www.freedesktop.org/wiki/Software/pkg-config/' +description = """pkg-config is a helper tool used when compiling applications and libraries. It helps you insert the + correct compiler options on the command line so an application can use + gcc -o test test.c `pkg-config --libs --cflags glib-2.0` + for instance, rather than hard-coding values on where to find glib (or other libraries).""" + +toolchain = {'name': 'gimkl', 'version': '2017a'} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = ['https://pkg-config.freedesktop.org/releases/'] + +# don't use PAX, it might break. +tar_config_opts = True + +configopts = " --with-internal-glib" + +sanity_check_paths = { + 'files': ['bin/pkg-config'], + 'dirs': [], +} + +moduleclass = 'devel' -- GitLab From 75aff1d1a4dab442a22a7ecd9012724d5fad66f2 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Mon, 26 Jun 2017 16:06:35 +1200 Subject: [PATCH 280/608] Remove comments from start of NASM easyconfig --- easybuild/easyconfigs/n/NASM/NASM-2.12.02.eb | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.12.02.eb b/easybuild/easyconfigs/n/NASM/NASM-2.12.02.eb index b96d1d70fb..3c18189624 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.12.02.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.12.02.eb @@ -1,15 +1,3 @@ -## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild -# -# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA -# Authors:: Fotis Georgatos -# License:: MIT/GPL -# $Id$ -# -# This work implements a part of the HPCBIOS project and is a component of the policy: -# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-90.html -## - easyblock = 'ConfigureMake' name = 'NASM' -- GitLab From ce0ca7529a7dafccefe307fc9f985f4b5e9a0204 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Mon, 26 Jun 2017 16:14:19 +1200 Subject: [PATCH 281/608] Swap order of elements in toolchain directive --- easybuild/easyconfigs/s/Szip/Szip-2.1-gimkl-2017a.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/s/Szip/Szip-2.1-gimkl-2017a.eb b/easybuild/easyconfigs/s/Szip/Szip-2.1-gimkl-2017a.eb index 4d2a5188f4..be905d9536 100644 --- a/easybuild/easyconfigs/s/Szip/Szip-2.1-gimkl-2017a.eb +++ b/easybuild/easyconfigs/s/Szip/Szip-2.1-gimkl-2017a.eb @@ -6,7 +6,7 @@ version = '2.1' homepage = 'http://www.hdfgroup.org/doc_resource/SZIP/' description = "Szip compression software, providing lossless compression of scientific data" -toolchain = {'version': '2017a', 'name': 'gimkl'} +toolchain = {'name': 'gimkl', 'version': '2017a'} toolchainopts = {'pic': True} source_urls = ['http://www.hdfgroup.org/ftp/lib-external/szip/%(version)s/src'] -- GitLab From 3da0e4a6bc433a079e03b3ec91cea803e838f7cb Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Mon, 26 Jun 2017 16:20:47 +1200 Subject: [PATCH 282/608] Don't use dummy toolchains in easyconfigs for general consumption --- easybuild/easyconfigs/b/Bison/Bison-3.0.4-gimkl-2017a.eb | 2 +- easybuild/easyconfigs/d/Doxygen/Doxygen-1.8.13-gimkl-2017a.eb | 2 +- easybuild/easyconfigs/f/flex/flex-2.6.3-gimkl-2017a.eb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/easybuild/easyconfigs/b/Bison/Bison-3.0.4-gimkl-2017a.eb b/easybuild/easyconfigs/b/Bison/Bison-3.0.4-gimkl-2017a.eb index 7ef2e128f5..d8b1c076f4 100644 --- a/easybuild/easyconfigs/b/Bison/Bison-3.0.4-gimkl-2017a.eb +++ b/easybuild/easyconfigs/b/Bison/Bison-3.0.4-gimkl-2017a.eb @@ -12,7 +12,7 @@ toolchain = {'name': 'gimkl', 'version': '2017a'} sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] -builddependencies = [('M4', '1.4.17', '', True)] +builddependencies = [('M4', '1.4.17')] sanity_check_paths = { 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"], diff --git a/easybuild/easyconfigs/d/Doxygen/Doxygen-1.8.13-gimkl-2017a.eb b/easybuild/easyconfigs/d/Doxygen/Doxygen-1.8.13-gimkl-2017a.eb index 5872a02692..9772b7c659 100644 --- a/easybuild/easyconfigs/d/Doxygen/Doxygen-1.8.13-gimkl-2017a.eb +++ b/easybuild/easyconfigs/d/Doxygen/Doxygen-1.8.13-gimkl-2017a.eb @@ -11,7 +11,7 @@ sources = ['%(namelower)s-%(version)s.src.tar.gz'] source_urls = ['http://ftp.stack.nl/pub/users/dimitri/'] builddependencies = [ - ('CMake', '3.6.1', '', True), + ('CMake', '3.6.1'), ('flex', '2.6.3'), ('Bison', '3.0.4'), ] diff --git a/easybuild/easyconfigs/f/flex/flex-2.6.3-gimkl-2017a.eb b/easybuild/easyconfigs/f/flex/flex-2.6.3-gimkl-2017a.eb index 6d9bee0a21..69335ad939 100644 --- a/easybuild/easyconfigs/f/flex/flex-2.6.3-gimkl-2017a.eb +++ b/easybuild/easyconfigs/f/flex/flex-2.6.3-gimkl-2017a.eb @@ -13,7 +13,7 @@ source_urls = ['https://github.com/westes/flex/releases/download/v%(version)s/'] checksums = ['a5f65570cd9107ec8a8ec88f17b31bb1'] -dependencies = [('M4', '1.4.17', '', True)] +dependencies = [('M4', '1.4.17')] builddependencies = [ ('Bison', '3.0.4'), ('help2man', '1.47.4'), -- GitLab From 2bcce5cecdbb9d0a6624bae1d28ddef1b03918ff Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Mon, 26 Jun 2017 16:26:25 +1200 Subject: [PATCH 283/608] New EasyConfig for PCRE 8.40 with the gimkl-2017a toolchain --- .../p/PCRE/PCRE-8.40-gimkl-2017a.eb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 easybuild/easyconfigs/p/PCRE/PCRE-8.40-gimkl-2017a.eb diff --git a/easybuild/easyconfigs/p/PCRE/PCRE-8.40-gimkl-2017a.eb b/easybuild/easyconfigs/p/PCRE/PCRE-8.40-gimkl-2017a.eb new file mode 100644 index 0000000000..fedf649f9d --- /dev/null +++ b/easybuild/easyconfigs/p/PCRE/PCRE-8.40-gimkl-2017a.eb @@ -0,0 +1,18 @@ +easyblock = 'ConfigureMake' + +name = 'PCRE' +version = '8.40' + +homepage = 'http://www.pcre.org/' +description = """The PCRE library is a set of functions that implement regular expression pattern matching using + the same syntax and semantics as Perl 5.""" + +toolchain = {'name': 'gimkl', 'version': '2017a'} +toolchainopts = {'pic': True} + +source_urls = [SOURCEFORGE_SOURCE] +sources = [SOURCELOWER_TAR_GZ] + +configopts = "--with-pic --disable-cpp --enable-utf --enable-unicode-properties" + +moduleclass = 'devel' -- GitLab From 27e2bd0676546c6ef7b0b125f9ae58493ed6dc90 Mon Sep 17 00:00:00 2001 From: Sebastien Varrette Date: Mon, 26 Jun 2017 10:12:07 +0200 Subject: [PATCH 284/608] style correction Signed-off-by: Sebastien Varrette --- easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-2017a.eb | 5 ++++- easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-2017a.eb | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-2017a.eb b/easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-2017a.eb index 71712d86cc..69116819bb 100644 --- a/easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-2017a.eb +++ b/easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-2017a.eb @@ -42,7 +42,10 @@ sanity_check_paths = { } postinstallcmds = [ - 'echo "================================================================================\nIMPORTANT: you will have to manually apply the following changes **as root**:\n sudo chown root:root \$EBROOTLIKWID/sbin/likwid-accessD\n sudo chmod u+s \$EBROOTLIKWID/sbin/likwid-accessD\n ================================================================================"' + 'echo "================================================================================"', + 'echo "IMPORTANT: you will have to manually apply the following changes **as root**:"', + 'echo " sudo chown root:root \$EBROOTLIKWID/sbin/likwid-accessD"', + 'echo " sudo chmod u+s \$EBROOTLIKWID/sbin/likwid-accessD"' ] maxparallel = 1 diff --git a/easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-2017a.eb b/easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-2017a.eb index 10441103ad..3c4905b6ef 100644 --- a/easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-2017a.eb +++ b/easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-2017a.eb @@ -41,7 +41,10 @@ sanity_check_paths = { } postinstallcmds = [ - 'echo "================================================================================\nIMPORTANT: you will have to manually apply the following changes **as root**:\n sudo chown root:root \$EBROOTLIKWID/sbin/likwid-accessD\n sudo chmod u+s \$EBROOTLIKWID/sbin/likwid-accessD\n ================================================================================"' + 'echo "================================================================================"', + 'echo "IMPORTANT: you will have to manually apply the following changes **as root**:"', + 'echo " sudo chown root:root \$EBROOTLIKWID/sbin/likwid-accessD"', + 'echo " sudo chmod u+s \$EBROOTLIKWID/sbin/likwid-accessD"' ] maxparallel = 1 -- GitLab From 53adb260f203daec38e2f4c067784bbb96e96d73 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 26 Jun 2017 10:45:24 +0200 Subject: [PATCH 285/608] remove buildopts from HDF5 easyconfigs, taken care of by updated HDF5 easyblock now --- easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-foss-2016b.eb | 2 -- .../easyconfigs/h/HDF5/HDF5-1.10.0-patch1-goolfc-2016.10.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2016b.eb | 2 -- .../easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2017.01.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2017a.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.10.1-intel-2017a.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.12-intel-2016b.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-foss-2015a.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2014b.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2015a.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2015b.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-foss-2015a.eb | 3 --- easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-ictce-7.1.2-serial.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-ictce-7.1.2.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-intel-2015a.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-foss-2015a.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-intel-2015a.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-intel-2015b.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-foss-2015a.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-foss-2015b.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-intel-2015a.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-intel-2015b.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-foss-2015a.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-foss-2016a.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2015b.eb | 2 -- .../easyconfigs/h/HDF5/HDF5-1.8.16-intel-2016.02-GCC-4.9.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2016a.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-iomkl-2016.07.eb | 2 -- .../h/HDF5/HDF5-1.8.16-iomkl-2016.09-GCC-4.9.3-2.25.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-foss-2016a.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-foss-2016b.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016a.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016b-serial.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016b.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-foss-2016b.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-foss-2017a.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2016b.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017.01.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017a-serial.eb | 2 -- easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017a.eb | 2 -- 40 files changed, 81 deletions(-) diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-foss-2016b.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-foss-2016b.eb index 11a5ffcadd..78f22f07df 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-foss-2016b.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-foss-2016b.eb @@ -12,8 +12,6 @@ source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_ma sources = [SOURCELOWER_TAR_GZ] checksums = ['9180ff0ef8dc2ef3f61bd37a7404f295'] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-goolfc-2016.10.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-goolfc-2016.10.eb index 761c68b5eb..826740a3fc 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-goolfc-2016.10.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-goolfc-2016.10.eb @@ -12,8 +12,6 @@ source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_ma sources = [SOURCELOWER_TAR_GZ] checksums = ['9180ff0ef8dc2ef3f61bd37a7404f295'] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2016b.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2016b.eb index 7253681751..73282dd565 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2016b.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2016b.eb @@ -12,8 +12,6 @@ source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_ma sources = [SOURCELOWER_TAR_GZ] checksums = ['9180ff0ef8dc2ef3f61bd37a7404f295'] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2017.01.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2017.01.eb index cb5285d7c5..9319a2c2b1 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2017.01.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2017.01.eb @@ -12,8 +12,6 @@ source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_ma sources = [SOURCELOWER_TAR_GZ] checksums = ['9180ff0ef8dc2ef3f61bd37a7404f295'] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2017a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2017a.eb index 9d04fbcf11..2861eb199d 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2017a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.10.0-patch1-intel-2017a.eb @@ -12,8 +12,6 @@ source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_ma sources = [SOURCELOWER_TAR_GZ] checksums = ['9180ff0ef8dc2ef3f61bd37a7404f295'] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.11'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.10.1-intel-2017a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.10.1-intel-2017a.eb index 2cb7193188..711b3163cb 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.10.1-intel-2017a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.10.1-intel-2017a.eb @@ -12,8 +12,6 @@ source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_ma sources = [SOURCELOWER_TAR_GZ] checksums = ['43a2f9466702fb1db31df98ae6677f15'] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.11'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.12-intel-2016b.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.12-intel-2016b.eb index ba130d5f31..e8c2b7e7ab 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.12-intel-2016b.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.12-intel-2016b.eb @@ -16,8 +16,6 @@ patches = [ 'configure_libtool.patch', ] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-foss-2015a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-foss-2015a.eb index f8f32df424..b6151ce7c1 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-foss-2015a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-foss-2015a.eb @@ -15,8 +15,6 @@ patches = [ 'configure_libtool.patch', ] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2014b.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2014b.eb index 14daa11265..440bfaf4da 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2014b.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2014b.eb @@ -16,8 +16,6 @@ patches = [ 'configure_libtool.patch', ] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2015a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2015a.eb index 901fd44392..1c2e0ae55d 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2015a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2015a.eb @@ -16,8 +16,6 @@ patches = [ 'configure_libtool.patch', ] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2015b.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2015b.eb index 6a1a9188e1..17df3cb04f 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2015b.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.13-intel-2015b.eb @@ -16,8 +16,6 @@ patches = [ 'configure_libtool.patch', ] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-foss-2015a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-foss-2015a.eb index 6720320b04..d1a99fe666 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-foss-2015a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-foss-2015a.eb @@ -1,4 +1,3 @@ -# Built with EasyBuild version 2.2.0dev on 2015-06-16_11-02-41 name = 'HDF5' version = "1.8.14" @@ -16,8 +15,6 @@ patches = [ 'configure_libtool.patch', ] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-ictce-7.1.2-serial.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-ictce-7.1.2-serial.eb index 8708c7b4dd..0fb424c799 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-ictce-7.1.2-serial.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-ictce-7.1.2-serial.eb @@ -17,8 +17,6 @@ patches = [ 'configure_libtool.patch', ] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-ictce-7.1.2.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-ictce-7.1.2.eb index bfef0cbb11..b97088f0e3 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-ictce-7.1.2.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-ictce-7.1.2.eb @@ -16,8 +16,6 @@ patches = [ 'configure_libtool.patch', ] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-intel-2015a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-intel-2015a.eb index 8811c59a40..f04a2bfbbc 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-intel-2015a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.14-intel-2015a.eb @@ -16,8 +16,6 @@ patches = [ 'configure_libtool.patch', ] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-foss-2015a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-foss-2015a.eb index 88e2ae54b1..cc345601a7 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-foss-2015a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-foss-2015a.eb @@ -13,8 +13,6 @@ sources = [SOURCELOWER_TAR_GZ] patches = ['configure_libtool.patch'] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-intel-2015a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-intel-2015a.eb index e5738f0904..0bfd6778dc 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-intel-2015a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-intel-2015a.eb @@ -16,8 +16,6 @@ patches = [ 'configure_libtool.patch', ] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-intel-2015b.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-intel-2015b.eb index b35f180383..e7b7b4e75d 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-intel-2015b.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-intel-2015b.eb @@ -16,8 +16,6 @@ patches = [ 'configure_libtool.patch', ] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-foss-2015a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-foss-2015a.eb index 152a305c88..9514ef2c7b 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-foss-2015a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-foss-2015a.eb @@ -13,8 +13,6 @@ sources = [SOURCELOWER_TAR_GZ] patches = ['configure_libtool.patch'] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-foss-2015b.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-foss-2015b.eb index d234a1dcc1..dde5f4481e 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-foss-2015b.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-foss-2015b.eb @@ -13,8 +13,6 @@ sources = [SOURCELOWER_TAR_GZ] patches = ['configure_libtool.patch'] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-intel-2015a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-intel-2015a.eb index 03fb175bd6..1c3be3c832 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-intel-2015a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-intel-2015a.eb @@ -16,8 +16,6 @@ patches = [ 'configure_libtool.patch', ] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-intel-2015b.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-intel-2015b.eb index 2ddc5c482c..bcba39eb8f 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-intel-2015b.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.15-patch1-intel-2015b.eb @@ -16,8 +16,6 @@ patches = [ 'configure_libtool.patch', ] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-foss-2015a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-foss-2015a.eb index 2309adbc85..bdd56e87c1 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-foss-2015a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-foss-2015a.eb @@ -13,8 +13,6 @@ sources = [SOURCELOWER_TAR_GZ] patches = ['configure_libtool.patch'] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-foss-2016a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-foss-2016a.eb index 67235e28b4..d7f79bf614 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-foss-2016a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-foss-2016a.eb @@ -16,8 +16,6 @@ patches = [ 'configure_libtool.patch', ] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2015b.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2015b.eb index 0903315947..70e4ec54b7 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2015b.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2015b.eb @@ -16,8 +16,6 @@ patches = [ 'configure_libtool.patch', ] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2016.02-GCC-4.9.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2016.02-GCC-4.9.eb index 0aa0ce34f3..11f989ce67 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2016.02-GCC-4.9.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2016.02-GCC-4.9.eb @@ -16,8 +16,6 @@ patches = [ 'configure_libtool.patch', ] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2016a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2016a.eb index cade57c186..22d10bc205 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2016a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-intel-2016a.eb @@ -16,8 +16,6 @@ patches = [ 'configure_libtool.patch', ] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-iomkl-2016.07.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-iomkl-2016.07.eb index feea5f3d11..490c43aea3 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-iomkl-2016.07.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-iomkl-2016.07.eb @@ -13,8 +13,6 @@ sources = [SOURCELOWER_TAR_GZ] patches = ['configure_libtool.patch'] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-iomkl-2016.09-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-iomkl-2016.09-GCC-4.9.3-2.25.eb index 847ddbbde6..9ace13e3df 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-iomkl-2016.09-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.16-iomkl-2016.09-GCC-4.9.3-2.25.eb @@ -13,8 +13,6 @@ sources = [SOURCELOWER_TAR_GZ] patches = ['configure_libtool.patch'] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-foss-2016a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-foss-2016a.eb index 7de9eafbba..2a7c9054f4 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-foss-2016a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-foss-2016a.eb @@ -15,8 +15,6 @@ patches = [ 'configure_libtool.patch', ] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-foss-2016b.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-foss-2016b.eb index 396a16a44d..365f098c88 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-foss-2016b.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-foss-2016b.eb @@ -15,8 +15,6 @@ patches = [ 'configure_libtool.patch', ] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016a.eb index a5deac4990..2dff146ecc 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016a.eb @@ -16,8 +16,6 @@ patches = [ 'configure_libtool.patch', ] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016b-serial.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016b-serial.eb index 529a200b16..e3b8e084ae 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016b-serial.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016b-serial.eb @@ -17,8 +17,6 @@ patches = [ 'configure_libtool.patch', ] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016b.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016b.eb index 24a6c22972..b513c5e0c7 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016b.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.17-intel-2016b.eb @@ -16,8 +16,6 @@ patches = [ 'configure_libtool.patch', ] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-foss-2016b.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-foss-2016b.eb index f6e11b3e6a..a6292e12c4 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-foss-2016b.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-foss-2016b.eb @@ -13,8 +13,6 @@ source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_ma sources = [SOURCELOWER_TAR_GZ] checksums = ['dd2148b740713ca0295442ec683d7b1c'] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-foss-2017a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-foss-2017a.eb index addd6deb8d..fdf33772a9 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-foss-2017a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-foss-2017a.eb @@ -13,8 +13,6 @@ source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_ma sources = [SOURCELOWER_TAR_GZ] checksums = ['dd2148b740713ca0295442ec683d7b1c'] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.11'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2016b.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2016b.eb index 1b22bab5d5..cf96723fc7 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2016b.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2016b.eb @@ -13,8 +13,6 @@ source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_ma sources = [SOURCELOWER_TAR_GZ] checksums = ['dd2148b740713ca0295442ec683d7b1c'] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017.01.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017.01.eb index 52424da991..5619f021d4 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017.01.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017.01.eb @@ -13,8 +13,6 @@ source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_ma sources = [SOURCELOWER_TAR_GZ] checksums = ['dd2148b740713ca0295442ec683d7b1c'] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.8'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017a-serial.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017a-serial.eb index dd0fd05bf2..c33a218cc9 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017a-serial.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017a-serial.eb @@ -14,8 +14,6 @@ source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_ma sources = [SOURCELOWER_TAR_GZ] checksums = ['dd2148b740713ca0295442ec683d7b1c'] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.11'), ('Szip', '2.1'), diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017a.eb index 630ef958f3..861500bc3a 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-intel-2017a.eb @@ -13,8 +13,6 @@ source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_ma sources = [SOURCELOWER_TAR_GZ] checksums = ['dd2148b740713ca0295442ec683d7b1c'] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.11'), ('Szip', '2.1'), -- GitLab From 3bdc067ebd90d148be19a5bc2aa0c959ad8c71ac Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 26 Jun 2017 11:08:04 +0200 Subject: [PATCH 286/608] adding easyconfigs: Pillow-4.1.1-intel-2017a-Python-3.6.1.eb, LibTIFF-4.0.8-intel-2017a.eb --- .../l/LibTIFF/LibTIFF-4.0.8-intel-2017a.eb | 35 +++++++++++++++++++ .../Pillow-4.1.1-intel-2017a-Python-3.6.1.eb | 27 ++++++++++++++ 2 files changed, 62 insertions(+) create mode 100644 easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.8-intel-2017a.eb create mode 100644 easybuild/easyconfigs/p/Pillow/Pillow-4.1.1-intel-2017a-Python-3.6.1.eb diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.8-intel-2017a.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.8-intel-2017a.eb new file mode 100644 index 0000000000..445e665d1d --- /dev/null +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.8-intel-2017a.eb @@ -0,0 +1,35 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# +# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA +# Authors:: Fotis Georgatos , Alan O'Cais (JSC) +# License:: MIT/GPL +# $Id$ +# +# This work implements a part of the HPCBIOS project and is a component of the policy: +# http://hpcbios.readthedocs.org/en/latest/ +## +easyblock = 'ConfigureMake' + +name = 'LibTIFF' +version = '4.0.8' + +homepage = 'http://www.remotesensing.org/libtiff/' +description = "tiff: Library and tools for reading and writing TIFF data files" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [ + 'http://download.osgeo.org/libtiff/', + 'ftp://ftp.remotesensing.org/pub/libtiff/', +] +sources = ['tiff-%(version)s.tar.gz'] + +configopts = " --enable-ld-version-script " + +sanity_check_paths = { + 'files': ['bin/tiffinfo'], + 'dirs': [], +} + +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/p/Pillow/Pillow-4.1.1-intel-2017a-Python-3.6.1.eb b/easybuild/easyconfigs/p/Pillow/Pillow-4.1.1-intel-2017a-Python-3.6.1.eb new file mode 100644 index 0000000000..9ff0d2f498 --- /dev/null +++ b/easybuild/easyconfigs/p/Pillow/Pillow-4.1.1-intel-2017a-Python-3.6.1.eb @@ -0,0 +1,27 @@ +easyblock = 'PythonPackage' + +name = 'Pillow' +version = '4.1.1' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://pillow.readthedocs.org/' +description = """Pillow is the 'friendly PIL fork' by Alex Clark and Contributors. + PIL is the Python Imaging Library by Fredrik Lundh and Contributors.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [PYPI_SOURCE] +sources = [SOURCE_TAR_GZ] + +dependencies = [ + ('Python', '3.6.1'), + ('libjpeg-turbo', '1.5.1'), + ('libpng', '1.6.28'), + ('zlib', '1.2.11'), + ('LibTIFF', '4.0.8'), + ('freetype', '2.7.1'), +] + +options = {'modulename': 'PIL'} + +moduleclass = 'vis' -- GitLab From 28501e6024f2cc8cce162fbd8a9da5ac29a5a3c0 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 26 Jun 2017 11:31:24 +0200 Subject: [PATCH 287/608] adding easyconfigs: EasyBuild-3.3.0.eb --- .../e/EasyBuild/EasyBuild-3.3.0.eb | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.3.0.eb diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.3.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.3.0.eb new file mode 100644 index 0000000000..c11a0f20c4 --- /dev/null +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.3.0.eb @@ -0,0 +1,38 @@ +easyblock = 'EB_EasyBuildMeta' + +name = 'EasyBuild' +version = '3.3.0' + +homepage = 'http://hpcugent.github.com/easybuild/' +description = """EasyBuild is a software build and installation framework + written in Python that allows you to install software in a structured, + repeatable and robust way.""" + +toolchain = {'name': 'dummy', 'version': 'dummy'} + +source_urls = [ + # vsc-install + 'https://pypi.python.org/packages/82/ec/19d85d2bb91b562195d00db9ac82d7529904e7eabc0597720966bf74714f/', + # vsc-base + 'https://pypi.python.org/packages/f7/66/1ff7ecc4a93ba37e063f5bfbe395e95a547b1dec73b017c2724f4475a958/', + # easybuild-framework + 'https://pypi.python.org/packages/b6/8b/383298ddd7718b8455b26719d39c686105ccdba55b66bdd0971ac0a69d70/', + # easybuild-easyblocks + 'https://pypi.python.org/packages/1d/3d/53ea1c02d7a77fcc6c1aa6620a8a6f2e45d3fddf9657919b749c4834b4fb/', + # easybuild-easyconfigs + 'https://pypi.python.org/packages/c8/c0/829c6ddd864f9980c09eb5acec7dc8ece747831f6f3b76852f2796a563fb/', +] +# order matters a lot, to avoid having dependencies auto-resolved (--no-deps easy_install option doesn't work?) +sources = [ + 'vsc-install-0.10.26.tar.gz', + 'vsc-base-2.5.8.tar.gz', + 'easybuild-framework-%(version)s.tar.gz', + 'easybuild-easyblocks-%(version)s.tar.gz', + 'easybuild-easyconfigs-%(version)s.tar.gz', +] + +# EasyBuild is a (set of) Python packages, so it depends on Python +# usually, we want to use the system Python, so no actual Python dependency is listed +allow_system_deps = [('Python', SYS_PYTHON_VERSION)] + +moduleclass = 'tools' -- GitLab From a090242c71d1ea9d38d0ba628e1436a8ad310884 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 26 Jun 2017 11:47:56 +0200 Subject: [PATCH 288/608] bump version to 3.3.1.dev0 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2c5a5b79d5..6a0698539f 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ from distutils import log # recent setuptools versions will *TRANSFORM* something like 'X.Y.Zdev' into 'X.Y.Z.dev0', with a warning like # UserWarning: Normalizing '2.4.0dev' to '2.4.0.dev0' # This causes problems further up the dependency chain... -VERSION = '3.3.0' +VERSION = '3.3.1.dev0' API_VERSION = VERSION.split('.')[0] EB_VERSION = '.'.join(VERSION.split('.')[0:2]) -- GitLab From 636479585cc04f247c378192dea2f15e663712f7 Mon Sep 17 00:00:00 2001 From: Adam Huffman Date: Mon, 26 Jun 2017 12:18:35 +0100 Subject: [PATCH 289/608] adding easyconfigs: pigz-2.3.3-foss-2016b.eb --- .../p/pigz/pigz-2.3.3-foss-2016b.eb | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100755 easybuild/easyconfigs/p/pigz/pigz-2.3.3-foss-2016b.eb diff --git a/easybuild/easyconfigs/p/pigz/pigz-2.3.3-foss-2016b.eb b/easybuild/easyconfigs/p/pigz/pigz-2.3.3-foss-2016b.eb new file mode 100755 index 0000000000..8790ec7dca --- /dev/null +++ b/easybuild/easyconfigs/p/pigz/pigz-2.3.3-foss-2016b.eb @@ -0,0 +1,40 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# Author: Pablo Escobar Lopez +# Swiss Institute of Bioinformatics +# Biozentrum - University of Basel + +easyblock = 'MakeCp' + +name = 'pigz' +version = '2.3.3' + +homepage = 'http://zlib.net/pigz/' +description = """ pigz, which stands for parallel implementation of gzip, is a fully + functional replacement for gzip that exploits multiple processors and multiple cores + to the hilt when compressing data. pigz was written by Mark Adler, and uses the zlib + and pthread libraries. """ + +toolchain = {'name': 'foss', 'version': '2016b'} + +source_urls = ['https://github.com/madler/pigz/archive/'] +sources = ['v%(version)s.tar.gz'] +checksums = ['fb80e8d31498226c99fe8c8b3d19364d'] + +# Patch Makefile so zlib provided by EasyBuild is picked up +patches = ['pigz-2.3.3_Makefile.patch'] + +# README recommends zlib 1.2.6 or higher +dependencies = [('zlib', '1.2.8')] + +buildopts = ' CC=$CC' + +parallel = 1 + +files_to_copy = [(["pigz", "unpigz"], "bin")] + +sanity_check_paths = { + 'files': ["bin/pigz", "bin/unpigz"], + 'dirs': [""], +} + +moduleclass = 'tools' -- GitLab From b9b12caa32774c49bace9f7d0ceca68c6e838ce7 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 26 Jun 2017 14:44:42 +0200 Subject: [PATCH 290/608] update deps in Pillow 4.1.1 easyconfig to libpng 1.6.29 --- .../p/Pillow/Pillow-4.1.1-intel-2017a-Python-3.6.1.eb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/p/Pillow/Pillow-4.1.1-intel-2017a-Python-3.6.1.eb b/easybuild/easyconfigs/p/Pillow/Pillow-4.1.1-intel-2017a-Python-3.6.1.eb index 9ff0d2f498..7e73af7e4a 100644 --- a/easybuild/easyconfigs/p/Pillow/Pillow-4.1.1-intel-2017a-Python-3.6.1.eb +++ b/easybuild/easyconfigs/p/Pillow/Pillow-4.1.1-intel-2017a-Python-3.6.1.eb @@ -16,10 +16,10 @@ sources = [SOURCE_TAR_GZ] dependencies = [ ('Python', '3.6.1'), ('libjpeg-turbo', '1.5.1'), - ('libpng', '1.6.28'), + ('libpng', '1.6.29'), ('zlib', '1.2.11'), ('LibTIFF', '4.0.8'), - ('freetype', '2.7.1'), + ('freetype', '2.7.1', '-libpng-1.6.29'), ] options = {'modulename': 'PIL'} -- GitLab From 414906407f3a7258177e56dc1b15b0b95fe023af Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 26 Jun 2017 15:00:22 +0200 Subject: [PATCH 291/608] adding easyconfigs: Tensorflow-1.2.0-intel-2017a-Python-3.6.1.eb, Keras-2.0.5-intel-2017a-Python-3.6.1.eb --- .../Keras-2.0.5-intel-2017a-Python-3.6.1.eb | 31 ++++++++++++ ...nsorflow-1.2.0-intel-2017a-Python-3.6.1.eb | 48 +++++++++++++++++++ 2 files changed, 79 insertions(+) create mode 100644 easybuild/easyconfigs/k/Keras/Keras-2.0.5-intel-2017a-Python-3.6.1.eb create mode 100755 easybuild/easyconfigs/t/Tensorflow/Tensorflow-1.2.0-intel-2017a-Python-3.6.1.eb diff --git a/easybuild/easyconfigs/k/Keras/Keras-2.0.5-intel-2017a-Python-3.6.1.eb b/easybuild/easyconfigs/k/Keras/Keras-2.0.5-intel-2017a-Python-3.6.1.eb new file mode 100644 index 0000000000..105d38b643 --- /dev/null +++ b/easybuild/easyconfigs/k/Keras/Keras-2.0.5-intel-2017a-Python-3.6.1.eb @@ -0,0 +1,31 @@ +easyblock = 'PythonPackage' + +name = 'Keras' +version = '2.0.5' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'https://keras.io/' +description = """Keras is a minimalist, highly modular neural networks library, written in Python and +capable of running on top of either TensorFlow or Theano.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [PYPI_SOURCE] +sources = [SOURCE_TAR_GZ] + +dependencies = [ + ('Python', '3.6.1'), + ('Theano', '0.9.0', versionsuffix), + ('h5py', '2.7.0', '%(versionsuffix)s'), + ('PyYAML', '3.12', versionsuffix), +] + +# it defaults to Tensorflow +modextravars = {'KERAS_BACKEND': 'theano'} + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages'], +} + +moduleclass = 'math' diff --git a/easybuild/easyconfigs/t/Tensorflow/Tensorflow-1.2.0-intel-2017a-Python-3.6.1.eb b/easybuild/easyconfigs/t/Tensorflow/Tensorflow-1.2.0-intel-2017a-Python-3.6.1.eb new file mode 100755 index 0000000000..b53e9967d6 --- /dev/null +++ b/easybuild/easyconfigs/t/Tensorflow/Tensorflow-1.2.0-intel-2017a-Python-3.6.1.eb @@ -0,0 +1,48 @@ +easyblock = 'Bundle' + +name = 'Tensorflow' +version = '1.2.0' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'https://www.tensorflow.org/' +description = "An open-source software library for Machine Intelligence" + +toolchain = {'name': 'intel', 'version': '2017a'} + +pymaj = '3' +pymin = '6' +pyver = pymaj + pymin + +# this is a bundle of Python packages +exts_defaultclass = 'PythonPackage' + +dependencies = [ + ('Python', '%s.%s.1' % (pymaj, pymin)), + ('protobuf-python', '3.3.0', versionsuffix), +] + +exts_list = [ + ('backports.weakref', '1.0rc1', { + 'modulename': 'backports.weakref', + 'source_urls': ['https://pypi.python.org/packages/source/b/backports.weakref'], + }), + ('tensorflow', version, { + 'source_urls': ['https://pypi.python.org/packages/source/t/tensorflow'], + 'source_tmpl': 'tensorflow-%%(version)s-cp%(pyver)s-cp%(pyver)sm-manylinux1_x86_64.whl' % {'pyver': pyver}, + 'checksums': ['a3835274cddd9c5b5a752e39b34c31a2d3d80e0ebcb5488e2dafaf3d614391d1'], + 'use_pip': True, + 'unpack_sources': False, + }), +] + +# specify that Bundle easyblock should run a full sanity check, rather than just trying to load the module +full_sanity_check = True + +sanity_check_paths = { + 'files': ['bin/tensorboard'], + 'dirs': ['lib/python%(pyshortver)s/site-packages'], +} + +modextrapaths = {'PYTHONPATH': ['lib/python%(pyshortver)s/site-packages']} + +moduleclass = 'lib' -- GitLab From 31b1bb5706b89652d2e446552353f53d117bfc26 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 26 Jun 2017 15:02:34 +0200 Subject: [PATCH 292/608] {data}[intel/2017a] scikit-learn v0.18.2 --- ...-intel-2017a-Python-3.6.1-libpng-1.6.29.eb | 44 +++++++++++++++++++ ...t-learn-0.18.2-intel-2017a-Python-3.6.1.eb | 30 +++++++++++++ 2 files changed, 74 insertions(+) create mode 100644 easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-intel-2017a-Python-3.6.1-libpng-1.6.29.eb create mode 100755 easybuild/easyconfigs/s/scikit-learn/scikit-learn-0.18.2-intel-2017a-Python-3.6.1.eb diff --git a/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-intel-2017a-Python-3.6.1-libpng-1.6.29.eb b/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-intel-2017a-Python-3.6.1-libpng-1.6.29.eb new file mode 100644 index 0000000000..bc8e86d8ca --- /dev/null +++ b/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-intel-2017a-Python-3.6.1-libpng-1.6.29.eb @@ -0,0 +1,44 @@ +easyblock = 'Bundle' + +name = 'matplotlib' +version = '2.0.2' +libpng_ver = '1.6.29' +versionsuffix = '-Python-%%(pyver)s-libpng-%s' % libpng_ver + +homepage = 'http://matplotlib.org' +description = """matplotlib is a python 2D plotting library which produces publication quality figures in a variety of + hardcopy formats and interactive environments across platforms. matplotlib can be used in python scripts, the python + and ipython shell, web application servers, and six graphical user interface toolkits.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +# this is a bundle of Python packages +exts_defaultclass = 'PythonPackage' + +dependencies = [ + ('Python', '3.6.1'), + ('freetype', '2.7.1', '-libpng-%s' % libpng_ver), +] + +exts_list = [ + ('Cycler', '0.10.0', { + 'modulename': 'cycler', + 'source_urls': ['https://pypi.python.org/packages/source/C/Cycler'], + 'source_tmpl': 'cycler-%(version)s.tar.gz', + }), + (name, version, { + 'source_urls': ['https://pypi.python.org/packages/source/m/matplotlib'], + }), +] + +# specify that Bundle easyblock should run a full sanity check, rather than just trying to load the module +full_sanity_check = True + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages'], +} + +modextrapaths = {'PYTHONPATH': ['lib/python%(pyshortver)s/site-packages']} + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/s/scikit-learn/scikit-learn-0.18.2-intel-2017a-Python-3.6.1.eb b/easybuild/easyconfigs/s/scikit-learn/scikit-learn-0.18.2-intel-2017a-Python-3.6.1.eb new file mode 100755 index 0000000000..680d9601f6 --- /dev/null +++ b/easybuild/easyconfigs/s/scikit-learn/scikit-learn-0.18.2-intel-2017a-Python-3.6.1.eb @@ -0,0 +1,30 @@ +easyblock = 'PythonPackage' + +name = 'scikit-learn' +version = '0.18.2' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://scikit-learn.org/stable/index.html' +description = """Scikit-learn integrates machine learning algorithms in the tightly-knit scientific Python world, +building upon numpy, scipy, and matplotlib. As a machine-learning module, +it provides versatile tools for data mining and analysis in any field of science and engineering. +It strives to be simple and efficient, accessible to everybody, and reusable in various contexts.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [PYPI_SOURCE] +sources = [SOURCE_TAR_GZ] + +dependencies = [ + ('Python', '3.6.1'), + ('matplotlib', '2.0.2', versionsuffix + '-libpng-1.6.29'), +] + +options = {'modulename': 'sklearn'} + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages/sklearn'], +} + +moduleclass = 'data' -- GitLab From edfc142e8ef45b89d1da2ebd045f26dc9717a662 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 26 Jun 2017 18:28:31 +0200 Subject: [PATCH 293/608] use PYPI_SOURCE as source URL in Tensorflow easyconfigs --- .../t/Tensorflow/Tensorflow-0.12.1-foss-2016b-Python-2.7.12.eb | 2 +- .../t/Tensorflow/Tensorflow-0.12.1-foss-2016b-Python-3.5.2.eb | 2 +- .../t/Tensorflow/Tensorflow-0.12.1-intel-2016b-Python-2.7.12.eb | 2 +- .../t/Tensorflow/Tensorflow-0.12.1-intel-2016b-Python-3.5.2.eb | 2 +- .../t/Tensorflow/Tensorflow-1.0.1-intel-2016b-Python-2.7.12.eb | 2 +- .../t/Tensorflow/Tensorflow-1.0.1-intel-2016b-Python-3.5.2.eb | 2 +- .../t/Tensorflow/Tensorflow-1.1.0-intel-2017a-Python-2.7.13.eb | 2 +- .../t/Tensorflow/Tensorflow-1.1.0-intel-2017a-Python-3.6.1.eb | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/easybuild/easyconfigs/t/Tensorflow/Tensorflow-0.12.1-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/t/Tensorflow/Tensorflow-0.12.1-foss-2016b-Python-2.7.12.eb index b94ca618c9..3dc06f1df1 100755 --- a/easybuild/easyconfigs/t/Tensorflow/Tensorflow-0.12.1-foss-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/t/Tensorflow/Tensorflow-0.12.1-foss-2016b-Python-2.7.12.eb @@ -13,7 +13,7 @@ pymaj = '2' pymin = '7' pymajmin = pymaj + pymin -source_urls = ['https://pypi.python.org/packages/7e/c6/837f4e249aae5c86a632eaaa9779e601eca1487772f8ad75c347bf9e813f/'] +source_urls = [PYPI_SOURCE] sources = [ 'tensorflow-%%(version)s-cp%(pymajmin)s-cp%(pymajmin)smu-manylinux1_x86_64.whl' % {'pymajmin': pymajmin}, ] diff --git a/easybuild/easyconfigs/t/Tensorflow/Tensorflow-0.12.1-foss-2016b-Python-3.5.2.eb b/easybuild/easyconfigs/t/Tensorflow/Tensorflow-0.12.1-foss-2016b-Python-3.5.2.eb index d8b2947422..6dc066128b 100755 --- a/easybuild/easyconfigs/t/Tensorflow/Tensorflow-0.12.1-foss-2016b-Python-3.5.2.eb +++ b/easybuild/easyconfigs/t/Tensorflow/Tensorflow-0.12.1-foss-2016b-Python-3.5.2.eb @@ -13,7 +13,7 @@ pymaj = '3' pymin = '5' pymajmin = pymaj + pymin -source_urls = ['https://pypi.python.org/packages/e5/5c/56e6522fdcd6f8739dcbc4de62e8b0040e141785bb42e5b53a83b0ba3e58/'] +source_urls = [PYPI_SOURCE] sources = [ 'tensorflow-%%(version)s-cp%(pymajmin)s-cp%(pymajmin)sm-manylinux1_x86_64.whl' % {'pymajmin': pymajmin}, ] diff --git a/easybuild/easyconfigs/t/Tensorflow/Tensorflow-0.12.1-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/t/Tensorflow/Tensorflow-0.12.1-intel-2016b-Python-2.7.12.eb index 8ccd735bee..c374b3a8a7 100755 --- a/easybuild/easyconfigs/t/Tensorflow/Tensorflow-0.12.1-intel-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/t/Tensorflow/Tensorflow-0.12.1-intel-2016b-Python-2.7.12.eb @@ -13,7 +13,7 @@ pymaj = '2' pymin = '7' pymajmin = pymaj + pymin -source_urls = ['https://pypi.python.org/packages/7e/c6/837f4e249aae5c86a632eaaa9779e601eca1487772f8ad75c347bf9e813f/'] +source_urls = [PYPI_SOURCE] sources = [ 'tensorflow-%%(version)s-cp%(pymajmin)s-cp%(pymajmin)smu-manylinux1_x86_64.whl' % {'pymajmin': pymajmin}, ] diff --git a/easybuild/easyconfigs/t/Tensorflow/Tensorflow-0.12.1-intel-2016b-Python-3.5.2.eb b/easybuild/easyconfigs/t/Tensorflow/Tensorflow-0.12.1-intel-2016b-Python-3.5.2.eb index 4898d79427..bbe2973b53 100644 --- a/easybuild/easyconfigs/t/Tensorflow/Tensorflow-0.12.1-intel-2016b-Python-3.5.2.eb +++ b/easybuild/easyconfigs/t/Tensorflow/Tensorflow-0.12.1-intel-2016b-Python-3.5.2.eb @@ -13,7 +13,7 @@ pymaj = '3' pymin = '5' pymajmin = pymaj + pymin -source_urls = ['https://pypi.python.org/packages/e5/5c/56e6522fdcd6f8739dcbc4de62e8b0040e141785bb42e5b53a83b0ba3e58/'] +source_urls = [PYPI_SOURCE] sources = [ 'tensorflow-%%(version)s-cp%(pymajmin)s-cp%(pymajmin)sm-manylinux1_x86_64.whl' % {'pymajmin': pymajmin}, ] diff --git a/easybuild/easyconfigs/t/Tensorflow/Tensorflow-1.0.1-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/t/Tensorflow/Tensorflow-1.0.1-intel-2016b-Python-2.7.12.eb index f1c3f15e89..d6e4c6cbb3 100755 --- a/easybuild/easyconfigs/t/Tensorflow/Tensorflow-1.0.1-intel-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/t/Tensorflow/Tensorflow-1.0.1-intel-2016b-Python-2.7.12.eb @@ -13,7 +13,7 @@ pymaj = '2' pymin = '7' pymajmin = pymaj + pymin -source_urls = ['https://pypi.python.org/packages/7e/7c/f398393beab1647be0a5e6974b8a34e4ea2d3cb7bd9e38bd43a657ed27d1/'] +source_urls = [PYPI_SOURCE] sources = [ 'tensorflow-%%(version)s-cp%(pymajmin)s-cp%(pymajmin)smu-manylinux1_x86_64.whl' % {'pymajmin': pymajmin}, ] diff --git a/easybuild/easyconfigs/t/Tensorflow/Tensorflow-1.0.1-intel-2016b-Python-3.5.2.eb b/easybuild/easyconfigs/t/Tensorflow/Tensorflow-1.0.1-intel-2016b-Python-3.5.2.eb index 42b703619c..293d4b8557 100755 --- a/easybuild/easyconfigs/t/Tensorflow/Tensorflow-1.0.1-intel-2016b-Python-3.5.2.eb +++ b/easybuild/easyconfigs/t/Tensorflow/Tensorflow-1.0.1-intel-2016b-Python-3.5.2.eb @@ -13,7 +13,7 @@ pymaj = '3' pymin = '5' pymajmin = pymaj + pymin -source_urls = ['https://pypi.python.org/packages/1f/38/c255432f18005362dd2459e3bff2b2411eb7d02ca09fa20ee1dd1311f69f/'] +source_urls = [PYPI_SOURCE] sources = [ 'tensorflow-%%(version)s-cp%(pymajmin)s-cp%(pymajmin)sm-manylinux1_x86_64.whl' % {'pymajmin': pymajmin}, ] diff --git a/easybuild/easyconfigs/t/Tensorflow/Tensorflow-1.1.0-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/t/Tensorflow/Tensorflow-1.1.0-intel-2017a-Python-2.7.13.eb index a6aec94f18..c3e49d93e0 100755 --- a/easybuild/easyconfigs/t/Tensorflow/Tensorflow-1.1.0-intel-2017a-Python-2.7.13.eb +++ b/easybuild/easyconfigs/t/Tensorflow/Tensorflow-1.1.0-intel-2017a-Python-2.7.13.eb @@ -13,7 +13,7 @@ pymaj = '2' pymin = '7' pymajmin = pymaj + pymin -source_urls = ['https://pypi.python.org/packages/8a/73/74c610decd5e0a1fd7f441a32e3561d21c28ced98fd6d3d9d5c70dbf92ce/'] +source_urls = [PYPI_SOURCE] sources = [ 'tensorflow-%%(version)s-cp%(pymajmin)s-cp%(pymajmin)smu-manylinux1_x86_64.whl' % {'pymajmin': pymajmin}, ] diff --git a/easybuild/easyconfigs/t/Tensorflow/Tensorflow-1.1.0-intel-2017a-Python-3.6.1.eb b/easybuild/easyconfigs/t/Tensorflow/Tensorflow-1.1.0-intel-2017a-Python-3.6.1.eb index f134b5be2b..1dd71b4078 100755 --- a/easybuild/easyconfigs/t/Tensorflow/Tensorflow-1.1.0-intel-2017a-Python-3.6.1.eb +++ b/easybuild/easyconfigs/t/Tensorflow/Tensorflow-1.1.0-intel-2017a-Python-3.6.1.eb @@ -13,7 +13,7 @@ pymaj = '3' pymin = '6' pymajmin = pymaj + pymin -source_urls = ['https://pypi.python.org/packages/cd/e4/b2a8bcd1fa689489050386ec70c5c547e4a75d06f2cc2b55f45463cd092c/'] +source_urls = [PYPI_SOURCE] sources = [ 'tensorflow-%%(version)s-cp%(pymajmin)s-cp%(pymajmin)sm-manylinux1_x86_64.whl' % {'pymajmin': pymajmin}, ] -- GitLab From 4df0c777484c5d495616eabae7e19bdebcc8efd3 Mon Sep 17 00:00:00 2001 From: Yann Pouillon Date: Tue, 27 Jun 2017 10:39:37 +0200 Subject: [PATCH 294/608] Removed trailing blank lines as requested --- .../easyconfigs/a/ASE/ASE-3.13.0-foss-2016b-Python-2.7.12.eb | 1 - 1 file changed, 1 deletion(-) diff --git a/easybuild/easyconfigs/a/ASE/ASE-3.13.0-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/a/ASE/ASE-3.13.0-foss-2016b-Python-2.7.12.eb index 52093a758b..4228f89c2f 100644 --- a/easybuild/easyconfigs/a/ASE/ASE-3.13.0-foss-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/a/ASE/ASE-3.13.0-foss-2016b-Python-2.7.12.eb @@ -25,4 +25,3 @@ sanity_check_paths = { } moduleclass = 'chem' - -- GitLab From 43f181fa53e7e1f9750613a977c6348a51770e4c Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 27 Jun 2017 11:31:36 +0200 Subject: [PATCH 295/608] {math}[intel/2017a] numpy 1.13.0 --- .../numpy-1.13.0-intel-2017a-Python-2.7.13.eb | 26 ++++++ .../n/numpy/numpy-1.13.0_fix-intel.patch | 83 +++++++++++++++++++ 2 files changed, 109 insertions(+) create mode 100644 easybuild/easyconfigs/n/numpy/numpy-1.13.0-intel-2017a-Python-2.7.13.eb create mode 100644 easybuild/easyconfigs/n/numpy/numpy-1.13.0_fix-intel.patch diff --git a/easybuild/easyconfigs/n/numpy/numpy-1.13.0-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/n/numpy/numpy-1.13.0-intel-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..d0c0134be7 --- /dev/null +++ b/easybuild/easyconfigs/n/numpy/numpy-1.13.0-intel-2017a-Python-2.7.13.eb @@ -0,0 +1,26 @@ +name = 'numpy' +version = '1.13.0' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://www.numpy.org' +description = """NumPy is the fundamental package for scientific computing with Python. It contains among other things: + a powerful N-dimensional array object, sophisticated (broadcasting) functions, tools for integrating C/C++ and Fortran + code, useful linear algebra, Fourier transform, and random number capabilities. Besides its obvious scientific uses, + NumPy can also be used as an efficient multi-dimensional container of generic data. Arbitrary data-types can be + defined. This allows NumPy to seamlessly and speedily integrate with a wide variety of databases.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [PYPI_SOURCE] +sources = [SOURCE_ZIP] + +patches = [ + 'numpy-1.12.0-mkl.patch', + 'numpy-%(version)s_fix-intel.patch', +] + +dependencies = [ + ('Python', '2.7.13'), +] + +moduleclass = 'math' diff --git a/easybuild/easyconfigs/n/numpy/numpy-1.13.0_fix-intel.patch b/easybuild/easyconfigs/n/numpy/numpy-1.13.0_fix-intel.patch new file mode 100644 index 0000000000..ea2a355828 --- /dev/null +++ b/easybuild/easyconfigs/n/numpy/numpy-1.13.0_fix-intel.patch @@ -0,0 +1,83 @@ +see https://github.com/numpy/numpy/issues/9278 and https://github.com/numpy/numpy/pull/9285 +diff --git a/numpy/distutils/ccompiler.py b/numpy/distutils/ccompiler.py +index 93ef4587c26..bbc3923bd6d 100644 +--- a/numpy/distutils/ccompiler.py ++++ b/numpy/distutils/ccompiler.py +@@ -80,6 +80,7 @@ def _needs_build(obj, cc_args, extra_postargs, pp_opts): + + return False + ++ + def replace_method(klass, method_name, func): + if sys.version_info[0] < 3: + m = types.MethodType(func, None, klass) +@@ -88,6 +89,25 @@ def replace_method(klass, method_name, func): + m = lambda self, *args, **kw: func(self, *args, **kw) + setattr(klass, method_name, m) + ++ ++###################################################################### ++## Method that subclasses may redefine. But don't call this method, ++## it i private to CCompiler class and may return unexpected ++## results if used elsewhere. So, you have been warned.. ++ ++def CCompiler_find_executables(self): ++ """ ++ Does nothing here, but is called by the get_version method and can be ++ overridden by subclasses. In particular it is redefined in the `FCompiler` ++ class where more documentation can be found. ++ ++ """ ++ pass ++ ++ ++replace_method(CCompiler, 'find_executables', CCompiler_find_executables) ++ ++ + # Using customized CCompiler.spawn. + def CCompiler_spawn(self, cmd, display=None): + """ +diff --git a/numpy/distutils/fcompiler/intel.py b/numpy/distutils/fcompiler/intel.py +index eb6150201c2..4dee8492f9b 100644 +--- a/numpy/distutils/fcompiler/intel.py ++++ b/numpy/distutils/fcompiler/intel.py +@@ -57,7 +57,7 @@ def get_flags(self): + + def get_flags_opt(self): # Scipy test failures with -O2 + v = self.get_version() +- mpopt = 'openmp' if v and int(v.split('.')[0]) < 15 else 'qopenmp' ++ mpopt = 'openmp' if v and v < '15' else 'qopenmp' + return ['-xhost -fp-model strict -O1 -{}'.format(mpopt)] + + def get_flags_arch(self): +@@ -123,7 +123,7 @@ def get_flags(self): + + def get_flags_opt(self): # Scipy test failures with -O2 + v = self.get_version() +- mpopt = 'openmp' if v and int(v.split('.')[0]) < 15 else 'qopenmp' ++ mpopt = 'openmp' if v and v < '15' else 'qopenmp' + return ['-fp-model strict -O1 -{}'.format(mpopt)] + + def get_flags_arch(self): +diff --git a/numpy/distutils/intelccompiler.py b/numpy/distutils/intelccompiler.py +index 3b7756b598c..3386775ee56 100644 +--- a/numpy/distutils/intelccompiler.py ++++ b/numpy/distutils/intelccompiler.py +@@ -19,7 +19,7 @@ def __init__(self, verbose=0, dry_run=0, force=0): + UnixCCompiler.__init__(self, verbose, dry_run, force) + + v = self.get_version() +- mpopt = 'openmp' if v and int(v.split('.')[0]) < 15 else 'qopenmp' ++ mpopt = 'openmp' if v and v < '15' else 'qopenmp' + self.cc_exe = ('icc -fPIC -fp-model strict -O3 ' + '-fomit-frame-pointer -{}').format(mpopt) + compiler = self.cc_exe +@@ -59,7 +59,7 @@ def __init__(self, verbose=0, dry_run=0, force=0): + UnixCCompiler.__init__(self, verbose, dry_run, force) + + v = self.get_version() +- mpopt = 'openmp' if v and int(v.split('.')[0]) < 15 else 'qopenmp' ++ mpopt = 'openmp' if v and v < '15' else 'qopenmp' + self.cc_exe = ('icc -m64 -fPIC -fp-model strict -O3 ' + '-fomit-frame-pointer -{}').format(mpopt) + compiler = self.cc_exe -- GitLab From 166c15ac70dc57c777ab5145b36526779176664e Mon Sep 17 00:00:00 2001 From: Sebastien Varrette Date: Tue, 27 Jun 2017 11:40:54 +0200 Subject: [PATCH 296/608] reuse common default patch Signed-off-by: Sebastien Varrette --- easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-2017a.eb | 2 +- easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-2017a.eb | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-2017a.eb b/easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-2017a.eb index 69116819bb..6fabae1ced 100644 --- a/easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-2017a.eb +++ b/easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-2017a.eb @@ -26,7 +26,7 @@ toolchainopts = {'pic': True} source_urls = ['https://github.com/RRZE-HPC/likwid/archive/'] sources = ['%(version)s.tar.gz'] -patches = ['likwid-%(version)s-foss-config-mk.patch'] +patches = ['likwid-%(version)s-config-mk.patch'] builddependencies = [('binutils', '2.27')] diff --git a/easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-2017a.eb b/easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-2017a.eb index 3c4905b6ef..c694c1cfac 100644 --- a/easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-2017a.eb +++ b/easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-2017a.eb @@ -25,12 +25,12 @@ toolchainopts = {'pic': True} source_urls = ['https://github.com/RRZE-HPC/likwid/archive/'] sources = ['%(version)s.tar.gz'] -patches = ['likwid-%(version)s-intel-config-mk.patch'] +patches = ['likwid-%(version)s-config-mk.patch'] builddependencies = [('binutils', '2.27')] skipsteps = ['configure'] -buildopts = 'CC="$CC" CFLAGS="$CFLAGS -std=c99" PREFIX=%(installdir)s' +buildopts = 'COMPILER="ICC" CC="$CC" CFLAGS="$CFLAGS -std=c99" PREFIX=%(installdir)s' installopts = 'PREFIX=%(installdir)s' sanity_check_paths = { -- GitLab From d1e4eec86e7e686c44091c8cf8f8184b00d73dd0 Mon Sep 17 00:00:00 2001 From: Sebastien Varrette Date: Tue, 27 Jun 2017 12:00:51 +0200 Subject: [PATCH 297/608] remove useless (additional) patch files Signed-off-by: Sebastien Varrette --- .../likwid/likwid-4.2.0-foss-config-mk.patch | 40 --------------- .../likwid/likwid-4.2.0-intel-config-mk.patch | 49 ------------------- 2 files changed, 89 deletions(-) delete mode 100644 easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-config-mk.patch delete mode 100644 easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-config-mk.patch diff --git a/easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-config-mk.patch b/easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-config-mk.patch deleted file mode 100644 index c1de1bdb80..0000000000 --- a/easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-config-mk.patch +++ /dev/null @@ -1,40 +0,0 @@ ---- likwid-likwid-4.2.orig/config.mk 2016-12-22 13:22:23.000000000 +0100 -+++ likwid-likwid-4.2/config.mk 2017-06-19 14:36:15.521398000 +0200 -@@ -9,7 +9,7 @@ - COLOR = BLUE#NO SPACE - - # Path were to install likwid --PREFIX = /usr/local#NO SPACE -+# PREFIX = /usr/local#NO SPACE - - # uncomment to optionally set external lua@5.3: - # default is use internally provide lua -@@ -40,7 +40,7 @@ - # chown installed tools to this user/group - # if you change anything here, make sure that the user/group can access - # the MSR devices and (on Intel) the PCI devices. --INSTALL_CHOWN = -g root -o root -+INSTALL_CHOWN = - - # For the daemon based secure msr/pci access configure - # the absolute path to the msr daemon executable. -@@ -51,7 +51,7 @@ - # Build the accessDaemon. Have a look in the WIKI for details. - BUILDDAEMON = true#NO SPACE - #Build the setFrequencies tool --BUILDFREQ = true#NO SPACE -+BUILDFREQ = false#NO SPACE - - # Set the default mode for MSR access. - # This can usually be overriden on the commandline. -@@ -82,8 +82,8 @@ - # a proper config file at CFG_FILE_PATH) - MAX_NUM_THREADS = 263 - MAX_NUM_NODES = 64 --CFG_FILE_PATH = /etc/likwid.cfg --TOPO_FILE_PATH = /etc/likwid_topo.cfg -+CFG_FILE_PATH = $(PREFIX)/etc/likwid.cfg -+TOPO_FILE_PATH = $(PREFIX)/etc/likwid_topo.cfg - - # Versioning Information - VERSION = 4 diff --git a/easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-config-mk.patch b/easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-config-mk.patch deleted file mode 100644 index a7d8fccb54..0000000000 --- a/easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-config-mk.patch +++ /dev/null @@ -1,49 +0,0 @@ ---- likwid-likwid-4.2.orig/config.mk 2016-12-22 13:22:23.000000000 +0100 -+++ likwid-likwid-4.2/config.mk 2017-06-22 10:14:28.585696000 +0200 -@@ -1,7 +1,7 @@ - # Please have a look in INSTALL and the WIKI for details on - # configuration options setup steps. - # supported: GCC, CLANG, ICC, MIC (ICC), GCCX86 (for 32bit systems) --COMPILER = GCC#NO SPACE -+COMPILER = ICC#NO SPACE - - # Define the color of the likwid-pin output - # Can be NONE, BLACK, RED, GREEN, YELLOW, BLUE, -@@ -9,7 +9,7 @@ - COLOR = BLUE#NO SPACE - - # Path were to install likwid --PREFIX = /usr/local#NO SPACE -+# PREFIX = /usr/local#NO SPACE - - # uncomment to optionally set external lua@5.3: - # default is use internally provide lua -@@ -40,7 +40,7 @@ - # chown installed tools to this user/group - # if you change anything here, make sure that the user/group can access - # the MSR devices and (on Intel) the PCI devices. --INSTALL_CHOWN = -g root -o root -+INSTALL_CHOWN = - - # For the daemon based secure msr/pci access configure - # the absolute path to the msr daemon executable. -@@ -51,7 +51,7 @@ - # Build the accessDaemon. Have a look in the WIKI for details. - BUILDDAEMON = true#NO SPACE - #Build the setFrequencies tool --BUILDFREQ = true#NO SPACE -+BUILDFREQ = false#NO SPACE - - # Set the default mode for MSR access. - # This can usually be overriden on the commandline. -@@ -82,8 +82,8 @@ - # a proper config file at CFG_FILE_PATH) - MAX_NUM_THREADS = 263 - MAX_NUM_NODES = 64 --CFG_FILE_PATH = /etc/likwid.cfg --TOPO_FILE_PATH = /etc/likwid_topo.cfg -+CFG_FILE_PATH = $(PREFIX)/etc/likwid.cfg -+TOPO_FILE_PATH = $(PREFIX)/etc/likwid_topo.cfg - - # Versioning Information - VERSION = 4 -- GitLab From 1de635693283fc62ca4cdeebd7d7610b5e76e6bb Mon Sep 17 00:00:00 2001 From: Yann Pouillon Date: Tue, 27 Jun 2017 17:50:20 +0200 Subject: [PATCH 298/608] adding easyconfigs: git-2.13.1-foss-2016b.eb --- .../g/git/git-2.13.1-foss-2016b.eb | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 easybuild/easyconfigs/g/git/git-2.13.1-foss-2016b.eb diff --git a/easybuild/easyconfigs/g/git/git-2.13.1-foss-2016b.eb b/easybuild/easyconfigs/g/git/git-2.13.1-foss-2016b.eb new file mode 100644 index 0000000000..76cf3e7957 --- /dev/null +++ b/easybuild/easyconfigs/g/git/git-2.13.1-foss-2016b.eb @@ -0,0 +1,34 @@ +easyblock = 'ConfigureMake' + +name = 'git' +version = '2.13.1' + +homepage = 'http://git-scm.com/' +description = """Git is a free and open source distributed version control system designed +to handle everything from small to very large projects with speed and efficiency.""" + +toolchain = {'name': 'foss', 'version': '2016b'} + +sources = ['v%(version)s.tar.gz'] +source_urls = ['https://github.com/git/git/archive'] +checksums = ['c0e3fe359f715cb7dfc3ac63fa6e733a'] + +dependencies = [ + ('cURL', '7.49.1'), + ('expat', '2.2.0'), + ('gettext', '0.19.8'), + ('Perl', '5.24.0', '-bare'), +] + +preconfigopts = 'make configure && ' + +# Work around git build system bug. If LIBS contains -lpthread, then configure +# will not append -lpthread to LDFLAGS, but Makefile ignores LIBS. +configopts = "--with-perl=${EBROOTPERL}/bin/perl --enable-pthreads='-lpthread'" + +sanity_check_paths = { + 'files': ['bin/git'], + 'dirs': [], +} + +moduleclass = 'tools' -- GitLab From 49338c243f00474333351dbfc88ef3d2da81f811 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Wed, 28 Jun 2017 09:52:03 +0200 Subject: [PATCH 299/608] Add Circos for foss-2016b Add needed Perl modules --- .../Circos-0.69-5-foss-2016b-Perl-5.24.0.eb | 35 +++++++++++++++++++ .../p/Perl/Perl-5.24.0-foss-2016b.eb | 8 +++++ 2 files changed, 43 insertions(+) create mode 100644 easybuild/easyconfigs/c/Circos/Circos-0.69-5-foss-2016b-Perl-5.24.0.eb diff --git a/easybuild/easyconfigs/c/Circos/Circos-0.69-5-foss-2016b-Perl-5.24.0.eb b/easybuild/easyconfigs/c/Circos/Circos-0.69-5-foss-2016b-Perl-5.24.0.eb new file mode 100644 index 0000000000..893126e7c3 --- /dev/null +++ b/easybuild/easyconfigs/c/Circos/Circos-0.69-5-foss-2016b-Perl-5.24.0.eb @@ -0,0 +1,35 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild + +easyblock = 'Tarball' + +name = 'Circos' +version = '0.69-5' +versionsuffix = '-Perl-%(perlver)s' + +homepage = 'http://www.circos.ca/' +description = """Circos is a software package for visualizing data and information. + It visualizes data in a circular layout - this makes Circos ideal for exploring + relationships between objects or positions.""" + +toolchain = {'name': 'foss', 'version': '2016b'} + +source_urls = ['http://circos.ca/distribution/'] +sources = [SOURCELOWER_TGZ] + +checksums = ['49b4c467ba871fa416013c47d69db9e6'] + +dependencies = [ + ('Perl', '5.24.0'), + ('GD', '2.66', versionsuffix), +] + +sanity_check_paths = { + 'files': ['bin/%(namelower)s'], + 'dirs': ['lib/%(name)s'], +} + +modextrapaths = {'PERL5LIB': 'lib'} + +sanity_check_commands = [('perl', '-e "use Circos"')] + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/p/Perl/Perl-5.24.0-foss-2016b.eb b/easybuild/easyconfigs/p/Perl/Perl-5.24.0-foss-2016b.eb index 3f4c7638c7..41e1a64944 100644 --- a/easybuild/easyconfigs/p/Perl/Perl-5.24.0-foss-2016b.eb +++ b/easybuild/easyconfigs/p/Perl/Perl-5.24.0-foss-2016b.eb @@ -887,6 +887,14 @@ exts_list = [ 'source_tmpl': 'PDF-API2-2.031.tar.gz', 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SS/SSIMMS/'], }), + ('SVG', '2.77', { + 'source_tmpl': 'SVG-2.77.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MA/MANWAR/'], + }), + ('Statistics::Basic', '1.6611', { + 'source_tmpl': 'Statistics-Basic-1.6611.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JE/JETTERO/'], + }), ] moduleclass = 'lang' -- GitLab From d5b4bb5815373058062096d3d4a107bd6b6e21b1 Mon Sep 17 00:00:00 2001 From: Sebastien Varrette Date: Wed, 28 Jun 2017 11:00:38 +0200 Subject: [PATCH 300/608] remove useless dependency on binutils Signed-off-by: Sebastien Varrette --- easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-2017a.eb | 2 -- easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-2017a.eb | 2 -- 2 files changed, 4 deletions(-) diff --git a/easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-2017a.eb b/easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-2017a.eb index 6fabae1ced..ebb2f3de9b 100644 --- a/easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-2017a.eb +++ b/easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-2017a.eb @@ -28,8 +28,6 @@ sources = ['%(version)s.tar.gz'] patches = ['likwid-%(version)s-config-mk.patch'] -builddependencies = [('binutils', '2.27')] - skipsteps = ['configure'] buildopts = 'CC="$CC" CFLAGS="$CFLAGS -std=c99" PREFIX=%(installdir)s' installopts = 'PREFIX=%(installdir)s' diff --git a/easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-2017a.eb b/easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-2017a.eb index c694c1cfac..b38fb421b8 100644 --- a/easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-2017a.eb +++ b/easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-2017a.eb @@ -27,8 +27,6 @@ sources = ['%(version)s.tar.gz'] patches = ['likwid-%(version)s-config-mk.patch'] -builddependencies = [('binutils', '2.27')] - skipsteps = ['configure'] buildopts = 'COMPILER="ICC" CC="$CC" CFLAGS="$CFLAGS -std=c99" PREFIX=%(installdir)s' installopts = 'PREFIX=%(installdir)s' -- GitLab From 18f8a84dae2dfb3bcb42a177369d9ec305d9ca28 Mon Sep 17 00:00:00 2001 From: Pablo Escobar Date: Wed, 28 Jun 2017 11:29:25 +0200 Subject: [PATCH 301/608] adding easyconfigs: skewer-0.2.2-goolf-1.7.20.eb --- easybuild/easyconfigs/s/skewer/skewer-0.2.2-goolf-1.7.20.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/s/skewer/skewer-0.2.2-goolf-1.7.20.eb b/easybuild/easyconfigs/s/skewer/skewer-0.2.2-goolf-1.7.20.eb index abf4cb6e1f..89547eb928 100644 --- a/easybuild/easyconfigs/s/skewer/skewer-0.2.2-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/s/skewer/skewer-0.2.2-goolf-1.7.20.eb @@ -8,7 +8,7 @@ easyblock = 'MakeCp' name = 'skewer' version = '0.2.2' -homepage = 'http://smithlabresearch.org/software/preseq/' +homepage = 'https://github.com/relipmoc/skewer' description = """skewer (transferred from https://sourceforge.net/projects/skewer) implements the bit-masked k-difference matching algorithm dedicated to the task of adapter trimming and it is specially designed for processing next-generation sequencing (NGS) paired-end sequences""" -- GitLab From fd94badd5568b746667408e86c3a8827b46beb07 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 28 Jun 2017 13:53:42 +0200 Subject: [PATCH 302/608] {math}[intel/2017a] molmod 1.1 w/ Python 2.7.13 --- .../molmod-1.1-intel-2017a-Python-2.7.13.eb | 32 +++++++++++++++++++ .../molmod-1.1_ignore-errors-np-det.patch | 16 ++++++++++ 2 files changed, 48 insertions(+) create mode 100644 easybuild/easyconfigs/m/molmod/molmod-1.1-intel-2017a-Python-2.7.13.eb create mode 100644 easybuild/easyconfigs/m/molmod/molmod-1.1_ignore-errors-np-det.patch diff --git a/easybuild/easyconfigs/m/molmod/molmod-1.1-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/m/molmod/molmod-1.1-intel-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..1ac9bf5546 --- /dev/null +++ b/easybuild/easyconfigs/m/molmod/molmod-1.1-intel-2017a-Python-2.7.13.eb @@ -0,0 +1,32 @@ +easyblock = 'PythonPackage' + +name = 'molmod' +version = '1.1' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://molmod.github.io/molmod/' +description = "MolMod is a Python library with many compoments that are useful to write molecular modeling programs." + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['https://github.com/molmod/molmod/releases/download/v%(version)s'] +sources = [SOURCE_TAR_GZ] +patches = ['molmod-%(version)s_ignore-errors-np-det.patch'] + +dependencies = [ + ('Python', '2.7.13'), + ('matplotlib', '2.0.2', versionsuffix), +] + +runtest = "export MATPLOTLIBRC=$PWD; echo 'backend: agg' > $MATPLOTLIBRC/matplotlibrc;" +runtest += "python setup.py build_ext -i; nosetests -v" + +# fix permissions issue on files in share/molmod subdir +postinstallcmds = ['chmod -R o+r %(installdir)s/share/molmod'] + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages/molmod'], +} + +moduleclass = 'math' diff --git a/easybuild/easyconfigs/m/molmod/molmod-1.1_ignore-errors-np-det.patch b/easybuild/easyconfigs/m/molmod/molmod-1.1_ignore-errors-np-det.patch new file mode 100644 index 0000000000..6dfb4ce31c --- /dev/null +++ b/easybuild/easyconfigs/m/molmod/molmod-1.1_ignore-errors-np-det.patch @@ -0,0 +1,16 @@ +fix for incompatibility between recent Intel MKL versions and numpy +see https://github.com/numpy/numpy/issues/8529 +--- molmod/transformations.py.orig 2017-06-28 11:04:49.405580197 +0200 ++++ molmod/transformations.py 2017-06-28 11:04:12.324857787 +0200 +@@ -469,8 +469,9 @@ + W[0] = 1 + W[1] = 1 + W[2] = 1 +- if numpy.linalg.det(A) < 0: +- W[2] = -1 ++ with numpy.errstate(invalid='ignore'): ++ if numpy.linalg.det(A) < 0: ++ W[2] = -1 + r = numpy.dot(Vt.transpose()*W, U.transpose()) + return Complete(r, numpy.dot(r, -mb) + ma) + -- GitLab From c96a1a8fc6bd7967383d663655698dba1f1a18e8 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 28 Jun 2017 16:52:46 +0200 Subject: [PATCH 303/608] adding easyconfigs: yaff-1.1.2-intel-2017a-Python-2.7.13.eb --- .../yaff-1.1.2-intel-2017a-Python-2.7.13.eb | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 easybuild/easyconfigs/y/yaff/yaff-1.1.2-intel-2017a-Python-2.7.13.eb diff --git a/easybuild/easyconfigs/y/yaff/yaff-1.1.2-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/y/yaff/yaff-1.1.2-intel-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..70745662fc --- /dev/null +++ b/easybuild/easyconfigs/y/yaff/yaff-1.1.2-intel-2017a-Python-2.7.13.eb @@ -0,0 +1,30 @@ +easyblock = 'PythonPackage' + +name = 'yaff' +version = '1.1.2' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://molmod.github.io/yaff/' +description = """Yaff stands for 'Yet another force field'. It is a pythonic force-field code.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['https://github.com/molmod/yaff/releases/download/%(version)s'] +sources = [SOURCE_TAR_GZ] + +dependencies = [ + ('Python', '2.7.13'), + ('h5py', '2.7.0', versionsuffix), + ('molmod', '1.1', '-Python-%(pyver)s'), +] + +options = {'modulename': name} +runtest = "export MATPLOTLIBRC=$PWD; echo 'backend: agg' > $MATPLOTLIBRC/matplotlibrc; " +runtest += "python setup.py build_ext -i; nosetests --verbosity=10" + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages/%(name)s'], +} + +moduleclass = 'chem' -- GitLab From 46ef26e8beed7864b850b7a25969f4d32e4c2fad Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 28 Jun 2017 17:04:50 +0200 Subject: [PATCH 304/608] GCC 6.4.0 + binutils 2.28 (base for */2017b toolchains) [WIP] --- .../b/Bison/Bison-3.0.4-GCCcore-6.4.0.eb | 28 ++++++++++ .../b/binutils/binutils-2.28-GCCcore-6.4.0.eb | 21 +++++++ .../f/flex/flex-2.6.4-GCCcore-6.4.0.eb | 24 ++++++++ easybuild/easyconfigs/g/GCC/GCC-6.4.0-2.28.eb | 25 +++++++++ .../easyconfigs/g/GCCcore/GCCcore-6.4.0.eb | 56 +++++++++++++++++++ .../help2man/help2man-1.47.4-GCCcore-6.4.0.eb | 25 +++++++++ .../m/M4/M4-1.4.18-GCCcore-6.4.0.eb | 29 ++++++++++ .../z/zlib/zlib-1.2.11-GCCcore-6.4.0.eb | 26 +++++++++ 8 files changed, 234 insertions(+) create mode 100644 easybuild/easyconfigs/b/Bison/Bison-3.0.4-GCCcore-6.4.0.eb create mode 100644 easybuild/easyconfigs/b/binutils/binutils-2.28-GCCcore-6.4.0.eb create mode 100644 easybuild/easyconfigs/f/flex/flex-2.6.4-GCCcore-6.4.0.eb create mode 100644 easybuild/easyconfigs/g/GCC/GCC-6.4.0-2.28.eb create mode 100644 easybuild/easyconfigs/g/GCCcore/GCCcore-6.4.0.eb create mode 100644 easybuild/easyconfigs/h/help2man/help2man-1.47.4-GCCcore-6.4.0.eb create mode 100644 easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-6.4.0.eb create mode 100644 easybuild/easyconfigs/z/zlib/zlib-1.2.11-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/b/Bison/Bison-3.0.4-GCCcore-6.4.0.eb b/easybuild/easyconfigs/b/Bison/Bison-3.0.4-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..2623578bc5 --- /dev/null +++ b/easybuild/easyconfigs/b/Bison/Bison-3.0.4-GCCcore-6.4.0.eb @@ -0,0 +1,28 @@ +easyblock = 'ConfigureMake' + +name = 'Bison' +version = '3.0.4' + +homepage = 'http://www.gnu.org/software/bison' +description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar + into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables.""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = [GNU_SOURCE] +checksums = ['b67fd2daae7a64b5ba862c66c07c1addb9e6b1b05c5f2049392cfd8a2172952e'] + +builddependencies = [ + ('M4', '1.4.18'), + # use same binutils version that was used when building GCCcore toolchain + ('binutils', '2.28', '', True), +] + + +sanity_check_paths = { + 'files': ['bin/%s' % x for x in ['bison', 'yacc']] + ['lib/liby.a'], + 'dirs': [], +} + +moduleclass = 'lang' diff --git a/easybuild/easyconfigs/b/binutils/binutils-2.28-GCCcore-6.4.0.eb b/easybuild/easyconfigs/b/binutils/binutils-2.28-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..b22b7d16ba --- /dev/null +++ b/easybuild/easyconfigs/b/binutils/binutils-2.28-GCCcore-6.4.0.eb @@ -0,0 +1,21 @@ +name = 'binutils' +version = '2.28' + +homepage = 'http://directory.fsf.org/project/binutils/' +description = "binutils: GNU binary utilities" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +sources = [SOURCE_TAR_GZ] +source_urls = [GNU_SOURCE] + +builddependencies = [ + ('flex', '2.6.4'), + ('Bison', '3.0.4'), + # zlib required, but being linked in statically, so not a runtime dep + ('zlib', '1.2.11'), + # use same binutils version that was used when building GCC toolchain, to 'bootstrap' this binutils + ('binutils', version, '', True) +] + +moduleclass = 'tools' diff --git a/easybuild/easyconfigs/f/flex/flex-2.6.4-GCCcore-6.4.0.eb b/easybuild/easyconfigs/f/flex/flex-2.6.4-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..55845823d8 --- /dev/null +++ b/easybuild/easyconfigs/f/flex/flex-2.6.4-GCCcore-6.4.0.eb @@ -0,0 +1,24 @@ +name = 'flex' +version = '2.6.4' + +homepage = 'http://flex.sourceforge.net/' +description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner, + sometimes called a tokenizer, is a program which recognizes lexical patterns in text.""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = ['https://github.com/westes/flex/releases/download/v%(version)s/'] + +checksums = ['e87aae032bf07c26f85ac0ed3250998c37621d95f8bd748b31f15b33c45ee995'] + +dependencies = [('M4', '1.4.18')] +builddependencies = [ + ('Bison', '3.0.4'), + ('help2man', '1.47.4'), + # use same binutils version that was used when building GCC toolchain + ('binutils', '2.28', '', True), +] + +moduleclass = 'lang' diff --git a/easybuild/easyconfigs/g/GCC/GCC-6.4.0-2.28.eb b/easybuild/easyconfigs/g/GCC/GCC-6.4.0-2.28.eb new file mode 100644 index 0000000000..6d830c0286 --- /dev/null +++ b/easybuild/easyconfigs/g/GCC/GCC-6.4.0-2.28.eb @@ -0,0 +1,25 @@ +easyblock = 'Bundle' + +name = 'GCC' +version = '6.4.0' + +binutilsver = '2.28' +versionsuffix = '-%s' % binutilsver + +homepage = 'http://gcc.gnu.org/' +description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, + as well as libraries for these languages (libstdc++, libgcj,...).""" + +toolchain = {'name': 'dummy', 'version': ''} + +dependencies = [ + ('GCCcore', version), + # binutils built on top of GCCcore, which was built on top of (dummy-built) binutils + ('binutils', binutilsver, '', ('GCCcore', version)), +] + +altroot = 'GCCcore' +altversion = 'GCCcore' + +# this bundle serves as a compiler-only toolchain, so it should be marked as compiler (important for HMNS) +moduleclass = 'compiler' diff --git a/easybuild/easyconfigs/g/GCCcore/GCCcore-6.4.0.eb b/easybuild/easyconfigs/g/GCCcore/GCCcore-6.4.0.eb new file mode 100644 index 0000000000..9dbb7d3700 --- /dev/null +++ b/easybuild/easyconfigs/g/GCCcore/GCCcore-6.4.0.eb @@ -0,0 +1,56 @@ +easyblock = 'EB_GCC' + +name = 'GCCcore' +version = '6.4.0' + +homepage = 'http://gcc.gnu.org/' +description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, + as well as libraries for these languages (libstdc++, libgcj,...).""" + +toolchain = {'name': 'dummy', 'version': ''} + +mpfr_version = '3.1.5' + +source_urls = [ + 'http://ftpmirror.gnu.org/gnu/gcc/gcc-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR + 'http://www.multiprecision.org/mpc/download', # MPC official + 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies + 'http://gcc.cybermirror.org/infrastructure/', # HTTP mirror for GCC dependencies + 'http://isl.gforge.inria.fr/', # original HTTP source for ISL +] + +sources = [ + 'gcc-%(version)s-RC-20170628.tar.gz', # FIXME 'gcc-%(version)s.tar.bz2', + 'gmp-6.1.2.tar.bz2', + 'mpfr-%s.tar.bz2' % mpfr_version, + 'mpc-1.0.3.tar.gz', + 'isl-0.16.1.tar.bz2', +] + +builddependencies = [ + ('M4', '1.4.18'), + ('binutils', '2.28'), +] + +patches = [ + ('mpfr-%s-allpatches-20170606.patch' % mpfr_version, '../mpfr-%s' % mpfr_version), + 'GCCcore-6.2.0-fix-find-isl.patch', +] + +checksums = [ + '005e58fb723efb3bf51dac5db8a5edf7c66ea2e7ddb6de6ed02dbb74fcc31f80', # gcc-6.4.0.tar.bz2 + '5275bb04f4863a13516b2f39392ac5e272f5e1bb8057b18aec1c9b79d73d8fb2', # gmp-6.1.2.tar.bz2 + 'ca498c1c7a74dd37a576f353312d1e68d490978de4395fa28f1cbd46a364e658', # mpfr-3.1.5.tar.gz + '617decc6ea09889fb08ede330917a00b16809b8db88c29c31bfbb49cbf88ecc3', # mpc-1.0.3.tar.gz + '412538bb65c799ac98e17e8cfcdacbb257a57362acfaaff254b0fcae970126d2', # isl-0.16.1.tar.bz2 + '137108952139486755e8c1bee30314ffa9233cc05cddfd848aa85503a6fea9d7', # mpfr-3.1.5-allpatches-20170606.patch + '5ad909606d17d851c6ad629b4fddb6c1621844218b8d139fed18c502a7696c68', # GCCcore-6.2.0-fix-find-isl.patch +] + +languages = ['c', 'c++', 'fortran'] + +withisl = True + +moduleclass = 'compiler' diff --git a/easybuild/easyconfigs/h/help2man/help2man-1.47.4-GCCcore-6.4.0.eb b/easybuild/easyconfigs/h/help2man/help2man-1.47.4-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..192cdb14fe --- /dev/null +++ b/easybuild/easyconfigs/h/help2man/help2man-1.47.4-GCCcore-6.4.0.eb @@ -0,0 +1,25 @@ +easyblock = 'ConfigureMake' + +name = 'help2man' +version = '1.47.4' + +homepage = 'https://www.gnu.org/software/help2man/' +description = """help2man produces simple manual pages from the '--help' and '--version' output of other commands.""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = [GNU_SOURCE] +sources = [SOURCE_TAR_XZ] +checksums = ['d4ecf697d13f14dd1a78c5995f06459bff706fd1ce593d1c02d81667c0207753'] + +builddependencies = [ + # use same binutils version that was used when building GCC toolchain + ('binutils', '2.28', '', True), +] + +sanity_check_paths = { + 'files': ['bin/help2man'], + 'dirs': [], +} + +moduleclass = 'tools' diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-6.4.0.eb b/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..2a832cbb83 --- /dev/null +++ b/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-6.4.0.eb @@ -0,0 +1,29 @@ +easyblock = 'ConfigureMake' + +name = 'M4' +version = '1.4.18' + +homepage = 'http://www.gnu.org/software/m4/m4.html' +description = """GNU M4 is an implementation of the traditional Unix macro processor. It is mostly SVR4 compatible + although it has some extensions (for example, handling more than 9 positional parameters to macros). + GNU M4 also has built-in functions for including files, running shell commands, doing arithmetic, etc.""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = [GNU_SOURCE] +checksums = ['ab2633921a5cd38e48797bf5521ad259bdc4b979078034a3b790d7fec5493fab'] + +# use same binutils version that was used when building GCC toolchain +builddependencies = [('binutils', '2.28', '', True)] + +# '-fgnu89-inline' is required to avoid linking errors with older glibc's, +# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" + +sanity_check_paths = { + 'files': ["bin/m4"], + 'dirs': [], +} + +moduleclass = 'devel' diff --git a/easybuild/easyconfigs/z/zlib/zlib-1.2.11-GCCcore-6.4.0.eb b/easybuild/easyconfigs/z/zlib/zlib-1.2.11-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..a520a02364 --- /dev/null +++ b/easybuild/easyconfigs/z/zlib/zlib-1.2.11-GCCcore-6.4.0.eb @@ -0,0 +1,26 @@ +easyblock = 'ConfigureMake' + +name = 'zlib' +version = '1.2.11' + +homepage = 'http://www.zlib.net/' +description = """zlib is designed to be a free, general-purpose, legally unencumbered -- that is, + not covered by any patents -- lossless data-compression library for use on virtually any + computer hardware and operating system.""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = ['http://zlib.net/fossils'] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1'] + +# use same binutils version that was used when building GCC toolchain +builddependencies = [('binutils', '2.28', '', True)] + +sanity_check_paths = { + 'files': ['include/zconf.h', 'include/zlib.h', 'lib/libz.a', 'lib/libz.%s' % SHLIB_EXT], + 'dirs': [], +} + +moduleclass = 'lib' -- GitLab From d57f214ac0ae76167f605a38b6729f9e585ad8bc Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 28 Jun 2017 17:11:53 +0200 Subject: [PATCH 305/608] don't be too verbose in yaff 1.1.2 tests --- .../easyconfigs/y/yaff/yaff-1.1.2-intel-2017a-Python-2.7.13.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/y/yaff/yaff-1.1.2-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/y/yaff/yaff-1.1.2-intel-2017a-Python-2.7.13.eb index 70745662fc..a76854e99b 100644 --- a/easybuild/easyconfigs/y/yaff/yaff-1.1.2-intel-2017a-Python-2.7.13.eb +++ b/easybuild/easyconfigs/y/yaff/yaff-1.1.2-intel-2017a-Python-2.7.13.eb @@ -20,7 +20,7 @@ dependencies = [ options = {'modulename': name} runtest = "export MATPLOTLIBRC=$PWD; echo 'backend: agg' > $MATPLOTLIBRC/matplotlibrc; " -runtest += "python setup.py build_ext -i; nosetests --verbosity=10" +runtest += "python setup.py build_ext -i; nosetests -v" sanity_check_paths = { 'files': [], -- GitLab From 8c470ec536ff0550061cda52e48e119b6be97d6f Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 28 Jun 2017 17:18:31 +0200 Subject: [PATCH 306/608] add missing MPFR patch used in GCCcore 6.4.0 easyconfig --- .../mpfr-3.1.5-allpatches-20170606.patch | 689 ++++++++++++++++++ 1 file changed, 689 insertions(+) create mode 100644 easybuild/easyconfigs/g/GCCcore/mpfr-3.1.5-allpatches-20170606.patch diff --git a/easybuild/easyconfigs/g/GCCcore/mpfr-3.1.5-allpatches-20170606.patch b/easybuild/easyconfigs/g/GCCcore/mpfr-3.1.5-allpatches-20170606.patch new file mode 100644 index 0000000000..f25a39e542 --- /dev/null +++ b/easybuild/easyconfigs/g/GCCcore/mpfr-3.1.5-allpatches-20170606.patch @@ -0,0 +1,689 @@ +# MPFR v3.1.5 patch dated 2017-06-06 +# downloaded via https://gforge.inria.fr/frs/?group_id=136 +diff -Naurd mpfr-3.1.5-a/PATCHES mpfr-3.1.5-b/PATCHES +--- mpfr-3.1.5-a/PATCHES 2016-12-15 08:35:46.476430238 +0000 ++++ mpfr-3.1.5-b/PATCHES 2016-12-15 08:35:46.544430346 +0000 +@@ -0,0 +1 @@ ++vasprintf +diff -Naurd mpfr-3.1.5-a/VERSION mpfr-3.1.5-b/VERSION +--- mpfr-3.1.5-a/VERSION 2016-09-27 07:58:14.000000000 +0000 ++++ mpfr-3.1.5-b/VERSION 2016-12-15 08:35:46.544430346 +0000 +@@ -1 +1 @@ +-3.1.5 ++3.1.5-p1 +diff -Naurd mpfr-3.1.5-a/src/mpfr.h mpfr-3.1.5-b/src/mpfr.h +--- mpfr-3.1.5-a/src/mpfr.h 2016-09-27 07:58:15.000000000 +0000 ++++ mpfr-3.1.5-b/src/mpfr.h 2016-12-15 08:35:46.540430340 +0000 +@@ -27,7 +27,7 @@ + #define MPFR_VERSION_MAJOR 3 + #define MPFR_VERSION_MINOR 1 + #define MPFR_VERSION_PATCHLEVEL 5 +-#define MPFR_VERSION_STRING "3.1.5" ++#define MPFR_VERSION_STRING "3.1.5-p1" + + /* Macros dealing with MPFR VERSION */ + #define MPFR_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c)) +diff -Naurd mpfr-3.1.5-a/src/vasprintf.c mpfr-3.1.5-b/src/vasprintf.c +--- mpfr-3.1.5-a/src/vasprintf.c 2016-09-27 07:58:15.000000000 +0000 ++++ mpfr-3.1.5-b/src/vasprintf.c 2016-12-15 08:35:46.520430308 +0000 +@@ -1593,7 +1593,7 @@ + } + else if (spec.spec == 'f' || spec.spec == 'F') + { +- if (spec.prec == -1) ++ if (spec.prec < 0) + spec.prec = 6; + if (regular_fg (np, p, spec, NULL) == -1) + goto error; +diff -Naurd mpfr-3.1.5-a/src/version.c mpfr-3.1.5-b/src/version.c +--- mpfr-3.1.5-a/src/version.c 2016-09-27 07:58:15.000000000 +0000 ++++ mpfr-3.1.5-b/src/version.c 2016-12-15 08:35:46.544430346 +0000 +@@ -25,5 +25,5 @@ + const char * + mpfr_get_version (void) + { +- return "3.1.5"; ++ return "3.1.5-p1"; + } +diff -Naurd mpfr-3.1.5-a/tests/tsprintf.c mpfr-3.1.5-b/tests/tsprintf.c +--- mpfr-3.1.5-a/tests/tsprintf.c 2016-09-27 07:58:14.000000000 +0000 ++++ mpfr-3.1.5-b/tests/tsprintf.c 2016-12-15 08:35:46.520430308 +0000 +@@ -1251,6 +1251,25 @@ + check_emin_aux (MPFR_EMIN_MIN); + } + ++static void ++test20161214 (void) ++{ ++ mpfr_t x; ++ char buf[32]; ++ const char s[] = "0x0.fffffffffffff8p+1024"; ++ int r; ++ ++ mpfr_init2 (x, 64); ++ mpfr_set_str (x, s, 16, MPFR_RNDN); ++ r = mpfr_snprintf (buf, 32, "%.*RDf", -2, x); ++ MPFR_ASSERTN(r == 316); ++ r = mpfr_snprintf (buf, 32, "%.*RDf", INT_MIN + 1, x); ++ MPFR_ASSERTN(r == 316); ++ r = mpfr_snprintf (buf, 32, "%.*RDf", INT_MIN, x); ++ MPFR_ASSERTN(r == 316); ++ mpfr_clear (x); ++} ++ + int + main (int argc, char **argv) + { +@@ -1271,6 +1290,7 @@ + mixed (); + check_emax (); + check_emin (); ++ test20161214 (); + + #if defined(HAVE_LOCALE_H) && defined(HAVE_SETLOCALE) + #if MPFR_LCONV_DPTS +diff -Naurd mpfr-3.1.5-a/PATCHES mpfr-3.1.5-b/PATCHES +--- mpfr-3.1.5-a/PATCHES 2016-12-19 22:11:17.022676737 +0000 ++++ mpfr-3.1.5-b/PATCHES 2016-12-19 22:11:17.094676820 +0000 +@@ -0,0 +1 @@ ++strtofr +diff -Naurd mpfr-3.1.5-a/VERSION mpfr-3.1.5-b/VERSION +--- mpfr-3.1.5-a/VERSION 2016-12-15 08:35:46.544430346 +0000 ++++ mpfr-3.1.5-b/VERSION 2016-12-19 22:11:17.094676820 +0000 +@@ -1 +1 @@ +-3.1.5-p1 ++3.1.5-p2 +diff -Naurd mpfr-3.1.5-a/src/mpfr.h mpfr-3.1.5-b/src/mpfr.h +--- mpfr-3.1.5-a/src/mpfr.h 2016-12-15 08:35:46.540430340 +0000 ++++ mpfr-3.1.5-b/src/mpfr.h 2016-12-19 22:11:17.090676815 +0000 +@@ -27,7 +27,7 @@ + #define MPFR_VERSION_MAJOR 3 + #define MPFR_VERSION_MINOR 1 + #define MPFR_VERSION_PATCHLEVEL 5 +-#define MPFR_VERSION_STRING "3.1.5-p1" ++#define MPFR_VERSION_STRING "3.1.5-p2" + + /* Macros dealing with MPFR VERSION */ + #define MPFR_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c)) +diff -Naurd mpfr-3.1.5-a/src/strtofr.c mpfr-3.1.5-b/src/strtofr.c +--- mpfr-3.1.5-a/src/strtofr.c 2016-09-27 07:58:15.000000000 +0000 ++++ mpfr-3.1.5-b/src/strtofr.c 2016-12-19 22:11:17.066676788 +0000 +@@ -743,11 +743,14 @@ + of the pstr_size most significant digits of pstr->mant, with + equality in case exact is non-zero. */ + +- /* test if rounding is possible, and if so exit the loop */ +- if (exact || mpfr_can_round_raw (result, ysize, +- (pstr->negative) ? -1 : 1, +- ysize_bits - err - 1, +- MPFR_RNDN, rnd, MPFR_PREC(x))) ++ /* test if rounding is possible, and if so exit the loop. ++ Note: we also need to be able to determine the correct ternary value, ++ thus we use the MPFR_PREC(x) + (rnd == MPFR_RNDN) trick. ++ For example if result = xxx...xxx111...111 and rnd = RNDN, ++ then we know the correct rounding is xxx...xx(x+1), but we cannot know ++ the correct ternary value. */ ++ if (exact || mpfr_round_p (result, ysize, ysize_bits - err - 1, ++ MPFR_PREC(x) + (rnd == MPFR_RNDN))) + break; + + next_loop: +diff -Naurd mpfr-3.1.5-a/src/version.c mpfr-3.1.5-b/src/version.c +--- mpfr-3.1.5-a/src/version.c 2016-12-15 08:35:46.544430346 +0000 ++++ mpfr-3.1.5-b/src/version.c 2016-12-19 22:11:17.094676820 +0000 +@@ -25,5 +25,5 @@ + const char * + mpfr_get_version (void) + { +- return "3.1.5-p1"; ++ return "3.1.5-p2"; + } +diff -Naurd mpfr-3.1.5-a/tests/tstrtofr.c mpfr-3.1.5-b/tests/tstrtofr.c +--- mpfr-3.1.5-a/tests/tstrtofr.c 2016-09-27 07:58:14.000000000 +0000 ++++ mpfr-3.1.5-b/tests/tstrtofr.c 2016-12-19 22:11:17.066676788 +0000 +@@ -1191,6 +1191,24 @@ + mpfr_clears (e, x1, x2, (mpfr_ptr) 0); + } + ++/* Note: the number is 5^47/2^9. */ ++static void ++bug20161217 (void) ++{ ++ mpfr_t fp, z; ++ static const char * num = "0.1387778780781445675529539585113525390625e31"; ++ int inex; ++ ++ mpfr_init2 (fp, 110); ++ mpfr_init2 (z, 110); ++ inex = mpfr_strtofr (fp, num, NULL, 10, MPFR_RNDN); ++ MPFR_ASSERTN(inex == 0); ++ mpfr_set_str_binary (z, "10001100001000010011110110011101101001010000001011011110010001010100010100100110111101000010001011001100001101E-9"); ++ MPFR_ASSERTN(mpfr_equal_p (fp, z)); ++ mpfr_clear (fp); ++ mpfr_clear (z); ++} ++ + int + main (int argc, char *argv[]) + { +@@ -1205,6 +1223,7 @@ + test20100310 (); + bug20120814 (); + bug20120829 (); ++ bug20161217 (); + + tests_end_mpfr (); + return 0; +diff -Naurd mpfr-3.1.5-a/PATCHES mpfr-3.1.5-b/PATCHES +--- mpfr-3.1.5-a/PATCHES 2017-06-06 19:21:17.580843571 +0000 ++++ mpfr-3.1.5-b/PATCHES 2017-06-06 19:21:17.604843293 +0000 +@@ -0,0 +1 @@ ++ret-macro +diff -Naurd mpfr-3.1.5-a/VERSION mpfr-3.1.5-b/VERSION +--- mpfr-3.1.5-a/VERSION 2016-12-19 22:11:17.094676820 +0000 ++++ mpfr-3.1.5-b/VERSION 2017-06-06 19:21:17.604843293 +0000 +@@ -1 +1 @@ +-3.1.5-p2 ++3.1.5-p3 +diff -Naurd mpfr-3.1.5-a/src/mpfr-impl.h mpfr-3.1.5-b/src/mpfr-impl.h +--- mpfr-3.1.5-a/src/mpfr-impl.h 2016-09-27 07:58:15.000000000 +0000 ++++ mpfr-3.1.5-b/src/mpfr-impl.h 2017-06-06 19:21:17.592843433 +0000 +@@ -873,7 +873,7 @@ + following two macros, unless the flag comes from another function + returning the ternary inexact value */ + #define MPFR_RET(I) return \ +- (I) ? ((__gmpfr_flags |= MPFR_FLAGS_INEXACT), (I)) : 0 ++ (I) != 0 ? ((__gmpfr_flags |= MPFR_FLAGS_INEXACT), (I)) : 0 + #define MPFR_RET_NAN return (__gmpfr_flags |= MPFR_FLAGS_NAN), 0 + + #define MPFR_SET_ERANGE() (__gmpfr_flags |= MPFR_FLAGS_ERANGE) +diff -Naurd mpfr-3.1.5-a/src/mpfr.h mpfr-3.1.5-b/src/mpfr.h +--- mpfr-3.1.5-a/src/mpfr.h 2016-12-19 22:11:17.090676815 +0000 ++++ mpfr-3.1.5-b/src/mpfr.h 2017-06-06 19:21:17.600843340 +0000 +@@ -27,7 +27,7 @@ + #define MPFR_VERSION_MAJOR 3 + #define MPFR_VERSION_MINOR 1 + #define MPFR_VERSION_PATCHLEVEL 5 +-#define MPFR_VERSION_STRING "3.1.5-p2" ++#define MPFR_VERSION_STRING "3.1.5-p3" + + /* Macros dealing with MPFR VERSION */ + #define MPFR_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c)) +diff -Naurd mpfr-3.1.5-a/src/version.c mpfr-3.1.5-b/src/version.c +--- mpfr-3.1.5-a/src/version.c 2016-12-19 22:11:17.094676820 +0000 ++++ mpfr-3.1.5-b/src/version.c 2017-06-06 19:21:17.604843293 +0000 +@@ -25,5 +25,5 @@ + const char * + mpfr_get_version (void) + { +- return "3.1.5-p2"; ++ return "3.1.5-p3"; + } +diff -Naurd mpfr-3.1.5-a/PATCHES mpfr-3.1.5-b/PATCHES +--- mpfr-3.1.5-a/PATCHES 2017-06-06 19:50:30.708438500 +0000 ++++ mpfr-3.1.5-b/PATCHES 2017-06-06 19:50:30.736438175 +0000 +@@ -0,0 +1 @@ ++tests-buffer-size +diff -Naurd mpfr-3.1.5-a/VERSION mpfr-3.1.5-b/VERSION +--- mpfr-3.1.5-a/VERSION 2017-06-06 19:21:17.604843293 +0000 ++++ mpfr-3.1.5-b/VERSION 2017-06-06 19:50:30.736438175 +0000 +@@ -1 +1 @@ +-3.1.5-p3 ++3.1.5-p4 +diff -Naurd mpfr-3.1.5-a/src/mpfr.h mpfr-3.1.5-b/src/mpfr.h +--- mpfr-3.1.5-a/src/mpfr.h 2017-06-06 19:21:17.600843340 +0000 ++++ mpfr-3.1.5-b/src/mpfr.h 2017-06-06 19:50:30.732438221 +0000 +@@ -27,7 +27,7 @@ + #define MPFR_VERSION_MAJOR 3 + #define MPFR_VERSION_MINOR 1 + #define MPFR_VERSION_PATCHLEVEL 5 +-#define MPFR_VERSION_STRING "3.1.5-p3" ++#define MPFR_VERSION_STRING "3.1.5-p4" + + /* Macros dealing with MPFR VERSION */ + #define MPFR_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c)) +diff -Naurd mpfr-3.1.5-a/src/version.c mpfr-3.1.5-b/src/version.c +--- mpfr-3.1.5-a/src/version.c 2017-06-06 19:21:17.604843293 +0000 ++++ mpfr-3.1.5-b/src/version.c 2017-06-06 19:50:30.736438175 +0000 +@@ -25,5 +25,5 @@ + const char * + mpfr_get_version (void) + { +- return "3.1.5-p3"; ++ return "3.1.5-p4"; + } +diff -Naurd mpfr-3.1.5-a/tests/tl2b.c mpfr-3.1.5-b/tests/tl2b.c +--- mpfr-3.1.5-a/tests/tl2b.c 2016-09-27 07:58:14.000000000 +0000 ++++ mpfr-3.1.5-b/tests/tl2b.c 2017-06-06 19:50:30.724438314 +0000 +@@ -83,7 +83,7 @@ + mpfr_srcptr t; + int beta, i; + int error = 0; +- char buffer[30]; ++ char buffer[256]; /* larger than needed, for maintainability */ + + for (beta = 2; beta <= BASE_MAX; beta++) + { +diff -Naurd mpfr-3.1.5-a/tests/tpow_all.c mpfr-3.1.5-b/tests/tpow_all.c +--- mpfr-3.1.5-a/tests/tpow_all.c 2016-09-27 07:58:14.000000000 +0000 ++++ mpfr-3.1.5-b/tests/tpow_all.c 2017-06-06 19:50:30.724438314 +0000 +@@ -498,7 +498,7 @@ + for (i = 0; i <= 12; i++) + { + unsigned int flags = 0; +- char sy[16]; ++ char sy[256]; /* larger than needed, for maintainability */ + + /* Test 2^(emin - i/4). + * --> Underflow iff i > 4. +diff -Naurd mpfr-3.1.5-a/PATCHES mpfr-3.1.5-b/PATCHES +--- mpfr-3.1.5-a/PATCHES 2017-06-06 19:57:01.947910247 +0000 ++++ mpfr-3.1.5-b/PATCHES 2017-06-06 19:57:01.971909970 +0000 +@@ -0,0 +1 @@ ++vasprintf-overflow-check +diff -Naurd mpfr-3.1.5-a/VERSION mpfr-3.1.5-b/VERSION +--- mpfr-3.1.5-a/VERSION 2017-06-06 19:50:30.736438175 +0000 ++++ mpfr-3.1.5-b/VERSION 2017-06-06 19:57:01.971909970 +0000 +@@ -1 +1 @@ +-3.1.5-p4 ++3.1.5-p5 +diff -Naurd mpfr-3.1.5-a/src/mpfr.h mpfr-3.1.5-b/src/mpfr.h +--- mpfr-3.1.5-a/src/mpfr.h 2017-06-06 19:50:30.732438221 +0000 ++++ mpfr-3.1.5-b/src/mpfr.h 2017-06-06 19:57:01.971909970 +0000 +@@ -27,7 +27,7 @@ + #define MPFR_VERSION_MAJOR 3 + #define MPFR_VERSION_MINOR 1 + #define MPFR_VERSION_PATCHLEVEL 5 +-#define MPFR_VERSION_STRING "3.1.5-p4" ++#define MPFR_VERSION_STRING "3.1.5-p5" + + /* Macros dealing with MPFR VERSION */ + #define MPFR_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c)) +diff -Naurd mpfr-3.1.5-a/src/vasprintf.c mpfr-3.1.5-b/src/vasprintf.c +--- mpfr-3.1.5-a/src/vasprintf.c 2016-12-15 08:35:46.520430308 +0000 ++++ mpfr-3.1.5-b/src/vasprintf.c 2017-06-06 19:57:01.963910062 +0000 +@@ -1452,7 +1452,7 @@ + struct printf_spec spec) + { + char *str; +- long total; ++ unsigned int total; /* can hold the sum of two non-negative int's + 1 */ + int uppercase; + + /* WARNING: left justification means right space padding */ +@@ -1645,43 +1645,43 @@ + + /* compute the number of characters to be written verifying it is not too + much */ ++ ++#define INCR_TOTAL(v) \ ++ do { \ ++ MPFR_ASSERTD ((v) >= 0); \ ++ if (MPFR_UNLIKELY ((v) > INT_MAX)) \ ++ goto error; \ ++ total += (v); \ ++ if (MPFR_UNLIKELY (total > INT_MAX)) \ ++ goto error; \ ++ } while (0) ++ + total = np->sign ? 1 : 0; +- total += np->prefix_size; +- total += np->ip_size; +- if (MPFR_UNLIKELY (total < 0 || total > INT_MAX)) +- goto error; +- total += np->ip_trailing_zeros; +- if (MPFR_UNLIKELY (total < 0 || total > INT_MAX)) +- goto error; ++ INCR_TOTAL (np->prefix_size); ++ INCR_TOTAL (np->ip_size); ++ INCR_TOTAL (np->ip_trailing_zeros); ++ MPFR_ASSERTD (np->ip_size + np->ip_trailing_zeros >= 1); + if (np->thousands_sep) + /* ' flag, style f and the thousands separator in current locale is not + reduced to the null character */ +- total += (np->ip_size + np->ip_trailing_zeros) / 3; +- if (MPFR_UNLIKELY (total < 0 || total > INT_MAX)) +- goto error; ++ INCR_TOTAL ((np->ip_size + np->ip_trailing_zeros - 1) / 3); + if (np->point) + ++total; +- total += np->fp_leading_zeros; +- if (MPFR_UNLIKELY (total < 0 || total > INT_MAX)) +- goto error; +- total += np->fp_size; +- if (MPFR_UNLIKELY (total < 0 || total > INT_MAX)) +- goto error; +- total += np->fp_trailing_zeros; +- if (MPFR_UNLIKELY (total < 0 || total > INT_MAX)) +- goto error; +- total += np->exp_size; +- if (MPFR_UNLIKELY (total < 0 || total > INT_MAX)) +- goto error; ++ INCR_TOTAL (np->fp_leading_zeros); ++ INCR_TOTAL (np->fp_size); ++ INCR_TOTAL (np->fp_trailing_zeros); ++ INCR_TOTAL (np->exp_size); + + if (spec.width > total) + /* pad with spaces or zeros depending on np->pad_type */ + { + np->pad_size = spec.width - total; + total += np->pad_size; /* here total == spec.width, +- so 0 < total < INT_MAX */ ++ so 0 < total <= INT_MAX */ ++ MPFR_ASSERTD (total == spec.width); + } + ++ MPFR_ASSERTD (total > 0 && total <= INT_MAX); + return total; + + error: +diff -Naurd mpfr-3.1.5-a/src/version.c mpfr-3.1.5-b/src/version.c +--- mpfr-3.1.5-a/src/version.c 2017-06-06 19:50:30.736438175 +0000 ++++ mpfr-3.1.5-b/src/version.c 2017-06-06 19:57:01.971909970 +0000 +@@ -25,5 +25,5 @@ + const char * + mpfr_get_version (void) + { +- return "3.1.5-p4"; ++ return "3.1.5-p5"; + } +diff -Naurd mpfr-3.1.5-a/PATCHES mpfr-3.1.5-b/PATCHES +--- mpfr-3.1.5-a/PATCHES 2017-06-06 20:17:02.489704106 +0000 ++++ mpfr-3.1.5-b/PATCHES 2017-06-06 20:17:02.513703814 +0000 +@@ -0,0 +1 @@ ++printf-errno +diff -Naurd mpfr-3.1.5-a/VERSION mpfr-3.1.5-b/VERSION +--- mpfr-3.1.5-a/VERSION 2017-06-06 19:57:01.971909970 +0000 ++++ mpfr-3.1.5-b/VERSION 2017-06-06 20:17:02.513703814 +0000 +@@ -1 +1 @@ +-3.1.5-p5 ++3.1.5-p6 +diff -Naurd mpfr-3.1.5-a/src/mpfr.h mpfr-3.1.5-b/src/mpfr.h +--- mpfr-3.1.5-a/src/mpfr.h 2017-06-06 19:57:01.971909970 +0000 ++++ mpfr-3.1.5-b/src/mpfr.h 2017-06-06 20:17:02.513703814 +0000 +@@ -27,7 +27,7 @@ + #define MPFR_VERSION_MAJOR 3 + #define MPFR_VERSION_MINOR 1 + #define MPFR_VERSION_PATCHLEVEL 5 +-#define MPFR_VERSION_STRING "3.1.5-p5" ++#define MPFR_VERSION_STRING "3.1.5-p6" + + /* Macros dealing with MPFR VERSION */ + #define MPFR_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c)) +diff -Naurd mpfr-3.1.5-a/src/printf.c mpfr-3.1.5-b/src/printf.c +--- mpfr-3.1.5-a/src/printf.c 2016-09-27 07:58:15.000000000 +0000 ++++ mpfr-3.1.5-b/src/printf.c 2017-06-06 20:17:02.501703960 +0000 +@@ -40,7 +40,6 @@ + # endif /* HAVE___VA_COPY */ + #endif /* HAVE_VA_COPY */ + +-#include + #include "mpfr-impl.h" + + #ifdef _MPFR_H_HAVE_FILE +diff -Naurd mpfr-3.1.5-a/src/vasprintf.c mpfr-3.1.5-b/src/vasprintf.c +--- mpfr-3.1.5-a/src/vasprintf.c 2017-06-06 19:57:01.963910062 +0000 ++++ mpfr-3.1.5-b/src/vasprintf.c 2017-06-06 20:17:02.501703960 +0000 +@@ -52,6 +52,8 @@ + #include /* for ptrdiff_t */ + #endif + ++#include ++ + #define MPFR_NEED_LONGLONG_H + #include "mpfr-intmax.h" + #include "mpfr-impl.h" +diff -Naurd mpfr-3.1.5-a/src/version.c mpfr-3.1.5-b/src/version.c +--- mpfr-3.1.5-a/src/version.c 2017-06-06 19:57:01.971909970 +0000 ++++ mpfr-3.1.5-b/src/version.c 2017-06-06 20:17:02.513703814 +0000 +@@ -25,5 +25,5 @@ + const char * + mpfr_get_version (void) + { +- return "3.1.5-p5"; ++ return "3.1.5-p6"; + } +diff -Naurd mpfr-3.1.5-a/tests/tprintf.c mpfr-3.1.5-b/tests/tprintf.c +--- mpfr-3.1.5-a/tests/tprintf.c 2016-09-27 07:58:14.000000000 +0000 ++++ mpfr-3.1.5-b/tests/tprintf.c 2017-06-06 20:17:02.501703960 +0000 +@@ -26,6 +26,7 @@ + #include + #include + #include ++#include + + #include "mpfr-intmax.h" + #include "mpfr-test.h" +@@ -109,6 +110,33 @@ + } + + static void ++check_vprintf_overflow (const char *fmt, ...) ++{ ++ va_list ap; ++ int r, e; ++ ++ va_start (ap, fmt); ++ errno = 0; ++ r = mpfr_vprintf (fmt, ap); ++ e = errno; ++ va_end (ap); ++ ++ if (r != -1 ++#ifdef EOVERFLOW ++ || e != EOVERFLOW ++#endif ++ ) ++ { ++ putchar ('\n'); ++ fprintf (stderr, "Error in mpfr_vprintf(\"%s\", ...)\n" ++ "Got r = %d, errno = %d\n", fmt, r, e); ++ exit (1); ++ } ++ ++ putchar ('\n'); ++} ++ ++static void + check_invalid_format (void) + { + int i = 0; +@@ -167,8 +195,8 @@ + mpfr_set_ui (x, 1, MPFR_RNDN); + mpfr_nextabove (x); + +- check_vprintf_failure ("%Rb", x); +- check_vprintf_failure ("%RA %RA %Ra %Ra", x, x, x, x); ++ check_vprintf_overflow ("%Rb", x); ++ check_vprintf_overflow ("%RA %RA %Ra %Ra", x, x, x, x); + + mpfr_clear (x); + } +diff -Naurd mpfr-3.1.5-a/PATCHES mpfr-3.1.5-b/PATCHES +--- mpfr-3.1.5-a/PATCHES 2017-06-06 20:24:00.580702002 +0000 ++++ mpfr-3.1.5-b/PATCHES 2017-06-06 20:24:00.604701719 +0000 +@@ -0,0 +1 @@ ++tsprintf-setlocale +diff -Naurd mpfr-3.1.5-a/VERSION mpfr-3.1.5-b/VERSION +--- mpfr-3.1.5-a/VERSION 2017-06-06 20:17:02.513703814 +0000 ++++ mpfr-3.1.5-b/VERSION 2017-06-06 20:24:00.604701719 +0000 +@@ -1 +1 @@ +-3.1.5-p6 ++3.1.5-p7 +diff -Naurd mpfr-3.1.5-a/src/mpfr.h mpfr-3.1.5-b/src/mpfr.h +--- mpfr-3.1.5-a/src/mpfr.h 2017-06-06 20:17:02.513703814 +0000 ++++ mpfr-3.1.5-b/src/mpfr.h 2017-06-06 20:24:00.604701719 +0000 +@@ -27,7 +27,7 @@ + #define MPFR_VERSION_MAJOR 3 + #define MPFR_VERSION_MINOR 1 + #define MPFR_VERSION_PATCHLEVEL 5 +-#define MPFR_VERSION_STRING "3.1.5-p6" ++#define MPFR_VERSION_STRING "3.1.5-p7" + + /* Macros dealing with MPFR VERSION */ + #define MPFR_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c)) +diff -Naurd mpfr-3.1.5-a/src/version.c mpfr-3.1.5-b/src/version.c +--- mpfr-3.1.5-a/src/version.c 2017-06-06 20:17:02.513703814 +0000 ++++ mpfr-3.1.5-b/src/version.c 2017-06-06 20:24:00.604701719 +0000 +@@ -25,5 +25,5 @@ + const char * + mpfr_get_version (void) + { +- return "3.1.5-p6"; ++ return "3.1.5-p7"; + } +diff -Naurd mpfr-3.1.5-a/tests/tsprintf.c mpfr-3.1.5-b/tests/tsprintf.c +--- mpfr-3.1.5-a/tests/tsprintf.c 2016-12-15 08:35:46.520430308 +0000 ++++ mpfr-3.1.5-b/tests/tsprintf.c 2017-06-06 20:24:00.596701813 +0000 +@@ -1273,13 +1273,12 @@ + int + main (int argc, char **argv) + { +- char *locale; + + tests_start_mpfr (); + + #if defined(HAVE_LOCALE_H) && defined(HAVE_SETLOCALE) + /* currently, we just check with 'C' locale */ +- locale = setlocale (LC_ALL, "C"); ++ setlocale (LC_ALL, "C"); + #endif + + bug20111102 (); +@@ -1297,7 +1296,7 @@ + locale_da_DK (); + /* Avoid a warning by doing the setlocale outside of this #if */ + #endif +- setlocale (LC_ALL, locale); ++ setlocale (LC_ALL, "C"); + #endif + + if (getenv ("MPFR_CHECK_LIBC_PRINTF")) +diff -Naurd mpfr-3.1.5-a/PATCHES mpfr-3.1.5-b/PATCHES +--- mpfr-3.1.5-a/PATCHES 2017-06-06 20:31:35.919341495 +0000 ++++ mpfr-3.1.5-b/PATCHES 2017-06-06 20:31:35.943341213 +0000 +@@ -0,0 +1 @@ ++mpf-compat-signed +diff -Naurd mpfr-3.1.5-a/VERSION mpfr-3.1.5-b/VERSION +--- mpfr-3.1.5-a/VERSION 2017-06-06 20:24:00.604701719 +0000 ++++ mpfr-3.1.5-b/VERSION 2017-06-06 20:31:35.943341213 +0000 +@@ -1 +1 @@ +-3.1.5-p7 ++3.1.5-p8 +diff -Naurd mpfr-3.1.5-a/src/mpf2mpfr.h mpfr-3.1.5-b/src/mpf2mpfr.h +--- mpfr-3.1.5-a/src/mpf2mpfr.h 2016-09-27 07:58:15.000000000 +0000 ++++ mpfr-3.1.5-b/src/mpf2mpfr.h 2017-06-06 20:31:35.931341353 +0000 +@@ -93,15 +93,15 @@ + #undef mpf_div_2exp + #define mpf_div_2exp(x,y,z) mpfr_div_2exp(x,y,z,MPFR_DEFAULT_RND) + #undef mpf_fits_slong_p +-#define mpf_fits_slong_p(x) mpfr_fits_ulong_p(x,MPFR_DEFAULT_RND) ++#define mpf_fits_slong_p(x) mpfr_fits_slong_p(x,MPFR_DEFAULT_RND) + #undef mpf_fits_ulong_p + #define mpf_fits_ulong_p(x) mpfr_fits_ulong_p(x,MPFR_DEFAULT_RND) + #undef mpf_fits_sint_p +-#define mpf_fits_sint_p(x) mpfr_fits_uint_p(x,MPFR_DEFAULT_RND) ++#define mpf_fits_sint_p(x) mpfr_fits_sint_p(x,MPFR_DEFAULT_RND) + #undef mpf_fits_uint_p + #define mpf_fits_uint_p(x) mpfr_fits_uint_p(x,MPFR_DEFAULT_RND) + #undef mpf_fits_sshort_p +-#define mpf_fits_sshort_p(x) mpfr_fits_ushort_p(x,MPFR_DEFAULT_RND) ++#define mpf_fits_sshort_p(x) mpfr_fits_sshort_p(x,MPFR_DEFAULT_RND) + #undef mpf_fits_ushort_p + #define mpf_fits_ushort_p(x) mpfr_fits_ushort_p(x,MPFR_DEFAULT_RND) + #undef mpf_get_str +@@ -113,7 +113,7 @@ + #undef mpf_get_ui + #define mpf_get_ui(x) mpfr_get_ui(x,MPFR_DEFAULT_RND) + #undef mpf_get_si +-#define mpf_get_si(x) mpfr_get_ui(x,MPFR_DEFAULT_RND) ++#define mpf_get_si(x) mpfr_get_si(x,MPFR_DEFAULT_RND) + #undef mpf_inp_str + #define mpf_inp_str(x,y,z) mpfr_inp_str(x,y,z,MPFR_DEFAULT_RND) + #undef mpf_set_str +diff -Naurd mpfr-3.1.5-a/src/mpfr-impl.h mpfr-3.1.5-b/src/mpfr-impl.h +--- mpfr-3.1.5-a/src/mpfr-impl.h 2017-06-06 19:21:17.592843433 +0000 ++++ mpfr-3.1.5-b/src/mpfr-impl.h 2017-06-06 20:31:35.931341353 +0000 +@@ -342,11 +342,15 @@ + #define MPFR_FLAGS_DIVBY0 32 + #define MPFR_FLAGS_ALL 63 + +-/* Replace some common functions for direct access to the global vars */ +-#define mpfr_get_emin() (__gmpfr_emin + 0) +-#define mpfr_get_emax() (__gmpfr_emax + 0) +-#define mpfr_get_default_rounding_mode() (__gmpfr_default_rounding_mode + 0) +-#define mpfr_get_default_prec() (__gmpfr_default_fp_bit_precision + 0) ++/* Replace some common functions for direct access to the global vars. ++ The casts prevent these macros from being used as a lvalue (and this ++ method makes sure that the expressions have the correct type). */ ++#define mpfr_get_emin() ((mpfr_exp_t) __gmpfr_emin) ++#define mpfr_get_emax() ((mpfr_exp_t) __gmpfr_emax) ++#define mpfr_get_default_rounding_mode() \ ++ ((mpfr_rnd_t) __gmpfr_default_rounding_mode) ++#define mpfr_get_default_prec() \ ++ ((mpfr_prec_t) __gmpfr_default_fp_bit_precision) + + #define mpfr_clear_flags() \ + ((void) (__gmpfr_flags = 0)) +diff -Naurd mpfr-3.1.5-a/src/mpfr.h mpfr-3.1.5-b/src/mpfr.h +--- mpfr-3.1.5-a/src/mpfr.h 2017-06-06 20:24:00.604701719 +0000 ++++ mpfr-3.1.5-b/src/mpfr.h 2017-06-06 20:31:35.939341259 +0000 +@@ -27,7 +27,7 @@ + #define MPFR_VERSION_MAJOR 3 + #define MPFR_VERSION_MINOR 1 + #define MPFR_VERSION_PATCHLEVEL 5 +-#define MPFR_VERSION_STRING "3.1.5-p7" ++#define MPFR_VERSION_STRING "3.1.5-p8" + + /* Macros dealing with MPFR VERSION */ + #define MPFR_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c)) +diff -Naurd mpfr-3.1.5-a/src/version.c mpfr-3.1.5-b/src/version.c +--- mpfr-3.1.5-a/src/version.c 2017-06-06 20:24:00.604701719 +0000 ++++ mpfr-3.1.5-b/src/version.c 2017-06-06 20:31:35.943341213 +0000 +@@ -25,5 +25,5 @@ + const char * + mpfr_get_version (void) + { +- return "3.1.5-p7"; ++ return "3.1.5-p8"; + } +diff -Naurd mpfr-3.1.5-a/tests/mpf_compat.h mpfr-3.1.5-b/tests/mpf_compat.h +--- mpfr-3.1.5-a/tests/mpf_compat.h 2016-09-27 07:58:14.000000000 +0000 ++++ mpfr-3.1.5-b/tests/mpf_compat.h 2017-06-06 20:31:35.931341353 +0000 +@@ -20,16 +20,10 @@ + http://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc., + 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ + +-#if defined (__cplusplus) +-#include +-#else +-#include +-#endif + #include +-#include + +-#include "gmp.h" +-#include "mpfr.h" ++#include "mpfr-impl.h" ++ + #ifdef MPFR + #include "mpf2mpfr.h" + #endif +@@ -228,6 +222,16 @@ + exit (1); + } + ++ /* non-regression tests for bugs fixed in revision 11565 */ ++ mpf_set_si (x, -1); ++ MPFR_ASSERTN(mpf_fits_ulong_p (x) == 0); ++ MPFR_ASSERTN(mpf_fits_slong_p (x) != 0); ++ MPFR_ASSERTN(mpf_fits_uint_p (x) == 0); ++ MPFR_ASSERTN(mpf_fits_sint_p (x) != 0); ++ MPFR_ASSERTN(mpf_fits_ushort_p (x) == 0); ++ MPFR_ASSERTN(mpf_fits_sshort_p (x) != 0); ++ MPFR_ASSERTN(mpf_get_si (x) == -1); ++ + /* clear all variables */ + mpf_clear (y); + mpf_clear (x); -- GitLab From 890286487e7834e47b98ab9b54a8eafa15640431 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Thu, 29 Jun 2017 07:33:47 +0200 Subject: [PATCH 307/608] Add SVG and Statistics::Basic to recent Perl --- easybuild/easyconfigs/p/Perl/Perl-5.22.1-foss-2016a.eb | 8 ++++++++ easybuild/easyconfigs/p/Perl/Perl-5.22.1-foss-2016b.eb | 8 ++++++++ easybuild/easyconfigs/p/Perl/Perl-5.22.1-intel-2016a.eb | 8 ++++++++ easybuild/easyconfigs/p/Perl/Perl-5.22.2-goolf-1.7.20.eb | 8 ++++++++ easybuild/easyconfigs/p/Perl/Perl-5.22.2-intel-2016a.eb | 8 ++++++++ .../easyconfigs/p/Perl/Perl-5.24.0-GCC-5.4.0-2.26.eb | 8 ++++++++ easybuild/easyconfigs/p/Perl/Perl-5.24.0-GCCcore-4.9.3.eb | 8 ++++++++ easybuild/easyconfigs/p/Perl/Perl-5.24.0-intel-2016b.eb | 8 ++++++++ easybuild/easyconfigs/p/Perl/Perl-5.24.1-intel-2017a.eb | 8 ++++++++ 9 files changed, 72 insertions(+) diff --git a/easybuild/easyconfigs/p/Perl/Perl-5.22.1-foss-2016a.eb b/easybuild/easyconfigs/p/Perl/Perl-5.22.1-foss-2016a.eb index f1ad7853f0..da492710dc 100644 --- a/easybuild/easyconfigs/p/Perl/Perl-5.22.1-foss-2016a.eb +++ b/easybuild/easyconfigs/p/Perl/Perl-5.22.1-foss-2016a.eb @@ -880,6 +880,14 @@ exts_list = [ 'source_tmpl': 'MailTools-2.14.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MA/MARKOV'], }), + ('SVG', '2.77', { + 'source_tmpl': 'SVG-2.77.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MA/MANWAR/'], + }), + ('Statistics::Basic', '1.6611', { + 'source_tmpl': 'Statistics-Basic-1.6611.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JE/JETTERO/'], + }), ] moduleclass = 'lang' diff --git a/easybuild/easyconfigs/p/Perl/Perl-5.22.1-foss-2016b.eb b/easybuild/easyconfigs/p/Perl/Perl-5.22.1-foss-2016b.eb index 873d35ef8a..40d7dcb64d 100644 --- a/easybuild/easyconfigs/p/Perl/Perl-5.22.1-foss-2016b.eb +++ b/easybuild/easyconfigs/p/Perl/Perl-5.22.1-foss-2016b.eb @@ -880,6 +880,14 @@ exts_list = [ 'source_tmpl': 'MailTools-2.14.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MA/MARKOV'], }), + ('SVG', '2.77', { + 'source_tmpl': 'SVG-2.77.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MA/MANWAR/'], + }), + ('Statistics::Basic', '1.6611', { + 'source_tmpl': 'Statistics-Basic-1.6611.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JE/JETTERO/'], + }), ] moduleclass = 'lang' diff --git a/easybuild/easyconfigs/p/Perl/Perl-5.22.1-intel-2016a.eb b/easybuild/easyconfigs/p/Perl/Perl-5.22.1-intel-2016a.eb index b58ce50af4..84b07d8df7 100644 --- a/easybuild/easyconfigs/p/Perl/Perl-5.22.1-intel-2016a.eb +++ b/easybuild/easyconfigs/p/Perl/Perl-5.22.1-intel-2016a.eb @@ -881,6 +881,14 @@ exts_list = [ 'source_tmpl': 'MailTools-2.14.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MA/MARKOV'], }), + ('SVG', '2.77', { + 'source_tmpl': 'SVG-2.77.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MA/MANWAR/'], + }), + ('Statistics::Basic', '1.6611', { + 'source_tmpl': 'Statistics-Basic-1.6611.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JE/JETTERO/'], + }), ] moduleclass = 'lang' diff --git a/easybuild/easyconfigs/p/Perl/Perl-5.22.2-goolf-1.7.20.eb b/easybuild/easyconfigs/p/Perl/Perl-5.22.2-goolf-1.7.20.eb index 2a1f8007bb..f1a40e88cc 100644 --- a/easybuild/easyconfigs/p/Perl/Perl-5.22.2-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/p/Perl/Perl-5.22.2-goolf-1.7.20.eb @@ -879,6 +879,14 @@ exts_list = [ 'source_tmpl': 'MailTools-2.18.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MA/MARKOV'], }), + ('SVG', '2.77', { + 'source_tmpl': 'SVG-2.77.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MA/MANWAR/'], + }), + ('Statistics::Basic', '1.6611', { + 'source_tmpl': 'Statistics-Basic-1.6611.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JE/JETTERO/'], + }), ] moduleclass = 'lang' diff --git a/easybuild/easyconfigs/p/Perl/Perl-5.22.2-intel-2016a.eb b/easybuild/easyconfigs/p/Perl/Perl-5.22.2-intel-2016a.eb index c8a4524d45..972556dd95 100644 --- a/easybuild/easyconfigs/p/Perl/Perl-5.22.2-intel-2016a.eb +++ b/easybuild/easyconfigs/p/Perl/Perl-5.22.2-intel-2016a.eb @@ -880,6 +880,14 @@ exts_list = [ 'source_tmpl': 'MailTools-2.18.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MA/MARKOV'], }), + ('SVG', '2.77', { + 'source_tmpl': 'SVG-2.77.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MA/MANWAR/'], + }), + ('Statistics::Basic', '1.6611', { + 'source_tmpl': 'Statistics-Basic-1.6611.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JE/JETTERO/'], + }), ] moduleclass = 'lang' diff --git a/easybuild/easyconfigs/p/Perl/Perl-5.24.0-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/p/Perl/Perl-5.24.0-GCC-5.4.0-2.26.eb index f39c5f51b0..ff9b04399d 100644 --- a/easybuild/easyconfigs/p/Perl/Perl-5.24.0-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/p/Perl/Perl-5.24.0-GCC-5.4.0-2.26.eb @@ -887,6 +887,14 @@ exts_list = [ 'source_tmpl': 'PDF-API2-2.031.tar.gz', 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SS/SSIMMS/'], }), + ('SVG', '2.77', { + 'source_tmpl': 'SVG-2.77.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MA/MANWAR/'], + }), + ('Statistics::Basic', '1.6611', { + 'source_tmpl': 'Statistics-Basic-1.6611.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JE/JETTERO/'], + }), ] moduleclass = 'lang' diff --git a/easybuild/easyconfigs/p/Perl/Perl-5.24.0-GCCcore-4.9.3.eb b/easybuild/easyconfigs/p/Perl/Perl-5.24.0-GCCcore-4.9.3.eb index 47164262e3..62d5ecc186 100644 --- a/easybuild/easyconfigs/p/Perl/Perl-5.24.0-GCCcore-4.9.3.eb +++ b/easybuild/easyconfigs/p/Perl/Perl-5.24.0-GCCcore-4.9.3.eb @@ -889,6 +889,14 @@ exts_list = [ 'source_tmpl': 'PDF-API2-2.031.tar.gz', 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SS/SSIMMS/'], }), + ('SVG', '2.77', { + 'source_tmpl': 'SVG-2.77.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MA/MANWAR/'], + }), + ('Statistics::Basic', '1.6611', { + 'source_tmpl': 'Statistics-Basic-1.6611.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JE/JETTERO/'], + }), ] moduleclass = 'lang' diff --git a/easybuild/easyconfigs/p/Perl/Perl-5.24.0-intel-2016b.eb b/easybuild/easyconfigs/p/Perl/Perl-5.24.0-intel-2016b.eb index 8fd86e040f..da2611b723 100644 --- a/easybuild/easyconfigs/p/Perl/Perl-5.24.0-intel-2016b.eb +++ b/easybuild/easyconfigs/p/Perl/Perl-5.24.0-intel-2016b.eb @@ -888,6 +888,14 @@ exts_list = [ 'source_tmpl': 'PDF-API2-2.031.tar.gz', 'source_urls': ['http://search.cpan.org/CPAN/authors/id/S/SS/SSIMMS/'], }), + ('SVG', '2.77', { + 'source_tmpl': 'SVG-2.77.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MA/MANWAR/'], + }), + ('Statistics::Basic', '1.6611', { + 'source_tmpl': 'Statistics-Basic-1.6611.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JE/JETTERO/'], + }), ] moduleclass = 'lang' diff --git a/easybuild/easyconfigs/p/Perl/Perl-5.24.1-intel-2017a.eb b/easybuild/easyconfigs/p/Perl/Perl-5.24.1-intel-2017a.eb index cc1cd43ca8..4dc5dd9a5c 100644 --- a/easybuild/easyconfigs/p/Perl/Perl-5.24.1-intel-2017a.eb +++ b/easybuild/easyconfigs/p/Perl/Perl-5.24.1-intel-2017a.eb @@ -894,6 +894,14 @@ exts_list = [ 'source_tmpl': 'Devel-CheckLib-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MA/MATTN'], }), + ('SVG', '2.77', { + 'source_tmpl': 'SVG-2.77.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MA/MANWAR/'], + }), + ('Statistics::Basic', '1.6611', { + 'source_tmpl': 'Statistics-Basic-1.6611.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JE/JETTERO/'], + }), ] moduleclass = 'lang' -- GitLab From 5b04767e8556f1834f54addf2d86480cdd5ffd39 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 29 Jun 2017 12:22:47 +0200 Subject: [PATCH 308/608] adding easyconfigs: ABAQUS-2017-hotfix-1721.eb --- .../a/ABAQUS/ABAQUS-2017-hotfix-1721.eb | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 easybuild/easyconfigs/a/ABAQUS/ABAQUS-2017-hotfix-1721.eb diff --git a/easybuild/easyconfigs/a/ABAQUS/ABAQUS-2017-hotfix-1721.eb b/easybuild/easyconfigs/a/ABAQUS/ABAQUS-2017-hotfix-1721.eb new file mode 100644 index 0000000000..c0357522cc --- /dev/null +++ b/easybuild/easyconfigs/a/ABAQUS/ABAQUS-2017-hotfix-1721.eb @@ -0,0 +1,24 @@ +name = 'ABAQUS' +version = '2017' +hotfix = '1721' +versionsuffix = '-hotfix-%s' % hotfix + +homepage = 'http://www.simulia.com/products/abaqus_fea.html' +description = """Finite Element Analysis software for modeling, visualization and best-in-class implicit and explicit + dynamics FEA.""" + +toolchain = {'name': 'dummy', 'version': ''} + +sources = [ + '%(version)s.AM_SIM_Abaqus_Extend.AllOS.1-6.tar', + '%(version)s.AM_SIM_Abaqus_Extend.AllOS.2-6.tar', + '%(version)s.AM_SIM_Abaqus_Extend.AllOS.3-6.tar', + '%(version)s.AM_SIM_Abaqus_Extend.AllOS.4-6.tar', + '%(version)s.AM_SIM_Abaqus_Extend.AllOS.5-6.tar', + '%(version)s.AM_SIM_Abaqus_Extend.AllOS.6-6.tar', + # hotfixes + '%%(version)s.FP.CFA.%s.Part_3DEXP_SimulationServices.Linux64.tar' % hotfix, + '%%(version)s.FP.CFA.%s.Part_SIMULIA_Abaqus_CAE.Linux64.tar' % hotfix, +] + +moduleclass = 'cae' -- GitLab From cb667e0a0f27f4d659780bbc2c67064a46453538 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 29 Jun 2017 17:34:55 +0200 Subject: [PATCH 309/608] {bio}[intel/2017a] NCBI-Toolkit 18.0.0 --- .../l/libxslt/libxslt-1.1.29-intel-2017a.eb | 24 ++++++++++ .../NCBI-Toolkit-18.0.0-intel-2017a.eb | 46 +++++++++++++++++++ ...NCBI-Toolkit-18.0.0_fix-make-install.patch | 14 ++++++ 3 files changed, 84 insertions(+) create mode 100644 easybuild/easyconfigs/l/libxslt/libxslt-1.1.29-intel-2017a.eb create mode 100644 easybuild/easyconfigs/n/NCBI-Toolkit/NCBI-Toolkit-18.0.0-intel-2017a.eb create mode 100644 easybuild/easyconfigs/n/NCBI-Toolkit/NCBI-Toolkit-18.0.0_fix-make-install.patch diff --git a/easybuild/easyconfigs/l/libxslt/libxslt-1.1.29-intel-2017a.eb b/easybuild/easyconfigs/l/libxslt/libxslt-1.1.29-intel-2017a.eb new file mode 100644 index 0000000000..03b3d4547e --- /dev/null +++ b/easybuild/easyconfigs/l/libxslt/libxslt-1.1.29-intel-2017a.eb @@ -0,0 +1,24 @@ +easyblock = 'ConfigureMake' + +name = 'libxslt' +version = '1.1.29' + +homepage = 'http://xmlsoft.org/' +description = """Libxslt is the XSLT C library developed for the GNOME project + (but usable outside of the Gnome platform).""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [ + 'http://xmlsoft.org/sources/', + 'http://xmlsoft.org/sources/old/' +] + +sources = [SOURCELOWER_TAR_GZ] + +dependencies = [ + ('zlib', '1.2.11'), + ('libxml2', '2.9.4'), +] + +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/n/NCBI-Toolkit/NCBI-Toolkit-18.0.0-intel-2017a.eb b/easybuild/easyconfigs/n/NCBI-Toolkit/NCBI-Toolkit-18.0.0-intel-2017a.eb new file mode 100644 index 0000000000..c29b279f64 --- /dev/null +++ b/easybuild/easyconfigs/n/NCBI-Toolkit/NCBI-Toolkit-18.0.0-intel-2017a.eb @@ -0,0 +1,46 @@ +easyblock = 'ConfigureMake' + +name = 'NCBI-Toolkit' +version = '18.0.0' + +homepage = 'http://ncbi.github.io/cxx-toolkit/' +description = """The NCBI Toolkit is a collection of utilities developed for the + production and distribution of GenBank, Entrez, BLAST, and related services + by the National Center for Biotechnology Information.""" +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [ + 'ftp://ftp.ncbi.nih.gov/toolbox/ncbi_tools++/CURRENT', + 'ftp://ftp.ncbi.nih.gov/toolbox/ncbi_tools++/ARCHIVE/2017/Jan_10_2017/', +] +sources = ['ncbi_cxx--%s.tar.gz' % '_'.join(version.split('.'))] +patches = ['NCBI-Toolkit-%(version)s_fix-make-install.patch'] +checksums = [ + 'f9c47db64e5e31fcb8fdebb165c3eb895cb1668e419f4b917414aadf70f1bdf5', # ncbi_cxx--18_0_0.tar.gz + 'c3e0fe8dcf5bd95c9efd9dcf3613bb053a16597eb40d4c23b8f1f7ae5e19951a', # NCBI-Toolkit-18.0.0_fix-make-install.patch +] + +dependencies = [ + ('Boost', '1.58.0'), + ('SAMtools', '1.4.1'), + ('HTSlib', '1.4.1'), + ('Python', '2.7.13'), + ('libxslt', '1.1.29'), +] + +preconfigopts = 'export CFLAGS="$CFLAGS -wd3377" && export CXXFLAGS="$CXXFLAGS -wd3377" && ' +preconfigopts += 'export LIBS="$LIBS -lstdc++" && ' +configopts = '--with-boost=$EBROOTBOOST --with-python=$EBROOTPYTHON ' +configopts += '--with-libxml=$EBROOTLIBXML2 --with-libxslt=$EBROOTLIBXSLT ' +configopts += '--with-dll --with-bin-release --with-mt ' +configopts += '--without-debug --without-ccache' + +buildopts = 'SAMTOOLS=$EBROOTSAMTOOLS SAMTOOLS_INCLUDE="-I$EBROOTSAMTOOLS/include/bam -I$EBROOTHTSLIB/include" ' +buildopts += 'SAMTOOLS_LIBS="-L$EBROOTSAMTOOLS/lib -lbam -L$EBROOTHTSLIB/lib -lhts"' + +sanity_check_paths = { + 'files': ['bin/blastn', 'bin/blastp', 'bin/blastx', 'bin/table2asn'], + 'dirs': [] +} + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/n/NCBI-Toolkit/NCBI-Toolkit-18.0.0_fix-make-install.patch b/easybuild/easyconfigs/n/NCBI-Toolkit/NCBI-Toolkit-18.0.0_fix-make-install.patch new file mode 100644 index 0000000000..e02333d788 --- /dev/null +++ b/easybuild/easyconfigs/n/NCBI-Toolkit/NCBI-Toolkit-18.0.0_fix-make-install.patch @@ -0,0 +1,14 @@ +fix for "omitting directory" error on installing of 'inc/common' during 'make install' +author: Kenneth Hoste (HPC-UGent) +--- ncbi_cxx--18_0_0/src/build-system/Makefile.in.top.orig 2017-06-29 14:51:43.855712613 +0200 ++++ ncbi_cxx--18_0_0/src/build-system/Makefile.in.top 2017-06-29 14:54:47.876416764 +0200 +@@ -51,7 +51,8 @@ + done + cd $(includedir0) && find * -name CVS -prune -o -print |\ + cpio -pd $(pincludedir) +- $(INSTALL) -m 644 $(incdir)/* $(pincludedir) ++ $(INSTALL) -m 644 $(incdir)/*.h $(pincludedir) ++ $(INSTALL) -m 644 $(incdir)/common/* $(pincludedir)/common + ## set up appropriate build and status directories somewhere under $(libdir)? + + install-gbench: -- GitLab From 0002d42891421489d1eb537097499a5d843b0467 Mon Sep 17 00:00:00 2001 From: Anuj Sharm Date: Fri, 30 Jun 2017 01:09:19 +0100 Subject: [PATCH 310/608] adding easyconfig: OpenCoarrays-1.9.0-gompi-2017a.eb --- .../OpenCoarrays-1.9.0-gompi-2017a.eb | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 easybuild/easyconfigs/o/OpenCoarrays/OpenCoarrays-1.9.0-gompi-2017a.eb diff --git a/easybuild/easyconfigs/o/OpenCoarrays/OpenCoarrays-1.9.0-gompi-2017a.eb b/easybuild/easyconfigs/o/OpenCoarrays/OpenCoarrays-1.9.0-gompi-2017a.eb new file mode 100644 index 0000000000..03a9dacdd6 --- /dev/null +++ b/easybuild/easyconfigs/o/OpenCoarrays/OpenCoarrays-1.9.0-gompi-2017a.eb @@ -0,0 +1,30 @@ +easyblock = 'CMakeMake' + +name = 'OpenCoarrays' +version = '1.9.0' + +homepage = 'https://github.com/sourceryinstitute/opencoarrays' +description = """OpenCoarrays is an open-source software project that supports +the coarray Fortran (CAF) parallel programming features of the Fortran 2008 +standard and several features proposed for Fortran 2015 in the draft Technical +Specification TS 18508 Additional Parallel Features in Fortran.""" + +toolchain = {'name': 'gompi', 'version': '2017a'} +toolchainopts = {'pic': True} + +source_urls = ['%s/releases/download/%s' % (homepage, version)] + +sources = [SOURCE_TAR_GZ] + +separate_build_dir = True + +sanity_check_paths = { + 'files': ['lib/%s' % x for x in ['libcaf_mpi.a']] + + ['include/%s' % x for x in ['opencoarrays.mod']] + + ['bin/%s' % x for x in ['caf', 'cafrun']], + 'dirs': ['bin'] + + ['include'] + + ['lib'] +} + +moduleclass = 'mpi' -- GitLab From b300e5226ae59ad14bd477c0ae840f712d5b12f9 Mon Sep 17 00:00:00 2001 From: Benjamin Roberts Date: Fri, 30 Jun 2017 16:46:16 +1200 Subject: [PATCH 311/608] Remove extra commands now in EasyBlock --- easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-gimkl-2017a.eb | 7 ------- 1 file changed, 7 deletions(-) diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-gimkl-2017a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-gimkl-2017a.eb index 57cd66e064..b35a90f186 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-gimkl-2017a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-gimkl-2017a.eb @@ -16,16 +16,9 @@ source_urls = [ sources = [SOURCELOWER_TAR_GZ] checksums = ['dd2148b740713ca0295442ec683d7b1c'] -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - dependencies = [ ('zlib', '1.2.11'), ('Szip', '2.1'), ] -# Needed for h5py in Python (at least sometimes) -modextravars = { - 'HDF5_DIR': '%(installdir)s', -} - moduleclass = 'data' -- GitLab From 8b97fccb20c68a77931953f6c76e36b520c0ed03 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Fri, 30 Jun 2017 08:57:31 +0200 Subject: [PATCH 312/608] add missing easyconfig for Boost 1.58.0 dependency to NCBI-Toolkit 18.0.0 --- .../b/Boost/Boost-1.58.0-intel-2017a.eb | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 easybuild/easyconfigs/b/Boost/Boost-1.58.0-intel-2017a.eb diff --git a/easybuild/easyconfigs/b/Boost/Boost-1.58.0-intel-2017a.eb b/easybuild/easyconfigs/b/Boost/Boost-1.58.0-intel-2017a.eb new file mode 100644 index 0000000000..13f1c926c3 --- /dev/null +++ b/easybuild/easyconfigs/b/Boost/Boost-1.58.0-intel-2017a.eb @@ -0,0 +1,23 @@ +name = 'Boost' +version = '1.58.0' + +homepage = 'http://www.boost.org/' +description = """Boost provides free peer-reviewed portable C++ source libraries.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'pic': True, 'usempi': True} + +source_urls = [SOURCEFORGE_SOURCE] +sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))] + +dependencies = [ + ('bzip2', '1.0.6'), + ('zlib', '1.2.11'), +] + +configopts = '--without-libraries=python' + +# also build boost_mpi +boost_mpi = True + +moduleclass = 'devel' -- GitLab From 2e2e34427a9220ef4cfb6792cd3dce40026c0ac6 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Fri, 30 Jun 2017 10:16:14 +0200 Subject: [PATCH 313/608] sync/fix source_urls & homepage in HDF5 easyconfig --- easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-gimkl-2017a.eb | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-gimkl-2017a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-gimkl-2017a.eb index b35a90f186..11630b75f7 100644 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-gimkl-2017a.eb +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-gimkl-2017a.eb @@ -1,17 +1,14 @@ name = 'HDF5' version = '1.8.18' -homepage = 'http://www.hdfgroup.org/HDF5/' +homepage = 'https://support.hdfgroup.org/HDF5/' description = """HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.""" toolchain = {'name': 'gimkl', 'version': '2017a'} toolchainopts = {'pic': True, 'usempi': True} -source_urls = [ - 'https://support.hdfgroup.org/ftp/HDF5/current18/src/', - 'https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(versions)/src/' -] +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] sources = [SOURCELOWER_TAR_GZ] checksums = ['dd2148b740713ca0295442ec683d7b1c'] -- GitLab From 8d143f0527f960f527c046f32215366b43b3313f Mon Sep 17 00:00:00 2001 From: Anuj Sharm Date: Sat, 1 Jul 2017 13:53:20 +0100 Subject: [PATCH 314/608] adding easyconfig: OpenCoarrays-1.9.0-gompi-2017a.eb Included the style changes and added the CMake dependency --- .../o/OpenCoarrays/OpenCoarrays-1.9.0-gompi-2017a.eb | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/easybuild/easyconfigs/o/OpenCoarrays/OpenCoarrays-1.9.0-gompi-2017a.eb b/easybuild/easyconfigs/o/OpenCoarrays/OpenCoarrays-1.9.0-gompi-2017a.eb index 03a9dacdd6..19bc16c65e 100644 --- a/easybuild/easyconfigs/o/OpenCoarrays/OpenCoarrays-1.9.0-gompi-2017a.eb +++ b/easybuild/easyconfigs/o/OpenCoarrays/OpenCoarrays-1.9.0-gompi-2017a.eb @@ -12,19 +12,17 @@ Specification TS 18508 Additional Parallel Features in Fortran.""" toolchain = {'name': 'gompi', 'version': '2017a'} toolchainopts = {'pic': True} -source_urls = ['%s/releases/download/%s' % (homepage, version)] +source_urls = ['https://github.com/sourceryinstitute/opencoarrays/releases/download/%(version)s'] sources = [SOURCE_TAR_GZ] separate_build_dir = True +builddependencies = [('CMake', '3.8.2')] + sanity_check_paths = { - 'files': ['lib/%s' % x for x in ['libcaf_mpi.a']] + - ['include/%s' % x for x in ['opencoarrays.mod']] + - ['bin/%s' % x for x in ['caf', 'cafrun']], - 'dirs': ['bin'] + - ['include'] + - ['lib'] + 'files': ['bin/caf', 'bin/cafrun', 'include/opencoarrays.mod', 'lib/libcaf_mpi.a'], + 'dirs': [], } moduleclass = 'mpi' -- GitLab From 0859a3b1aec1aca96597f50feab5aa6d543cb0b0 Mon Sep 17 00:00:00 2001 From: Anuj Sharm Date: Sat, 1 Jul 2017 14:24:53 +0100 Subject: [PATCH 315/608] adding easyconfig: OpenCoarrays-1.9.0-gompi-2017a.eb Fixed trailing whitespace --- .../o/OpenCoarrays/OpenCoarrays-1.9.0-gompi-2017a.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/o/OpenCoarrays/OpenCoarrays-1.9.0-gompi-2017a.eb b/easybuild/easyconfigs/o/OpenCoarrays/OpenCoarrays-1.9.0-gompi-2017a.eb index 19bc16c65e..fe75320f74 100644 --- a/easybuild/easyconfigs/o/OpenCoarrays/OpenCoarrays-1.9.0-gompi-2017a.eb +++ b/easybuild/easyconfigs/o/OpenCoarrays/OpenCoarrays-1.9.0-gompi-2017a.eb @@ -22,7 +22,7 @@ builddependencies = [('CMake', '3.8.2')] sanity_check_paths = { 'files': ['bin/caf', 'bin/cafrun', 'include/opencoarrays.mod', 'lib/libcaf_mpi.a'], - 'dirs': [], + 'dirs': [], } moduleclass = 'mpi' -- GitLab From 8e054be4f1803c1e117246ba929ca24522665ad3 Mon Sep 17 00:00:00 2001 From: Anuj Sharm Date: Sat, 1 Jul 2017 22:47:02 +0100 Subject: [PATCH 316/608] adding easyconfig: OpenCoarrays-1.9.0-gompi-2017a.eb Updated sanity check --- .../o/OpenCoarrays/OpenCoarrays-1.9.0-gompi-2017a.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/o/OpenCoarrays/OpenCoarrays-1.9.0-gompi-2017a.eb b/easybuild/easyconfigs/o/OpenCoarrays/OpenCoarrays-1.9.0-gompi-2017a.eb index fe75320f74..c1b457179d 100644 --- a/easybuild/easyconfigs/o/OpenCoarrays/OpenCoarrays-1.9.0-gompi-2017a.eb +++ b/easybuild/easyconfigs/o/OpenCoarrays/OpenCoarrays-1.9.0-gompi-2017a.eb @@ -21,7 +21,7 @@ separate_build_dir = True builddependencies = [('CMake', '3.8.2')] sanity_check_paths = { - 'files': ['bin/caf', 'bin/cafrun', 'include/opencoarrays.mod', 'lib/libcaf_mpi.a'], + 'files': ['bin/caf', 'bin/cafrun', 'include/opencoarrays.mod', ('lib/libcaf_mpi.a', 'lib64/libcaf_mpi.a')], 'dirs': [], } -- GitLab From 67be0389f4ed57b5db1f6e6a060278a9b13733e7 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 3 Jul 2017 11:22:18 +0200 Subject: [PATCH 317/608] add missing DB dependency for NCBI-Toolkit --- .../easyconfigs/d/DB/DB-6.2.23-intel-2017a.eb | 18 ++++++++++++++++++ .../NCBI-Toolkit-18.0.0-intel-2017a.eb | 1 + 2 files changed, 19 insertions(+) create mode 100644 easybuild/easyconfigs/d/DB/DB-6.2.23-intel-2017a.eb diff --git a/easybuild/easyconfigs/d/DB/DB-6.2.23-intel-2017a.eb b/easybuild/easyconfigs/d/DB/DB-6.2.23-intel-2017a.eb new file mode 100644 index 0000000000..e519c86c5f --- /dev/null +++ b/easybuild/easyconfigs/d/DB/DB-6.2.23-intel-2017a.eb @@ -0,0 +1,18 @@ +name = 'DB' +version = '6.2.23' + +homepage = 'http://www.oracle.com/technetwork/products/berkeleydb' +description = """Berkeley DB enables the development of custom data management solutions, + without the overhead traditionally associated with such custom projects.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +# download via http://www.oracle.com/technetwork/products/berkeleydb/downloads/, requires registration +sources = [SOURCELOWER_TAR_GZ] + +sanity_check_paths = { + 'files': ['include/db.h', 'lib/libdb.a', 'lib/libdb.%s' % SHLIB_EXT], + 'dirs': ['bin'], +} + +moduleclass = 'tools' diff --git a/easybuild/easyconfigs/n/NCBI-Toolkit/NCBI-Toolkit-18.0.0-intel-2017a.eb b/easybuild/easyconfigs/n/NCBI-Toolkit/NCBI-Toolkit-18.0.0-intel-2017a.eb index c29b279f64..4d14bced16 100644 --- a/easybuild/easyconfigs/n/NCBI-Toolkit/NCBI-Toolkit-18.0.0-intel-2017a.eb +++ b/easybuild/easyconfigs/n/NCBI-Toolkit/NCBI-Toolkit-18.0.0-intel-2017a.eb @@ -26,6 +26,7 @@ dependencies = [ ('HTSlib', '1.4.1'), ('Python', '2.7.13'), ('libxslt', '1.1.29'), + ('DB', '6.2.23'), ] preconfigopts = 'export CFLAGS="$CFLAGS -wd3377" && export CXXFLAGS="$CXXFLAGS -wd3377" && ' -- GitLab From c386dbc57f9a1a337a39c4ea517f351495cab8e8 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 3 Jul 2017 12:05:22 +0200 Subject: [PATCH 318/608] include joblib as extension in recent Python easyconfigs --- easybuild/easyconfigs/p/Python/Python-2.7.13-foss-2017a.eb | 3 +++ easybuild/easyconfigs/p/Python/Python-2.7.13-intel-2017a.eb | 3 +++ easybuild/easyconfigs/p/Python/Python-3.6.1-intel-2017a.eb | 3 +++ 3 files changed, 9 insertions(+) diff --git a/easybuild/easyconfigs/p/Python/Python-2.7.13-foss-2017a.eb b/easybuild/easyconfigs/p/Python/Python-2.7.13-foss-2017a.eb index 21d606f252..836a809f6b 100644 --- a/easybuild/easyconfigs/p/Python/Python-2.7.13-foss-2017a.eb +++ b/easybuild/easyconfigs/p/Python/Python-2.7.13-foss-2017a.eb @@ -133,6 +133,9 @@ exts_list = [ ('docopt', '0.6.2', { 'source_urls': ['https://pypi.python.org/packages/source/d/docopt'], }), + ('joblib', '0.11', { + 'source_urls': ['https://pypi.python.org/packages/source/j/joblib'], + }), ] moduleclass = 'lang' diff --git a/easybuild/easyconfigs/p/Python/Python-2.7.13-intel-2017a.eb b/easybuild/easyconfigs/p/Python/Python-2.7.13-intel-2017a.eb index 4ee5f95966..0bc26ff7b9 100644 --- a/easybuild/easyconfigs/p/Python/Python-2.7.13-intel-2017a.eb +++ b/easybuild/easyconfigs/p/Python/Python-2.7.13-intel-2017a.eb @@ -133,6 +133,9 @@ exts_list = [ ('docopt', '0.6.2', { 'source_urls': ['https://pypi.python.org/packages/source/d/docopt'], }), + ('joblib', '0.11', { + 'source_urls': ['https://pypi.python.org/packages/source/j/joblib'], + }), ] moduleclass = 'lang' diff --git a/easybuild/easyconfigs/p/Python/Python-3.6.1-intel-2017a.eb b/easybuild/easyconfigs/p/Python/Python-3.6.1-intel-2017a.eb index e17d931cf2..9157c902c6 100644 --- a/easybuild/easyconfigs/p/Python/Python-3.6.1-intel-2017a.eb +++ b/easybuild/easyconfigs/p/Python/Python-3.6.1-intel-2017a.eb @@ -125,6 +125,9 @@ exts_list = [ ('docopt', '0.6.2', { 'source_urls': ['https://pypi.python.org/packages/source/d/docopt'], }), + ('joblib', '0.11', { + 'source_urls': ['https://pypi.python.org/packages/source/j/joblib'], + }), ] moduleclass = 'lang' -- GitLab From 4cbb6857506998e5771547214cf8257d36719629 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 3 Jul 2017 15:53:28 +0200 Subject: [PATCH 319/608] bump DB to 6.2.32 as dep for NCBI-Toolkit --- .../DB/{DB-6.2.23-intel-2017a.eb => DB-6.2.32-intel-2017a.eb} | 3 ++- .../n/NCBI-Toolkit/NCBI-Toolkit-18.0.0-intel-2017a.eb | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) rename easybuild/easyconfigs/d/DB/{DB-6.2.23-intel-2017a.eb => DB-6.2.32-intel-2017a.eb} (85%) diff --git a/easybuild/easyconfigs/d/DB/DB-6.2.23-intel-2017a.eb b/easybuild/easyconfigs/d/DB/DB-6.2.32-intel-2017a.eb similarity index 85% rename from easybuild/easyconfigs/d/DB/DB-6.2.23-intel-2017a.eb rename to easybuild/easyconfigs/d/DB/DB-6.2.32-intel-2017a.eb index e519c86c5f..0eb67b8e2c 100644 --- a/easybuild/easyconfigs/d/DB/DB-6.2.23-intel-2017a.eb +++ b/easybuild/easyconfigs/d/DB/DB-6.2.32-intel-2017a.eb @@ -1,5 +1,5 @@ name = 'DB' -version = '6.2.23' +version = '6.2.32' homepage = 'http://www.oracle.com/technetwork/products/berkeleydb' description = """Berkeley DB enables the development of custom data management solutions, @@ -9,6 +9,7 @@ toolchain = {'name': 'intel', 'version': '2017a'} # download via http://www.oracle.com/technetwork/products/berkeleydb/downloads/, requires registration sources = [SOURCELOWER_TAR_GZ] +checksums = ['a9c5e2b004a5777aa03510cfe5cd766a4a3b777713406b02809c17c8e0e7a8fb'] sanity_check_paths = { 'files': ['include/db.h', 'lib/libdb.a', 'lib/libdb.%s' % SHLIB_EXT], diff --git a/easybuild/easyconfigs/n/NCBI-Toolkit/NCBI-Toolkit-18.0.0-intel-2017a.eb b/easybuild/easyconfigs/n/NCBI-Toolkit/NCBI-Toolkit-18.0.0-intel-2017a.eb index 4d14bced16..708e64725c 100644 --- a/easybuild/easyconfigs/n/NCBI-Toolkit/NCBI-Toolkit-18.0.0-intel-2017a.eb +++ b/easybuild/easyconfigs/n/NCBI-Toolkit/NCBI-Toolkit-18.0.0-intel-2017a.eb @@ -26,7 +26,7 @@ dependencies = [ ('HTSlib', '1.4.1'), ('Python', '2.7.13'), ('libxslt', '1.1.29'), - ('DB', '6.2.23'), + ('DB', '6.2.32'), ] preconfigopts = 'export CFLAGS="$CFLAGS -wd3377" && export CXXFLAGS="$CXXFLAGS -wd3377" && ' -- GitLab From b92163eaf6d685c063c40ce7a9214beb282cb373 Mon Sep 17 00:00:00 2001 From: Damian Alvarez Date: Mon, 3 Jul 2017 16:53:49 +0200 Subject: [PATCH 320/608] Changed moduleclass in mpi4py to better reflect what it is and to don't get HMNS confused --- .../m/mpi4py/mpi4py-1.3-goolf-1.4.10-Python-2.7.3.eb | 2 +- .../m/mpi4py/mpi4py-1.3-goolf-1.4.10-Python-3.2.3.eb | 2 +- .../easyconfigs/m/mpi4py/mpi4py-1.3-ictce-5.3.0-Python-2.7.3.eb | 2 +- .../easyconfigs/m/mpi4py/mpi4py-1.3-ictce-5.5.0-Python-2.7.5.eb | 2 +- .../mpi4py-1.3.1-intel-2015b-Python-2.7.10-timed-pingpong.eb | 2 +- .../m/mpi4py/mpi4py-1.3.1-intel-2015b-Python-2.7.10.eb | 2 +- .../mpi4py-1.3.1-intel-2015b-Python-2.7.11-timed-pingpong.eb | 2 +- .../mpi4py-1.3.1-intel-2016a-Python-2.7.11-timed-pingpong.eb | 2 +- .../mpi4py-1.3.1-intel-2016b-Python-2.7.12-timed-pingpong.eb | 2 +- .../m/mpi4py/mpi4py-2.0.0-intel-2015b-Python-2.7.10.eb | 2 +- .../m/mpi4py/mpi4py-2.0.0-intel-2016b-Python-2.7.12.eb | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3-goolf-1.4.10-Python-2.7.3.eb index e5d94c2ee2..b3cad4430c 100644 --- a/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3-goolf-1.4.10-Python-2.7.3.eb +++ b/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3-goolf-1.4.10-Python-2.7.3.eb @@ -26,4 +26,4 @@ sanity_check_paths = { 'dirs': ['lib/python%s/site-packages/mpi4py' % pyshortver], } -moduleclass = 'mpi' +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3-goolf-1.4.10-Python-3.2.3.eb b/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3-goolf-1.4.10-Python-3.2.3.eb index 4e871b0231..b04c0fc199 100644 --- a/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3-goolf-1.4.10-Python-3.2.3.eb +++ b/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3-goolf-1.4.10-Python-3.2.3.eb @@ -27,4 +27,4 @@ sanity_check_paths = { 'dirs': ['lib/python%s/site-packages/mpi4py' % pyshortver], } -moduleclass = 'mpi' +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3-ictce-5.3.0-Python-2.7.3.eb b/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3-ictce-5.3.0-Python-2.7.3.eb index 14d09f706a..9d22c53e8f 100644 --- a/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3-ictce-5.3.0-Python-2.7.3.eb +++ b/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3-ictce-5.3.0-Python-2.7.3.eb @@ -24,4 +24,4 @@ sanity_check_paths = { 'dirs': ['lib/python%s/site-packages/mpi4py' % pyshortver], } -moduleclass = 'mpi' +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3-ictce-5.5.0-Python-2.7.5.eb b/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3-ictce-5.5.0-Python-2.7.5.eb index 96628ba336..7f116835fa 100644 --- a/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3-ictce-5.5.0-Python-2.7.5.eb +++ b/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3-ictce-5.5.0-Python-2.7.5.eb @@ -24,4 +24,4 @@ sanity_check_paths = { 'dirs': ['lib/python%s/site-packages/mpi4py' % pyshortver], } -moduleclass = 'mpi' +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3.1-intel-2015b-Python-2.7.10-timed-pingpong.eb b/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3.1-intel-2015b-Python-2.7.10-timed-pingpong.eb index e8592db2a2..88c6067f4d 100644 --- a/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3.1-intel-2015b-Python-2.7.10-timed-pingpong.eb +++ b/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3.1-intel-2015b-Python-2.7.10-timed-pingpong.eb @@ -34,4 +34,4 @@ sanity_check_commands = [ ('python', '-c "from mpi4py.MPI import Comm; import sys; sys.exit((1, 0)[\'PingpongRS\' in dir(Comm)])"'), ] -moduleclass = 'mpi' +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3.1-intel-2015b-Python-2.7.10.eb b/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3.1-intel-2015b-Python-2.7.10.eb index 9ee5130156..5e3a747282 100644 --- a/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3.1-intel-2015b-Python-2.7.10.eb +++ b/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3.1-intel-2015b-Python-2.7.10.eb @@ -23,4 +23,4 @@ sanity_check_paths = { 'dirs': ['lib/python%s/site-packages/mpi4py' % py_maj_min], } -moduleclass = 'mpi' +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3.1-intel-2015b-Python-2.7.11-timed-pingpong.eb b/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3.1-intel-2015b-Python-2.7.11-timed-pingpong.eb index 8f22d6b607..633d85b7c2 100644 --- a/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3.1-intel-2015b-Python-2.7.11-timed-pingpong.eb +++ b/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3.1-intel-2015b-Python-2.7.11-timed-pingpong.eb @@ -31,4 +31,4 @@ sanity_check_commands = [ ('python', '-c "from mpi4py.MPI import Comm; import sys; sys.exit((1, 0)[\'PingpongRS\' in dir(Comm)])"'), ] -moduleclass = 'mpi' +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3.1-intel-2016a-Python-2.7.11-timed-pingpong.eb b/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3.1-intel-2016a-Python-2.7.11-timed-pingpong.eb index 654b6f59ec..01ec7adf94 100644 --- a/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3.1-intel-2016a-Python-2.7.11-timed-pingpong.eb +++ b/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3.1-intel-2016a-Python-2.7.11-timed-pingpong.eb @@ -31,4 +31,4 @@ sanity_check_commands = [ ('python', '-c "from mpi4py.MPI import Comm; import sys; sys.exit((1, 0)[\'PingpongRS\' in dir(Comm)])"'), ] -moduleclass = 'mpi' +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3.1-intel-2016b-Python-2.7.12-timed-pingpong.eb b/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3.1-intel-2016b-Python-2.7.12-timed-pingpong.eb index e2e1da4cf2..94ab105eff 100644 --- a/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3.1-intel-2016b-Python-2.7.12-timed-pingpong.eb +++ b/easybuild/easyconfigs/m/mpi4py/mpi4py-1.3.1-intel-2016b-Python-2.7.12-timed-pingpong.eb @@ -31,4 +31,4 @@ sanity_check_commands = [ ('python', '-c "from mpi4py.MPI import Comm; import sys; sys.exit((1, 0)[\'PingpongRS\' in dir(Comm)])"'), ] -moduleclass = 'mpi' +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/m/mpi4py/mpi4py-2.0.0-intel-2015b-Python-2.7.10.eb b/easybuild/easyconfigs/m/mpi4py/mpi4py-2.0.0-intel-2015b-Python-2.7.10.eb index 0bec59079b..934953ce0a 100644 --- a/easybuild/easyconfigs/m/mpi4py/mpi4py-2.0.0-intel-2015b-Python-2.7.10.eb +++ b/easybuild/easyconfigs/m/mpi4py/mpi4py-2.0.0-intel-2015b-Python-2.7.10.eb @@ -23,4 +23,4 @@ sanity_check_paths = { 'dirs': ['lib/python%s/site-packages/mpi4py' % py_maj_min], } -moduleclass = 'mpi' +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/m/mpi4py/mpi4py-2.0.0-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/m/mpi4py/mpi4py-2.0.0-intel-2016b-Python-2.7.12.eb index eade0fd4f9..a1f0fb7dc3 100644 --- a/easybuild/easyconfigs/m/mpi4py/mpi4py-2.0.0-intel-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/m/mpi4py/mpi4py-2.0.0-intel-2016b-Python-2.7.12.eb @@ -20,4 +20,4 @@ sanity_check_paths = { 'dirs': ['lib/python%(pyshortver)s/site-packages/mpi4py'], } -moduleclass = 'mpi' +moduleclass = 'lib' -- GitLab From 3575bf8c5e804881aaf4efab3092a4a19098e361 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 3 Jul 2017 17:23:19 +0200 Subject: [PATCH 321/608] adding easyconfigs: vsc-mympirun-4.0.0.eb, vsc-install-0.10.26.eb --- .../v/vsc-install/vsc-install-0.10.26.eb | 23 +++++++++++++ .../v/vsc-mympirun/vsc-mympirun-4.0.0.eb | 33 +++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 easybuild/easyconfigs/v/vsc-install/vsc-install-0.10.26.eb create mode 100755 easybuild/easyconfigs/v/vsc-mympirun/vsc-mympirun-4.0.0.eb diff --git a/easybuild/easyconfigs/v/vsc-install/vsc-install-0.10.26.eb b/easybuild/easyconfigs/v/vsc-install/vsc-install-0.10.26.eb new file mode 100644 index 0000000000..66693d8845 --- /dev/null +++ b/easybuild/easyconfigs/v/vsc-install/vsc-install-0.10.26.eb @@ -0,0 +1,23 @@ +easyblock = 'PythonPackage' + +name = 'vsc-install' +version = '0.10.26' + +homepage = 'http://hpcugent.github.com/vsc-install/' +description = """Shared setuptools functions and classes for python libraries developed by UGent's HPC group""" + +# purposely built with system compilers & Python +toolchain = {'name': 'dummy', 'version': 'dummy'} + +sources = [SOURCE_TAR_GZ] +source_urls = [PYPI_SOURCE] + +options = {'modulename': 'vsc.install'} + +pyshortver = '.'.join(SYS_PYTHON_VERSION.split('.')[:2]) +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%s/site-packages' % pyshortver], +} + +moduleclass = 'tools' diff --git a/easybuild/easyconfigs/v/vsc-mympirun/vsc-mympirun-4.0.0.eb b/easybuild/easyconfigs/v/vsc-mympirun/vsc-mympirun-4.0.0.eb new file mode 100755 index 0000000000..2a97ab5dab --- /dev/null +++ b/easybuild/easyconfigs/v/vsc-mympirun/vsc-mympirun-4.0.0.eb @@ -0,0 +1,33 @@ +easyblock = 'PythonPackage' + +name = 'vsc-mympirun' +version = '4.0.0' + +homepage = 'https://github.com/hpcugent/vsc-mympirun' +description = """VSC-tools is a set of Python libraries and scripts that are commonly used within HPC-UGent.""" + +# we build this to work with every python version +toolchain = {'name': 'dummy', 'version': ''} + +source_urls = [PYPI_SOURCE] +sources = [SOURCE_TAR_GZ] + +builddependencies = [('vsc-install', '0.10.26')] +dependencies = [('vsc-base', '2.5.8')] + +osdependencies = ['python-setuptools'] + +# we ship something in bin/fake +modextrapaths = {'PATH': 'bin/fake'} + +# don't check for import of vsc.mympirun, since that may fail if vsc-base is picked up from the OS +options = {'modulename': 'vsc'} + +pyshortver = '.'.join(SYS_PYTHON_VERSION.split('.')[:2]) +sanity_check_paths = { + 'files': ['bin/mympirun', 'bin/mympisanity'], + 'dirs': ['bin/fake', 'lib/python%s/site-packages' % pyshortver], +} +sanity_check_commands = ["mympirun --help"] + +moduleclass = 'tools' -- GitLab From 1c6664d0bde4cf74f27096d9934c40037330d870 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Mon, 3 Jul 2017 15:15:01 +0200 Subject: [PATCH 322/608] Add kallisto for foss-2016b --- .../h/HDF5/HDF5-1.8.18-foss-2016b-serial.eb | 26 ++++++++++++++ .../k/kallisto/kallisto-0.43.1-foss-2016b.eb | 34 +++++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-foss-2016b-serial.eb create mode 100644 easybuild/easyconfigs/k/kallisto/kallisto-0.43.1-foss-2016b.eb diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-foss-2016b-serial.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-foss-2016b-serial.eb new file mode 100644 index 0000000000..5144aa0dac --- /dev/null +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-foss-2016b-serial.eb @@ -0,0 +1,26 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild + +name = 'HDF5' +version = '1.8.18' +versionsuffix = '-serial' + +homepage = 'https://support.hdfgroup.org/HDF5/' +description = """HDF5 is a unique technology suite that makes possible the management of + extremely large and complex data collections.""" + +toolchain = {'name': 'foss', 'version': '2016b'} +toolchainopts = {'pic': True, 'usempi': False} + +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] +sources = [SOURCELOWER_TAR_GZ] + +checksums = ['cdb195ad8d9e6782acf24b2488061289f615628c2ccda8457b0a0c3fb7a8a063'] + +buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' + +dependencies = [ + ('zlib', '1.2.8'), + ('Szip', '2.1'), +] + +moduleclass = 'data' diff --git a/easybuild/easyconfigs/k/kallisto/kallisto-0.43.1-foss-2016b.eb b/easybuild/easyconfigs/k/kallisto/kallisto-0.43.1-foss-2016b.eb new file mode 100644 index 0000000000..c79b5734ff --- /dev/null +++ b/easybuild/easyconfigs/k/kallisto/kallisto-0.43.1-foss-2016b.eb @@ -0,0 +1,34 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild + +easyblock = 'CMakeMake' + +name = 'kallisto' +version = '0.43.1' + +homepage = 'http://pachterlab.github.io/kallisto/' +description = """kallisto is a program for quantifying abundances of transcripts from RNA-Seq data, or more generally + of target sequences using high-throughput sequencing reads.""" + +toolchain = {'name': 'foss', 'version': '2016b'} + +source_urls = ['https://github.com/pachterlab/kallisto/archive/'] +sources = ['v%(version)s.tar.gz'] + +checksums = ['7baef1b3b67bcf81dc7c604db2ef30f5520b48d532bf28ec26331cb60ce69400'] + +builddependencies = [ + ('CMake', '3.7.2') +] + +dependencies = [ + ('HDF5', '1.8.18', '-serial') +] + +separate_build_dir = True + +sanity_check_paths = { + 'files': ['bin/kallisto'], + 'dirs': [], +} + +moduleclass = 'bio' -- GitLab From 6d2f05e1d387c53d6c2d8d9e4566c9551c64494e Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 4 Jul 2017 11:23:48 +0200 Subject: [PATCH 323/608] adding easyconfigs: FLUENT-18.1.eb --- easybuild/easyconfigs/f/FLUENT/FLUENT-18.1.eb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 easybuild/easyconfigs/f/FLUENT/FLUENT-18.1.eb diff --git a/easybuild/easyconfigs/f/FLUENT/FLUENT-18.1.eb b/easybuild/easyconfigs/f/FLUENT/FLUENT-18.1.eb new file mode 100644 index 0000000000..adedc0b444 --- /dev/null +++ b/easybuild/easyconfigs/f/FLUENT/FLUENT-18.1.eb @@ -0,0 +1,14 @@ +name = 'FLUENT' +version = '18.1' + +homepage = 'http://www.ansys.com/Products/Simulation+Technology/Fluid+Dynamics/Fluid+Dynamics+Products/ANSYS+Fluent' +description = """ANSYS FLUENT software contains the broad physical modeling capabilities needed +to model flow, turbulence, heat transfer, and reactions for industrial applications ranging from +air flow over an aircraft wing to combustion in a furnace, from bubble columns to oil platforms, +from blood flow to semiconductor manufacturing, and from clean room design to wastewater treatment plants.""" + +toolchain = {'name': 'dummy', 'version': 'dummy'} + +sources = ['FLUIDSTRUCTURES_%(version_major)s%(version_minor)s_LINX64.tar'] + +moduleclass = 'cae' -- GitLab From 62d549469c9ddb821d7cef0524510a9346dee22b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Tue, 4 Jul 2017 12:47:00 +0200 Subject: [PATCH 324/608] Add requested changes Switched to HDF5-1.8.18-foss-2016b. Added toolchainopts usempi and pic. Put single dependencies on one line. --- .../h/HDF5/HDF5-1.8.18-foss-2016b-serial.eb | 26 ------------------- .../k/kallisto/kallisto-0.43.1-foss-2016b.eb | 9 +++---- 2 files changed, 3 insertions(+), 32 deletions(-) delete mode 100644 easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-foss-2016b-serial.eb diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-foss-2016b-serial.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-foss-2016b-serial.eb deleted file mode 100644 index 5144aa0dac..0000000000 --- a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.18-foss-2016b-serial.eb +++ /dev/null @@ -1,26 +0,0 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild - -name = 'HDF5' -version = '1.8.18' -versionsuffix = '-serial' - -homepage = 'https://support.hdfgroup.org/HDF5/' -description = """HDF5 is a unique technology suite that makes possible the management of - extremely large and complex data collections.""" - -toolchain = {'name': 'foss', 'version': '2016b'} -toolchainopts = {'pic': True, 'usempi': False} - -source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] -sources = [SOURCELOWER_TAR_GZ] - -checksums = ['cdb195ad8d9e6782acf24b2488061289f615628c2ccda8457b0a0c3fb7a8a063'] - -buildopts = 'CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"' - -dependencies = [ - ('zlib', '1.2.8'), - ('Szip', '2.1'), -] - -moduleclass = 'data' diff --git a/easybuild/easyconfigs/k/kallisto/kallisto-0.43.1-foss-2016b.eb b/easybuild/easyconfigs/k/kallisto/kallisto-0.43.1-foss-2016b.eb index c79b5734ff..9d74f7a398 100644 --- a/easybuild/easyconfigs/k/kallisto/kallisto-0.43.1-foss-2016b.eb +++ b/easybuild/easyconfigs/k/kallisto/kallisto-0.43.1-foss-2016b.eb @@ -10,19 +10,16 @@ description = """kallisto is a program for quantifying abundances of transcripts of target sequences using high-throughput sequencing reads.""" toolchain = {'name': 'foss', 'version': '2016b'} +toolchainopts = {'pic': True, 'usempi': True} source_urls = ['https://github.com/pachterlab/kallisto/archive/'] sources = ['v%(version)s.tar.gz'] checksums = ['7baef1b3b67bcf81dc7c604db2ef30f5520b48d532bf28ec26331cb60ce69400'] -builddependencies = [ - ('CMake', '3.7.2') -] +builddependencies = [('CMake', '3.7.2')] -dependencies = [ - ('HDF5', '1.8.18', '-serial') -] +dependencies = [('HDF5', '1.8.18')] separate_build_dir = True -- GitLab From 2bd0cc121d598b5219e4924be2d17046238e6a4a Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 4 Jul 2017 13:23:30 +0200 Subject: [PATCH 325/608] use released version of GCC 6.4.0 --- easybuild/easyconfigs/g/GCCcore/GCCcore-6.4.0.eb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/g/GCCcore/GCCcore-6.4.0.eb b/easybuild/easyconfigs/g/GCCcore/GCCcore-6.4.0.eb index 9dbb7d3700..8c17a18894 100644 --- a/easybuild/easyconfigs/g/GCCcore/GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/g/GCCcore/GCCcore-6.4.0.eb @@ -22,7 +22,7 @@ source_urls = [ ] sources = [ - 'gcc-%(version)s-RC-20170628.tar.gz', # FIXME 'gcc-%(version)s.tar.bz2', + 'gcc-%(version)s.tar.gz', 'gmp-6.1.2.tar.bz2', 'mpfr-%s.tar.bz2' % mpfr_version, 'mpc-1.0.3.tar.gz', @@ -40,7 +40,7 @@ patches = [ ] checksums = [ - '005e58fb723efb3bf51dac5db8a5edf7c66ea2e7ddb6de6ed02dbb74fcc31f80', # gcc-6.4.0.tar.bz2 + '4715f02413f8a91d02d967521c084990c99ce1a671b8a450a80fbd4245f4b728', # gcc-6.4.0.tar.gz '5275bb04f4863a13516b2f39392ac5e272f5e1bb8057b18aec1c9b79d73d8fb2', # gmp-6.1.2.tar.bz2 'ca498c1c7a74dd37a576f353312d1e68d490978de4395fa28f1cbd46a364e658', # mpfr-3.1.5.tar.gz '617decc6ea09889fb08ede330917a00b16809b8db88c29c31bfbb49cbf88ecc3', # mpc-1.0.3.tar.gz -- GitLab From b19681c8d8faf724a4e0c2e20dfc55c17b6a9929 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Tue, 4 Jul 2017 14:44:34 +0200 Subject: [PATCH 326/608] Add Salmon for foss-2016b with dependencies --- .../j/Jellyfish/Jellyfish-2.2.6-foss-2016b.eb | 32 +++++++++++++++ .../Salmon-0.8.2-foss-2016b-Python-2.7.12.eb | 41 +++++++++++++++++++ .../Salmon/Salmon-0.8.2_CMAKE_CXX_FLAGS.patch | 12 ++++++ 3 files changed, 85 insertions(+) create mode 100644 easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.2.6-foss-2016b.eb create mode 100644 easybuild/easyconfigs/s/Salmon/Salmon-0.8.2-foss-2016b-Python-2.7.12.eb create mode 100644 easybuild/easyconfigs/s/Salmon/Salmon-0.8.2_CMAKE_CXX_FLAGS.patch diff --git a/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.2.6-foss-2016b.eb b/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.2.6-foss-2016b.eb new file mode 100644 index 0000000000..ff9fe9e8d2 --- /dev/null +++ b/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.2.6-foss-2016b.eb @@ -0,0 +1,32 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild + +easyblock = 'ConfigureMake' + +name = 'Jellyfish' +version = '2.2.6' + +homepage = 'http://www.genome.umd.edu/jellyfish.html' +description = """ Jellyfish is a tool for fast, memory-efficient counting of k-mers in DNA.""" + +toolchain = {'name': 'foss', 'version': '2016b'} + +source_urls = ['https://github.com/gmarcais/Jellyfish/releases/download/v%(version)s'] +sources = [SOURCELOWER_TAR_GZ] + +checksums = ['4532fb003a0494f6473bb97d52467904f631b94f7f9afb0d45b398f6c413692e'] + +parallel = 1 + +# The tests for the Bloom filter are statistical tests and can randomly fail, they actually don't make a lot of sense +runtest = "check GTEST_FILTER=-'*Bloom*'" + +postinstallcmds = ["cp config.h %(installdir)s/include/%(namelower)s-%(version)s/%(namelower)s/"] + +sanity_check_paths = { + 'files': ['bin/jellyfish'], + 'dirs': [] +} + +modextrapaths = {'CPATH': 'include/%(namelower)s-%(version)s'} + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2-foss-2016b-Python-2.7.12.eb new file mode 100644 index 0000000000..0eaeb53856 --- /dev/null +++ b/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2-foss-2016b-Python-2.7.12.eb @@ -0,0 +1,41 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild + +easyblock = 'CMakeMake' + +name = 'Salmon' +version = '0.8.2' + +homepage = 'https://github.com/COMBINE-lab/salmon' +description = """Salmon is a wicked-fast program to produce a highly-accurate, + transcript-level quantification estimates from RNA-seq data.""" + +toolchain = {'name': 'foss', 'version': '2016b'} +toolchainopts = {'pic': True, 'openmp': True} + +sources = ['v%(version)s.tar.gz'] +source_urls = ['https://github.com/COMBINE-lab/salmon/archive/'] + +checksums = ['299168e873e71e9b07d63a84ae0b0c41b0876d1ad1d434b326a5be2dce7c4b91'] + +patches = ['Salmon-%(version)s_CMAKE_CXX_FLAGS.patch'] + +python = 'Python' +pyver = '2.7.12' +versionsuffix = '-%s-%s' % (python, pyver) + +builddependencies = [('CMake', '3.7.2')] + +dependencies = [ + ('Boost', '1.63.0', versionsuffix), + ('tbb', '2017_U5'), + ('Jellyfish', '2.2.6'), +] + +sanity_check_paths = { + 'files': ['bin/salmon'], + 'dirs': [] +} + +parallel = 1 + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2_CMAKE_CXX_FLAGS.patch b/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2_CMAKE_CXX_FLAGS.patch new file mode 100644 index 0000000000..396046c304 --- /dev/null +++ b/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2_CMAKE_CXX_FLAGS.patch @@ -0,0 +1,12 @@ +* don't hardcode $CMAKE_CXX_FLAGS +--- salmon-0.8.2/CMakeLists.txt.orig 2017-07-03 13:31:00.000000000 +0200 ++++ salmon-0.8.2/CMakeLists.txt 2017-07-03 13:49:34.000000000 +0200 +@@ -32,7 +32,7 @@ + + ## Set the standard required compile flags + # Nov 18th --- removed -DHAVE_CONFIG_H +-set (CMAKE_CXX_FLAGS "-pthread -ftree-vectorize -funroll-loops -fPIC -fomit-frame-pointer -O3 -DRAPMAP_SALMON_SUPPORT -DHAVE_ANSI_TERM -DHAVE_SSTREAM -Wall -Wno-unknown-pragmas -Wno-reorder -Wno-unused-variable -std=c++11 -Wreturn-type -Werror=return-type") ++set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -L$ENV{EBROOTJELLYFISH}/lib -ljellyfish-2.0 -pthread -DRAPMAP_SALMON_SUPPORT -DHAVE_ANSI_TERM -DHAVE_SSTREAM -Wall -Wno-unknown-pragmas -Wno-reorder -Wno-unused-variable -std=c++11 -Wreturn-type -Werror=return-type") + + ## + # OSX is strange (some might say, stupid in this regard). Deal with it's quirkines here. -- GitLab From 8e2b4f1bac30fd06d4e9c346cfc3dad6a01af863 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bob=20Dr=C3=B6ge?= Date: Tue, 4 Jul 2017 16:16:27 +0200 Subject: [PATCH 327/608] Easyconfig for FastME 2.1.5. with foss 2016a --- .../f/FastME/FastME-2.1.5-foss-2016a.eb | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 easybuild/easyconfigs/f/FastME/FastME-2.1.5-foss-2016a.eb diff --git a/easybuild/easyconfigs/f/FastME/FastME-2.1.5-foss-2016a.eb b/easybuild/easyconfigs/f/FastME/FastME-2.1.5-foss-2016a.eb new file mode 100644 index 0000000000..e2f94ba178 --- /dev/null +++ b/easybuild/easyconfigs/f/FastME/FastME-2.1.5-foss-2016a.eb @@ -0,0 +1,19 @@ +easyblock = 'ConfigureMake' + +name = 'FastME' +version = '2.1.5' + +homepage = 'http://www.atgc-montpellier.fr/fastme/' +description = """FastME: a comprehensive, accurate and fast distance-based phylogeny inference program.""" + +toolchain = {'name': 'foss', 'version': '2016a'} + +source_urls = ['http://www.atgc-montpellier.fr/download/sources/fastme/'] +sources = [SOURCELOWER_TAR_GZ] + +sanity_check_paths = { + 'files': ['bin/fastme'], + 'dirs': [] +} + +moduleclass = 'bio' -- GitLab From 47b25139d47479665894c37184c3670edf781600 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Wed, 5 Jul 2017 07:48:44 +0200 Subject: [PATCH 328/608] Add dependency tbb --- .../easyconfigs/t/tbb/tbb-2017_U5-foss-2016b.eb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 easybuild/easyconfigs/t/tbb/tbb-2017_U5-foss-2016b.eb diff --git a/easybuild/easyconfigs/t/tbb/tbb-2017_U5-foss-2016b.eb b/easybuild/easyconfigs/t/tbb/tbb-2017_U5-foss-2016b.eb new file mode 100644 index 0000000000..17d6caf922 --- /dev/null +++ b/easybuild/easyconfigs/t/tbb/tbb-2017_U5-foss-2016b.eb @@ -0,0 +1,17 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild + +name = 'tbb' +version = '2017_U5' + +homepage = 'https://01.org/tbb/' +description = """Intel(R) Threading Building Blocks (Intel(R) TBB) lets you easily write parallel C++ programs that + take full advantage of multicore performance, that are portable, composable and have future-proof scalability.""" + +toolchain = {'name': 'foss', 'version': '2016b'} + +source_urls = ['https://github.com/01org/tbb/archive/'] +sources = ['%(version)s.tar.gz'] + +checksums = ['780baf0ad520f23b54dd20dc97bf5aae4bc562019e0a70f53bfc4c1afec6e545'] + +moduleclass = 'lib' -- GitLab From 623780a3037913c17a05ff27dc35daef8f9182e0 Mon Sep 17 00:00:00 2001 From: zao Date: Wed, 5 Jul 2017 09:54:44 +0200 Subject: [PATCH 329/608] Fix bug in ubsan.c that prevents GCC 7.1 from building GCC 6.3 --- .../g/GCCcore/GCCcore-6.3.0-fix-ubsan.patch | 12 ++++++++++++ easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0.eb | 1 + 2 files changed, 13 insertions(+) create mode 100644 easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0-fix-ubsan.patch diff --git a/easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0-fix-ubsan.patch b/easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0-fix-ubsan.patch new file mode 100644 index 0000000000..8b5e6acbfb --- /dev/null +++ b/easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0-fix-ubsan.patch @@ -0,0 +1,12 @@ +diff -ru gcc-6.3.0-orig/gcc/ubsan.c gcc-6.3.0/gcc/ubsan.c +--- gcc-6.3.0-orig/gcc/ubsan.c 2016-12-07 23:39:29.000000000 +0100 ++++ gcc-6.3.0/gcc/ubsan.c 2017-07-05 08:57:03.297566616 +0200 +@@ -1471,7 +1471,7 @@ + + expanded_location xloc = expand_location (loc); + if (xloc.file == NULL || strncmp (xloc.file, "\1", 2) == 0 +- || xloc.file == '\0' || xloc.file[0] == '\xff' ++ || xloc.file[0] == '\0' || xloc.file[0] == '\xff' + || xloc.file[1] == '\xff') + return false; + diff --git a/easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0.eb b/easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0.eb index 603d43dcde..b95420541e 100644 --- a/easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0.eb +++ b/easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0.eb @@ -37,6 +37,7 @@ builddependencies = [ patches = [ ('mpfr-%s-allpatches-20161215.patch' % mpfr_version, '../mpfr-%s' % mpfr_version), 'GCCcore-6.2.0-fix-find-isl.patch', + 'GCCcore-6.3.0-fix-ubsan.patch', ] checksums = [ -- GitLab From a1c4e3f18a7bccbcfca3112a36b5be50f3d8cd3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Wed, 5 Jul 2017 07:58:15 +0200 Subject: [PATCH 330/608] Move Python versionsuffix up --- .../s/Salmon/Salmon-0.8.2-foss-2016b-Python-2.7.12.eb | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2-foss-2016b-Python-2.7.12.eb index 0eaeb53856..3b07e6d2d4 100644 --- a/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2-foss-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2-foss-2016b-Python-2.7.12.eb @@ -4,6 +4,7 @@ easyblock = 'CMakeMake' name = 'Salmon' version = '0.8.2' +versionsuffix = '-Python-2.7.12' homepage = 'https://github.com/COMBINE-lab/salmon' description = """Salmon is a wicked-fast program to produce a highly-accurate, @@ -19,10 +20,6 @@ checksums = ['299168e873e71e9b07d63a84ae0b0c41b0876d1ad1d434b326a5be2dce7c4b91'] patches = ['Salmon-%(version)s_CMAKE_CXX_FLAGS.patch'] -python = 'Python' -pyver = '2.7.12' -versionsuffix = '-%s-%s' % (python, pyver) - builddependencies = [('CMake', '3.7.2')] dependencies = [ -- GitLab From 1029301d3b150a028e78c311aab8db916cd41c1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Wed, 5 Jul 2017 10:22:23 +0200 Subject: [PATCH 331/608] Patch for compiler flags and Jellyfish --- .../Salmon-0.8.2-foss-2016b-Python-2.7.12.eb | 2 +- .../Salmon/Salmon-0.8.2_CMAKE_CXX_FLAGS.patch | 12 --- ...Salmon-0.8.2_skip-included-Jellyfish.patch | 99 +++++++++++++++++++ 3 files changed, 100 insertions(+), 13 deletions(-) delete mode 100644 easybuild/easyconfigs/s/Salmon/Salmon-0.8.2_CMAKE_CXX_FLAGS.patch create mode 100644 easybuild/easyconfigs/s/Salmon/Salmon-0.8.2_skip-included-Jellyfish.patch diff --git a/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2-foss-2016b-Python-2.7.12.eb index 3b07e6d2d4..6ff3af6070 100644 --- a/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2-foss-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2-foss-2016b-Python-2.7.12.eb @@ -18,7 +18,7 @@ source_urls = ['https://github.com/COMBINE-lab/salmon/archive/'] checksums = ['299168e873e71e9b07d63a84ae0b0c41b0876d1ad1d434b326a5be2dce7c4b91'] -patches = ['Salmon-%(version)s_CMAKE_CXX_FLAGS.patch'] +patches = ['Salmon-%(version)s_skip-included-Jellyfish.patch'] builddependencies = [('CMake', '3.7.2')] diff --git a/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2_CMAKE_CXX_FLAGS.patch b/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2_CMAKE_CXX_FLAGS.patch deleted file mode 100644 index 396046c304..0000000000 --- a/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2_CMAKE_CXX_FLAGS.patch +++ /dev/null @@ -1,12 +0,0 @@ -* don't hardcode $CMAKE_CXX_FLAGS ---- salmon-0.8.2/CMakeLists.txt.orig 2017-07-03 13:31:00.000000000 +0200 -+++ salmon-0.8.2/CMakeLists.txt 2017-07-03 13:49:34.000000000 +0200 -@@ -32,7 +32,7 @@ - - ## Set the standard required compile flags - # Nov 18th --- removed -DHAVE_CONFIG_H --set (CMAKE_CXX_FLAGS "-pthread -ftree-vectorize -funroll-loops -fPIC -fomit-frame-pointer -O3 -DRAPMAP_SALMON_SUPPORT -DHAVE_ANSI_TERM -DHAVE_SSTREAM -Wall -Wno-unknown-pragmas -Wno-reorder -Wno-unused-variable -std=c++11 -Wreturn-type -Werror=return-type") -+set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -L$ENV{EBROOTJELLYFISH}/lib -ljellyfish-2.0 -pthread -DRAPMAP_SALMON_SUPPORT -DHAVE_ANSI_TERM -DHAVE_SSTREAM -Wall -Wno-unknown-pragmas -Wno-reorder -Wno-unused-variable -std=c++11 -Wreturn-type -Werror=return-type") - - ## - # OSX is strange (some might say, stupid in this regard). Deal with it's quirkines here. diff --git a/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2_skip-included-Jellyfish.patch b/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2_skip-included-Jellyfish.patch new file mode 100644 index 0000000000..cc8f3208b9 --- /dev/null +++ b/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2_skip-included-Jellyfish.patch @@ -0,0 +1,99 @@ +* skip downloading and building of Jellyfish, since it's provided via EasyBuild already +* don't hardcode $CMAKE_CXX_FLAGS +author: Paul Jähne +--- CMakeLists.txt.orig 2017-07-05 08:07:10.000000000 +0200 ++++ CMakeLists.txt 2017-07-05 08:15:13.000000000 +0200 +@@ -32,7 +32,7 @@ + + ## Set the standard required compile flags + # Nov 18th --- removed -DHAVE_CONFIG_H +-set (CMAKE_CXX_FLAGS "-pthread -ftree-vectorize -funroll-loops -fPIC -fomit-frame-pointer -O3 -DRAPMAP_SALMON_SUPPORT -DHAVE_ANSI_TERM -DHAVE_SSTREAM -Wall -Wno-unknown-pragmas -Wno-reorder -Wno-unused-variable -std=c++11 -Wreturn-type -Werror=return-type") ++set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -L$ENV{EBROOTJELLYFISH}/lib -ljellyfish-2.0 -pthread -DRAPMAP_SALMON_SUPPORT -DHAVE_ANSI_TERM -DHAVE_SSTREAM -Wall -Wno-reorder -Wno-unused-variable -std=c++11 -Wreturn-type -Werror=return-type") + + ## + # OSX is strange (some might say, stupid in this regard). Deal with it's quirkines here. +@@ -459,33 +459,6 @@ + BUILD_IN_SOURCE TRUE + ) + +-find_package(Jellyfish 2.2.6) +- +-if (NOT JELLYFISH_FOUND) +-message("Build system will fetch and build Jellyfish") +-message("==================================================================") +-ExternalProject_Add(libjellyfish +- DOWNLOAD_DIR ${CMAKE_CURRENT_SOURCE_DIR}/external +- ## +- #URL https://github.com/gmarcais/Jellyfish/releases/download/v2.2.6/jellyfish-2.2.6.tar.gz +- #DOWNLOAD_NAME jellyfish-2.2.6.tgz +- #URL_HASH SHA1=53819a57ea8ffae26e3f917babf978f8215ef117 +- #TLS_VERIFY FALSE +- ## +- DOWNLOAD_COMMAND curl -k -L https://github.com/gmarcais/Jellyfish/releases/download/v2.2.6/jellyfish-2.2.6.tar.gz -o jellyfish-2.2.6.tgz && +- ${SHASUM} 4532fb003a0494f6473bb97d52467904f631b94f7f9afb0d45b398f6c413692e jellyfish-2.2.6.tgz && +- rm -fr jellyfish-2.2.6 && +- tar -xzvf jellyfish-2.2.6.tgz +- SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/external/jellyfish-2.2.6 +- INSTALL_DIR ${CMAKE_CURRENT_SOURCE_DIR}/external/install +- CONFIGURE_COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/external/jellyfish-2.2.6/configure --prefix= CC=${CMAKE_C_COMPILER} CXX=${CMAKE_CXX_COMPILER} CXXFLAGS=${JELLYFISH_CXX_FLAGS} +- BUILD_COMMAND ${MAKE} CC=${CMAKE_C_COMPILER} CXX=${CMAKE_CXX_COMPILER} CXXFLAGS=${JELLYFISH_CXX_FLAGS} +- BUILD_IN_SOURCE 1 +- INSTALL_COMMAND make ${QUIET_MAKE} install +-) +-set (FETCHED_JELLYFISH TRUE) +-endif() +- + ## Try and find TBB first + find_package(TBB 4.4 COMPONENTS tbb tbbmalloc tbbmalloc_proxy ) + +--- src/CMakeLists.txt.orig 2017-07-05 09:12:35.000000000 +0200 ++++ src/CMakeLists.txt 2017-07-05 09:18:12.000000000 +0200 +@@ -4,7 +4,6 @@ + ${GAT_SOURCE_DIR}/external + ${GAT_SOURCE_DIR}/external/cereal/include + ${GAT_SOURCE_DIR}/external/install/include +-${GAT_SOURCE_DIR}/external/install/include/jellyfish-2.2.6 + ${GAT_SOURCE_DIR}/external/install/include/bwa + ${ZLIB_INCLUDE_DIR} + ${TBB_INCLUDE_DIRS} +@@ -12,12 +11,6 @@ + ${GAT_SOURCE_DIR}/external/install/include/rapmap + ) + +-if (JELLYFISH_FOUND) +- include_directories(${JELLYFISH_INCLUDE_DIR}) +-else() +- include_directories(${GAT_SOURCE_DIR}/external/install/include/jellyfish-2.2.6) +-endif() +- + set ( SALMON_MAIN_SRCS + QSufSort.c + is.c +@@ -135,7 +128,6 @@ + ${ZLIB_LIBRARY} + ${SUFFARRAY_LIB} + ${SUFFARRAY64_LIB} +- ${GAT_SOURCE_DIR}/external/install/lib/libjellyfish-2.0.a + ${GAT_SOURCE_DIR}/external/install/lib/libbwa.a + m + ${LIBLZMA_LIBRARIES} +@@ -160,11 +152,6 @@ + add_dependencies(salmon libboost) + endif() + +-if (${FETCHED_JELLYFISH}) +- add_dependencies(salmon_core libjellyfish) +- add_dependencies(salmon libjellyfish) +-endif() +- + if (${FETCHED_TBB}) + add_dependencies(salmon_core libtbb) + add_dependencies(salmon libtbb) +@@ -193,7 +180,6 @@ + ${ZLIB_LIBRARY} + ${SUFFARRAY_LIB} + ${SUFFARRAY64_LIB} +- ${GAT_SOURCE_DIR}/external/install/lib/libjellyfish-2.0.a + ${GAT_SOURCE_DIR}/external/install/lib/libbwa.a + m + ${LIBLZMA_LIBRARIES} -- GitLab From 9e2358699f0c2f57d5f16769d88a663340302bd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Wed, 5 Jul 2017 14:14:29 +0200 Subject: [PATCH 332/608] Remove parallel option --- .../s/Salmon/Salmon-0.8.2-foss-2016b-Python-2.7.12.eb | 2 -- 1 file changed, 2 deletions(-) diff --git a/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2-foss-2016b-Python-2.7.12.eb index 6ff3af6070..54ff0aac82 100644 --- a/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2-foss-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2-foss-2016b-Python-2.7.12.eb @@ -33,6 +33,4 @@ sanity_check_paths = { 'dirs': [] } -parallel = 1 - moduleclass = 'bio' -- GitLab From da07ca4793fe822b96a9387bfadcdb34f1dff7b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Wed, 5 Jul 2017 15:04:39 +0200 Subject: [PATCH 333/608] Use name variables --- .../s/Salmon/Salmon-0.8.2-foss-2016b-Python-2.7.12.eb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2-foss-2016b-Python-2.7.12.eb index 54ff0aac82..a171f04582 100644 --- a/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2-foss-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2-foss-2016b-Python-2.7.12.eb @@ -6,7 +6,7 @@ name = 'Salmon' version = '0.8.2' versionsuffix = '-Python-2.7.12' -homepage = 'https://github.com/COMBINE-lab/salmon' +homepage = 'https://github.com/COMBINE-lab/%(namelower)s' description = """Salmon is a wicked-fast program to produce a highly-accurate, transcript-level quantification estimates from RNA-seq data.""" @@ -14,11 +14,11 @@ toolchain = {'name': 'foss', 'version': '2016b'} toolchainopts = {'pic': True, 'openmp': True} sources = ['v%(version)s.tar.gz'] -source_urls = ['https://github.com/COMBINE-lab/salmon/archive/'] +source_urls = ['https://github.com/COMBINE-lab/%(namelower)s/archive/'] checksums = ['299168e873e71e9b07d63a84ae0b0c41b0876d1ad1d434b326a5be2dce7c4b91'] -patches = ['Salmon-%(version)s_skip-included-Jellyfish.patch'] +patches = ['%(name)s-%(version)s_skip-included-Jellyfish.patch'] builddependencies = [('CMake', '3.7.2')] @@ -29,7 +29,7 @@ dependencies = [ ] sanity_check_paths = { - 'files': ['bin/salmon'], + 'files': ['bin/%(namelower)s'], 'dirs': [] } -- GitLab From aa629cffa92f94cb41641fb0028d03482e2fb12d Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 4 Jul 2017 21:49:37 +0200 Subject: [PATCH 334/608] get rid of references to 'hpcugent' organisation after move to github.com/easybuilders --- CONTRIBUTING.md | 12 ++++++------ README.rst | 18 +++++++++--------- RELEASE_NOTES | 6 +++--- easybuild/easyconfigs/TEMPLATE.eb | 2 +- ...S-1.3.4-goalf-1.1.0-no-OFED-Python-2.7.3.eb | 2 +- .../ABySS-1.3.4-ictce-4.0.6-Python-2.7.3.eb | 2 +- .../a/AMOS/AMOS-3.1.0-goalf-1.1.0-no-OFED.eb | 2 +- .../a/AMOS/AMOS-3.1.0-ictce-4.0.6.eb | 2 +- .../a/Automake/Automake-1.13.4-ictce-4.1.13.eb | 2 +- .../a/Automake/Automake-1.14-gcccuda-2.6.10.eb | 2 +- .../a/a2ps/a2ps-4.14-goalf-1.1.0-no-OFED.eb | 2 +- .../a/a2ps/a2ps-4.14-ictce-4.0.6.eb | 2 +- .../aria2/aria2-1.15.1-goalf-1.1.0-no-OFED.eb | 2 +- .../a/aria2/aria2-1.15.1-ictce-4.0.6.eb | 2 +- .../b/BEEF/BEEF-0.1.1-r16-iomkl-4.6.13.eb | 2 +- .../BFAST/BFAST-0.7.0a-goalf-1.1.0-no-OFED.eb | 2 +- .../b/BFAST/BFAST-0.7.0a-ictce-4.0.6.eb | 2 +- .../BLAST+-2.2.27-goalf-1.1.0-no-OFED.eb | 2 +- .../b/BLAST+/BLAST+-2.2.27-ictce-4.0.6.eb | 2 +- .../b/BLAST+/BLAST+-2.2.28-ictce-4.1.13.eb | 2 +- .../b/BWA/BWA-0.6.2-goalf-1.1.0-no-OFED.eb | 2 +- .../__archive__/b/BWA/BWA-0.6.2-ictce-4.0.6.eb | 2 +- .../b/BWA/BWA-0.7.4-ictce-4.1.13.eb | 2 +- .../BamTools-2.2.3-goalf-1.1.0-no-OFED.eb | 2 +- .../b/Bash/Bash-4.2-goalf-1.1.0-no-OFED.eb | 2 +- .../Bonnie++-1.03e-goalf-1.1.0-no-OFED.eb | 2 +- .../b/Bonnie++/Bonnie++-1.03e-ictce-4.0.6.eb | 2 +- .../Bowtie2-2.0.2-goalf-1.1.0-no-OFED.eb | 2 +- .../b/Bowtie2/Bowtie2-2.0.2-ictce-4.0.6.eb | 2 +- .../b/bbFTP/bbFTP-3.2.0-goalf-1.1.0-no-OFED.eb | 2 +- .../bbftpPRO-9.3.1-goalf-1.1.0-no-OFED.eb | 2 +- .../binutils-2.22-goalf-1.1.0-no-OFED.eb | 2 +- .../binutils-2.22-gompi-1.4.12-no-OFED.eb | 2 +- .../Chapel/Chapel-1.6.0-goalf-1.1.0-no-OFED.eb | 2 +- .../ClustalW2-2.1-goalf-1.1.0-no-OFED.eb | 2 +- .../c/ClustalW2/ClustalW2-2.1-ictce-4.0.6.eb | 2 +- .../Corkscrew-2.0-goalf-1.1.0-no-OFED.eb | 2 +- .../c/Corkscrew/Corkscrew-2.0-ictce-4.0.6.eb | 2 +- .../c/Cube/Cube-3.4.3-gompi-1.4.12-no-OFED.eb | 2 +- .../c/Cube/Cube-4.2-gompi-1.4.12-no-OFED.eb | 2 +- .../c/Cube/Cube-4.3-gompi-1.4.12-no-OFED.eb | 2 +- .../Cufflinks-2.0.2-goalf-1.1.0-no-OFED.eb | 2 +- .../ccache/ccache-3.1.9-goalf-1.1.0-no-OFED.eb | 2 +- .../c/ccache/ccache-3.1.9-ictce-4.0.6.eb | 2 +- .../c/cflow/cflow-1.4-goalf-1.1.0-no-OFED.eb | 2 +- .../c/cflow/cflow-1.4-ictce-4.0.6.eb | 2 +- .../c/cgdb/cgdb-0.6.5-goalf-1.1.0-no-OFED.eb | 2 +- .../c/cgdb/cgdb-0.6.5-ictce-4.0.6.eb | 2 +- .../ELinks-0.12pre5-goalf-1.1.0-no-OFED.eb | 2 +- .../e/ELinks/ELinks-0.12pre5-ictce-4.0.6.eb | 2 +- ...ResSo-3.1.1-goalf-1.1.0-no-OFED-parallel.eb | 2 +- ...SPResSo-3.1.1-goalf-1.1.0-no-OFED-serial.eb | 2 +- .../ESPResSo-3.1.1-ictce-4.0.6-parallel.eb | 2 +- .../ESPResSo-3.1.1-ictce-4.0.6-serial.eb | 2 +- .../e/Eigen/Eigen-3.1.1-goalf-1.1.0-no-OFED.eb | 2 +- .../e/Eigen/Eigen-3.1.1-ictce-4.0.6.eb | 2 +- .../Eigen/Eigen-3.1.4-goalf-1.5.12-no-OFED.eb | 2 +- .../e/Eigen/Eigen-3.1.4-ictce-4.1.13.eb | 2 +- .../Extrae-2.4.1-gompi-1.4.12-no-OFED.eb | 2 +- ...STX-Toolkit-0.0.13.2-goalf-1.1.0-no-OFED.eb | 2 +- .../FASTX-Toolkit-0.0.13.2-ictce-4.0.6.eb | 2 +- .../g/GDB/GDB-7.5.1-cgmpolf-1.1.6.eb | 2 +- .../g/GDB/GDB-7.5.1-cgmvolf-1.1.12rc1.eb | 2 +- .../g/GDB/GDB-7.5.1-cgmvolf-1.2.7.eb | 2 +- .../g/GDB/GDB-7.5.1-cgoolf-1.1.7.eb | 2 +- .../g/GDB/GDB-7.5.1-gmvolf-1.7.12.eb | 2 +- .../g/GDB/GDB-7.5.1-gmvolf-1.7.12rc1.eb | 2 +- .../g/GDB/GDB-7.5.1-goalf-1.1.0-no-OFED.eb | 2 +- .../GROMACS-4.6.1-goolfc-1.3.12-hybrid.eb | 2 +- .../GROMACS/GROMACS-4.6.1-goolfc-1.3.12-mt.eb | 2 +- .../GROMACS-4.6.5-gmpolf-1.4.8-hybrid.eb | 2 +- .../g/GROMACS/GROMACS-4.6.5-gmpolf-1.4.8-mt.eb | 2 +- .../GROMACS-4.6.5-gmvolf-1.7.12-hybrid.eb | 2 +- .../GROMACS/GROMACS-4.6.5-gmvolf-1.7.12-mt.eb | 2 +- ...GROMACS-4.6.5-goalf-1.1.0-no-OFED-hybrid.eb | 2 +- .../GROMACS-4.6.5-goalf-1.1.0-no-OFED-mt.eb | 2 +- .../GROMACS-4.6.5-goolfc-2.6.10-hybrid.eb | 2 +- .../GROMACS/GROMACS-4.6.5-goolfc-2.6.10-mt.eb | 2 +- .../g/GTI/GTI-1.2.0-gompi-1.4.12-no-OFED.eb | 2 +- .../g/git/git-1.7.12-goalf-1.1.0-no-OFED.eb | 2 +- .../g/git/git-1.7.12-ictce-4.0.6.eb | 2 +- .../g/git/git-1.8.2-cgmpolf-1.1.6.eb | 2 +- .../g/git/git-1.8.2-cgmvolf-1.1.12rc1.eb | 2 +- .../g/git/git-1.8.2-cgmvolf-1.2.7.eb | 2 +- .../g/git/git-1.8.2-cgoolf-1.1.7.eb | 2 +- .../g/git/git-1.8.2-gmvolf-1.7.12.eb | 2 +- .../g/git/git-1.8.2-gmvolf-1.7.12rc1.eb | 2 +- .../gnuplot-4.6.0-goalf-1.1.0-no-OFED.eb | 2 +- .../g/gnuplot/gnuplot-4.6.0-ictce-4.0.6.eb | 2 +- .../g/gzip/gzip-1.5-cgoolf-1.1.7.eb | 2 +- .../g/gzip/gzip-1.5-gmpolf-1.4.8.eb | 2 +- .../g/gzip/gzip-1.5-goalf-1.1.0-no-OFED.eb | 2 +- .../__archive__/g/gzip/gzip-1.5-ictce-4.0.6.eb | 2 +- .../g/gzip/gzip-1.5-ictce-4.1.13.eb | 2 +- .../g/gzip/gzip-1.6-goolf-1.5.14-no-OFED.eb | 2 +- .../HH-suite-2.0.16-goalf-1.1.0-no-OFED.eb | 2 +- .../h/HMMER/HMMER-3.0-goalf-1.1.0-no-OFED.eb | 2 +- .../h/HMMER/HMMER-3.0-ictce-4.0.6.eb | 2 +- ...PCBIOS_Math-20130829-goalf-1.1.0-no-OFED.eb | 2 +- .../Infernal-1.1-goalf-1.1.0-no-OFED.eb | 2 +- .../i/Infernal/Infernal-1.1-ictce-4.0.6.eb | 2 +- .../Infernal-1.1rc1-goalf-1.1.0-no-OFED.eb | 2 +- .../i/Infernal/Infernal-1.1rc1-ictce-4.0.6.eb | 2 +- .../i/Iperf/Iperf-2.0.5-goalf-1.1.0-no-OFED.eb | 2 +- .../i/Iperf/Iperf-2.0.5-ictce-4.0.6.eb | 2 +- .../l/LWM2/LWM2-1.1-gompi-1.4.12-no-OFED.eb | 2 +- .../l/LZO/LZO-2.06-goalf-1.1.0-no-OFED.eb | 2 +- .../__archive__/l/LZO/LZO-2.06-ictce-4.0.6.eb | 2 +- .../__archive__/l/LZO/LZO-2.06-ictce-5.1.1.eb | 2 +- .../l/LibTIFF/LibTIFF-4.0.3-ictce-4.1.13.eb | 2 +- .../l/lftp/lftp-4.4.1-goalf-1.1.0-no-OFED.eb | 2 +- .../libgtextutils-0.6.1-goalf-1.1.0-no-OFED.eb | 2 +- .../libgtextutils-0.6.1-ictce-4.0.6.eb | 2 +- .../l/libharu/libharu-2.2.0-ictce-4.1.13.eb | 2 +- .../libunwind-1.1-gompi-1.4.12-no-OFED.eb | 2 +- .../libyaml-0.1.4-goalf-1.1.0-no-OFED.eb | 2 +- .../m/M4/M4-1.4.17-intel-para-2014.12.eb | 2 +- .../m/MCL/MCL-12.135-goalf-1.1.0-no-OFED.eb | 2 +- .../m/MCL/MCL-12.135-ictce-4.0.6.eb | 2 +- .../m/MCL/MCL-12.135-ictce-4.1.13.eb | 2 +- .../m/MEME/MEME-4.8.0-goalf-1.1.0-no-OFED.eb | 2 +- .../m/MEME/MEME-4.8.0-ictce-4.0.6.eb | 2 +- .../MUMmer/MUMmer-3.23-goalf-1.1.0-no-OFED.eb | 2 +- .../m/MUMmer/MUMmer-3.23-ictce-4.0.6.eb | 2 +- .../MUMmer-3.23-ictce-4.1.13-Perl-5.16.3.eb | 2 +- .../m/MUST/MUST-1.2.0-gompi-1.4.12-no-OFED.eb | 2 +- .../MetaVelvet-1.2.01-goalf-1.1.0-no-OFED.eb | 2 +- .../MetaVelvet-1.2.01-ictce-4.0.6.eb | 2 +- .../m/mc/mc-4.6.1-goalf-1.1.0-no-OFED.eb | 2 +- .../__archive__/m/mc/mc-4.6.1-ictce-4.0.6.eb | 2 +- .../mpiBLAST-1.6.0-goalf-1.1.0-no-OFED.eb | 2 +- .../m/mpiBLAST/mpiBLAST-1.6.0-ictce-4.0.6.eb | 2 +- .../n/NASM/NASM-2.07-goalf-1.1.0-no-OFED.eb | 2 +- .../n/NASM/NASM-2.07-ictce-4.0.6.eb | 2 +- .../n/NASM/NASM-2.07-ictce-4.1.13.eb | 2 +- .../n/NASM/NASM-2.11.05-ictce-6.3.5.eb | 2 +- .../NCBI-Toolkit-9.0.0-goalf-1.1.0-no-OFED.eb | 2 +- .../NCBI-Toolkit-9.0.0-ictce-4.0.6.eb | 2 +- .../n/nano/nano-2.2.6-goalf-1.1.0-no-OFED.eb | 2 +- .../n/nano/nano-2.2.6-ictce-4.0.6.eb | 2 +- .../OPARI2-1.0.7-gompi-1.4.12-no-OFED.eb | 2 +- .../OPARI2-1.1.1-gompi-1.4.12-no-OFED.eb | 2 +- .../o/OTF/OTF-1.12.4-gompi-1.4.12-no-OFED.eb | 2 +- .../o/OTF2/OTF2-1.2.1-gompi-1.4.12-no-OFED.eb | 2 +- .../p/PAPI/PAPI-5.0.1-goalf-1.1.0-no-OFED.eb | 2 +- .../p/PAPI/PAPI-5.0.1-ictce-4.0.6.eb | 2 +- .../p/PAPI/PAPI-5.2.0-gompi-1.4.12-no-OFED.eb | 2 +- .../p/PDT/PDT-3.19-gompi-1.4.12-no-OFED.eb | 2 +- .../p/PLINK/PLINK-1.07-goalf-1.1.0-no-OFED.eb | 2 +- .../PnMPI/PnMPI-1.2.0-gompi-1.4.12-no-OFED.eb | 2 +- .../parallel-20130122-goalf-1.1.0-no-OFED.eb | 2 +- .../parallel/parallel-20130122-ictce-4.0.6.eb | 2 +- .../r/RNAz/RNAz-2.1-goalf-1.1.0-no-OFED.eb | 2 +- .../__archive__/r/RNAz/RNAz-2.1-ictce-4.0.6.eb | 2 +- .../SAMtools-0.1.18-goalf-1.1.0-no-OFED.eb | 2 +- .../s/SAMtools/SAMtools-0.1.18-ictce-4.0.6.eb | 2 +- .../SOAPdenovo-1.05-goalf-1.1.0-no-OFED.eb | 2 +- .../SOAPdenovo/SOAPdenovo-1.05-ictce-4.0.6.eb | 2 +- .../Scalasca-1.4.3-gompi-1.4.12-no-OFED.eb | 2 +- .../Scalasca-2.0-gompi-1.4.12-no-OFED.eb | 2 +- .../Score-P-1.2.1-gompi-1.4.12-no-OFED.eb | 2 +- .../s/Stow/Stow-1.3.3-goalf-1.1.0-no-OFED.eb | 2 +- .../s/Stow/Stow-1.3.3-ictce-4.0.6.eb | 2 +- .../t/TAU/TAU-2.22.2-gompi-1.4.12-no-OFED.eb | 2 +- .../t/Tar/Tar-1.26-goalf-1.1.0-no-OFED.eb | 2 +- .../__archive__/t/Tar/Tar-1.26-ictce-4.0.6.eb | 2 +- .../TopHat/TopHat-2.0.4-goalf-1.1.0-no-OFED.eb | 2 +- .../t/TopHat/TopHat-2.0.8-ictce-4.0.6.eb | 2 +- .../t/tcsh/tcsh-6.18.01-goalf-1.1.0-no-OFED.eb | 2 +- .../t/tcsh/tcsh-6.18.01-ictce-3.2.2.u3.eb | 2 +- .../t/tcsh/tcsh-6.18.01-ictce-4.1.13.eb | 2 +- .../t/tcsh/tcsh-6.18.01-iqacml-3.7.3.eb | 2 +- .../UDUNITS-2.1.24-goalf-1.1.0-no-OFED.eb | 2 +- .../u/UDUNITS/UDUNITS-2.1.24-ictce-3.2.2.u3.eb | 2 +- .../u/UDUNITS/UDUNITS-2.1.24-ictce-4.0.6.eb | 2 +- .../u/UDUNITS/UDUNITS-2.1.24-ictce-4.1.13.eb | 2 +- .../u/UDUNITS/UDUNITS-2.1.24-iqacml-3.7.3.eb | 2 +- .../v/VTK/VTK-5.10.1-goalf-1.1.0-no-OFED.eb | 2 +- .../v/VTK/VTK-5.10.1-ictce-4.0.6.eb | 2 +- .../VTK/VTK-6.0.0-ictce-4.1.13-Python-2.7.3.eb | 2 +- .../v/Valgrind/Valgrind-3.8.1-cgmpolf-1.1.6.eb | 2 +- .../Valgrind-3.8.1-cgmvolf-1.1.12rc1.eb | 2 +- .../v/Valgrind/Valgrind-3.8.1-cgmvolf-1.2.7.eb | 2 +- .../v/Valgrind/Valgrind-3.8.1-cgoolf-1.1.7.eb | 2 +- .../v/Valgrind/Valgrind-3.8.1-gmvolf-1.7.12.eb | 2 +- .../Valgrind-3.8.1-gmvolf-1.7.12rc1.eb | 2 +- .../Valgrind-3.8.1-goalf-1.1.0-no-OFED.eb | 2 +- .../Valgrind-3.9.0-goalf-1.5.12-no-OFED.eb | 2 +- .../VampirTrace-5.14.4-gompi-1.4.12-no-OFED.eb | 2 +- .../Velvet-1.2.07-goalf-1.1.0-no-OFED.eb | 2 +- .../v/Velvet/Velvet-1.2.07-ictce-4.0.6.eb | 2 +- .../ViennaRNA-2.0.7-goalf-1.1.0-no-OFED.eb | 2 +- .../v/ViennaRNA/ViennaRNA-2.0.7-ictce-4.0.6.eb | 2 +- ...r-1.0.0-goalf-1.1.0-no-OFED-Python-2.7.3.eb | 2 +- .../Viper-1.0.0-ictce-4.0.6-Python-2.7.3.eb | 2 +- ...r-0.9.5-goalf-1.1.0-no-OFED-Python-2.7.3.eb | 2 +- .../YAML-Syck-1.27-ictce-4.1.13-Perl-5.16.3.eb | 2 +- .../y/Yasm/Yasm-1.2.0-goalf-1.1.0-no-OFED.eb | 2 +- .../y/Yasm/Yasm-1.2.0-ictce-4.0.6.eb | 2 +- .../z/zsync/zsync-0.6.2-goalf-1.1.0-no-OFED.eb | 2 +- .../z/zsync/zsync-0.6.2-ictce-4.0.6.eb | 2 +- .../ABINIT/ABINIT-7.0.3-x86_64_linux_gnu4.5.eb | 2 +- .../ABINIT/ABINIT-7.0.5-x86_64_linux_gnu4.5.eb | 2 +- .../ABINIT/ABINIT-7.2.1-x86_64_linux_gnu4.5.eb | 2 +- .../ABINIT-7.4.3-goolf-1.4.10-ETSF_IO-1.0.4.eb | 2 +- .../ABySS-1.3.4-goolf-1.4.10-Python-2.7.3.eb | 2 +- .../ABySS-1.3.4-ictce-5.3.0-Python-2.7.3.eb | 2 +- .../ABySS-1.3.6-goolf-1.4.10-Python-2.7.5.eb | 2 +- .../ABySS-1.3.7-intel-2015a-Python-2.7.9.eb | 2 +- .../a/ABySS/ABySS-1.5.2-goolf-1.4.10.eb | 2 +- .../a/ABySS/ABySS-1.9.0-foss-2016a.eb | 2 +- ...NI-linux_openmp_64-goolf-1.5.14-20141023.eb | 2 +- ...FNI-linux_openmp_64-intel-2015a-20141023.eb | 2 +- .../ALLPATHS-LG-46968-goolf-1.4.10.eb | 2 +- .../ALLPATHS-LG-52488-foss-2016a.eb | 2 +- .../a/AMOS/AMOS-3.1.0-goolf-1.4.10.eb | 2 +- .../a/AMOS/AMOS-3.1.0-ictce-5.3.0.eb | 2 +- .../a/APBS/APBS-1.4-linux-static-x86_64.eb | 2 +- .../easyconfigs/a/ASHS/ASHS-rev103_20140612.eb | 2 +- .../AdapterRemoval-2.2.0-foss-2016b.eb | 2 +- .../Aspera-CLI/Aspera-CLI-3.7.2.354.010c3b8.eb | 2 +- .../AutoDock_Vina-1.1.2_linux_x86.eb | 2 +- .../a/Automake/Automake-1.13.4-goolf-1.4.10.eb | 2 +- .../a/Automake/Automake-1.13.4-ictce-5.3.0.eb | 2 +- .../a/Automake/Automake-1.13.4-ictce-5.5.0.eb | 2 +- .../a/Automake/Automake-1.14-GCC-4.8.2.eb | 2 +- .../a/Automake/Automake-1.14-ictce-5.3.0.eb | 2 +- .../a/Automake/Automake-1.14-ictce-5.5.0.eb | 2 +- .../a/Automake/Automake-1.14-intel-2016a.eb | 2 +- .../a/Automake/Automake-1.14.1-GCC-4.8.2.eb | 2 +- .../a/Automake/Automake-1.15-GCC-4.7.2.eb | 2 +- .../a/Automake/Automake-1.15-GCC-4.8.4.eb | 2 +- .../a/Automake/Automake-1.15-GCC-4.9.2.eb | 2 +- .../a/Automake/Automake-1.15-GCC-4.9.3-2.25.eb | 2 +- .../a/Automake/Automake-1.15-GCC-5.4.0-2.26.eb | 2 +- .../a/Automake/Automake-1.15-GCCcore-4.9.3.eb | 2 +- .../a/Automake/Automake-1.15-GCCcore-5.4.0.eb | 2 +- .../a/Automake/Automake-1.15-GCCcore-6.3.0.eb | 2 +- .../a/Automake/Automake-1.15-GNU-4.9.2-2.25.eb | 2 +- .../a/Automake/Automake-1.15-GNU-4.9.3-2.25.eb | 2 +- .../a/Automake/Automake-1.15-GNU-5.1.0-2.25.eb | 2 +- .../a/Automake/Automake-1.15-foss-2015a.eb | 2 +- .../a/Automake/Automake-1.15-foss-2015b.eb | 2 +- .../a/Automake/Automake-1.15-foss-2016.04.eb | 2 +- .../a/Automake/Automake-1.15-foss-2016a.eb | 2 +- .../a/Automake/Automake-1.15-foss-2016b.eb | 2 +- .../a/Automake/Automake-1.15-gimkl-2.11.5.eb | 2 +- .../a/Automake/Automake-1.15-ictce-5.3.0.eb | 2 +- .../a/Automake/Automake-1.15-ictce-5.5.0.eb | 2 +- .../a/Automake/Automake-1.15-intel-2015a.eb | 2 +- .../a/Automake/Automake-1.15-intel-2015b.eb | 2 +- .../Automake-1.15-intel-2016.02-GCC-4.9.eb | 2 +- .../a/Automake/Automake-1.15-intel-2016a.eb | 2 +- .../a/Automake/Automake-1.15-intel-2016b.eb | 2 +- .../a/Automake/Automake-1.15-iomkl-2016.07.eb | 2 +- ...tomake-1.15-iomkl-2016.09-GCC-4.9.3-2.25.eb | 2 +- .../easyconfigs/a/Automake/Automake-1.15.eb | 2 +- .../a/a2ps/a2ps-4.14-goolf-1.4.10.eb | 2 +- .../a/a2ps/a2ps-4.14-ictce-5.3.0.eb | 2 +- ...annovar-2016Feb01-foss-2016a-Perl-5.22.1.eb | 2 +- .../a/argtable/argtable-2.13-foss-2015b.eb | 2 +- .../a/argtable/argtable-2.13-foss-2016b.eb | 2 +- .../a/argtable/argtable-2.13-goolf-1.4.10.eb | 2 +- .../a/aria2/aria2-1.15.1-goolf-1.4.10.eb | 2 +- .../a/aria2/aria2-1.15.1-ictce-5.3.0.eb | 2 +- .../b/BCFtools/BCFtools-1.1-goolf-1.4.10.eb | 2 +- .../b/BCFtools/BCFtools-1.3.1-goolf-1.7.20.eb | 2 +- .../b/BEDOPS/BEDOPS-2.4.1-GCC-4.8.4.eb | 2 +- .../b/BEDOPS/BEDOPS-2.4.2-GCC-4.8.2.eb | 2 +- .../easyconfigs/b/BEDOPS/BEDOPS-2.4.26.eb | 2 +- .../b/BEEF/BEEF-0.1.1-r16-intel-2015a.eb | 2 +- .../b/BFAST/BFAST-0.7.0a-goolf-1.4.10.eb | 2 +- .../b/BFAST/BFAST-0.7.0a-goolf-1.7.20.eb | 2 +- .../b/BFAST/BFAST-0.7.0a-ictce-5.3.0.eb | 2 +- .../b/BH/BH-1.60.0-1-foss-2015b-R-3.2.3.eb | 2 +- .../b/BLASR/BLASR-2.1-goolf-1.4.10.eb | 2 +- .../b/BLASR/BLASR-2.2-intel-2016b.eb | 2 +- .../b/BLAST+/BLAST+-2.2.27-goolf-1.4.10.eb | 2 +- .../BLAST+-2.2.28-goolf-1.4.10-Python-2.7.3.eb | 2 +- .../b/BLAST+/BLAST+-2.2.28-goolf-1.4.10.eb | 2 +- .../BLAST+-2.2.28-ictce-5.3.0-Python-2.7.3.eb | 2 +- .../b/BLAST+/BLAST+-2.2.28-ictce-5.3.0.eb | 2 +- .../BLAST+-2.2.30-foss-2015a-Python-2.7.9.eb | 2 +- .../b/BLAST+/BLAST+-2.2.30-goolf-1.4.10.eb | 2 +- .../BLAST+-2.2.30-intel-2015a-Python-2.7.9.eb | 2 +- .../BLAST+-2.2.31-foss-2015b-Python-2.7.10.eb | 2 +- .../BLAST+-2.2.31-intel-2015a-Python-2.7.10.eb | 2 +- .../BLAST+-2.2.31-intel-2015b-Python-2.7.10.eb | 2 +- .../BLAST+-2.3.0-foss-2016a-Python-2.7.11.eb | 2 +- .../BLAST+-2.6.0-intel-2017a-Python-2.7.13.eb | 2 +- .../b/BLAST/BLAST-2.2.26-Linux_x86_64.eb | 2 +- .../b/BLAT/BLAT-3.5-goolf-1.4.10.eb | 2 +- .../BLAT/BLAT-3.5-ictce-5.5.0-libpng-1.6.9.eb | 2 +- .../easyconfigs/b/BLAT/BLAT-3.5-ictce-5.5.0.eb | 2 +- .../easyconfigs/b/BLAT/BLAT-3.5-intel-2016b.eb | 2 +- .../easyconfigs/b/BLAT/BLAT-3.5-intel-2017a.eb | 2 +- .../b/BWA/BWA-0.6.2-goolf-1.4.10.eb | 2 +- .../easyconfigs/b/BWA/BWA-0.6.2-ictce-5.3.0.eb | 2 +- .../easyconfigs/b/BWA/BWA-0.7.13-foss-2015b.eb | 2 +- .../easyconfigs/b/BWA/BWA-0.7.13-foss-2016a.eb | 2 +- .../b/BWA/BWA-0.7.13-goolf-1.4.10.eb | 2 +- .../b/BWA/BWA-0.7.13-intel-2016a.eb | 2 +- .../easyconfigs/b/BWA/BWA-0.7.15-foss-2016a.eb | 2 +- .../b/BWA/BWA-0.7.15-intel-2016b.eb | 2 +- .../b/BWA/BWA-0.7.15-intel-2017a.eb | 2 +- .../b/BWA/BWA-0.7.4-goolf-1.4.10.eb | 2 +- .../easyconfigs/b/BWA/BWA-0.7.4-ictce-5.3.0.eb | 2 +- .../b/BWA/BWA-0.7.5a-goolf-1.4.10.eb | 2 +- .../BXH_XCEDE_TOOLS/BXH_XCEDE_TOOLS-1.11.1.eb | 2 +- .../b/BamTools/BamTools-2.2.3-goolf-1.4.10.eb | 2 +- .../b/BamTools/BamTools-2.2.3-ictce-5.3.0.eb | 2 +- .../b/BamTools/BamTools-2.4.0-foss-2015b.eb | 2 +- .../b/BamTools/BamTools-2.4.0-foss-2016b.eb | 2 +- .../b/BamUtil/BamUtil-1.0.13-foss-2015b.eb | 2 +- .../b/BamUtil/BamUtil-1.0.13-intel-2016b.eb | 2 +- .../b/Bash/Bash-4.2-goolf-1.4.10.eb | 2 +- .../easyconfigs/b/Bash/Bash-4.2-ictce-5.3.0.eb | 2 +- .../easyconfigs/b/Bash/Bash-4.3-GCC-4.9.2.eb | 2 +- .../b/BayPass/BayPass-2.1-goolf-1.7.20.eb | 2 +- .../b/BayeScEnv/BayeScEnv-1.1-foss-2016a.eb | 2 +- .../b/BayeScEnv/BayeScEnv-1.1-goolf-1.4.10.eb | 2 +- .../b/BayeScan/BayeScan-2.1-foss-2016a.eb | 2 +- .../b/BayeScan/BayeScan-2.1-goolf-1.4.10.eb | 2 +- .../b/BayesTraits/BayesTraits-1.0-linux32.eb | 2 +- .../BayesTraits-2.0-Beta-Linux64.eb | 2 +- easybuild/easyconfigs/b/Beast/Beast-1.8.4.eb | 2 +- easybuild/easyconfigs/b/Beast/Beast-2.1.3.eb | 2 +- .../b/Beast/Beast-2.4.0-foss-2016a.eb | 2 +- ...Biopython-1.61-goolf-1.4.10-Python-2.7.3.eb | 2 +- .../Biopython-1.61-ictce-5.3.0-Python-2.7.3.eb | 2 +- .../Biopython-1.65-foss-2016a-Python-2.7.11.eb | 2 +- .../Biopython-1.68-foss-2016b-Python-2.7.12.eb | 2 +- ...Biopython-1.68-intel-2016b-Python-2.7.12.eb | 2 +- .../Biopython-1.68-intel-2016b-Python-3.5.2.eb | 2 +- .../b/Bismark/Bismark-0.10.1-goolf-1.4.10.eb | 2 +- .../b/BitSeq/BitSeq-0.7.0-goolf-1.4.10.eb | 2 +- .../b/Bonnie++/Bonnie++-1.03e-goolf-1.4.10.eb | 2 +- .../b/Bonnie++/Bonnie++-1.03e-ictce-5.3.0.eb | 2 +- .../b/Bonnie++/Bonnie++-1.97-foss-2016a.eb | 2 +- .../b/Bowtie2/Bowtie2-2.0.2-goolf-1.4.10.eb | 2 +- .../b/Bowtie2/Bowtie2-2.0.2-ictce-5.3.0.eb | 2 +- .../b/Bowtie2/Bowtie2-2.0.5-goolf-1.4.10.eb | 2 +- .../b/Bowtie2/Bowtie2-2.0.6-goolf-1.4.10.eb | 2 +- .../b/Bowtie2/Bowtie2-2.1.0-goolf-1.4.10.eb | 2 +- .../b/Bowtie2/Bowtie2-2.1.0-ictce-5.5.0.eb | 2 +- .../b/Bowtie2/Bowtie2-2.2.0-goolf-1.4.10.eb | 2 +- .../b/Bowtie2/Bowtie2-2.2.2-goolf-1.4.10.eb | 2 +- .../b/Bowtie2/Bowtie2-2.2.4-goolf-1.4.10.eb | 2 +- .../b/Bowtie2/Bowtie2-2.2.5-goolf-1.7.20.eb | 2 +- .../b/Bowtie2/Bowtie2-2.2.5-intel-2015a.eb | 2 +- .../b/Bowtie2/Bowtie2-2.2.6-foss-2015b.eb | 2 +- .../b/Bowtie2/Bowtie2-2.2.6-intel-2015b.eb | 2 +- .../b/Bowtie2/Bowtie2-2.2.7-foss-2015b.eb | 2 +- .../b/Bowtie2/Bowtie2-2.2.8-foss-2015b.eb | 2 +- .../b/Bowtie2/Bowtie2-2.2.8-foss-2016a.eb | 2 +- .../b/Bowtie2/Bowtie2-2.2.9-foss-2016a.eb | 2 +- .../b/Bowtie2/Bowtie2-2.2.9-goolf-1.7.20.eb | 2 +- .../b/Bowtie2/Bowtie2-2.2.9-intel-2016b.eb | 2 +- .../b/Bowtie2/Bowtie2-2.3.2-intel-2017a.eb | 2 +- .../bam-readcount-0.7.4-foss-2015b.eb | 2 +- .../bam2fastq/bam2fastq-1.1.0-goolf-1.4.10.eb | 2 +- .../b/bam2fastq/bam2fastq-1.1.0-ictce-5.3.0.eb | 2 +- .../b/bbFTP/bbFTP-3.2.0-goolf-1.4.10.eb | 2 +- .../b/bbFTP/bbFTP-3.2.1-intel-2016a.eb | 2 +- .../b/bbcp/bbcp-12.01.30.00.0-amd64_linux26.eb | 2 +- .../b/bbftpPRO/bbftpPRO-9.3.1-goolf-1.4.10.eb | 2 +- .../b/bbftpPRO/bbftpPRO-9.3.1-ictce-5.3.0.eb | 2 +- .../easyconfigs/b/bc/bc-1.06.95-GCC-4.8.2.eb | 2 +- .../b/binutils/binutils-2.22-goolf-1.4.10.eb | 2 +- .../b/binutils/binutils-2.22-goolf-1.5.14.eb | 2 +- .../biodeps-1.6-goolf-1.4.10-extended.eb | 2 +- .../b/biodeps/biodeps-1.6-goolf-1.4.10.eb | 2 +- .../biodeps-1.6-ictce-5.3.0-extended.eb | 2 +- .../b/biodeps/biodeps-1.6-ictce-5.3.0.eb | 2 +- .../b/bwakit/bwakit-0.7.15_x64-linux.eb | 2 +- .../c/CAP3/CAP3-20071221-intel-x86.eb | 2 +- .../c/CAP3/CAP3-20071221-intel-x86_64.eb | 2 +- .../c/CAP3/CAP3-20071221-opteron.eb | 2 +- .../CD-HIT-4.5.4-ictce-5.3.0-2011-03-07.eb | 2 +- .../CD-HIT-4.6.1-foss-2015b-2012-08-27.eb | 2 +- .../CD-HIT-4.6.1-goolf-1.4.10-2012-08-27.eb | 2 +- .../CD-HIT-4.6.1-ictce-5.5.0-2012-08-27.eb | 2 +- .../CD-HIT-4.6.4-GNU-4.9.3-2.25-2015-0603.eb | 2 +- .../CD-HIT-4.6.4-foss-2015b-2015-0603.eb | 2 +- .../c/CD-HIT/CD-HIT-4.6.6-foss-2016b.eb | 2 +- .../c/CEM/CEM-0.9.1-goolf-1.4.10.eb | 2 +- .../easyconfigs/c/CHASE/CHASE-20130626.eb | 2 +- .../CONTRAfold/CONTRAfold-2.02-goolf-1.4.10.eb | 2 +- .../CONTRAlign-2.01-goolf-1.4.10-proteins.eb | 2 +- .../CONTRAlign-2.01-goolf-1.4.10-rna.eb | 2 +- easybuild/easyconfigs/c/CUDA/CUDA-5.0.35-1.eb | 2 +- .../c/CUDA/CUDA-5.0.35-GCC-4.6.4-1.eb | 2 +- .../c/CUDA/CUDA-5.5.22-GCC-4.7.2.eb | 2 +- .../c/CUDA/CUDA-5.5.22-GCC-4.8.2.eb | 2 +- easybuild/easyconfigs/c/CUDA/CUDA-5.5.22.eb | 2 +- easybuild/easyconfigs/c/CUDA/CUDA-6.0.37.eb | 2 +- easybuild/easyconfigs/c/CUDA/CUDA-6.5.14.eb | 2 +- .../c/CUDA/CUDA-7.5.18-GCC-4.9.4-2.25.eb | 2 +- ....5.18-iccifort-2015.3.187-GNU-4.9.3-2.25.eb | 2 +- ....5.18-iccifort-2016.3.210-GCC-4.9.3-2.25.eb | 2 +- .../easyconfigs/c/CVS/CVS-1.11.23-GCC-4.8.2.eb | 2 +- .../c/CVS/CVS-1.11.23-GCCcore-4.9.3.eb | 2 +- .../c/ChIP-Seq/ChIP-Seq-1.5-1-goolf-1.4.10.eb | 2 +- .../c/ChIP-Seq/ChIP-Seq-1.5-1-goolf-1.7.20.eb | 2 +- .../c/Chapel/Chapel-1.10.0-goolf-1.4.10.eb | 2 +- .../c/Chapel/Chapel-1.10.0-goolf-1.6.10.eb | 2 +- .../c/Chapel/Chapel-1.6.0-goolf-1.4.10.eb | 2 +- .../c/Chapel/Chapel-1.7.0-goolf-1.4.10.eb | 2 +- .../c/Chapel/Chapel-1.8.0-goolf-1.4.10.eb | 2 +- .../c/Chapel/Chapel-1.8.0-goolf-1.6.10.eb | 2 +- .../c/Chapel/Chapel-1.9.0-goolf-1.4.10.eb | 2 +- .../c/Chapel/Chapel-1.9.0-goolf-1.5.14.eb | 2 +- .../c/Chapel/Chapel-1.9.0-goolf-1.6.10.eb | 2 +- .../c/Check/Check-0.9.12-goolf-1.4.10.eb | 2 +- .../c/Chimera/Chimera-1.10-linux_x86_64.eb | 2 +- .../Circos-0.69-5-foss-2016b-Perl-5.24.0.eb | 2 +- .../easyconfigs/c/Clang/Clang-3.2-GCC-4.7.3.eb | 2 +- .../easyconfigs/c/Clang/Clang-3.3-GCC-4.8.1.eb | 2 +- .../easyconfigs/c/Clang/Clang-3.4-GCC-4.8.2.eb | 2 +- .../c/Clang/Clang-3.4.1-GCC-4.8.2.eb | 2 +- .../c/Clang/Clang-3.4.2-GCC-4.8.2.eb | 2 +- .../c/Clang/Clang-3.6.0-GCC-4.9.2.eb | 2 +- .../c/Clang/Clang-3.6.1-GCC-4.9.2.eb | 2 +- .../c/Clang/Clang-3.7.0-GNU-4.9.3-2.25.eb | 2 +- .../c/Clang/Clang-3.7.1-GCC-4.9.3-2.25.eb | 2 +- .../c/Clang/Clang-3.7.1-foss-2016a.eb | 2 +- .../c/Clang/Clang-3.8.0-GCC-4.9.3-2.25.eb | 2 +- .../c/Clang/Clang-3.8.1-GCC-5.4.0-2.26.eb | 2 +- .../c/Clang/Clang-3.8.1-foss-2016b.eb | 2 +- .../Clustal-Omega-1.2.0-foss-2015b.eb | 2 +- .../Clustal-Omega-1.2.0-foss-2016b.eb | 2 +- .../Clustal-Omega-1.2.0-goolf-1.4.10.eb | 2 +- .../c/ClustalW2/ClustalW2-2.1-foss-2015b.eb | 2 +- .../c/ClustalW2/ClustalW2-2.1-foss-2016b.eb | 2 +- .../c/ClustalW2/ClustalW2-2.1-goolf-1.4.10.eb | 2 +- .../c/ClustalW2/ClustalW2-2.1-ictce-5.3.0.eb | 2 +- .../ConnectomeWorkbench-1.2.2.eb | 2 +- ...ecutter-1.4.0-goolf-1.7.20-Python-2.7.11.eb | 2 +- ...1-binary-Linux-x86_64-rhel-6-python-gtk2.eb | 2 +- .../c/Corkscrew/Corkscrew-2.0-goolf-1.4.10.eb | 2 +- .../c/Corkscrew/Corkscrew-2.0-ictce-5.3.0.eb | 2 +- .../c/Cube/Cube-4.2-goolf-1.5.14.eb | 2 +- .../c/Cube/Cube-4.2.3-goolf-1.5.14.eb | 2 +- .../easyconfigs/c/Cube/Cube-4.3-foss-2015a.eb | 2 +- .../c/Cube/Cube-4.3.2-foss-2015a.eb | 2 +- .../c/Cube/Cube-4.3.4-foss-2016a.eb | 2 +- .../Cufflinks/Cufflinks-1.3.0-goolf-1.4.10.eb | 2 +- .../Cufflinks/Cufflinks-2.0.2-goolf-1.4.10.eb | 2 +- .../c/Cufflinks/Cufflinks-2.0.2-ictce-5.3.0.eb | 2 +- .../c/Cufflinks/Cufflinks-2.1.1-ictce-5.5.0.eb | 2 +- .../c/ccache/ccache-3.1.9-goolf-1.4.10.eb | 2 +- .../c/ccache/ccache-3.1.9-ictce-5.3.0.eb | 2 +- easybuild/easyconfigs/c/ccache/ccache-3.2.5.eb | 2 +- easybuild/easyconfigs/c/ccache/ccache-3.3.1.eb | 2 +- easybuild/easyconfigs/c/ccache/ccache-3.3.3.eb | 2 +- .../c/cflow/cflow-1.4-goolf-1.4.10.eb | 2 +- .../c/cflow/cflow-1.4-ictce-5.3.0.eb | 2 +- .../c/cgdb/cgdb-0.6.5-goolf-1.4.10.eb | 2 +- .../c/cgdb/cgdb-0.6.5-ictce-5.3.0.eb | 2 +- .../c/ctffind/ctffind-4.0.17-intel-2015b.eb | 2 +- easybuild/easyconfigs/c/cuDNN/cuDNN-4.0.eb | 2 +- .../c/cuDNN/cuDNN-5.0-CUDA-7.5.18.eb | 2 +- easybuild/easyconfigs/c/cuDNN/cuDNN-5.0-rc.eb | 2 +- .../c/cuDNN/cuDNN-5.1-CUDA-8.0.44.eb | 2 +- .../c/cuDNN/cuDNN-6.0-CUDA-8.0.61.eb | 2 +- .../cutadapt-1.3-goolf-1.4.10-Python-2.7.3.eb | 2 +- .../cutadapt-1.3-goolf-1.4.10-Python-2.7.5.eb | 2 +- .../cutadapt-1.4.1-foss-2014b-Python-2.7.8.eb | 2 +- ...cutadapt-1.4.1-goolf-1.4.10-Python-2.7.5.eb | 2 +- .../cutadapt-1.5-foss-2014b-Python-2.7.8.eb | 2 +- .../cutadapt-1.6-foss-2014b-Python-2.7.8.eb | 2 +- .../cutadapt-1.7-foss-2014b-Python-2.7.8.eb | 2 +- .../cutadapt-1.7.1-foss-2014b-Python-2.7.8.eb | 2 +- .../cutadapt-1.8.1-intel-2015a-Python-2.7.9.eb | 2 +- .../cutadapt-1.9.1-foss-2015b-Python-2.7.10.eb | 2 +- .../cutadapt-1.9.1-foss-2016a-Python-2.7.11.eb | 2 +- .../cutadapt-1.9.1-foss-2016b-Python-2.7.12.eb | 2 +- .../DIALIGN-TX-1.0.2-goolf-1.4.10.eb | 2 +- .../d/DIAMOND/DIAMOND-0.8.35-goolf-1.7.20.eb | 2 +- .../d/DIAMOND/DIAMOND-0.9.6-goolf-1.7.20.eb | 2 +- easybuild/easyconfigs/d/DMTCP/DMTCP-2.4.5.eb | 2 +- .../d/DMTCP/DMTCP-2.5.0-foss-2016a.eb | 2 +- .../d/DSRC/DSRC-2.0rc-linux-64-bit.eb | 2 +- ...endroPy-3.12.0-goolf-1.4.10-Python-2.7.3.eb | 2 +- .../DicomBrowser-1.7.0b5-Java-1.7.0_80.eb | 2 +- .../d/Diffutils/Diffutils-3.2-goolf-1.4.10.eb | 2 +- .../d/Diffutils/Diffutils-3.2-ictce-5.3.0.eb | 2 +- .../d/Diffutils/Diffutils-3.3-GCC-4.8.2.eb | 2 +- ...biguate-1.0.0-goolf-1.7.20-Python-2.7.11.eb | 2 +- .../d/drFAST/drFAST-1.0.0.0-goolf-1.4.10.eb | 2 +- .../d/drFAST/drFAST-1.0.0.0-ictce-6.2.5.eb | 2 +- .../e/EIGENSOFT/EIGENSOFT-6.0.1-foss-2016a.eb | 2 +- .../e/EIGENSOFT/EIGENSOFT-6.1.1-foss-2016a.eb | 2 +- .../EIGENSOFT/EIGENSOFT-6.1.1-goolf-1.7.20.eb | 2 +- .../e/EIGENSOFT/EIGENSOFT-6.1.4-foss-2016b.eb | 2 +- .../e/ELPA/ELPA-2013.11-ictce-5.3.0.eb | 2 +- .../e/ELPA/ELPA-2013.11-ictce-5.5.0.eb | 2 +- .../e/ELPA/ELPA-2016.05.004-intel-2016b.eb | 2 +- .../e/ELPA/ELPA-2016.05.004-intel-2017a.eb | 2 +- .../e/ELPH/ELPH-1.0.1-goolf-1.4.10.eb | 2 +- .../e/ELPH/ELPH-1.0.1-ictce-6.2.5.eb | 2 +- .../e/ELinks/ELinks-0.12pre5-goolf-1.4.10.eb | 2 +- .../e/ELinks/ELinks-0.12pre5-ictce-5.3.0.eb | 2 +- .../ESPResSo-3.1.1-goolf-1.4.10-parallel.eb | 2 +- .../ESPResSo-3.1.1-goolf-1.4.10-serial.eb | 2 +- .../ESPResSo-3.1.1-ictce-5.3.0-parallel.eb | 2 +- .../ESPResSo-3.1.1-ictce-5.3.0-serial.eb | 2 +- .../e/ETSF_IO/ETSF_IO-1.0.4-goolf-1.4.10.eb | 2 +- .../e/ETSF_IO/ETSF_IO-1.0.4-intel-2015b.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-1.0.0.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-1.0.1.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-1.0.2.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-1.1.0.eb | 2 +- .../e/EasyBuild/EasyBuild-1.10.0.eb | 2 +- .../e/EasyBuild/EasyBuild-1.11.0.eb | 2 +- .../e/EasyBuild/EasyBuild-1.11.1.eb | 2 +- .../e/EasyBuild/EasyBuild-1.12.0.eb | 2 +- .../e/EasyBuild/EasyBuild-1.12.1.eb | 2 +- .../e/EasyBuild/EasyBuild-1.13.0.eb | 2 +- .../e/EasyBuild/EasyBuild-1.14.0.eb | 2 +- .../e/EasyBuild/EasyBuild-1.15.0.eb | 2 +- .../e/EasyBuild/EasyBuild-1.15.1.eb | 2 +- .../e/EasyBuild/EasyBuild-1.15.2.eb | 2 +- .../e/EasyBuild/EasyBuild-1.16.0.eb | 2 +- .../e/EasyBuild/EasyBuild-1.16.1.eb | 2 +- .../e/EasyBuild/EasyBuild-1.16.2.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-1.2.0.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-1.3.0.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-1.4.0.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-1.5.0.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-1.6.0.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-1.7.0.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-1.8.0.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-1.8.1.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-1.8.2.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-1.9.0.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-2.0.0.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-2.1.0.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-2.1.1.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-2.2.0.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-2.3.0.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-2.4.0.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-2.5.0.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-2.6.0.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-2.7.0.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-2.8.0.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-2.8.1.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-2.8.2.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-2.9.0.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-3.0.0.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-3.0.1.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-3.0.2.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-3.1.0.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-3.1.1.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-3.1.2.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-3.2.0.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-3.2.1.eb | 2 +- .../easyconfigs/e/EasyBuild/EasyBuild-3.3.0.eb | 2 +- .../e/Eigen/Eigen-3.1.1-goolf-1.4.10.eb | 2 +- .../e/Eigen/Eigen-3.1.1-ictce-5.3.0.eb | 2 +- .../e/Eigen/Eigen-3.1.4-goolf-1.4.10.eb | 2 +- .../e/Eigen/Eigen-3.1.4-ictce-5.3.0.eb | 2 +- .../e/Eigen/Eigen-3.1.4-ictce-5.5.0.eb | 2 +- .../e/Eigen/Eigen-3.2.0-ictce-5.5.0.eb | 2 +- .../e/Eigen/Eigen-3.2.2-goolf-1.5.14.eb | 2 +- .../e/Eigen/Eigen-3.2.2-ictce-7.1.2.eb | 2 +- .../e/Eigen/Eigen-3.2.2-intel-2014b.eb | 2 +- .../e/Eigen/Eigen-3.2.6-goolf-1.7.20.eb | 2 +- .../ErlangOTP-R16B02-goolf-1.4.10-no-Java.eb | 2 +- .../e/Exonerate/Exonerate-2.2.0-foss-2015b.eb | 2 +- .../Exonerate/Exonerate-2.2.0-goolf-1.4.10.eb | 2 +- .../e/Exonerate/Exonerate-2.2.0-ictce-5.3.0.eb | 2 +- .../e/Exonerate/Exonerate-2.4.0-foss-2015b.eb | 2 +- .../e/Exonerate/Exonerate-2.4.0-foss-2016a.eb | 2 +- .../e/Exonerate/Exonerate-2.4.0-foss-2016b.eb | 2 +- .../e/Extrae/Extrae-3.0.1-foss-2015a.eb | 2 +- .../e/eXpress/eXpress-1.5.1-goolf-1.4.10.eb | 2 +- .../f/FASTA/FASTA-36.3.5e-foss-2016b.eb | 2 +- .../f/FASTA/FASTA-36.3.5e-goolf-1.4.10.eb | 2 +- .../f/FASTA/FASTA-36.3.5e-ictce-5.3.0.eb | 2 +- .../FASTX-Toolkit-0.0.13.2-goolf-1.4.10.eb | 2 +- .../FASTX-Toolkit-0.0.13.2-ictce-5.3.0.eb | 2 +- .../FASTX-Toolkit-0.0.14-foss-2015b.eb | 2 +- .../FASTX-Toolkit-0.0.14-foss-2016a.eb | 2 +- .../FASTX-Toolkit-0.0.14-foss-2016b.eb | 2 +- .../FASTX-Toolkit-0.0.14-goolf-1.4.10.eb | 2 +- .../FASTX-Toolkit-0.0.14-intel-2015a.eb | 2 +- .../FFLAS-FFPACK-2.2.0-foss-2016a.eb | 2 +- .../f/FLAC/FLAC-1.3.1-foss-2015a.eb | 2 +- .../f/FSA/FSA-1.15.8-goolf-1.4.10.eb | 2 +- .../f/FSA/FSA-1.15.8-ictce-5.3.0.eb | 2 +- .../f/FastQC/FastQC-0.10.1-Java-1.7.0_80.eb | 2 +- .../easyconfigs/f/Firefox/Firefox-44.0.2.eb | 2 +- .../easyconfigs/f/fastPHASE/fastPHASE-1.4.8.eb | 2 +- ...tor-0.1.1a-20151214-goolf-1.7.20-aadc6f9.eb | 2 +- .../f/fastqz/fastqz-1.5-GCC-4.8.2.eb | 2 +- .../easyconfigs/f/file/file-5.17-GCC-4.8.2.eb | 2 +- .../f/file/file-5.25-intel-2016a.eb | 2 +- .../easyconfigs/f/file/file-5.28-foss-2016b.eb | 2 +- .../f/file/file-5.30-intel-2017a.eb | 2 +- .../findutils/findutils-4.2.33-goolf-1.4.10.eb | 2 +- .../findutils/findutils-4.2.33-ictce-5.3.0.eb | 2 +- .../f/findutils/findutils-4.4.2-GCC-4.8.2.eb | 2 +- .../f/fqzcomp/fqzcomp-4.6-GCC-4.8.2.eb | 2 +- .../g/GATK/GATK-2.5-2-Java-1.7.0_10.eb | 2 +- .../g/GATK/GATK-2.6-5-Java-1.7.0_10.eb | 2 +- .../g/GATK/GATK-2.7-4-Java-1.7.0_10.eb | 2 +- .../g/GATK/GATK-2.8-1-Java-1.7.0_10.eb | 2 +- .../g/GATK/GATK-3.0-0-Java-1.7.0_10.eb | 2 +- .../g/GATK/GATK-3.3-0-Java-1.7.0_21.eb | 2 +- .../g/GATK/GATK-3.3-0-Java-1.7.0_80.eb | 2 +- .../g/GATK/GATK-3.3-0-Java-1.8.0_66.eb | 2 +- .../g/GATK/GATK-3.5-Java-1.8.0_66.eb | 2 +- .../g/GATK/GATK-3.5-Java-1.8.0_74.eb | 2 +- .../g/GATK/GATK-3.6-Java-1.8.0_92.eb | 2 +- .../g/GATK/GATK-3.7-Java-1.8.0_112.eb | 2 +- easybuild/easyconfigs/g/GCC/GCC-system.eb | 2 +- .../g/GD/GD-2.66-foss-2016b-Perl-5.24.0.eb | 2 +- .../g/GDB/GDB-7.5.1-goolf-1.4.10.eb | 2 +- ...130406-045632_pre-release-3_Linux-x86_64.eb | 2 +- .../g/GEMSTAT/GEMSTAT-1.0-goolf-1.4.10.eb | 2 +- .../g/GFOLD/GFOLD-1.1.4-goolf-1.7.20.eb | 2 +- .../g/GFOLD/GFOLD-1.1.4-intel-2016a.eb | 2 +- .../g/GIMPS/GIMPS-p95v279-GCC-4.8.2.eb | 2 +- .../g/GIMPS/GIMPS-p95v279.linux64.eb | 2 +- .../g/GLIMMER/GLIMMER-3.02b-goolf-1.4.10.eb | 2 +- .../g/GLIMMER/GLIMMER-3.02b-ictce-5.3.0.eb | 2 +- .../GMAP-GSNAP-2014-01-21-goolf-1.4.10.eb | 2 +- .../GMAP-GSNAP-2014-06-10-goolf-1.4.10.eb | 2 +- .../GMAP-GSNAP-2015-12-31.v2-foss-2015b.eb | 2 +- .../GMAP-GSNAP-2016-05-01-foss-2016a.eb | 2 +- .../GMAP-GSNAP-2016-11-07-foss-2016b.eb | 2 +- .../GROMACS/GROMACS-2016-foss-2016b-hybrid.eb | 2 +- .../g/GROMACS/GROMACS-2016-foss-2016b-mt.eb | 2 +- .../GROMACS-2016.1-foss-2017a-PLUMED.eb | 2 +- .../g/GROMACS/GROMACS-2016.2-foss-2017a.eb | 2 +- .../g/GROMACS/GROMACS-2016.3-foss-2017a.eb | 2 +- .../g/GROMACS/GROMACS-2016.3-intel-2017a.eb | 2 +- .../g/GROMACS/GROMACS-3.3.3-goolf-1.5.14.eb | 2 +- .../GROMACS-4.6.1-goolf-1.4.10-hybrid.eb | 2 +- .../g/GROMACS/GROMACS-4.6.1-goolf-1.4.10-mt.eb | 2 +- .../GROMACS-4.6.1-ictce-5.3.0-hybrid.eb | 2 +- .../g/GROMACS/GROMACS-4.6.1-ictce-5.3.0-mt.eb | 2 +- .../GROMACS-4.6.5-goolf-1.4.10-hybrid.eb | 2 +- .../g/GROMACS/GROMACS-4.6.5-goolf-1.4.10-mt.eb | 2 +- .../GROMACS-4.6.5-ictce-5.5.0-hybrid.eb | 2 +- .../g/GROMACS/GROMACS-4.6.5-ictce-5.5.0-mt.eb | 2 +- .../GROMACS-4.6.7-CrayGNU-2015.06-mpi.eb | 2 +- .../GROMACS-4.6.7-CrayGNU-2015.11-mpi.eb | 2 +- .../GROMACS-4.6.7-CrayIntel-2015.11-mpi.eb | 2 +- .../g/GROMACS/GROMACS-5.0.2-ictce-7.1.2-mt.eb | 2 +- .../GROMACS-5.0.4-intel-2015a-hybrid.eb | 2 +- .../g/GROMACS/GROMACS-5.0.4-intel-2015a-mt.eb | 2 +- .../GROMACS-5.0.5-intel-2015a-hybrid.eb | 2 +- .../GROMACS-5.0.7-intel-2015a-hybrid.eb | 2 +- .../GROMACS-5.1.1-intel-2015b-hybrid.eb | 2 +- .../GROMACS/GROMACS-5.1.2-foss-2015b-hybrid.eb | 2 +- .../GROMACS/GROMACS-5.1.2-foss-2016a-hybrid.eb | 2 +- .../g/GROMACS/GROMACS-5.1.2-foss-2016a-mt.eb | 2 +- .../g/GROMACS/GROMACS-5.1.2-goolf-1.7.20-mt.eb | 2 +- .../GROMACS-5.1.2-intel-2016a-hybrid-dp.eb | 2 +- .../GROMACS-5.1.2-intel-2016a-hybrid.eb | 2 +- .../GROMACS/GROMACS-5.1.4-foss-2016b-hybrid.eb | 2 +- .../g/GROMACS/GROMACS-5.1.4-foss-2016b-mt.eb | 2 +- .../GROMOS++-1.0.2211-goolf-1.5.14-openmp.eb | 2 +- .../GROMOS++-1.0.2211-goolf-1.5.14-serial.eb | 2 +- .../g/GTI/GTI-1.2.0-goolf-1.5.14.eb | 2 +- easybuild/easyconfigs/g/GTOOL/GTOOL-0.7.5.eb | 2 +- .../g/Givaro/Givaro-4.0.1-foss-2016a.eb | 2 +- .../g/gawk/gawk-4.0.2-goolf-1.4.10.eb | 2 +- .../g/gawk/gawk-4.0.2-ictce-5.3.0.eb | 2 +- .../gencore_variant_detection-1.0.eb | 2 +- .../easyconfigs/g/git-lfs/git-lfs-1.1.1.eb | 2 +- .../g/git/git-1.7.12-goolf-1.4.10.eb | 2 +- .../g/git/git-1.7.12-ictce-5.3.0.eb | 2 +- .../g/git/git-1.8.2-goolf-1.4.10.eb | 2 +- .../g/git/git-1.8.3.1-goolf-1.4.10.eb | 2 +- .../easyconfigs/g/git/git-1.8.5.6-GCC-4.9.2.eb | 2 +- .../easyconfigs/g/git/git-2.2.2-GCC-4.9.2.eb | 2 +- .../easyconfigs/g/git/git-2.4.1-GCC-4.9.2.eb | 2 +- .../g/gnuplot/gnuplot-4.6.0-goolf-1.4.10.eb | 2 +- .../g/gnuplot/gnuplot-4.6.0-ictce-5.3.0.eb | 2 +- .../g/gnuplot/gnuplot-4.6.6-intel-2014b.eb | 2 +- .../g/gnuplot/gnuplot-5.0.0-intel-2014b.eb | 2 +- .../g/gnuplot/gnuplot-5.0.0-intel-2015a.eb | 2 +- .../g/gnuplot/gnuplot-5.0.1-intel-2015b.eb | 2 +- .../g/gnuplot/gnuplot-5.0.3-foss-2016a.eb | 2 +- .../g/gnuplot/gnuplot-5.0.3-intel-2016a.eb | 2 +- .../g/gnuplot/gnuplot-5.0.5-foss-2016b.eb | 2 +- .../g/gnuplot/gnuplot-5.0.5-intel-2016b.eb | 2 +- .../g/gnuplot/gnuplot-5.0.6-intel-2017a.eb | 2 +- .../g/grabix/grabix-0.1.6-goolf-1.7.20.eb | 2 +- .../gromosXX-1.0.1737-goolf-1.5.14-mpi.eb | 2 +- .../gromosXX-1.0.1737-goolf-1.5.14-openmp.eb | 2 +- .../gromosXX-1.0.1737-goolf-1.5.14-serial.eb | 2 +- .../g/gzip/gzip-1.5-goolf-1.4.10.eb | 2 +- .../easyconfigs/g/gzip/gzip-1.5-ictce-5.3.0.eb | 2 +- .../g/gzip/gzip-1.6-goolf-1.5.14.eb | 2 +- .../g/gzip/gzip-1.6-goolf-1.6.10.eb | 2 +- .../easyconfigs/g/gzip/gzip-1.6-ictce-5.3.0.eb | 2 +- .../easyconfigs/g/gzip/gzip-1.6-ictce-5.5.0.eb | 2 +- .../easyconfigs/g/gzip/gzip-1.6-ictce-6.2.5.eb | 2 +- .../easyconfigs/h/HAPGEN2/HAPGEN2-2.2.0.eb | 2 +- .../h/HH-suite/HH-suite-2.0.16-goolf-1.4.10.eb | 2 +- .../h/HMMER/HMMER-3.0-goolf-1.4.10.eb | 2 +- .../h/HMMER/HMMER-3.0-ictce-5.3.0.eb | 2 +- .../h/HMMER/HMMER-3.1b1-goolf-1.4.10.eb | 2 +- .../h/HMMER/HMMER-3.1b1-ictce-5.3.0.eb | 2 +- .../h/HMMER/HMMER-3.1b1-ictce-6.2.5.eb | 2 +- .../h/HMMER/HMMER-3.1b2-foss-2016a.eb | 2 +- .../h/HMMER/HMMER-3.1b2-intel-2015a.eb | 2 +- .../h/HMMER/HMMER-3.1b2-intel-2017a.eb | 2 +- .../HPCBIOS_Bioinfo-20130829-goolf-1.4.10.eb | 2 +- .../HPCBIOS_Bioinfo-20130829-ictce-5.3.0.eb | 2 +- .../HPCBIOS_Debuggers-20130829-goolf-1.4.10.eb | 2 +- ...CBIOS_LifeSciences-20130829-goolf-1.4.10.eb | 2 +- ...PCBIOS_LifeSciences-20130829-ictce-5.3.0.eb | 2 +- .../HPCBIOS_Math-20130829-goolf-1.4.10.eb | 2 +- .../HPCBIOS_Math-20130829-ictce-5.3.0.eb | 2 +- .../HPCBIOS_Profilers-20130829-goolf-1.4.10.eb | 2 +- .../h/HTSlib/HTSlib-1.1-goolf-1.4.10.eb | 2 +- .../h/HTSlib/HTSlib-1.2.1-foss-2015a.eb | 2 +- .../h/HTSlib/HTSlib-1.2.1-goolf-1.7.20.eb | 2 +- .../h/HTSlib/HTSlib-1.2.1-intel-2015a.eb | 2 +- .../h/HTSlib/HTSlib-1.2.1-intel-2015b.eb | 2 +- .../h/HTSlib/HTSlib-1.3-foss-2016a.eb | 2 +- .../h/HTSlib/HTSlib-1.3-intel-2016a.eb | 2 +- .../h/HTSlib/HTSlib-1.3.1-foss-2016a.eb | 2 +- .../h/HTSlib/HTSlib-1.3.1-foss-2016b.eb | 2 +- .../h/HTSlib/HTSlib-1.3.1-goolf-1.7.20.eb | 2 +- .../h/HTSlib/HTSlib-1.3.1-intel-2016b.eb | 2 +- .../h/HTSlib/HTSlib-1.3.2-intel-2016b.eb | 2 +- .../h/HTSlib/HTSlib-1.4-foss-2016b.eb | 2 +- .../h/HTSlib/HTSlib-1.4-intel-2016b.eb | 2 +- .../h/HTSlib/HTSlib-1.4.1-intel-2017a.eb | 2 +- .../HTSlib-20160107-intel-2017a-PacBio.eb | 2 +- .../i/IDBA-UD/IDBA-UD-1.1.1-goolf-1.4.10.eb | 2 +- .../i/IGV/IGV-2.3.68-Java-1.7.0_80.eb | 2 +- .../i/IGV/IGV-2.3.80-Java-1.7.0_80.eb | 2 +- .../IGVTools/IGVTools-2.3.68-Java-1.7.0_80.eb | 2 +- .../IGVTools/IGVTools-2.3.72-Java-1.7.0_80.eb | 2 +- .../IGVTools/IGVTools-2.3.75-Java-1.7.0_80.eb | 2 +- .../i/IMOD/IMOD-4.7.15_RHEL6-64_CUDA6.0.eb | 2 +- .../i/IMPUTE2/IMPUTE2-2.3.0_x86_64_dynamic.eb | 2 +- .../i/IMPUTE2/IMPUTE2-2.3.0_x86_64_static.eb | 2 +- .../i/IMPUTE2/IMPUTE2-2.3.2_x86_64_dynamic.eb | 2 +- .../i/IMPUTE2/IMPUTE2-2.3.2_x86_64_static.eb | 2 +- .../i/IOR/IOR-2.10.3-goolf-1.4.10-mpiio.eb | 2 +- .../i/IOR/IOR-2.10.3-intel-2014b-mpiio.eb | 2 +- .../i/IOR/IOR-3.0.1-foss-2016a-mpiio.eb | 2 +- .../IPython-4.1.0-goolf-1.4.10-Python-2.7.5.eb | 2 +- ...IPython-4.2.0-goolf-1.7.20-Python-2.7.11.eb | 2 +- .../IPython-4.2.0-intel-2016a-Python-2.7.11.eb | 2 +- .../ImageMagick-7.0.2-9-intel-2016a.eb | 2 +- .../ImageMagick-7.0.3-1-intel-2016b.eb | 2 +- .../ImageMagick-7.0.5-10-foss-2016b.eb | 2 +- .../ImageMagick-7.0.5-4-intel-2017a.eb | 2 +- .../i/Infernal/Infernal-1.1-goolf-1.4.10.eb | 2 +- .../i/Infernal/Infernal-1.1-ictce-5.3.0.eb | 2 +- .../i/Infernal/Infernal-1.1rc1-goolf-1.4.10.eb | 2 +- .../i/Infernal/Infernal-1.1rc1-ictce-5.3.0.eb | 2 +- .../i/Iperf/Iperf-2.0.5-goolf-1.4.10.eb | 2 +- .../i/Iperf/Iperf-2.0.5-ictce-5.3.0.eb | 2 +- .../i/IsoInfer/IsoInfer-0.9.1-goolf-1.4.10.eb | 2 +- .../i/IsoInfer/IsoInfer-0.9.1-ictce-6.2.5.eb | 2 +- .../i/icc/icc-2016.0.109-GCC-4.9.3-2.25.eb | 2 +- easybuild/easyconfigs/i/icc/icc-2016.0.109.eb | 2 +- .../i/icc/icc-2016.1.150-GCC-4.9.3-2.25.eb | 2 +- .../i/icc/icc-2016.2.181-GCC-4.9.3-2.25.eb | 2 +- .../i/icc/icc-2016.2.181-GCC-5.3.0-2.26.eb | 2 +- .../i/icc/icc-2016.3.210-GCC-4.9.3-2.25.eb | 2 +- .../i/icc/icc-2016.3.210-GCC-5.3.0-2.26.eb | 2 +- .../i/icc/icc-2016.3.210-GCC-5.4.0-2.26.eb | 2 +- .../i/icc/icc-2017.0.098-GCC-5.4.0-2.26.eb | 2 +- .../i/icc/icc-2017.1.132-GCC-5.4.0-2.26.eb | 2 +- .../i/icc/icc-2017.1.132-GCC-6.3.0-2.27.eb | 2 +- .../i/icc/icc-2017.2.174-GCC-6.3.0-2.27.eb | 2 +- .../iccifort-2016.0.109-GCC-4.9.3-2.25.eb | 2 +- .../i/iccifort/iccifort-2016.0.109.eb | 2 +- .../iccifort-2016.1.150-GCC-4.9.3-2.25.eb | 2 +- .../iccifort-2016.2.181-GCC-4.9.3-2.25.eb | 2 +- .../iccifort-2016.2.181-GCC-5.3.0-2.26.eb | 2 +- .../iccifort-2016.3.210-GCC-4.9.3-2.25.eb | 2 +- .../iccifort-2016.3.210-GCC-5.3.0-2.26.eb | 2 +- .../iccifort-2016.3.210-GCC-5.4.0-2.26.eb | 2 +- .../iccifort-2017.0.098-GCC-5.4.0-2.26.eb | 2 +- .../iccifort-2017.1.132-GCC-5.4.0-2.26.eb | 2 +- .../iccifort-2017.1.132-GCC-6.3.0-2.27.eb | 2 +- .../iccifort-2017.2.174-GCC-6.3.0-2.27.eb | 2 +- .../i/ifort/ifort-2016.0.109-GCC-4.9.3-2.25.eb | 2 +- .../easyconfigs/i/ifort/ifort-2016.0.109.eb | 2 +- .../i/ifort/ifort-2016.1.150-GCC-4.9.3-2.25.eb | 2 +- .../i/ifort/ifort-2016.2.181-GCC-4.9.3-2.25.eb | 2 +- .../i/ifort/ifort-2016.2.181-GCC-5.3.0-2.26.eb | 2 +- .../i/ifort/ifort-2016.3.210-GCC-4.9.3-2.25.eb | 2 +- .../i/ifort/ifort-2016.3.210-GCC-5.3.0-2.26.eb | 2 +- .../i/ifort/ifort-2016.3.210-GCC-5.4.0-2.26.eb | 2 +- .../i/ifort/ifort-2017.0.098-GCC-5.4.0-2.26.eb | 2 +- .../i/ifort/ifort-2017.1.132-GCC-5.4.0-2.26.eb | 2 +- .../i/ifort/ifort-2017.1.132-GCC-6.3.0-2.27.eb | 2 +- .../i/ifort/ifort-2017.2.174-GCC-6.3.0-2.27.eb | 2 +- .../i/iimpi/iimpi-2016.00-GCC-4.9.3-2.25.eb | 2 +- .../i/iimpi/iimpi-2016.01-GCC-4.9.3-2.25.eb | 2 +- .../i/iimpi/iimpi-2016.02-GCC-4.9.3-2.25.eb | 2 +- .../i/iimpi/iimpi-2016.02-GCC-5.3.0-2.26.eb | 2 +- .../i/iimpi/iimpi-2016.03-GCC-4.9.3-2.25.eb | 2 +- .../i/iimpi/iimpi-2016.03-GCC-5.3.0-2.26.eb | 2 +- .../i/iimpi/iimpi-2016.03-GCC-5.4.0-2.26.eb | 2 +- easybuild/easyconfigs/i/iimpi/iimpi-2016b.eb | 2 +- .../i/iimpi/iimpi-2017.00-GCC-5.4.0-2.26.eb | 2 +- .../i/iimpi/iimpi-2017.01-GCC-5.4.0-2.26.eb | 2 +- .../i/iimpi/iimpi-2017.02-GCC-6.3.0-2.27.eb | 2 +- easybuild/easyconfigs/i/iimpi/iimpi-2017a.eb | 2 +- .../easyconfigs/i/iimpic/iimpic-2016.10.eb | 2 +- ...-11.3.0.109-iimpi-2016.00-GCC-4.9.3-2.25.eb | 2 +- ...-11.3.1.150-iimpi-2016.01-GCC-4.9.3-2.25.eb | 2 +- ...-11.3.2.181-iimpi-2016.02-GCC-4.9.3-2.25.eb | 2 +- ...-11.3.2.181-iimpi-2016.02-GCC-5.3.0-2.26.eb | 2 +- .../i/imkl/imkl-11.3.2.181-pompi-2016.03.eb | 2 +- ...-11.3.3.210-iimpi-2016.03-GCC-4.9.3-2.25.eb | 2 +- ...-11.3.3.210-iimpi-2016.03-GCC-5.3.0-2.26.eb | 2 +- ...-11.3.3.210-iimpi-2016.03-GCC-5.4.0-2.26.eb | 2 +- .../i/imkl/imkl-11.3.3.210-iimpi-2016b.eb | 2 +- .../i/imkl/imkl-11.3.3.210-iimpic-2016.10.eb | 2 +- .../i/imkl/imkl-11.3.3.210-pompi-2016.04.eb | 2 +- .../i/imkl/imkl-11.3.3.210-pompi-2016.09.eb | 2 +- ...-2017.0.098-iimpi-2017.00-GCC-5.4.0-2.26.eb | 2 +- ...-2017.1.132-iimpi-2017.01-GCC-5.4.0-2.26.eb | 2 +- .../i/imkl/imkl-2017.1.132-iimpi-2017a.eb | 2 +- .../i/imkl/imkl-2017.1.132-iompi-2017.01.eb | 2 +- .../i/imkl/imkl-2017.1.132-iompi-2017a.eb | 2 +- ...-2017.2.174-iimpi-2017.02-GCC-6.3.0-2.27.eb | 2 +- ...0.098-iccifort-2017.0.098-GCC-5.4.0-2.26.eb | 2 +- ...1.132-iccifort-2017.1.132-GCC-5.4.0-2.26.eb | 2 +- ...1.132-iccifort-2017.1.132-GCC-6.3.0-2.27.eb | 2 +- ...2.174-iccifort-2017.2.174-GCC-6.3.0-2.27.eb | 2 +- ...1.109-iccifort-2016.0.109-GCC-4.9.3-2.25.eb | 2 +- ...2.150-iccifort-2016.1.150-GCC-4.9.3-2.25.eb | 2 +- ...3.181-iccifort-2016.2.181-GCC-4.9.3-2.25.eb | 2 +- ...3.181-iccifort-2016.2.181-GCC-5.3.0-2.26.eb | 2 +- ...3.181-iccifort-2016.3.210-GCC-4.9.3-2.25.eb | 2 +- ...3.181-iccifort-2016.3.210-GCC-5.3.0-2.26.eb | 2 +- ...3.181-iccifort-2016.3.210-GCC-5.4.0-2.26.eb | 2 +- .../impi-5.1.3.181-iccifortcuda-2016.10.eb | 2 +- easybuild/easyconfigs/i/intel/intel-2016.00.eb | 2 +- easybuild/easyconfigs/i/intel/intel-2016.01.eb | 2 +- easybuild/easyconfigs/i/iompi/iompi-2017.01.eb | 2 +- easybuild/easyconfigs/i/iompi/iompi-2017a.eb | 2 +- .../j/JAGS/JAGS-3.4.0-goolf-1.4.10.eb | 2 +- .../j/JAGS/JAGS-3.4.0-ictce-6.2.5.eb | 2 +- .../j/JAGS/JAGS-3.4.0-intel-2014b.eb | 2 +- .../j/JAGS/JAGS-4.2.0-foss-2016a.eb | 2 +- .../j/JAGS/JAGS-4.2.0-intel-2016a.eb | 2 +- .../j/Jellyfish/Jellyfish-1.1.11-foss-2016a.eb | 2 +- .../j/Jellyfish/Jellyfish-1.1.11-foss-2016b.eb | 2 +- .../j/Jellyfish/Jellyfish-2.1.3-foss-2014b.eb | 2 +- .../Jellyfish/Jellyfish-2.1.3-goolf-1.4.10.eb | 2 +- .../j/Jellyfish/Jellyfish-2.2.3-intel-2015b.eb | 2 +- .../j/Jellyfish/Jellyfish-2.2.4-foss-2015b.eb | 2 +- .../j/Jellyfish/Jellyfish-2.2.4-intel-2015b.eb | 2 +- .../Jellyfish/Jellyfish-2.2.6-goolf-1.7.20.eb | 2 +- ...jModelTest-2.1.10r20160303-Java-1.8.0_92.eb | 2 +- ....1.9r20160115-goolf-1.4.10-Java-1.7.0_75.eb | 2 +- .../k/kallisto/kallisto-0.43.1-foss-2016b.eb | 2 +- .../khmer-1.1-goolf-1.4.10-Python-2.7.5.eb | 2 +- .../khmer-1.4.1-foss-2016b-Python-2.7.12.eb | 2 +- .../l/LAME/LAME-3.99.5-foss-2015a.eb | 2 +- .../l/LAME/LAME-3.99.5-foss-2016b.eb | 2 +- .../l/LASTZ/LASTZ-1.02.00-goolf-1.7.20.eb | 2 +- .../easyconfigs/l/LWM2/LWM2-1.1-ictce-5.3.0.eb | 2 +- .../easyconfigs/l/LZO/LZO-2.06-goolf-1.4.10.eb | 2 +- .../easyconfigs/l/LZO/LZO-2.06-ictce-5.3.0.eb | 2 +- .../easyconfigs/l/LZO/LZO-2.09-intel-2016b.eb | 2 +- .../easyconfigs/l/LZO/LZO-2.10-intel-2017a.eb | 2 +- easybuild/easyconfigs/l/LeadIT/LeadIT-2.1.9.eb | 2 +- .../l/LibTIFF/LibTIFF-4.0.3-goolf-1.4.10.eb | 2 +- .../l/LibTIFF/LibTIFF-4.0.3-ictce-5.3.0.eb | 2 +- .../l/LibTIFF/LibTIFF-4.0.3-intel-2014.06.eb | 2 +- .../l/LibTIFF/LibTIFF-4.0.3-intel-2014b.eb | 2 +- .../l/LibTIFF/LibTIFF-4.0.3-intel-2015a.eb | 2 +- .../l/LibTIFF/LibTIFF-4.0.3-intel-2015b.eb | 2 +- .../l/LibTIFF/LibTIFF-4.0.4-foss-2015a.eb | 2 +- .../l/LibTIFF/LibTIFF-4.0.4-intel-2015a.eb | 2 +- .../l/LibTIFF/LibTIFF-4.0.4beta-foss-2015a.eb | 2 +- .../l/LibTIFF/LibTIFF-4.0.4beta-intel-2015a.eb | 2 +- .../l/LibTIFF/LibTIFF-4.0.6-foss-2015a.eb | 2 +- .../l/LibTIFF/LibTIFF-4.0.6-foss-2016a.eb | 2 +- .../l/LibTIFF/LibTIFF-4.0.6-foss-2016b.eb | 2 +- .../l/LibTIFF/LibTIFF-4.0.6-intel-2016a.eb | 2 +- .../l/LibTIFF/LibTIFF-4.0.6-intel-2016b.eb | 2 +- .../l/LibTIFF/LibTIFF-4.0.7-foss-2016b.eb | 2 +- .../l/LibTIFF/LibTIFF-4.0.7-intel-2017a.eb | 2 +- .../l/LibTIFF/LibTIFF-4.0.8-intel-2017a.eb | 2 +- .../l/LinBox/LinBox-1.4.0-foss-2016a.eb | 2 +- .../l/lbzip2/lbzip2-2.5-goolf-1.7.20.eb | 2 +- .../easyconfigs/l/less/less-458-GCC-4.8.2.eb | 2 +- .../l/lftp/lftp-4.4.1-goolf-1.4.10.eb | 2 +- .../l/lftp/lftp-4.6.4-GNU-4.9.3-2.25.eb | 2 +- .../l/libgd/libgd-2.2.4-foss-2016b.eb | 2 +- .../libgtextutils-0.6.1-goolf-1.4.10.eb | 2 +- .../libgtextutils-0.6.1-goolf-1.7.20.eb | 2 +- .../libgtextutils-0.6.1-ictce-5.3.0.eb | 2 +- .../libgtextutils-0.6.1-intel-2015a.eb | 2 +- .../libgtextutils-0.7-foss-2015b.eb | 2 +- .../libgtextutils-0.7-foss-2016a.eb | 2 +- .../libgtextutils-0.7-foss-2016b.eb | 2 +- .../l/libharu/libharu-2.2.0-goolf-1.4.10.eb | 2 +- .../l/libharu/libharu-2.2.0-ictce-5.3.0.eb | 2 +- .../l/libharu/libharu-2.3.0-foss-2016a.eb | 2 +- .../l/libharu/libharu-2.3.0-foss-2016b.eb | 2 +- .../l/libharu/libharu-2.3.0-intel-2017a.eb | 2 +- .../l/libungif/libungif-4.1.4-goolf-1.4.10.eb | 2 +- .../l/libungif/libungif-4.1.4-ictce-5.3.0.eb | 2 +- .../l/libyaml/libyaml-0.1.4-goolf-1.4.10.eb | 2 +- .../l/libyaml/libyaml-0.1.4-ictce-5.3.0.eb | 2 +- .../l/libyaml/libyaml-0.1.6-intel-2015a.eb | 2 +- .../l/libyaml/libyaml-0.1.6-intel-2015b.eb | 2 +- .../l/libyaml/libyaml-0.1.6-intel-2016a.eb | 2 +- .../l/libyaml/libyaml-0.1.6-intel-2016b.eb | 2 +- .../easyconfigs/l/libyaml/libyaml-0.1.7.eb | 2 +- .../l/likwid/likwid-4.2.0-foss-2017a.eb | 2 +- .../l/likwid/likwid-4.2.0-intel-2017a.eb | 2 +- .../m/M4/M4-1.4.17-CrayGNU-2015.06.eb | 2 +- .../m/M4/M4-1.4.17-CrayGNU-2015.11.eb | 2 +- .../easyconfigs/m/M4/M4-1.4.17-GCC-4.7.2.eb | 2 +- .../easyconfigs/m/M4/M4-1.4.17-GCC-4.8.2.eb | 2 +- .../easyconfigs/m/M4/M4-1.4.17-GCC-4.8.4.eb | 2 +- .../m/M4/M4-1.4.17-GCC-4.9.2-binutils-2.25.eb | 2 +- .../easyconfigs/m/M4/M4-1.4.17-GCC-4.9.2.eb | 2 +- .../m/M4/M4-1.4.17-GCC-4.9.3-2.25.eb | 2 +- .../m/M4/M4-1.4.17-GCC-4.9.3-binutils-2.25.eb | 2 +- .../easyconfigs/m/M4/M4-1.4.17-GCC-4.9.3.eb | 2 +- .../m/M4/M4-1.4.17-GCC-5.1.0-binutils-2.25.eb | 2 +- .../m/M4/M4-1.4.17-GCC-5.4.0-2.26.eb | 2 +- .../m/M4/M4-1.4.17-GCCcore-4.9.2.eb | 2 +- .../m/M4/M4-1.4.17-GCCcore-4.9.3.eb | 2 +- .../m/M4/M4-1.4.17-GCCcore-4.9.4.eb | 2 +- .../m/M4/M4-1.4.17-GCCcore-5.3.0.eb | 2 +- .../m/M4/M4-1.4.17-GCCcore-5.4.0.eb | 2 +- .../m/M4/M4-1.4.17-GCCcore-6.1.0.eb | 2 +- .../m/M4/M4-1.4.17-GCCcore-6.2.0.eb | 2 +- .../m/M4/M4-1.4.17-GNU-4.9.2-2.25.eb | 2 +- .../m/M4/M4-1.4.17-GNU-4.9.3-2.25.eb | 2 +- .../m/M4/M4-1.4.17-GNU-5.1.0-2.25.eb | 2 +- .../easyconfigs/m/M4/M4-1.4.17-foss-2014b.eb | 2 +- .../easyconfigs/m/M4/M4-1.4.17-foss-2015.05.eb | 2 +- .../easyconfigs/m/M4/M4-1.4.17-foss-2015a.eb | 2 +- .../easyconfigs/m/M4/M4-1.4.17-foss-2015b.eb | 2 +- .../easyconfigs/m/M4/M4-1.4.17-foss-2016.04.eb | 2 +- .../easyconfigs/m/M4/M4-1.4.17-foss-2016a.eb | 2 +- .../easyconfigs/m/M4/M4-1.4.17-foss-2016b.eb | 2 +- .../easyconfigs/m/M4/M4-1.4.17-gimkl-2.11.5.eb | 2 +- .../easyconfigs/m/M4/M4-1.4.17-ictce-5.4.0.eb | 2 +- .../easyconfigs/m/M4/M4-1.4.17-ictce-5.5.0.eb | 2 +- .../easyconfigs/m/M4/M4-1.4.17-ictce-7.1.2.eb | 2 +- .../easyconfigs/m/M4/M4-1.4.17-intel-2014b.eb | 2 +- .../easyconfigs/m/M4/M4-1.4.17-intel-2015a.eb | 2 +- .../easyconfigs/m/M4/M4-1.4.17-intel-2015b.eb | 2 +- .../m/M4/M4-1.4.17-intel-2016.02-GCC-4.9.eb | 2 +- .../easyconfigs/m/M4/M4-1.4.17-intel-2016a.eb | 2 +- .../easyconfigs/m/M4/M4-1.4.17-intel-2016b.eb | 2 +- easybuild/easyconfigs/m/M4/M4-1.4.17.eb | 2 +- .../m/M4/M4-1.4.18-GCCcore-5.4.0.eb | 2 +- .../m/M4/M4-1.4.18-GCCcore-6.3.0.eb | 2 +- .../m/M4/M4-1.4.18-GCCcore-7.1.0.eb | 2 +- easybuild/easyconfigs/m/M4/M4-1.4.18.eb | 2 +- easybuild/easyconfigs/m/MACH/MACH-1.0.18.eb | 2 +- .../MACS-1.4.2-1-goolf-1.4.10-Python-2.7.5.eb | 2 +- ...2.1.0.20150731-goolf-1.4.10-Python-2.7.3.eb | 2 +- ...MAFFT-7.130-goolf-1.4.10-with-extensions.eb | 2 +- .../MAFFT-7.130-ictce-5.3.0-with-extensions.eb | 2 +- .../MAFFT-7.305-foss-2016b-with-extensions.eb | 2 +- .../m/MATIO/MATIO-1.5.2-goolf-1.4.10.eb | 2 +- .../m/MATIO/MATIO-1.5.2-intel-2015b.eb | 2 +- .../m/MCL/MCL-12.135-goolf-1.4.10.eb | 2 +- .../m/MCL/MCL-12.135-ictce-5.3.0.eb | 2 +- .../easyconfigs/m/MEGACC/MEGACC-7.0.18-1.eb | 2 +- .../m/MEME/MEME-4.8.0-goolf-1.4.10.eb | 2 +- .../m/MEME/MEME-4.8.0-ictce-5.3.0.eb | 2 +- .../MM-align/MM-align-20130815-goolf-1.4.10.eb | 2 +- .../m/MMSEQ/MMSEQ-1.0.8-linux64-static.eb | 2 +- ...SAIK-2.2.28-goolf-1.4.10-20140425-24cf06.eb | 2 +- ...OSAIK-2.2.28-ictce-6.2.5-20140425-24cf06.eb | 2 +- ...PJ-Express-0.44-foss-2016a-Java-1.8.0_92.eb | 2 +- ...-Express-0.44-goolf-1.4.10-Java-1.7.0_75.eb | 2 +- .../easyconfigs/m/MRIcron/MRIcron-20150601.eb | 2 +- .../m/MUMmer/MUMmer-3.23-foss-2016b.eb | 2 +- .../MUMmer-3.23-goolf-1.4.10-Perl-5.16.3.eb | 2 +- .../m/MUMmer/MUMmer-3.23-goolf-1.4.10.eb | 2 +- .../MUMmer-3.23-ictce-5.3.0-Perl-5.16.3.eb | 2 +- .../m/MUMmer/MUMmer-3.23-ictce-5.3.0.eb | 2 +- .../m/MUMmer/MUMmer-4.0.0beta-goolf-1.7.20.eb | 2 +- .../m/MUSCLE/MUSCLE-3.8.31-foss-2016a.eb | 2 +- .../m/MUSCLE/MUSCLE-3.8.31-goolf-1.4.10.eb | 2 +- .../m/MUSCLE/MUSCLE-3.8.31-i86linux64.eb | 2 +- .../m/MUSCLE/MUSCLE-3.8.31-ictce-5.5.0.eb | 2 +- .../m/MUSCLE/MUSCLE-3.8.31-intel-2016a.eb | 2 +- .../m/MUST/MUST-1.2.0-goolf-1.5.14.eb | 2 +- .../m/MUSTANG/MUSTANG-3.2.1-goolf-1.4.10.eb | 2 +- .../MView-1.57-goolf-1.4.10-Perl-5.16.3.eb | 2 +- .../m/MaCH/MaCH-1.0.18.c-goolf-1.4.10.eb | 2 +- .../m/MaCH/MaCH-1.0.18.c-ictce-6.2.5.eb | 2 +- .../m/MaSuRCA/MaSuRCA-3.2.2-foss-2016a.eb | 2 +- easybuild/easyconfigs/m/Maq/Maq-0.7.0.eb | 2 +- .../m/Mawk/Mawk-1.3.4-goolf-1.4.10-20150503.eb | 2 +- .../MetaVelvet-1.2.01-goolf-1.4.10.eb | 2 +- .../MetaVelvet-1.2.01-ictce-5.3.0.eb | 2 +- .../m/MethPipe/MethPipe-3.0.1-goolf-1.4.10.eb | 2 +- .../m/MethPipe/MethPipe-3.0.1-intel-2014b.eb | 2 +- .../m/Minia/Minia-2.0.7-goolf-1.7.20.eb | 2 +- .../m/Minimac/Minimac-20140110-goolf-1.4.10.eb | 2 +- .../Minimac2-2014.9.15-goolf-1.7.20.eb | 2 +- .../Modeller-9.13-goolf-1.4.10-Python-2.7.5.eb | 2 +- .../m/MotEvo/MotEvo-1.02-goolf-1.4.10.eb | 2 +- .../m/MuTect/MuTect-1.1.4-Java-1.7.0_76.eb | 2 +- .../m/MuTect/MuTect-1.1.4-Java-1.7.0_80.eb | 2 +- .../m/MuTect/MuTect-1.1.7-Java-1.7.0_80.eb | 2 +- .../MultiQC-0.7-goolf-1.7.20-Python-2.7.11.eb | 2 +- .../MultiQC-0.9-foss-2016b-Python-2.7.12.eb | 2 +- .../easyconfigs/m/make/make-3.82-GCC-4.8.2.eb | 2 +- .../m/make/make-3.82-goolf-1.4.10.eb | 2 +- .../m/make/make-3.82-ictce-5.3.0.eb | 2 +- .../m/make/make-3.82-ictce-5.5.0.eb | 2 +- .../easyconfigs/m/make/make-4.1-GCC-4.9.2.eb | 2 +- .../easyconfigs/m/mc/mc-4.6.1-goolf-1.4.10.eb | 2 +- .../easyconfigs/m/mc/mc-4.6.1-ictce-5.3.0.eb | 2 +- .../easyconfigs/m/mc/mc-4.8.13-GCC-4.9.2.eb | 2 +- .../m/mdtest/mdtest-1.7.1-goolf-1.4.10.eb | 2 +- .../m/mdtest/mdtest-1.7.1-ictce-6.2.5.eb | 2 +- .../m/mdtest/mdtest-1.9.3-goolf-1.4.10.eb | 2 +- .../m/mdtest/mdtest-1.9.3-ictce-6.2.5.eb | 2 +- .../m/mpiBLAST/mpiBLAST-1.6.0-goolf-1.4.10.eb | 2 +- .../m/mpiBLAST/mpiBLAST-1.6.0-ictce-5.2.0.eb | 2 +- .../m/mpiBLAST/mpiBLAST-1.6.0-ictce-5.3.0.eb | 2 +- .../mpmath-0.19-foss-2016a-Python-2.7.11.eb | 2 +- .../mpmath-0.19-intel-2016a-Python-2.7.11.eb | 2 +- .../m/mrFAST/mrFAST-2.6.0.1-goolf-1.4.10.eb | 2 +- .../m/mrFAST/mrFAST-2.6.0.1-ictce-6.2.5.eb | 2 +- .../m/mrsFAST/mrsFAST-2.6.0.4-goolf-1.4.10.eb | 2 +- .../m/mrsFAST/mrsFAST-2.6.0.4-ictce-6.2.5.eb | 2 +- .../n/NASM/NASM-2.07-goolf-1.4.10.eb | 2 +- .../n/NASM/NASM-2.07-ictce-5.3.0.eb | 2 +- .../n/NASM/NASM-2.07-ictce-5.5.0.eb | 2 +- .../n/NASM/NASM-2.07-intel-2014b.eb | 2 +- .../n/NASM/NASM-2.11.05-goolf-1.7.20.eb | 2 +- .../n/NASM/NASM-2.11.05-ictce-6.2.5.eb | 2 +- .../n/NASM/NASM-2.11.05-intel-2014.06.eb | 2 +- .../n/NASM/NASM-2.11.05-intel-2014b.eb | 2 +- .../n/NASM/NASM-2.11.05-intel-2015a.eb | 2 +- .../n/NASM/NASM-2.11.06-foss-2015a.eb | 2 +- .../n/NASM/NASM-2.11.06-goolf-1.5.14.eb | 2 +- .../n/NASM/NASM-2.11.06-goolf-1.7.20.eb | 2 +- .../n/NASM/NASM-2.11.06-intel-2015a.eb | 2 +- .../n/NASM/NASM-2.11.06-intel-2015b.eb | 2 +- .../n/NASM/NASM-2.11.08-foss-2015a.eb | 2 +- .../n/NASM/NASM-2.11.08-foss-2015b.eb | 2 +- .../n/NASM/NASM-2.11.08-foss-2016a.eb | 2 +- .../n/NASM/NASM-2.11.08-foss-2016b.eb | 2 +- .../n/NASM/NASM-2.11.08-gimkl-2.11.5.eb | 2 +- .../n/NASM/NASM-2.11.08-goolf-1.4.10.eb | 2 +- .../n/NASM/NASM-2.11.08-intel-2015a.eb | 2 +- .../n/NASM/NASM-2.11.08-intel-2015b.eb | 2 +- .../n/NASM/NASM-2.11.08-intel-2016a.eb | 2 +- .../n/NASM/NASM-2.12.01-foss-2016a.eb | 2 +- .../n/NASM/NASM-2.12.01-intel-2016a.eb | 2 +- .../n/NASM/NASM-2.12.02-foss-2016a.eb | 2 +- .../n/NASM/NASM-2.12.02-foss-2016b.eb | 2 +- .../n/NASM/NASM-2.12.02-intel-2016b.eb | 2 +- .../n/NASM/NASM-2.12.02-intel-2017a.eb | 2 +- .../NCBI-Toolkit-9.0.0-goolf-1.4.10.eb | 2 +- .../n/NLopt/NLopt-2.4.2-goolf-1.4.10.eb | 2 +- .../n/NLopt/NLopt-2.4.2-intel-2017a.eb | 2 +- .../n/nano/nano-2.2.6-goolf-1.4.10.eb | 2 +- .../n/nano/nano-2.2.6-ictce-5.3.0.eb | 2 +- .../n/ncview/ncview-2.1.2-goolf-1.4.10.eb | 2 +- .../n/ncview/ncview-2.1.2-ictce-5.3.0.eb | 2 +- .../n/ncview/ncview-2.1.7-intel-2016b.eb | 2 +- .../o/OCaml/OCaml-4.01.0-goolf-1.4.10.eb | 2 +- .../o/OCaml/OCaml-4.01.0-ictce-5.5.0.eb | 2 +- .../o/OCaml/OCaml-4.02.3-foss-2015a.eb | 2 +- .../o/OCaml/OCaml-4.02.3-foss-2016a.eb | 2 +- .../o/OPARI2/OPARI2-1.1.1-goolf-1.5.14.eb | 2 +- .../o/OPARI2/OPARI2-1.1.2-foss-2015a.eb | 2 +- .../o/OPARI2/OPARI2-1.1.2-goolf-1.5.14.eb | 2 +- .../o/OPARI2/OPARI2-2.0-foss-2016a.eb | 2 +- .../o/OTF/OTF-1.12.4-goolf-1.5.14.eb | 2 +- .../o/OTF/OTF-1.12.4-ictce-5.3.0.eb | 2 +- .../o/OTF2/OTF2-1.2.1-goolf-1.5.14.eb | 2 +- .../o/OTF2/OTF2-1.2.1-ictce-5.3.0.eb | 2 +- .../o/OTF2/OTF2-1.5.1-foss-2015a.eb | 2 +- .../easyconfigs/o/OTF2/OTF2-2.0-foss-2016a.eb | 2 +- .../easyconfigs/o/OTF2/OTF2-2.0-foss-2017a.eb | 2 +- .../o/Oases/Oases-0.2.08-foss-2016b.eb | 2 +- .../o/Oases/Oases-0.2.08-goolf-1.4.10.eb | 2 +- .../o/Oases/Oases-0.2.08-ictce-5.3.0.eb | 2 +- .../o/Oases/Oases-0.2.08-intel-2015a.eb | 2 +- .../OpenMM-6.1-goolf-1.4.10-Python-2.7.5.eb | 2 +- .../o/OptiX/OptiX-3.8.0-GNU-4.9.3-2.25.eb | 2 +- .../o/OptiX/OptiX-3.9.0-GNU-4.9.3-2.25.eb | 2 +- .../o/o2scl/o2scl-0.913-goolf-1.4.10.eb | 2 +- .../p/PAML/PAML-4.7-goolf-1.4.10.eb | 2 +- .../easyconfigs/p/PAML/PAML-4.7-ictce-5.3.0.eb | 2 +- .../p/PAPI/PAPI-5.0.1-goolf-1.4.10.eb | 2 +- .../p/PAPI/PAPI-5.0.1-ictce-5.3.0.eb | 2 +- .../p/PAPI/PAPI-5.2.0-goolf-1.5.14.eb | 2 +- .../p/PAPI/PAPI-5.2.0-ictce-5.3.0.eb | 2 +- .../p/PAPI/PAPI-5.4.0-foss-2015a.eb | 2 +- .../p/PAPI/PAPI-5.4.1-foss-2015a.eb | 2 +- .../p/PAPI/PAPI-5.4.3-foss-2016a.eb | 2 +- .../p/PBZIP2/PBZIP2-1.1.8-goolf-1.4.10.eb | 2 +- .../p/PBZIP2/PBZIP2-1.1.8-ictce-6.2.5.eb | 2 +- easybuild/easyconfigs/p/PCC/PCC-20131024.eb | 2 +- .../easyconfigs/p/PDT/PDT-3.19-goolf-1.5.14.eb | 2 +- .../easyconfigs/p/PDT/PDT-3.19-ictce-5.3.0.eb | 2 +- .../easyconfigs/p/PDT/PDT-3.20-foss-2015a.eb | 2 +- .../easyconfigs/p/PDT/PDT-3.20-goolf-1.5.14.eb | 2 +- .../easyconfigs/p/PDT/PDT-3.22-foss-2016a.eb | 2 +- .../p/PEAR/PEAR-0.9.6-goolf-1.4.10.eb | 2 +- .../p/PEAR/PEAR-0.9.8-foss-2016b.eb | 2 +- .../p/PEAR/PEAR-0.9.8-intel-2016b.eb | 2 +- .../PGDSpider-2.1.0.3-Java-1.7.0_80.eb | 2 +- easybuild/easyconfigs/p/PHASE/PHASE-2.1.1.eb | 2 +- .../p/PLINK/PLINK-1.07-foss-2015b.eb | 2 +- .../p/PLINK/PLINK-1.07-foss-2016a.eb | 2 +- .../p/PLINK/PLINK-1.07-foss-2016b.eb | 2 +- .../p/PLINK/PLINK-1.07-ictce-5.3.0.eb | 2 +- .../p/PLINK/PLINK-1.07-ictce-6.2.5.eb | 2 +- .../p/PLINKSEQ/PLINKSEQ-0.10-goolf-1.7.20.eb | 2 +- .../p/POV-Ray/POV-Ray-3.7.0.0-intel-2016b.eb | 2 +- .../p/PRACE/PRACE-20130605-goolf-1.4.10.eb | 2 +- .../p/PRACE/PRACE-20130605-ictce-5.3.0.eb | 2 +- .../p/PRANK/PRANK-130820-goolf-1.4.10.eb | 2 +- .../p/PRANK/PRANK-130820-ictce-5.3.0.eb | 2 +- .../p/PRANK/PRANK-140110-goolf-1.4.10.eb | 2 +- .../PRINSEQ-0.20.4-foss-2015b-Perl-5.20.3.eb | 2 +- .../PRINSEQ-0.20.4-goolf-1.4.10-Perl-5.16.3.eb | 2 +- .../p/PROJ/PROJ-4.8.0-foss-2015b.eb | 2 +- .../p/PROJ/PROJ-4.8.0-goolf-1.4.10.eb | 2 +- .../p/PROJ/PROJ-4.8.0-ictce-5.3.0.eb | 2 +- .../p/PROJ/PROJ-4.9.1-foss-2015a.eb | 2 +- .../p/PROJ/PROJ-4.9.2-foss-2016a.eb | 2 +- .../p/PROJ/PROJ-4.9.2-foss-2016b.eb | 2 +- .../p/PROJ/PROJ-4.9.2-intel-2016a.eb | 2 +- .../p/PROJ/PROJ-4.9.2-intel-2016b.eb | 2 +- .../p/PROJ/PROJ-4.9.3-foss-2016b.eb | 2 +- .../p/PROJ/PROJ-4.9.3-intel-2016b.eb | 2 +- .../p/PROJ/PROJ-4.9.3-intel-2017a.eb | 2 +- ...orkManager-1.06-goolf-1.4.10-Perl-5.16.3.eb | 2 +- .../p/Paraver/Paraver-4.4.5-GCC-4.7.3.eb | 2 +- .../p/Paraver/Paraver-4.5.6-foss-2015a.eb | 2 +- .../p/PeakSeq/PeakSeq-1.3-goolf-1.4.10.eb | 2 +- .../p/PhyML/PhyML-20120412-goolf-1.4.10.eb | 2 +- .../PhyML/PhyML-20131016-goolf-1.4.10devel.eb | 2 +- .../p/Pindel/Pindel-0.2.5a7-goolf-1.4.10.eb | 2 +- .../p/Pindel/Pindel-0.2.5b8-foss-2016b.eb | 2 +- .../p/Platanus/Platanus-1.2.4-goolf-1.7.20.eb | 2 +- .../Pmw/Pmw-1.3.3-goolf-1.4.10-Python-2.7.5.eb | 2 +- .../p/PnMPI/PnMPI-1.2.0-goolf-1.5.14.eb | 2 +- .../PyQt-4.11.3-goolf-1.5.14-Python-2.7.9.eb | 2 +- .../PyQt-4.11.3-intel-2015a-Python-2.7.9.eb | 2 +- .../PyQt-4.11.4-foss-2015a-Python-2.7.9.eb | 2 +- .../PyQt-4.11.4-intel-2014b-Python-2.7.8.eb | 2 +- .../PyQt-4.11.4-intel-2015a-Python-2.7.9.eb | 2 +- .../PyQt-4.11.4-intel-2016a-Python-2.7.11.eb | 2 +- .../PyQt-4.11.4-intel-2016b-Python-2.7.12.eb | 2 +- .../PyQt/PyQt-4.12-foss-2016b-Python-2.7.12.eb | 2 +- .../PyQt-4.12-intel-2016b-Python-2.7.12.eb | 2 +- .../PyQt-4.12-intel-2017a-Python-2.7.13.eb | 2 +- .../Pysam-0.10.0-intel-2016b-Python-2.7.12.eb | 2 +- .../Pysam-0.9.0-goolf-1.7.20-Python-2.7.11.eb | 2 +- .../Pysam-0.9.1.4-foss-2016b-Python-2.7.12.eb | 2 +- .../p/pBWA/pBWA-0.5.9_1.21009-goolf-1.4.10.eb | 2 +- .../parallel/parallel-20130122-goolf-1.4.10.eb | 2 +- .../parallel/parallel-20130122-ictce-5.3.0.eb | 2 +- .../perl-app-cpanminus-1.7039.eb | 2 +- easybuild/easyconfigs/p/picard/picard-2.1.0.eb | 2 +- .../p/pigz/pigz-2.3.1-goolf-1.4.10.eb | 2 +- .../p/pigz/pigz-2.3.1-ictce-6.2.5.eb | 2 +- .../p/pigz/pigz-2.3.3-foss-2015b.eb | 2 +- .../p/pigz/pigz-2.3.3-foss-2016b.eb | 2 +- easybuild/easyconfigs/q/QIIME/QIIME-1.9.1.eb | 2 +- .../QuadProg++-1.2.1-goolf-1.4.10.eb | 2 +- .../QuadProg++/QuadProg++-1.2.1-ictce-6.2.5.eb | 2 +- .../easyconfigs/q/Quip/Quip-1.1.8-GCC-4.8.2.eb | 2 +- easybuild/easyconfigs/q/qtop/qtop-53-1.eb | 2 +- .../RAxML/RAxML-8.1.1-goolf-1.4.10-mpi-avx.eb | 2 +- .../RAxML/RAxML-8.1.1-goolf-1.4.10-mpi-sse3.eb | 2 +- .../r/RAxML/RAxML-8.1.1-goolf-1.4.10-mt-avx.eb | 2 +- .../RAxML/RAxML-8.1.1-goolf-1.4.10-mt-sse3.eb | 2 +- .../easyconfigs/r/RCS/RCS-5.7-goolf-1.4.10.eb | 2 +- .../easyconfigs/r/RCS/RCS-5.7-ictce-5.3.0.eb | 2 +- .../easyconfigs/r/RNAz/RNAz-2.1-foss-2016b.eb | 2 +- .../r/RNAz/RNAz-2.1-goolf-1.4.10.eb | 2 +- .../easyconfigs/r/RNAz/RNAz-2.1-ictce-5.3.0.eb | 2 +- .../r/RSEQtools/RSEQtools-0.6-goolf-1.4.10.eb | 2 +- ...C-2.6.3-foss-2015b-Python-2.7.10-R-3.2.3.eb | 2 +- ...C-2.6.4-foss-2016b-Python-2.7.12-R-3.3.1.eb | 2 +- .../easyconfigs/r/Reads2snp/Reads2snp-2.0.eb | 2 +- .../rCUDA/rCUDA-4.0.1_linux_64_Ubuntu10.04.eb | 2 +- .../rCUDA-5.0_linux_64_scientificLinux6.eb | 2 +- .../r/rSeq/rSeq-0.2.0-goolf-1.4.10.eb | 2 +- .../r/rainbow/rainbow-2.0.4-goolf-1.4.10.eb | 2 +- .../r/rpmrebuild/rpmrebuild-2.11.eb | 2 +- easybuild/easyconfigs/s/SAGE/SAGE-6.3.eb | 2 +- easybuild/easyconfigs/s/SAGE/SAGE-6.4.eb | 2 +- .../s/SAMtools/SAMtools-0.1.18-goolf-1.4.10.eb | 2 +- .../s/SAMtools/SAMtools-0.1.18-ictce-5.3.0.eb | 2 +- .../s/SAMtools/SAMtools-0.1.19-goolf-1.4.10.eb | 2 +- .../s/SAMtools/SAMtools-0.1.19-ictce-5.5.0.eb | 2 +- .../s/SAMtools/SAMtools-1.1-foss-2014b.eb | 2 +- .../s/SAMtools/SAMtools-1.1-goolf-1.4.10.eb | 2 +- .../s/SAMtools/SAMtools-1.1-intel-2014b.eb | 2 +- .../s/SAMtools/SAMtools-1.1-intel-2015a.eb | 2 +- .../SAMtools-1.2-foss-2015a-HTSlib-1.2.1.eb | 2 +- .../s/SAMtools/SAMtools-1.2-foss-2015a.eb | 2 +- .../s/SAMtools/SAMtools-1.2-foss-2015b.eb | 2 +- .../s/SAMtools/SAMtools-1.2-goolf-1.4.10.eb | 2 +- .../s/SAMtools/SAMtools-1.2-goolf-1.7.20.eb | 2 +- .../SAMtools-1.2-intel-2015a-HTSlib-1.2.1.eb | 2 +- .../SAMtools-1.2-intel-2015b-HTSlib-1.2.1.eb | 2 +- .../s/SAMtools/SAMtools-1.3-foss-2015b.eb | 2 +- .../s/SAMtools/SAMtools-1.3-foss-2016a.eb | 2 +- .../s/SAMtools/SAMtools-1.3-intel-2016a.eb | 2 +- .../s/SAMtools/SAMtools-1.3.1-foss-2015b.eb | 2 +- .../s/SAMtools/SAMtools-1.3.1-foss-2016a.eb | 2 +- .../s/SAMtools/SAMtools-1.3.1-intel-2016a.eb | 2 +- .../SAMtools-1.3.1-intel-2016b-HTSlib-1.3.2.eb | 2 +- .../s/SAMtools/SAMtools-1.3.1-intel-2016b.eb | 2 +- .../s/SAMtools/SAMtools-1.4-foss-2016b.eb | 2 +- .../s/SAMtools/SAMtools-1.4-goolf-1.4.10.eb | 2 +- .../s/SAMtools/SAMtools-1.4-intel-2016b.eb | 2 +- .../s/SAMtools/SAMtools-1.4-intel-2017a.eb | 2 +- .../s/SAMtools/SAMtools-1.4.1-intel-2017a.eb | 2 +- .../s/SAMtools/SAMtools-1.5-intel-2017a.eb | 2 +- .../s/SCALCE/SCALCE-2.7-GCC-4.8.2.eb | 2 +- .../SCANMS-2.02-goolf-1.4.10-Perl-5.16.3.eb | 2 +- easybuild/easyconfigs/s/SDCC/SDCC-3.3.0.eb | 2 +- .../s/SDL2/SDL2-2.0.4-intel-2016b.eb | 2 +- .../s/SHAPEIT/SHAPEIT-2.r837.GLIBCv2.12.eb | 2 +- .../s/SIBELia/SIBELia-3.0.4-goolf-1.4.10.eb | 2 +- .../SIONlib/SIONlib-1.6.1-foss-2016a-tools.eb | 2 +- .../s/SIONlib/SIONlib-1.6.1-foss-2016a.eb | 2 +- .../SIONlib/SIONlib-1.7.1-foss-2017a-tools.eb | 2 +- .../s/SIONlib/SIONlib-1.7.1-foss-2017a.eb | 2 +- .../SIP-4.16.4-goolf-1.5.14-Python-2.7.9.eb | 2 +- .../SIP/SIP-4.16.4-intel-2015a-Python-2.7.9.eb | 2 +- .../SIP/SIP-4.16.8-foss-2015a-Python-2.7.9.eb | 2 +- .../SIP/SIP-4.16.8-intel-2014b-Python-2.7.8.eb | 2 +- .../SIP/SIP-4.16.8-intel-2015a-Python-2.7.9.eb | 2 +- .../s/SIP/SIP-4.18-foss-2016a-Python-2.7.11.eb | 2 +- .../SIP/SIP-4.18-intel-2016a-Python-2.7.11.eb | 2 +- .../SIP/SIP-4.18.1-foss-2016a-Python-2.7.11.eb | 2 +- .../SIP-4.18.1-intel-2016b-Python-2.7.12.eb | 2 +- .../s/SIP/SIP-4.19-foss-2016b-Python-2.7.12.eb | 2 +- .../SIP/SIP-4.19-intel-2016b-Python-2.7.12.eb | 2 +- .../SIP-4.19.2-intel-2017a-Python-2.7.13.eb | 2 +- .../s/SMALT/SMALT-0.7.5-goolf-1.4.10.eb | 2 +- .../s/SMALT/SMALT-0.7.5-ictce-5.3.0.eb | 2 +- .../SOAPaligner-2.21_Linux-x86_64.eb | 2 +- .../SOAPdenovo/SOAPdenovo-1.05-goolf-1.4.10.eb | 2 +- .../SOAPdenovo/SOAPdenovo-1.05-ictce-5.3.0.eb | 2 +- .../s/SPAdes/SPAdes-3.0.0-goolf-1.4.10.eb | 2 +- .../s/SPAdes/SPAdes-3.1.0-goolf-1.4.10.eb | 2 +- .../s/SPAdes/SPAdes-3.10.1-foss-2016b.eb | 2 +- .../s/SPAdes/SPAdes-3.6.2-goolf-1.4.10.eb | 2 +- .../s/SPAdes/SPAdes-3.6.2-goolf-1.7.20.eb | 2 +- .../s/SPAdes/SPAdes-3.9.0-foss-2016a.eb | 2 +- .../s/SPAdes/SPAdes-3.9.0-foss-2016b.eb | 2 +- .../s/SQLite/SQLite-3.10.0-foss-2015a.eb | 2 +- .../s/SQLite/SQLite-3.13.0-GCC-4.9.3-2.25.eb | 2 +- .../s/SQLite/SQLite-3.13.0-GCC-5.4.0-2.26.eb | 2 +- .../s/SQLite/SQLite-3.13.0-GCCcore-6.3.0.eb | 2 +- .../s/SQLite/SQLite-3.13.0-foss-2016.04.eb | 2 +- .../s/SQLite/SQLite-3.13.0-foss-2016a.eb | 2 +- .../s/SQLite/SQLite-3.13.0-foss-2016b.eb | 2 +- ....13.0-iccifort-2016.3.210-GCC-5.4.0-2.26.eb | 2 +- .../s/SQLite/SQLite-3.13.0-intel-2016b.eb | 2 +- .../s/SQLite/SQLite-3.14.1-GCCcore-4.9.3.eb | 2 +- .../s/SQLite/SQLite-3.17.0-GCCcore-6.3.0.eb | 2 +- .../s/SQLite/SQLite-3.7.17-goolf-1.4.10.eb | 2 +- .../s/SQLite/SQLite-3.7.17-ictce-5.3.0.eb | 2 +- .../s/SQLite/SQLite-3.8.1-goolf-1.4.10.eb | 2 +- .../s/SQLite/SQLite-3.8.1-ictce-5.3.0.eb | 2 +- .../s/SQLite/SQLite-3.8.10.2-GCC-4.9.3-2.25.eb | 2 +- .../s/SQLite/SQLite-3.8.10.2-GNU-4.9.3-2.25.eb | 2 +- .../s/SQLite/SQLite-3.8.10.2-foss-2015a.eb | 2 +- .../s/SQLite/SQLite-3.8.10.2-foss-2015b.eb | 2 +- .../s/SQLite/SQLite-3.8.10.2-gimkl-2.11.5.eb | 2 +- .../s/SQLite/SQLite-3.8.10.2-goolf-1.4.10.eb | 2 +- .../s/SQLite/SQLite-3.8.10.2-goolf-1.7.20.eb | 2 +- .../s/SQLite/SQLite-3.8.10.2-intel-2015a.eb | 2 +- .../s/SQLite/SQLite-3.8.10.2-intel-2015b.eb | 2 +- .../s/SQLite/SQLite-3.8.4.1-goolf-1.4.10.eb | 2 +- .../s/SQLite/SQLite-3.8.5-goolf-1.4.10.eb | 2 +- .../s/SQLite/SQLite-3.8.6-ictce-5.5.0.eb | 2 +- .../s/SQLite/SQLite-3.8.6-intel-2014b.eb | 2 +- .../s/SQLite/SQLite-3.8.8.1-GCC-4.8.4.eb | 2 +- .../s/SQLite/SQLite-3.8.8.1-GCC-4.9.2.eb | 2 +- .../s/SQLite/SQLite-3.8.8.1-foss-2015.05.eb | 2 +- .../s/SQLite/SQLite-3.8.8.1-foss-2015a.eb | 2 +- .../s/SQLite/SQLite-3.8.8.1-foss-2015b.eb | 2 +- .../s/SQLite/SQLite-3.8.8.1-gompi-1.5.16.eb | 2 +- .../s/SQLite/SQLite-3.8.8.1-goolf-1.5.14.eb | 2 +- .../s/SQLite/SQLite-3.8.8.1-goolf-1.5.16.eb | 2 +- .../s/SQLite/SQLite-3.8.8.1-goolf-1.7.20.eb | 2 +- .../s/SQLite/SQLite-3.8.8.1-intel-2015a.eb | 2 +- .../s/SQLite/SQLite-3.8.9-foss-2015a.eb | 2 +- .../s/SQLite/SQLite-3.9.2-CrayGNU-2015.11.eb | 2 +- .../s/SQLite/SQLite-3.9.2-CrayGNU-2016.03.eb | 2 +- .../s/SQLite/SQLite-3.9.2-GCC-4.9.3-2.25.eb | 2 +- .../s/SQLite/SQLite-3.9.2-foss-2016a.eb | 2 +- .../s/SQLite/SQLite-3.9.2-gimkl-2.11.5.eb | 2 +- .../s/SQLite/SQLite-3.9.2-goolf-1.7.20.eb | 2 +- .../s/SQLite/SQLite-3.9.2-intel-2015b.eb | 2 +- .../SQLite-3.9.2-intel-2016.02-GCC-4.9.eb | 2 +- .../s/SQLite/SQLite-3.9.2-intel-2016a.eb | 2 +- .../s/SQLite/SQLite-3.9.2-iomkl-2016.07.eb | 2 +- ...QLite-3.9.2-iomkl-2016.09-GCC-4.9.3-2.25.eb | 2 +- .../SRA-Toolkit-2.3.5-centos_linux64.eb | 2 +- .../SRA-Toolkit-2.5.4-1-centos_linux64.eb | 2 +- .../easyconfigs/s/SSAHA2/SSAHA2-2.5.5-i686.eb | 2 +- .../s/SSAHA2/SSAHA2-2.5.5-x86_64.eb | 2 +- ...AR-Fusion-0.6.0-goolf-1.4.10-Perl-5.16.3.eb | 2 +- .../s/STAR/STAR-2.3.0e-goolf-1.4.10.eb | 2 +- .../s/STAR/STAR-2.5.0a-GNU-4.9.3-2.25.eb | 2 +- .../s/STAR/STAR-2.5.0a-goolf-1.4.10.eb | 2 +- .../s/STAR/STAR-2.5.1b-foss-2015b.eb | 2 +- .../s/STAR/STAR-2.5.1b-goolf-1.4.10.eb | 2 +- .../s/STAR/STAR-2.5.2a-foss-2016a.eb | 2 +- .../s/STAR/STAR-2.5.2a-goolf-1.7.20.eb | 2 +- .../s/STAR/STAR-2.5.2b-intel-2016b.eb | 2 +- .../s/STAR/STAR-2.5.3a-intel-2017a.eb | 2 +- .../easyconfigs/s/Sambamba/Sambamba-0.6.6.eb | 2 +- .../s/Scalasca/Scalasca-2.2-foss-2015a.eb | 2 +- .../s/Scalasca/Scalasca-2.3-foss-2016a.eb | 2 +- .../s/Score-P/Score-P-1.2.1-goolf-1.5.14.eb | 2 +- .../s/Score-P/Score-P-1.2.3-goolf-1.5.14.eb | 2 +- .../s/Score-P/Score-P-1.4-foss-2015a.eb | 2 +- .../s/Score-P/Score-P-2.0.1-foss-2016a.eb | 2 +- .../Seaborn-0.6.0-goolf-1.4.10-Python-2.7.5.eb | 2 +- .../Seaborn-0.6.0-intel-2015b-Python-2.7.10.eb | 2 +- .../Seaborn-0.7.1-intel-2016b-Python-2.7.12.eb | 2 +- .../s/SelEstim/SelEstim-1.1.4-Linux-64bits.eb | 2 +- .../s/SeqAn/SeqAn-2.3.2-foss-2016b.eb | 2 +- .../s/SeqPrep/SeqPrep-1.2-goolf-1.7.20.eb | 2 +- ...Seqmagick-0.6.1-foss-2016a-Python-2.7.11.eb | 2 +- .../easyconfigs/s/SoX/SoX-14.4.2-foss-2015a.eb | 2 +- .../SolexaQA++/SolexaQA++-3.1.5-foss-2016b.eb | 2 +- .../s/SortMeRNA/SortMeRNA-2.1-foss-2016a.eb | 2 +- .../s/Stow/Stow-1.3.3-goolf-1.4.10.eb | 2 +- .../s/Stow/Stow-1.3.3-ictce-5.3.0.eb | 2 +- .../StringTie/StringTie-1.2.2-goolf-1.4.10.eb | 2 +- .../s/StringTie/StringTie-1.3.0-intel-2016b.eb | 2 +- .../s/StringTie/StringTie-1.3.3-intel-2017a.eb | 2 +- .../s/StringTie/StringTie-1.3.3b-foss-2016b.eb | 2 +- .../s/Subread/Subread-1.5.0-p1-foss-2015b.eb | 2 +- .../s/Subread/Subread-1.5.0-p1-foss-2016a.eb | 2 +- .../s/Subread/Subread-1.5.0-p1-foss-2016b.eb | 2 +- .../samblaster-0.1.24-goolf-1.7.20.eb | 2 +- .../s/segemehl/segemehl-0.1.7-goolf-1.4.10.eb | 2 +- .../s/segemehl/segemehl-0.2.0-foss-2016b.eb | 2 +- .../s/segemehl/segemehl-0.2.0-goolf-1.4.10.eb | 2 +- .../sickle-1.210-goolf-1.4.10-bab15f7.eb | 2 +- .../s/skewer/skewer-0.2.2-goolf-1.7.20.eb | 2 +- .../easyconfigs/s/splitRef/splitRef-0.0.2.eb | 2 +- .../s/sratoolkit/sratoolkit-2.5.7.eb | 2 +- .../s/stress/stress-1.0.4-goolf-1.7.20.eb | 2 +- ...synchronicity-1.1.9.1-foss-2015b-R-3.2.3.eb | 2 +- .../t/TAU/TAU-2.22.2-goolf-1.5.14.eb | 2 +- easybuild/easyconfigs/t/TCC/TCC-0.9.26.eb | 2 +- .../TREE-PUZZLE-5.2-goolf-1.4.10.eb | 2 +- .../easyconfigs/t/Tar/Tar-1.26-goolf-1.4.10.eb | 2 +- .../easyconfigs/t/Tar/Tar-1.26-ictce-5.3.0.eb | 2 +- .../Tesla-Deployment-Kit-5.319.43.eb | 2 +- .../t/TopHat/TopHat-2.0.10-ictce-5.5.0.eb | 2 +- .../t/TopHat/TopHat-2.0.13-goolf-1.7.20.eb | 2 +- .../t/TopHat/TopHat-2.0.14-goolf-1.7.20.eb | 2 +- .../t/TopHat/TopHat-2.0.4-goolf-1.4.10.eb | 2 +- ...-2.0.8-goolf-1.4.10-biodeps-1.6-extended.eb | 2 +- ...t-2.0.8-ictce-5.3.0-biodeps-1.6-extended.eb | 2 +- .../t/TopHat/TopHat-2.0.8-ictce-5.3.0.eb | 2 +- .../t/TopHat/TopHat-2.1.0-intel-2015b.eb | 2 +- .../t/TopHat/TopHat-2.1.1-foss-2015b.eb | 2 +- .../t/TopHat/TopHat-2.1.1-foss-2016a.eb | 2 +- .../t/TopHat/TopHat-2.1.1-intel-2017a.eb | 2 +- .../TotalView-8.11.0-0-linux-x86-64.eb | 2 +- .../TotalView-8.11.0-2-linux-x86-64.eb | 2 +- .../TotalView-8.12.0-0-linux-x86-64.eb | 2 +- .../Trimmomatic-0.32-Java-1.7.0_80.eb | 2 +- .../t/Trinity/Trinity-2.0.4-goolf-1.4.10.eb | 2 +- .../t/Trinity/Trinity-2.0.6-goolf-1.4.10.eb | 2 +- .../t/Trinity/Trinity-2.2.0-foss-2016a.eb | 2 +- .../t/tabix/tabix-0.2.6-goolf-1.4.10.eb | 2 +- .../t/tabix/tabix-0.2.6-intel-2014b.eb | 2 +- .../t/tabix/tabix-0.2.6-intel-2016b.eb | 2 +- .../t/tcsh/tcsh-6.18.01-CrayGNU-2015.06.eb | 2 +- .../t/tcsh/tcsh-6.18.01-CrayGNU-2015.11.eb | 2 +- .../t/tcsh/tcsh-6.18.01-CrayIntel-2015.11.eb | 2 +- .../t/tcsh/tcsh-6.18.01-foss-2015a.eb | 2 +- .../t/tcsh/tcsh-6.18.01-goolf-1.4.10.eb | 2 +- .../t/tcsh/tcsh-6.18.01-goolf-1.5.14.eb | 2 +- .../t/tcsh/tcsh-6.18.01-ictce-5.3.0.eb | 2 +- .../t/tcsh/tcsh-6.18.01-intel-2014b.eb | 2 +- .../t/tcsh/tcsh-6.18.01-intel-2015a.eb | 2 +- .../t/tcsh/tcsh-6.19.00-intel-2015a.eb | 2 +- .../t/tcsh/tcsh-6.19.00-intel-2016a.eb | 2 +- .../t/tcsh/tcsh-6.20.00-GCCcore-5.4.0.eb | 2 +- .../u/UDUNITS/UDUNITS-2.1.24-goolf-1.4.10.eb | 2 +- .../u/UDUNITS/UDUNITS-2.1.24-ictce-5.2.0.eb | 2 +- .../u/UDUNITS/UDUNITS-2.1.24-ictce-5.3.0.eb | 2 +- .../u/UDUNITS/UDUNITS-2.1.24-ictce-5.4.0.eb | 2 +- .../u/UDUNITS/UDUNITS-2.1.24-intel-2014b.eb | 2 +- .../u/UDUNITS/UDUNITS-2.2.19-intel-2015a.eb | 2 +- .../u/UDUNITS/UDUNITS-2.2.19-intel-2015b.eb | 2 +- .../u/UDUNITS/UDUNITS-2.2.20-foss-2016a.eb | 2 +- .../u/UDUNITS/UDUNITS-2.2.20-intel-2016b.eb | 2 +- .../u/UDUNITS/UDUNITS-2.2.24-intel-2017a.eb | 2 +- ...VCFtools-0.1.11-goolf-1.4.10-Perl-5.16.3.eb | 2 +- .../VCFtools-0.1.11-ictce-5.5.0-Perl-5.16.3.eb | 2 +- ...VCFtools-0.1.12-goolf-1.4.10-Perl-5.16.3.eb | 2 +- .../VCFtools-0.1.14-foss-2015b-Perl-5.20.3.eb | 2 +- .../VCFtools-0.1.14-foss-2016a-Perl-5.22.1.eb | 2 +- ...VCFtools-0.1.14-goolf-1.4.10-Perl-5.16.3.eb | 2 +- ...VCFtools-0.1.14-goolf-1.7.20-Perl-5.22.2.eb | 2 +- .../VCFtools-0.1.14-intel-2016a-Perl-5.22.1.eb | 2 +- easybuild/easyconfigs/v/VEGAS/VEGAS-0.8.27.eb | 2 +- .../VMD/VMD-1.9.3-intel-2016b-Python-2.7.12.eb | 2 +- .../v/VTK/VTK-5.10.1-goolf-1.4.10.eb | 2 +- .../v/VTK/VTK-5.10.1-ictce-5.3.0.eb | 2 +- .../VTK/VTK-6.3.0-foss-2016b-Python-2.7.12.eb | 2 +- .../VTK/VTK-6.3.0-intel-2015b-Python-2.7.11.eb | 2 +- .../VTK/VTK-6.3.0-intel-2016a-Python-2.7.11.eb | 2 +- .../VTK/VTK-6.3.0-intel-2016b-Python-2.7.12.eb | 2 +- .../VTK/VTK-7.0.0-intel-2016b-Python-2.7.12.eb | 2 +- .../VTK/VTK-7.1.0-intel-2016b-Python-2.7.12.eb | 2 +- .../VTK/VTK-7.1.1-intel-2017a-Python-2.7.13.eb | 2 +- .../v/Valgrind/Valgrind-3.8.1-goolf-1.4.10.eb | 2 +- .../easyconfigs/v/Vampir/Vampir-8.4.1-demo.eb | 2 +- easybuild/easyconfigs/v/Vampir/Vampir-8.4.1.eb | 2 +- .../VampirServer-8.4.1-gompi-2015a.eb | 2 +- .../VampirTrace-5.14.4-goolf-1.5.14.eb | 2 +- .../v/VarScan/VarScan-2.3.6-Java-1.7.0_80.eb | 2 +- .../v/VarScan/VarScan-2.4.1-Java-1.7.0_80.eb | 2 +- .../v/Velvet/Velvet-1.2.07-goolf-1.4.10.eb | 2 +- .../v/Velvet/Velvet-1.2.07-ictce-5.3.0.eb | 2 +- .../v/Velvet/Velvet-1.2.09-goolf-1.4.10.eb | 2 +- .../v/Velvet/Velvet-1.2.09-ictce-5.3.0.eb | 2 +- .../Velvet-1.2.10-goolf-1.4.10-mt-kmer_31.eb | 2 +- .../Velvet-1.2.10-goolf-1.4.10-mt-kmer_57.eb | 2 +- .../Velvet-1.2.10-goolf-1.4.10-mt-kmer_63.eb | 2 +- ...2.10-intel-2015b-mt-kmer_100-Perl-5.20.3.eb | 2 +- .../Velvet-1.2.10-intel-2015b-mt-kmer_100.eb | 2 +- ....2.10-intel-2015b-mt-kmer_31-Perl-5.20.3.eb | 2 +- .../Velvet-1.2.10-intel-2015b-mt-kmer_31.eb | 2 +- .../Velvet-1.2.10-intel-2017a-mt-kmer_37.eb | 2 +- .../ViennaRNA/ViennaRNA-2.0.7-goolf-1.4.10.eb | 2 +- .../v/ViennaRNA/ViennaRNA-2.0.7-ictce-5.3.0.eb | 2 +- .../v/ViennaRNA/ViennaRNA-2.1.6-ictce-5.5.0.eb | 2 +- .../v/ViennaRNA/ViennaRNA-2.2.3-intel-2016b.eb | 2 +- .../v/ViennaRNA/ViennaRNA-2.3.4-foss-2016b.eb | 2 +- .../v/ViennaRNA/ViennaRNA-2.3.5-intel-2017a.eb | 2 +- .../easyconfigs/v/Vim/Vim-7.4-goolf-1.4.10.eb | 2 +- .../v/Vim/Vim-8.0-foss-2016a-Python-2.7.11.eb | 2 +- .../Viper-1.0.0-goolf-1.4.10-Python-2.7.3.eb | 2 +- .../Viper-1.0.0-ictce-5.3.0-Python-2.7.3.eb | 2 +- .../v/vsc-mympirun/vsc-mympirun-3.2.1.eb | 2 +- .../easyconfigs/v/vt/vt-0.577-goolf-1.7.20.eb | 2 +- .../w/WEKA/WEKA-3.6.12-Java-1.7.0_80.eb | 2 +- .../w/WEKA/WEKA-3.7.0-Java-1.7.0_80.eb | 2 +- .../w/WHAM/WHAM-2.0.9-goolf-1.4.10.eb | 2 +- .../w/WHAM/WHAM-2.0.9-ictce-6.2.5.eb | 2 +- ...i2beamer-0.9.5-goolf-1.4.10-Python-2.7.3.eb | 2 +- ...ki2beamer-0.9.5-ictce-5.3.0-Python-2.7.3.eb | 2 +- .../wkhtmltopdf-0.12.3-Linux-x86_64.eb | 2 +- .../wxPropertyGrid-1.4.15-GCC-4.7.3.eb | 2 +- .../wxPropertyGrid-1.4.15-GCC-4.9.2.eb | 2 +- .../x/XZ/XZ-5.2.2_compat-libs.patch | 2 +- .../YAML-Syck-1.27-goolf-1.4.10-Perl-5.16.3.eb | 2 +- .../YAML-Syck-1.27-ictce-5.3.0-Perl-5.16.3.eb | 2 +- .../y/Yasm/Yasm-1.2.0-goolf-1.4.10.eb | 2 +- .../y/Yasm/Yasm-1.2.0-ictce-5.3.0.eb | 2 +- .../y/Yasm/Yasm-1.3.0-foss-2015a.eb | 2 +- .../y/Yasm/Yasm-1.3.0-foss-2016a.eb | 2 +- .../y/Yasm/Yasm-1.3.0-foss-2016b.eb | 2 +- .../y/Yasm/Yasm-1.3.0-foss-2017a.eb | 2 +- .../y/Yasm/Yasm-1.3.0-gimkl-2.11.5.eb | 2 +- .../y/Yasm/Yasm-1.3.0-gimkl-2017a.eb | 2 +- .../y/Yasm/Yasm-1.3.0-intel-2015b.eb | 2 +- .../y/Yasm/Yasm-1.3.0-intel-2016a.eb | 2 +- .../y/Yasm/Yasm-1.3.0-intel-2016b.eb | 2 +- .../y/Yasm/Yasm-1.3.0-intel-2017a.eb | 2 +- .../easyconfigs/z/ZPAQ/ZPAQ-7.00-GCC-4.8.2.eb | 2 +- .../z/zsync/zsync-0.6.2-goolf-1.4.10.eb | 2 +- .../z/zsync/zsync-0.6.2-ictce-5.3.0.eb | 2 +- setup.py | 4 ++-- test/__init__.py | 2 +- test/easyconfigs/easyconfigs.py | 2 +- test/easyconfigs/styletests.py | 2 +- test/easyconfigs/suite.py | 2 +- 1499 files changed, 1515 insertions(+), 1515 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index fe82903a6c..920072b756 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -5,7 +5,7 @@ We'd love you to contribute back to EasyBuild, and here's how you can do it: the ### Fork easybuild-easyconfigs -First, you'll need to fork [easybuild-easyconfigs on GitHub](http://github.com/hpcugent/easybuild-easyconfigs). +First, you'll need to fork [easybuild-easyconfigs on GitHub](https://github.com/easybuilders/easybuild-easyconfigs). If you do not have a (free) GitHub account yet, you'll need to get one. @@ -25,10 +25,10 @@ Pull the _develop_ branch from the main easybuild-easyconfigs repository: ```bash cd easybuild -git remote add github_hpcugent git@github.com:hpcugent/easybuild-easyconfigs.git +git remote add github_easybuilders git@github.com:easybuilders/easybuild-easyconfigs.git git branch develop git checkout develop -git pull github_hpcugent develop +git pull github_easybuilders develop ``` ### Keep develop up-to-date @@ -39,7 +39,7 @@ Make sure you update it every time you create a feature branch (see below): ```bash git checkout develop -git pull github_hpcugent develop +git pull github_easybuilders develop ``` @@ -49,7 +49,7 @@ git pull github_hpcugent develop ### Pick a branch name Please try and follow these guidelines when picking a branch name: - * use the number of the issue as a prefix for your branch name, e.g. `86_` for issue [#86](https://github.com/hpcugent/easybuild-framework/issues/86) + * use the number of the issue as a prefix for your branch name, e.g. `86_` for issue [#86](https://github.com/easybuilders/easybuild-framework/issues/86) * append a short but descriptive branch name, in which words are joined by underscores, e.g. `86_encoding_scheme` ### Create branch @@ -113,7 +113,7 @@ If you're contributing code to an existing issue you can also convert the issue GITHUBUSER=your_username && PASSWD=your_password && BRANCH=branch_name && ISSUE=issue_number && \ curl --user "$GITHUBUSER:$PASSWD" --request POST \ --data "{\"issue\": \"$ISSUE\", \"head\": \"$GITHUBUSER:$BRANCH\", \"base\": \"develop\"}" \ -https://api.github.com/repos/hpcugent/easybuild-easyconfigs/pulls +https://api.github.com/repos/easybuilders/easybuild-easyconfigs/pulls ``` This is currently only supported by github from the command line and not via the web interface. You might also want to look into [hub](https://github.com/defunkt/hub) for more command line features. diff --git a/README.rst b/README.rst index b6fcf302e9..ff6d26a0ab 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,7 @@ -.. image:: http://hpcugent.github.io/easybuild/images/easybuild_logo_small.png +.. image:: http://easybuilders.github.io/easybuild/images/easybuild_logo_small.png :align: center -`EasyBuild `_ is a software build +`EasyBuild `_ is a software build and installation framework that allows you to manage (scientific) software on High Performance Computing (HPC) systems in an efficient way. @@ -15,7 +15,7 @@ The EasyBuild documentation is available at http://easybuild.readthedocs.org/. The easybuild-easyconfigs package is hosted on GitHub, along with an issue tracker for bug reports and feature requests, see -http://github.com/hpcugent/easybuild-easyconfigs. +https://github.com/easybuilders/easybuild-easyconfigs. Related Python packages: @@ -23,23 +23,23 @@ Related Python packages: * the EasyBuild framework, which includes the ``easybuild.framework`` and ``easybuild.tools`` Python packages that provide general support for building and installing software - * GitHub repository: http://github.com/hpcugent/easybuild-framework + * GitHub repository: https://github.com/easybuilders/easybuild-framework * PyPi: https://pypi.python.org/pypi/easybuild-framework * **easybuild-easyblocks** * a collection of easyblocks that implement support for building and installing (groups of) software packages - * GitHub repository: http://github.com/hpcugent/easybuild-easyblocks + * GitHub repository: https://github.com/easybuilders/easybuild-easyblocks * package on PyPi: https://pypi.python.org/pypi/easybuild-easyblocks *Build status overview:* * **master** branch: - .. image:: https://travis-ci.org/hpcugent/easybuild-easyconfigs.svg?branch=master - :target: https://travis-ci.org/hpcugent/easybuild-easyconfigs/branches + .. image:: https://travis-ci.org/easybuilders/easybuild-easyconfigs.svg?branch=master + :target: https://travis-ci.org/easybuilders/easybuild-easyconfigs/branches * **develop** branch: - .. image:: https://travis-ci.org/hpcugent/easybuild-easyconfigs.svg?branch=develop - :target: https://travis-ci.org/hpcugent/easybuild-easyconfigs/branches + .. image:: https://travis-ci.org/easybuilders/easybuild-easyconfigs.svg?branch=develop + :target: https://travis-ci.org/easybuilders/easybuild-easyconfigs/branches diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 31cbc5078b..1dcd904d75 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -749,7 +749,7 @@ feature + bugfix release Xmipp (#1489) - added easyconfigs for new (Cray-specific) toolchains (#1538): CrayGNU, CrayIntel, CrayCCE - initially supported software (using CrayGNU toolchains): CP2K, GROMACS, HPL, Python + numpy/scipy, WRF (#1558) - - see also https://github.com/hpcugent/easybuild/wiki/EasyBuild-on-Cray + - see also https://github.com/easybuilders/easybuild/wiki/EasyBuild-on-Cray - added new easyconfigs for existing toolchains: goolf/1.5.16, intel/2014.06 - added additional easyconfigs for various supported software packages: version updates, different toolchains, ... including GCC v5.1.0, OpenFOAM v2.3.1, R v3.1.3 and v3.2.0, PETSc/SLEPc v3.5.3, WIEN2k v14.1 @@ -789,7 +789,7 @@ feature + bugfix release - various other enhancements, including: - don't define $LDSHARED in zlib easyconfigs (#1350) - this fixes the long-standing "no version information available" issue with zlib - - see also https://github.com/hpcugent/easybuild-framework/issues/108 + - see also https://github.com/easybuilders/easybuild-framework/issues/108 - add unit test to check that all extra_options keys are defined in EasyConfig instance (#1378) - add source MD5 checksums in all GCC easyconfigs (#1391) - speeding up the unit tests by avoiding rereading of same easyconfig file (#1432) @@ -800,7 +800,7 @@ feature + bugfix release - revert version of Libint dependency to 1.1.4 in CP2K v2.5.1 easyconfig (#1144) - added Java dependencies to EMBOSS easyconfigs (#1167) - don't list 'lto' as a language in GCC easyconfigs (#1286) - - related to the fixes in the GCC easyblock, see hpcugent/easybuild-easyblocks#535 + - related to the fixes in the GCC easyblock, see easybuilders/easybuild-easyblocks#535 - rename libint2 easyconfigs as Libint v2 easyconfigs (#1287) - fix mpi4py source_urls in Python easyconfigs (#1306) - consistently use CLooG 0.18.0 for GCC 4.8 series (#1392) diff --git a/easybuild/easyconfigs/TEMPLATE.eb b/easybuild/easyconfigs/TEMPLATE.eb index 69759ec8da..06218cade8 100644 --- a/easybuild/easyconfigs/TEMPLATE.eb +++ b/easybuild/easyconfigs/TEMPLATE.eb @@ -1,5 +1,5 @@ # Note: -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # It was auto-generated based on a template easyconfig, so it should be used with care. easyblock = 'ConfigureMake' diff --git a/easybuild/easyconfigs/__archive__/a/ABySS/ABySS-1.3.4-goalf-1.1.0-no-OFED-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/a/ABySS/ABySS-1.3.4-goalf-1.1.0-no-OFED-Python-2.7.3.eb index c096f680fa..630226b1ef 100644 --- a/easybuild/easyconfigs/__archive__/a/ABySS/ABySS-1.3.4-goalf-1.1.0-no-OFED-Python-2.7.3.eb +++ b/easybuild/easyconfigs/__archive__/a/ABySS/ABySS-1.3.4-goalf-1.1.0-no-OFED-Python-2.7.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/a/ABySS/ABySS-1.3.4-ictce-4.0.6-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/a/ABySS/ABySS-1.3.4-ictce-4.0.6-Python-2.7.3.eb index 935dda4340..0b631d51e0 100644 --- a/easybuild/easyconfigs/__archive__/a/ABySS/ABySS-1.3.4-ictce-4.0.6-Python-2.7.3.eb +++ b/easybuild/easyconfigs/__archive__/a/ABySS/ABySS-1.3.4-ictce-4.0.6-Python-2.7.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/a/AMOS/AMOS-3.1.0-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/a/AMOS/AMOS-3.1.0-goalf-1.1.0-no-OFED.eb index 42399e1539..9a991355c4 100644 --- a/easybuild/easyconfigs/__archive__/a/AMOS/AMOS-3.1.0-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/a/AMOS/AMOS-3.1.0-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/a/AMOS/AMOS-3.1.0-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/a/AMOS/AMOS-3.1.0-ictce-4.0.6.eb index 02a64a2c6f..3e655ad07e 100644 --- a/easybuild/easyconfigs/__archive__/a/AMOS/AMOS-3.1.0-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/a/AMOS/AMOS-3.1.0-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.13.4-ictce-4.1.13.eb b/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.13.4-ictce-4.1.13.eb index df3ffc4bcb..07865181a7 100644 --- a/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.13.4-ictce-4.1.13.eb +++ b/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.13.4-ictce-4.1.13.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.14-gcccuda-2.6.10.eb b/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.14-gcccuda-2.6.10.eb index 732b039251..947d1eff62 100644 --- a/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.14-gcccuda-2.6.10.eb +++ b/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.14-gcccuda-2.6.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/a/a2ps/a2ps-4.14-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/a/a2ps/a2ps-4.14-goalf-1.1.0-no-OFED.eb index 916fcd7e48..ed2242bd75 100644 --- a/easybuild/easyconfigs/__archive__/a/a2ps/a2ps-4.14-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/a/a2ps/a2ps-4.14-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/a/a2ps/a2ps-4.14-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/a/a2ps/a2ps-4.14-ictce-4.0.6.eb index 74f9dffca6..1b91de7220 100644 --- a/easybuild/easyconfigs/__archive__/a/a2ps/a2ps-4.14-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/a/a2ps/a2ps-4.14-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/a/aria2/aria2-1.15.1-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/a/aria2/aria2-1.15.1-goalf-1.1.0-no-OFED.eb index 118bf6fc3b..93ba30e57e 100644 --- a/easybuild/easyconfigs/__archive__/a/aria2/aria2-1.15.1-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/a/aria2/aria2-1.15.1-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/a/aria2/aria2-1.15.1-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/a/aria2/aria2-1.15.1-ictce-4.0.6.eb index b6ba853506..56e2941ef6 100644 --- a/easybuild/easyconfigs/__archive__/a/aria2/aria2-1.15.1-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/a/aria2/aria2-1.15.1-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/b/BEEF/BEEF-0.1.1-r16-iomkl-4.6.13.eb b/easybuild/easyconfigs/__archive__/b/BEEF/BEEF-0.1.1-r16-iomkl-4.6.13.eb index ea0ea19754..e76944242b 100644 --- a/easybuild/easyconfigs/__archive__/b/BEEF/BEEF-0.1.1-r16-iomkl-4.6.13.eb +++ b/easybuild/easyconfigs/__archive__/b/BEEF/BEEF-0.1.1-r16-iomkl-4.6.13.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Benjamin P. Roberts # New Zealand eScience Infrastructure # The University of Auckland, Auckland, New Zealand diff --git a/easybuild/easyconfigs/__archive__/b/BFAST/BFAST-0.7.0a-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/b/BFAST/BFAST-0.7.0a-goalf-1.1.0-no-OFED.eb index a3b2575da6..1c4e2656e2 100644 --- a/easybuild/easyconfigs/__archive__/b/BFAST/BFAST-0.7.0a-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/b/BFAST/BFAST-0.7.0a-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/b/BFAST/BFAST-0.7.0a-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/b/BFAST/BFAST-0.7.0a-ictce-4.0.6.eb index 06a9cd2e7e..ec20c6b63d 100644 --- a/easybuild/easyconfigs/__archive__/b/BFAST/BFAST-0.7.0a-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/b/BFAST/BFAST-0.7.0a-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.27-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.27-goalf-1.1.0-no-OFED.eb index 3d76340994..3e1f898b70 100644 --- a/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.27-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.27-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.27-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.27-ictce-4.0.6.eb index 5d3bf84644..04156efea5 100644 --- a/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.27-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.27-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.28-ictce-4.1.13.eb b/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.28-ictce-4.1.13.eb index 9a1f3c0269..fe0372bd55 100644 --- a/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.28-ictce-4.1.13.eb +++ b/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.28-ictce-4.1.13.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos , Kenneth Hoste (UGent) diff --git a/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.6.2-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.6.2-goalf-1.1.0-no-OFED.eb index 5bb0458964..9e6c729189 100644 --- a/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.6.2-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.6.2-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.6.2-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.6.2-ictce-4.0.6.eb index 9ff15e2434..e6c61cba4a 100644 --- a/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.6.2-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.6.2-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.7.4-ictce-4.1.13.eb b/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.7.4-ictce-4.1.13.eb index 000b5950bd..500bfbfd84 100644 --- a/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.7.4-ictce-4.1.13.eb +++ b/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.7.4-ictce-4.1.13.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA # Authors:: George Tsouloupas , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/b/BamTools/BamTools-2.2.3-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/b/BamTools/BamTools-2.2.3-goalf-1.1.0-no-OFED.eb index 7d0f3c7ae3..cea77237c3 100644 --- a/easybuild/easyconfigs/__archive__/b/BamTools/BamTools-2.2.3-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/b/BamTools/BamTools-2.2.3-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , George Tsouloupas diff --git a/easybuild/easyconfigs/__archive__/b/Bash/Bash-4.2-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/b/Bash/Bash-4.2-goalf-1.1.0-no-OFED.eb index 57dbb97a1a..104c33d233 100644 --- a/easybuild/easyconfigs/__archive__/b/Bash/Bash-4.2-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/b/Bash/Bash-4.2-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Computer Science and Communications Research Unit # Authors:: Valentin Plugaru diff --git a/easybuild/easyconfigs/__archive__/b/Bonnie++/Bonnie++-1.03e-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/b/Bonnie++/Bonnie++-1.03e-goalf-1.1.0-no-OFED.eb index 8bcb1abedd..cd15f91b8a 100644 --- a/easybuild/easyconfigs/__archive__/b/Bonnie++/Bonnie++-1.03e-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/b/Bonnie++/Bonnie++-1.03e-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/b/Bonnie++/Bonnie++-1.03e-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/b/Bonnie++/Bonnie++-1.03e-ictce-4.0.6.eb index f4e01e36bd..df3e2919cb 100644 --- a/easybuild/easyconfigs/__archive__/b/Bonnie++/Bonnie++-1.03e-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/b/Bonnie++/Bonnie++-1.03e-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.0.2-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.0.2-goalf-1.1.0-no-OFED.eb index 99061a9473..c7d6d38625 100644 --- a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.0.2-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.0.2-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.0.2-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.0.2-ictce-4.0.6.eb index 15a2db61d2..30756c2e9e 100644 --- a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.0.2-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.0.2-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/b/bbFTP/bbFTP-3.2.0-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/b/bbFTP/bbFTP-3.2.0-goalf-1.1.0-no-OFED.eb index e14fa5b01a..6cca8c54a5 100644 --- a/easybuild/easyconfigs/__archive__/b/bbFTP/bbFTP-3.2.0-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/b/bbFTP/bbFTP-3.2.0-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/b/bbftpPRO/bbftpPRO-9.3.1-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/b/bbftpPRO/bbftpPRO-9.3.1-goalf-1.1.0-no-OFED.eb index eae65e841f..48b977fff3 100644 --- a/easybuild/easyconfigs/__archive__/b/bbftpPRO/bbftpPRO-9.3.1-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/b/bbftpPRO/bbftpPRO-9.3.1-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/b/binutils/binutils-2.22-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/b/binutils/binutils-2.22-goalf-1.1.0-no-OFED.eb index af12b0472e..9c5bb1d47d 100644 --- a/easybuild/easyconfigs/__archive__/b/binutils/binutils-2.22-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/b/binutils/binutils-2.22-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/b/binutils/binutils-2.22-gompi-1.4.12-no-OFED.eb b/easybuild/easyconfigs/__archive__/b/binutils/binutils-2.22-gompi-1.4.12-no-OFED.eb index 8035182b62..1b73cc3ce3 100644 --- a/easybuild/easyconfigs/__archive__/b/binutils/binutils-2.22-gompi-1.4.12-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/b/binutils/binutils-2.22-gompi-1.4.12-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.6.0-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.6.0-goalf-1.1.0-no-OFED.eb index 8def4493c5..a151dccdce 100644 --- a/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.6.0-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.6.0-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/c/ClustalW2/ClustalW2-2.1-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/c/ClustalW2/ClustalW2-2.1-goalf-1.1.0-no-OFED.eb index 0649ad44a0..802e525ec8 100644 --- a/easybuild/easyconfigs/__archive__/c/ClustalW2/ClustalW2-2.1-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/c/ClustalW2/ClustalW2-2.1-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/c/ClustalW2/ClustalW2-2.1-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/c/ClustalW2/ClustalW2-2.1-ictce-4.0.6.eb index cad6e2ddab..740b066bb4 100644 --- a/easybuild/easyconfigs/__archive__/c/ClustalW2/ClustalW2-2.1-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/c/ClustalW2/ClustalW2-2.1-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/c/Corkscrew/Corkscrew-2.0-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/c/Corkscrew/Corkscrew-2.0-goalf-1.1.0-no-OFED.eb index a41c761aaf..743a5cbdf2 100644 --- a/easybuild/easyconfigs/__archive__/c/Corkscrew/Corkscrew-2.0-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/c/Corkscrew/Corkscrew-2.0-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/c/Corkscrew/Corkscrew-2.0-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/c/Corkscrew/Corkscrew-2.0-ictce-4.0.6.eb index ebeb826b66..0d9f914641 100644 --- a/easybuild/easyconfigs/__archive__/c/Corkscrew/Corkscrew-2.0-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/c/Corkscrew/Corkscrew-2.0-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/c/Cube/Cube-3.4.3-gompi-1.4.12-no-OFED.eb b/easybuild/easyconfigs/__archive__/c/Cube/Cube-3.4.3-gompi-1.4.12-no-OFED.eb index 94eaf15f8d..619d4f0b69 100644 --- a/easybuild/easyconfigs/__archive__/c/Cube/Cube-3.4.3-gompi-1.4.12-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/c/Cube/Cube-3.4.3-gompi-1.4.12-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2015 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr diff --git a/easybuild/easyconfigs/__archive__/c/Cube/Cube-4.2-gompi-1.4.12-no-OFED.eb b/easybuild/easyconfigs/__archive__/c/Cube/Cube-4.2-gompi-1.4.12-no-OFED.eb index df627c9d7b..dbfd632ffa 100644 --- a/easybuild/easyconfigs/__archive__/c/Cube/Cube-4.2-gompi-1.4.12-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/c/Cube/Cube-4.2-gompi-1.4.12-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2015 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr diff --git a/easybuild/easyconfigs/__archive__/c/Cube/Cube-4.3-gompi-1.4.12-no-OFED.eb b/easybuild/easyconfigs/__archive__/c/Cube/Cube-4.3-gompi-1.4.12-no-OFED.eb index ced2f5b555..6998de4138 100644 --- a/easybuild/easyconfigs/__archive__/c/Cube/Cube-4.3-gompi-1.4.12-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/c/Cube/Cube-4.3-gompi-1.4.12-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2015 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr diff --git a/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-2.0.2-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-2.0.2-goalf-1.1.0-no-OFED.eb index 2ef873d2da..c6c9980db5 100644 --- a/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-2.0.2-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-2.0.2-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/c/ccache/ccache-3.1.9-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/c/ccache/ccache-3.1.9-goalf-1.1.0-no-OFED.eb index bbabdb92a5..501b2e5aee 100644 --- a/easybuild/easyconfigs/__archive__/c/ccache/ccache-3.1.9-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/c/ccache/ccache-3.1.9-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/c/ccache/ccache-3.1.9-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/c/ccache/ccache-3.1.9-ictce-4.0.6.eb index 3011b90d17..801de9dbad 100644 --- a/easybuild/easyconfigs/__archive__/c/ccache/ccache-3.1.9-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/c/ccache/ccache-3.1.9-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/c/cflow/cflow-1.4-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/c/cflow/cflow-1.4-goalf-1.1.0-no-OFED.eb index 98800f3677..ae2a54ac33 100644 --- a/easybuild/easyconfigs/__archive__/c/cflow/cflow-1.4-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/c/cflow/cflow-1.4-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/c/cflow/cflow-1.4-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/c/cflow/cflow-1.4-ictce-4.0.6.eb index a3e495b0c6..b26666270b 100644 --- a/easybuild/easyconfigs/__archive__/c/cflow/cflow-1.4-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/c/cflow/cflow-1.4-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/c/cgdb/cgdb-0.6.5-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/c/cgdb/cgdb-0.6.5-goalf-1.1.0-no-OFED.eb index 2112acc096..10dd43c52c 100644 --- a/easybuild/easyconfigs/__archive__/c/cgdb/cgdb-0.6.5-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/c/cgdb/cgdb-0.6.5-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/c/cgdb/cgdb-0.6.5-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/c/cgdb/cgdb-0.6.5-ictce-4.0.6.eb index 3cff32f247..e8c4aaf751 100644 --- a/easybuild/easyconfigs/__archive__/c/cgdb/cgdb-0.6.5-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/c/cgdb/cgdb-0.6.5-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/e/ELinks/ELinks-0.12pre5-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/e/ELinks/ELinks-0.12pre5-goalf-1.1.0-no-OFED.eb index 6e775a095b..8bc52abe18 100644 --- a/easybuild/easyconfigs/__archive__/e/ELinks/ELinks-0.12pre5-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/e/ELinks/ELinks-0.12pre5-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/e/ELinks/ELinks-0.12pre5-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/e/ELinks/ELinks-0.12pre5-ictce-4.0.6.eb index 413650f9a5..c712b873ca 100644 --- a/easybuild/easyconfigs/__archive__/e/ELinks/ELinks-0.12pre5-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/e/ELinks/ELinks-0.12pre5-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/e/ESPResSo/ESPResSo-3.1.1-goalf-1.1.0-no-OFED-parallel.eb b/easybuild/easyconfigs/__archive__/e/ESPResSo/ESPResSo-3.1.1-goalf-1.1.0-no-OFED-parallel.eb index 5ef397df32..e5a7971a87 100644 --- a/easybuild/easyconfigs/__archive__/e/ESPResSo/ESPResSo-3.1.1-goalf-1.1.0-no-OFED-parallel.eb +++ b/easybuild/easyconfigs/__archive__/e/ESPResSo/ESPResSo-3.1.1-goalf-1.1.0-no-OFED-parallel.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Josh Berryman , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/e/ESPResSo/ESPResSo-3.1.1-goalf-1.1.0-no-OFED-serial.eb b/easybuild/easyconfigs/__archive__/e/ESPResSo/ESPResSo-3.1.1-goalf-1.1.0-no-OFED-serial.eb index dc0eba6edb..b7c119348c 100644 --- a/easybuild/easyconfigs/__archive__/e/ESPResSo/ESPResSo-3.1.1-goalf-1.1.0-no-OFED-serial.eb +++ b/easybuild/easyconfigs/__archive__/e/ESPResSo/ESPResSo-3.1.1-goalf-1.1.0-no-OFED-serial.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Josh Berryman , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/e/ESPResSo/ESPResSo-3.1.1-ictce-4.0.6-parallel.eb b/easybuild/easyconfigs/__archive__/e/ESPResSo/ESPResSo-3.1.1-ictce-4.0.6-parallel.eb index 5b960cc12d..89786fb93c 100644 --- a/easybuild/easyconfigs/__archive__/e/ESPResSo/ESPResSo-3.1.1-ictce-4.0.6-parallel.eb +++ b/easybuild/easyconfigs/__archive__/e/ESPResSo/ESPResSo-3.1.1-ictce-4.0.6-parallel.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Josh Berryman , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/e/ESPResSo/ESPResSo-3.1.1-ictce-4.0.6-serial.eb b/easybuild/easyconfigs/__archive__/e/ESPResSo/ESPResSo-3.1.1-ictce-4.0.6-serial.eb index 21dd493eb1..6b6b2358f8 100644 --- a/easybuild/easyconfigs/__archive__/e/ESPResSo/ESPResSo-3.1.1-ictce-4.0.6-serial.eb +++ b/easybuild/easyconfigs/__archive__/e/ESPResSo/ESPResSo-3.1.1-ictce-4.0.6-serial.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Josh Berryman , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.1-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.1-goalf-1.1.0-no-OFED.eb index 3cc61b8643..37f1ee9f61 100644 --- a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.1-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.1-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.1-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.1-ictce-4.0.6.eb index ad92c7352d..77d246ec69 100644 --- a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.1-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.1-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.4-goalf-1.5.12-no-OFED.eb b/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.4-goalf-1.5.12-no-OFED.eb index 0db2cb2232..61116f3e1b 100644 --- a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.4-goalf-1.5.12-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.4-goalf-1.5.12-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.4-ictce-4.1.13.eb b/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.4-ictce-4.1.13.eb index 8868b07c82..81a4069801 100644 --- a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.4-ictce-4.1.13.eb +++ b/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.4-ictce-4.1.13.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/e/Extrae/Extrae-2.4.1-gompi-1.4.12-no-OFED.eb b/easybuild/easyconfigs/__archive__/e/Extrae/Extrae-2.4.1-gompi-1.4.12-no-OFED.eb index b3d4b5ae5a..1a891e9ce7 100644 --- a/easybuild/easyconfigs/__archive__/e/Extrae/Extrae-2.4.1-gompi-1.4.12-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/e/Extrae/Extrae-2.4.1-gompi-1.4.12-no-OFED.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/__archive__/f/FASTX-Toolkit/FASTX-Toolkit-0.0.13.2-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/f/FASTX-Toolkit/FASTX-Toolkit-0.0.13.2-goalf-1.1.0-no-OFED.eb index 4bda1588f1..f2354a3ca7 100644 --- a/easybuild/easyconfigs/__archive__/f/FASTX-Toolkit/FASTX-Toolkit-0.0.13.2-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/f/FASTX-Toolkit/FASTX-Toolkit-0.0.13.2-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/f/FASTX-Toolkit/FASTX-Toolkit-0.0.13.2-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/f/FASTX-Toolkit/FASTX-Toolkit-0.0.13.2-ictce-4.0.6.eb index b9a9acd1bf..cb71a068e5 100644 --- a/easybuild/easyconfigs/__archive__/f/FASTX-Toolkit/FASTX-Toolkit-0.0.13.2-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/f/FASTX-Toolkit/FASTX-Toolkit-0.0.13.2-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-cgmpolf-1.1.6.eb b/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-cgmpolf-1.1.6.eb index 2278befdce..e8870f1aa5 100644 --- a/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-cgmpolf-1.1.6.eb +++ b/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-cgmpolf-1.1.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-cgmvolf-1.1.12rc1.eb b/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-cgmvolf-1.1.12rc1.eb index 7e35ed60fd..a54cdbf4ed 100644 --- a/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-cgmvolf-1.1.12rc1.eb +++ b/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-cgmvolf-1.1.12rc1.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-cgmvolf-1.2.7.eb b/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-cgmvolf-1.2.7.eb index 5c2723f3cc..ef6bba63f9 100644 --- a/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-cgmvolf-1.2.7.eb +++ b/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-cgmvolf-1.2.7.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-cgoolf-1.1.7.eb b/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-cgoolf-1.1.7.eb index a55ddb3780..4b7bc2353a 100644 --- a/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-cgoolf-1.1.7.eb +++ b/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-cgoolf-1.1.7.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-gmvolf-1.7.12.eb b/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-gmvolf-1.7.12.eb index 5cb326d9c8..b4a874e646 100644 --- a/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-gmvolf-1.7.12.eb +++ b/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-gmvolf-1.7.12.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild recipy as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild recipy as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-gmvolf-1.7.12rc1.eb b/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-gmvolf-1.7.12rc1.eb index 9a83935f73..6732b1f516 100644 --- a/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-gmvolf-1.7.12rc1.eb +++ b/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-gmvolf-1.7.12rc1.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild recipy as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild recipy as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-goalf-1.1.0-no-OFED.eb index e69629310c..5e909d69c1 100644 --- a/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.1-goolfc-1.3.12-hybrid.eb b/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.1-goolfc-1.3.12-hybrid.eb index 10de39383d..c93754ab31 100644 --- a/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.1-goolfc-1.3.12-hybrid.eb +++ b/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.1-goolfc-1.3.12-hybrid.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.1-goolfc-1.3.12-mt.eb b/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.1-goolfc-1.3.12-mt.eb index 7d4a515bd7..01e29400b7 100644 --- a/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.1-goolfc-1.3.12-mt.eb +++ b/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.1-goolfc-1.3.12-mt.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-gmpolf-1.4.8-hybrid.eb b/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-gmpolf-1.4.8-hybrid.eb index c6a01d5cb9..b62bee2ccc 100644 --- a/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-gmpolf-1.4.8-hybrid.eb +++ b/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-gmpolf-1.4.8-hybrid.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-gmpolf-1.4.8-mt.eb b/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-gmpolf-1.4.8-mt.eb index f47fc727b1..9ad41b86cd 100644 --- a/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-gmpolf-1.4.8-mt.eb +++ b/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-gmpolf-1.4.8-mt.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-gmvolf-1.7.12-hybrid.eb b/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-gmvolf-1.7.12-hybrid.eb index c1dc7fabd0..6cff17d466 100644 --- a/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-gmvolf-1.7.12-hybrid.eb +++ b/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-gmvolf-1.7.12-hybrid.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-gmvolf-1.7.12-mt.eb b/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-gmvolf-1.7.12-mt.eb index aa2709aff9..8a0d1877e1 100644 --- a/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-gmvolf-1.7.12-mt.eb +++ b/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-gmvolf-1.7.12-mt.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-goalf-1.1.0-no-OFED-hybrid.eb b/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-goalf-1.1.0-no-OFED-hybrid.eb index 6a5829cb21..8ea94fe3e3 100644 --- a/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-goalf-1.1.0-no-OFED-hybrid.eb +++ b/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-goalf-1.1.0-no-OFED-hybrid.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-goalf-1.1.0-no-OFED-mt.eb b/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-goalf-1.1.0-no-OFED-mt.eb index 897f8573da..5d65ed4da5 100644 --- a/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-goalf-1.1.0-no-OFED-mt.eb +++ b/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-goalf-1.1.0-no-OFED-mt.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-goolfc-2.6.10-hybrid.eb b/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-goolfc-2.6.10-hybrid.eb index 1de33cf464..88e2d9aa12 100644 --- a/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-goolfc-2.6.10-hybrid.eb +++ b/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-goolfc-2.6.10-hybrid.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-goolfc-2.6.10-mt.eb b/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-goolfc-2.6.10-mt.eb index 367a63d0a3..b7e5aa7eff 100644 --- a/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-goolfc-2.6.10-mt.eb +++ b/easybuild/easyconfigs/__archive__/g/GROMACS/GROMACS-4.6.5-goolfc-2.6.10-mt.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/__archive__/g/GTI/GTI-1.2.0-gompi-1.4.12-no-OFED.eb b/easybuild/easyconfigs/__archive__/g/GTI/GTI-1.2.0-gompi-1.4.12-no-OFED.eb index 3d384db2d6..926c752629 100644 --- a/easybuild/easyconfigs/__archive__/g/GTI/GTI-1.2.0-gompi-1.4.12-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/g/GTI/GTI-1.2.0-gompi-1.4.12-no-OFED.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/__archive__/g/git/git-1.7.12-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/g/git/git-1.7.12-goalf-1.1.0-no-OFED.eb index 6e6602e1ac..e5256d2d34 100644 --- a/easybuild/easyconfigs/__archive__/g/git/git-1.7.12-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/g/git/git-1.7.12-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/g/git/git-1.7.12-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/g/git/git-1.7.12-ictce-4.0.6.eb index 08b113a1e9..2fbf7d9d74 100644 --- a/easybuild/easyconfigs/__archive__/g/git/git-1.7.12-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/g/git/git-1.7.12-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/g/git/git-1.8.2-cgmpolf-1.1.6.eb b/easybuild/easyconfigs/__archive__/g/git/git-1.8.2-cgmpolf-1.1.6.eb index 6a6c3a3ab6..ccc2af2068 100644 --- a/easybuild/easyconfigs/__archive__/g/git/git-1.8.2-cgmpolf-1.1.6.eb +++ b/easybuild/easyconfigs/__archive__/g/git/git-1.8.2-cgmpolf-1.1.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/g/git/git-1.8.2-cgmvolf-1.1.12rc1.eb b/easybuild/easyconfigs/__archive__/g/git/git-1.8.2-cgmvolf-1.1.12rc1.eb index 031cdf8a76..5b33fd1e3d 100644 --- a/easybuild/easyconfigs/__archive__/g/git/git-1.8.2-cgmvolf-1.1.12rc1.eb +++ b/easybuild/easyconfigs/__archive__/g/git/git-1.8.2-cgmvolf-1.1.12rc1.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/g/git/git-1.8.2-cgmvolf-1.2.7.eb b/easybuild/easyconfigs/__archive__/g/git/git-1.8.2-cgmvolf-1.2.7.eb index 0400716225..9a65ddf609 100644 --- a/easybuild/easyconfigs/__archive__/g/git/git-1.8.2-cgmvolf-1.2.7.eb +++ b/easybuild/easyconfigs/__archive__/g/git/git-1.8.2-cgmvolf-1.2.7.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/g/git/git-1.8.2-cgoolf-1.1.7.eb b/easybuild/easyconfigs/__archive__/g/git/git-1.8.2-cgoolf-1.1.7.eb index f5e0842b35..dd164a4f2a 100644 --- a/easybuild/easyconfigs/__archive__/g/git/git-1.8.2-cgoolf-1.1.7.eb +++ b/easybuild/easyconfigs/__archive__/g/git/git-1.8.2-cgoolf-1.1.7.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/g/git/git-1.8.2-gmvolf-1.7.12.eb b/easybuild/easyconfigs/__archive__/g/git/git-1.8.2-gmvolf-1.7.12.eb index 544929857c..e54476f0a4 100644 --- a/easybuild/easyconfigs/__archive__/g/git/git-1.8.2-gmvolf-1.7.12.eb +++ b/easybuild/easyconfigs/__archive__/g/git/git-1.8.2-gmvolf-1.7.12.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/g/git/git-1.8.2-gmvolf-1.7.12rc1.eb b/easybuild/easyconfigs/__archive__/g/git/git-1.8.2-gmvolf-1.7.12rc1.eb index 89c596b617..38680f091d 100644 --- a/easybuild/easyconfigs/__archive__/g/git/git-1.8.2-gmvolf-1.7.12rc1.eb +++ b/easybuild/easyconfigs/__archive__/g/git/git-1.8.2-gmvolf-1.7.12rc1.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/g/gnuplot/gnuplot-4.6.0-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/g/gnuplot/gnuplot-4.6.0-goalf-1.1.0-no-OFED.eb index bd0bbb0ca0..b91d8d2d53 100644 --- a/easybuild/easyconfigs/__archive__/g/gnuplot/gnuplot-4.6.0-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/g/gnuplot/gnuplot-4.6.0-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/g/gnuplot/gnuplot-4.6.0-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/g/gnuplot/gnuplot-4.6.0-ictce-4.0.6.eb index 23b0d23f05..aeae930afd 100644 --- a/easybuild/easyconfigs/__archive__/g/gnuplot/gnuplot-4.6.0-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/g/gnuplot/gnuplot-4.6.0-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/g/gzip/gzip-1.5-cgoolf-1.1.7.eb b/easybuild/easyconfigs/__archive__/g/gzip/gzip-1.5-cgoolf-1.1.7.eb index 96eb4d4a94..d31a140295 100644 --- a/easybuild/easyconfigs/__archive__/g/gzip/gzip-1.5-cgoolf-1.1.7.eb +++ b/easybuild/easyconfigs/__archive__/g/gzip/gzip-1.5-cgoolf-1.1.7.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright (c) 2012-2013 Cyprus Institute / CaSToRC # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/__archive__/g/gzip/gzip-1.5-gmpolf-1.4.8.eb b/easybuild/easyconfigs/__archive__/g/gzip/gzip-1.5-gmpolf-1.4.8.eb index 627ddf488d..0748c110a0 100644 --- a/easybuild/easyconfigs/__archive__/g/gzip/gzip-1.5-gmpolf-1.4.8.eb +++ b/easybuild/easyconfigs/__archive__/g/gzip/gzip-1.5-gmpolf-1.4.8.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright (c) 2012-2013 Cyprus Institute / CaSToRC # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/__archive__/g/gzip/gzip-1.5-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/g/gzip/gzip-1.5-goalf-1.1.0-no-OFED.eb index 282fc7aa9f..7e61a60bf2 100644 --- a/easybuild/easyconfigs/__archive__/g/gzip/gzip-1.5-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/g/gzip/gzip-1.5-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright (c) 2012-2013 Cyprus Institute / CaSToRC # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/__archive__/g/gzip/gzip-1.5-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/g/gzip/gzip-1.5-ictce-4.0.6.eb index 2072304457..65b9cc7f01 100644 --- a/easybuild/easyconfigs/__archive__/g/gzip/gzip-1.5-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/g/gzip/gzip-1.5-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright (c) 2012-2013 Cyprus Institute / CaSToRC # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/__archive__/g/gzip/gzip-1.5-ictce-4.1.13.eb b/easybuild/easyconfigs/__archive__/g/gzip/gzip-1.5-ictce-4.1.13.eb index 34e650a014..6e06ea391d 100644 --- a/easybuild/easyconfigs/__archive__/g/gzip/gzip-1.5-ictce-4.1.13.eb +++ b/easybuild/easyconfigs/__archive__/g/gzip/gzip-1.5-ictce-4.1.13.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright (c) 2012-2013 Cyprus Institute / CaSToRC # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/__archive__/g/gzip/gzip-1.6-goolf-1.5.14-no-OFED.eb b/easybuild/easyconfigs/__archive__/g/gzip/gzip-1.6-goolf-1.5.14-no-OFED.eb index e4663d467a..34796e201d 100644 --- a/easybuild/easyconfigs/__archive__/g/gzip/gzip-1.6-goolf-1.5.14-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/g/gzip/gzip-1.6-goolf-1.5.14-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright (c) 2012-2013 Cyprus Institute / CaSToRC # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/__archive__/h/HH-suite/HH-suite-2.0.16-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/h/HH-suite/HH-suite-2.0.16-goalf-1.1.0-no-OFED.eb index 9bc25a5071..ee1aee5e77 100644 --- a/easybuild/easyconfigs/__archive__/h/HH-suite/HH-suite-2.0.16-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/h/HH-suite/HH-suite-2.0.16-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild recipy as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild recipy as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/h/HMMER/HMMER-3.0-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/h/HMMER/HMMER-3.0-goalf-1.1.0-no-OFED.eb index c14d1e9c4c..e4f9f9f405 100644 --- a/easybuild/easyconfigs/__archive__/h/HMMER/HMMER-3.0-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/h/HMMER/HMMER-3.0-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/h/HMMER/HMMER-3.0-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/h/HMMER/HMMER-3.0-ictce-4.0.6.eb index 882be30c22..d640899214 100644 --- a/easybuild/easyconfigs/__archive__/h/HMMER/HMMER-3.0-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/h/HMMER/HMMER-3.0-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/h/HPCBIOS_Math/HPCBIOS_Math-20130829-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/h/HPCBIOS_Math/HPCBIOS_Math-20130829-goalf-1.1.0-no-OFED.eb index e86ac02683..8976d6c40b 100644 --- a/easybuild/easyconfigs/__archive__/h/HPCBIOS_Math/HPCBIOS_Math-20130829-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/h/HPCBIOS_Math/HPCBIOS_Math-20130829-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/i/Infernal/Infernal-1.1-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/i/Infernal/Infernal-1.1-goalf-1.1.0-no-OFED.eb index 67c9b4b47c..a1dacdc98c 100644 --- a/easybuild/easyconfigs/__archive__/i/Infernal/Infernal-1.1-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/i/Infernal/Infernal-1.1-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/i/Infernal/Infernal-1.1-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/i/Infernal/Infernal-1.1-ictce-4.0.6.eb index aa9857ce93..7031201322 100644 --- a/easybuild/easyconfigs/__archive__/i/Infernal/Infernal-1.1-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/i/Infernal/Infernal-1.1-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/i/Infernal/Infernal-1.1rc1-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/i/Infernal/Infernal-1.1rc1-goalf-1.1.0-no-OFED.eb index 807ce3ee01..6165515b54 100644 --- a/easybuild/easyconfigs/__archive__/i/Infernal/Infernal-1.1rc1-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/i/Infernal/Infernal-1.1rc1-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/i/Infernal/Infernal-1.1rc1-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/i/Infernal/Infernal-1.1rc1-ictce-4.0.6.eb index 3fb03037b9..2c5ec1ce14 100644 --- a/easybuild/easyconfigs/__archive__/i/Infernal/Infernal-1.1rc1-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/i/Infernal/Infernal-1.1rc1-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/i/Iperf/Iperf-2.0.5-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/i/Iperf/Iperf-2.0.5-goalf-1.1.0-no-OFED.eb index 974a5d000e..66d6e15438 100644 --- a/easybuild/easyconfigs/__archive__/i/Iperf/Iperf-2.0.5-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/i/Iperf/Iperf-2.0.5-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/i/Iperf/Iperf-2.0.5-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/i/Iperf/Iperf-2.0.5-ictce-4.0.6.eb index c6a180825f..6c38105a14 100644 --- a/easybuild/easyconfigs/__archive__/i/Iperf/Iperf-2.0.5-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/i/Iperf/Iperf-2.0.5-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/l/LWM2/LWM2-1.1-gompi-1.4.12-no-OFED.eb b/easybuild/easyconfigs/__archive__/l/LWM2/LWM2-1.1-gompi-1.4.12-no-OFED.eb index dec9b30b4f..07e343af8a 100644 --- a/easybuild/easyconfigs/__archive__/l/LWM2/LWM2-1.1-gompi-1.4.12-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/l/LWM2/LWM2-1.1-gompi-1.4.12-no-OFED.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/__archive__/l/LZO/LZO-2.06-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/l/LZO/LZO-2.06-goalf-1.1.0-no-OFED.eb index 94a0908fdc..7ebc542f5e 100644 --- a/easybuild/easyconfigs/__archive__/l/LZO/LZO-2.06-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/l/LZO/LZO-2.06-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/l/LZO/LZO-2.06-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/l/LZO/LZO-2.06-ictce-4.0.6.eb index 3dc6b8939e..5080a2c53c 100644 --- a/easybuild/easyconfigs/__archive__/l/LZO/LZO-2.06-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/l/LZO/LZO-2.06-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/l/LZO/LZO-2.06-ictce-5.1.1.eb b/easybuild/easyconfigs/__archive__/l/LZO/LZO-2.06-ictce-5.1.1.eb index 91bc730999..4460cae67c 100644 --- a/easybuild/easyconfigs/__archive__/l/LZO/LZO-2.06-ictce-5.1.1.eb +++ b/easybuild/easyconfigs/__archive__/l/LZO/LZO-2.06-ictce-5.1.1.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/l/LibTIFF/LibTIFF-4.0.3-ictce-4.1.13.eb b/easybuild/easyconfigs/__archive__/l/LibTIFF/LibTIFF-4.0.3-ictce-4.1.13.eb index 3fa3aba61e..f332d73c30 100644 --- a/easybuild/easyconfigs/__archive__/l/LibTIFF/LibTIFF-4.0.3-ictce-4.1.13.eb +++ b/easybuild/easyconfigs/__archive__/l/LibTIFF/LibTIFF-4.0.3-ictce-4.1.13.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/l/lftp/lftp-4.4.1-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/l/lftp/lftp-4.4.1-goalf-1.1.0-no-OFED.eb index cca49e12bf..9f675f07bf 100644 --- a/easybuild/easyconfigs/__archive__/l/lftp/lftp-4.4.1-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/l/lftp/lftp-4.4.1-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/l/libgtextutils/libgtextutils-0.6.1-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/l/libgtextutils/libgtextutils-0.6.1-goalf-1.1.0-no-OFED.eb index 6aabc3ac11..f9f4cbfcd6 100644 --- a/easybuild/easyconfigs/__archive__/l/libgtextutils/libgtextutils-0.6.1-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/l/libgtextutils/libgtextutils-0.6.1-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/l/libgtextutils/libgtextutils-0.6.1-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/l/libgtextutils/libgtextutils-0.6.1-ictce-4.0.6.eb index ded8654240..4f58924c62 100644 --- a/easybuild/easyconfigs/__archive__/l/libgtextutils/libgtextutils-0.6.1-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/l/libgtextutils/libgtextutils-0.6.1-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/l/libharu/libharu-2.2.0-ictce-4.1.13.eb b/easybuild/easyconfigs/__archive__/l/libharu/libharu-2.2.0-ictce-4.1.13.eb index 26e45a4b96..f2db5e1bd1 100644 --- a/easybuild/easyconfigs/__archive__/l/libharu/libharu-2.2.0-ictce-4.1.13.eb +++ b/easybuild/easyconfigs/__archive__/l/libharu/libharu-2.2.0-ictce-4.1.13.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA # Authors:: George Tsouloupas , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/l/libunwind/libunwind-1.1-gompi-1.4.12-no-OFED.eb b/easybuild/easyconfigs/__archive__/l/libunwind/libunwind-1.1-gompi-1.4.12-no-OFED.eb index cdac53c708..bba047b19e 100644 --- a/easybuild/easyconfigs/__archive__/l/libunwind/libunwind-1.1-gompi-1.4.12-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/l/libunwind/libunwind-1.1-gompi-1.4.12-no-OFED.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/__archive__/l/libyaml/libyaml-0.1.4-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/l/libyaml/libyaml-0.1.4-goalf-1.1.0-no-OFED.eb index 3a53284403..efb2f812e3 100644 --- a/easybuild/easyconfigs/__archive__/l/libyaml/libyaml-0.1.4-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/l/libyaml/libyaml-0.1.4-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Nils Christian diff --git a/easybuild/easyconfigs/__archive__/m/M4/M4-1.4.17-intel-para-2014.12.eb b/easybuild/easyconfigs/__archive__/m/M4/M4-1.4.17-intel-para-2014.12.eb index cda9d848b7..63fd93faa8 100644 --- a/easybuild/easyconfigs/__archive__/m/M4/M4-1.4.17-intel-para-2014.12.eb +++ b/easybuild/easyconfigs/__archive__/m/M4/M4-1.4.17-intel-para-2014.12.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/__archive__/m/MCL/MCL-12.135-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/m/MCL/MCL-12.135-goalf-1.1.0-no-OFED.eb index e322ccb0af..d5b537170a 100644 --- a/easybuild/easyconfigs/__archive__/m/MCL/MCL-12.135-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/m/MCL/MCL-12.135-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/m/MCL/MCL-12.135-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/m/MCL/MCL-12.135-ictce-4.0.6.eb index 232ec42670..3f99722ada 100644 --- a/easybuild/easyconfigs/__archive__/m/MCL/MCL-12.135-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/m/MCL/MCL-12.135-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/m/MCL/MCL-12.135-ictce-4.1.13.eb b/easybuild/easyconfigs/__archive__/m/MCL/MCL-12.135-ictce-4.1.13.eb index 3edc17b8e9..5c54eded48 100644 --- a/easybuild/easyconfigs/__archive__/m/MCL/MCL-12.135-ictce-4.1.13.eb +++ b/easybuild/easyconfigs/__archive__/m/MCL/MCL-12.135-ictce-4.1.13.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/m/MEME/MEME-4.8.0-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/m/MEME/MEME-4.8.0-goalf-1.1.0-no-OFED.eb index 4a37b2243d..822a714f43 100644 --- a/easybuild/easyconfigs/__archive__/m/MEME/MEME-4.8.0-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/m/MEME/MEME-4.8.0-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/m/MEME/MEME-4.8.0-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/m/MEME/MEME-4.8.0-ictce-4.0.6.eb index 2079802769..0ee39c9be9 100644 --- a/easybuild/easyconfigs/__archive__/m/MEME/MEME-4.8.0-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/m/MEME/MEME-4.8.0-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/m/MUMmer/MUMmer-3.23-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/m/MUMmer/MUMmer-3.23-goalf-1.1.0-no-OFED.eb index df55442b24..e52c131955 100644 --- a/easybuild/easyconfigs/__archive__/m/MUMmer/MUMmer-3.23-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/m/MUMmer/MUMmer-3.23-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/m/MUMmer/MUMmer-3.23-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/m/MUMmer/MUMmer-3.23-ictce-4.0.6.eb index b12e9042ad..e1bfaff6af 100644 --- a/easybuild/easyconfigs/__archive__/m/MUMmer/MUMmer-3.23-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/m/MUMmer/MUMmer-3.23-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/m/MUMmer/MUMmer-3.23-ictce-4.1.13-Perl-5.16.3.eb b/easybuild/easyconfigs/__archive__/m/MUMmer/MUMmer-3.23-ictce-4.1.13-Perl-5.16.3.eb index 578f64de52..6402f3b4f0 100644 --- a/easybuild/easyconfigs/__archive__/m/MUMmer/MUMmer-3.23-ictce-4.1.13-Perl-5.16.3.eb +++ b/easybuild/easyconfigs/__archive__/m/MUMmer/MUMmer-3.23-ictce-4.1.13-Perl-5.16.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos , Kenneth Hoste diff --git a/easybuild/easyconfigs/__archive__/m/MUST/MUST-1.2.0-gompi-1.4.12-no-OFED.eb b/easybuild/easyconfigs/__archive__/m/MUST/MUST-1.2.0-gompi-1.4.12-no-OFED.eb index cd0624726e..355411d625 100644 --- a/easybuild/easyconfigs/__archive__/m/MUST/MUST-1.2.0-gompi-1.4.12-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/m/MUST/MUST-1.2.0-gompi-1.4.12-no-OFED.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/__archive__/m/MetaVelvet/MetaVelvet-1.2.01-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/m/MetaVelvet/MetaVelvet-1.2.01-goalf-1.1.0-no-OFED.eb index a43b075cea..2f8eece7c4 100644 --- a/easybuild/easyconfigs/__archive__/m/MetaVelvet/MetaVelvet-1.2.01-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/m/MetaVelvet/MetaVelvet-1.2.01-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/m/MetaVelvet/MetaVelvet-1.2.01-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/m/MetaVelvet/MetaVelvet-1.2.01-ictce-4.0.6.eb index aa9f2cf5ec..d2bcadda2e 100644 --- a/easybuild/easyconfigs/__archive__/m/MetaVelvet/MetaVelvet-1.2.01-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/m/MetaVelvet/MetaVelvet-1.2.01-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/m/mc/mc-4.6.1-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/m/mc/mc-4.6.1-goalf-1.1.0-no-OFED.eb index a05d906924..730be02be3 100644 --- a/easybuild/easyconfigs/__archive__/m/mc/mc-4.6.1-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/m/mc/mc-4.6.1-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/m/mc/mc-4.6.1-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/m/mc/mc-4.6.1-ictce-4.0.6.eb index 9830f37904..3fd39ef56e 100644 --- a/easybuild/easyconfigs/__archive__/m/mc/mc-4.6.1-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/m/mc/mc-4.6.1-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/m/mpiBLAST/mpiBLAST-1.6.0-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/m/mpiBLAST/mpiBLAST-1.6.0-goalf-1.1.0-no-OFED.eb index b4ca6871ed..e5f4cf2404 100644 --- a/easybuild/easyconfigs/__archive__/m/mpiBLAST/mpiBLAST-1.6.0-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/m/mpiBLAST/mpiBLAST-1.6.0-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos , Kenneth Hoste diff --git a/easybuild/easyconfigs/__archive__/m/mpiBLAST/mpiBLAST-1.6.0-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/m/mpiBLAST/mpiBLAST-1.6.0-ictce-4.0.6.eb index f14049a15f..0f7c4a1cb5 100644 --- a/easybuild/easyconfigs/__archive__/m/mpiBLAST/mpiBLAST-1.6.0-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/m/mpiBLAST/mpiBLAST-1.6.0-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos , Kenneth Hoste diff --git a/easybuild/easyconfigs/__archive__/n/NASM/NASM-2.07-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/n/NASM/NASM-2.07-goalf-1.1.0-no-OFED.eb index ce0c799863..8c8c8d6b64 100644 --- a/easybuild/easyconfigs/__archive__/n/NASM/NASM-2.07-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/n/NASM/NASM-2.07-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/n/NASM/NASM-2.07-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/n/NASM/NASM-2.07-ictce-4.0.6.eb index 261d1e65aa..05b4d75cdb 100644 --- a/easybuild/easyconfigs/__archive__/n/NASM/NASM-2.07-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/n/NASM/NASM-2.07-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/n/NASM/NASM-2.07-ictce-4.1.13.eb b/easybuild/easyconfigs/__archive__/n/NASM/NASM-2.07-ictce-4.1.13.eb index ec4bc1b519..f62ff8c098 100644 --- a/easybuild/easyconfigs/__archive__/n/NASM/NASM-2.07-ictce-4.1.13.eb +++ b/easybuild/easyconfigs/__archive__/n/NASM/NASM-2.07-ictce-4.1.13.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/n/NASM/NASM-2.11.05-ictce-6.3.5.eb b/easybuild/easyconfigs/__archive__/n/NASM/NASM-2.11.05-ictce-6.3.5.eb index 8210b35b66..d98adb2215 100644 --- a/easybuild/easyconfigs/__archive__/n/NASM/NASM-2.11.05-ictce-6.3.5.eb +++ b/easybuild/easyconfigs/__archive__/n/NASM/NASM-2.11.05-ictce-6.3.5.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/n/NCBI-Toolkit/NCBI-Toolkit-9.0.0-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/n/NCBI-Toolkit/NCBI-Toolkit-9.0.0-goalf-1.1.0-no-OFED.eb index c4688cb405..aaef538e3a 100644 --- a/easybuild/easyconfigs/__archive__/n/NCBI-Toolkit/NCBI-Toolkit-9.0.0-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/n/NCBI-Toolkit/NCBI-Toolkit-9.0.0-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos , Kenneth Hoste diff --git a/easybuild/easyconfigs/__archive__/n/NCBI-Toolkit/NCBI-Toolkit-9.0.0-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/n/NCBI-Toolkit/NCBI-Toolkit-9.0.0-ictce-4.0.6.eb index 7d8e37d42d..81777b4947 100644 --- a/easybuild/easyconfigs/__archive__/n/NCBI-Toolkit/NCBI-Toolkit-9.0.0-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/n/NCBI-Toolkit/NCBI-Toolkit-9.0.0-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos , Kenneth Hoste diff --git a/easybuild/easyconfigs/__archive__/n/nano/nano-2.2.6-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/n/nano/nano-2.2.6-goalf-1.1.0-no-OFED.eb index 07e2cab7c0..ea62784fb7 100644 --- a/easybuild/easyconfigs/__archive__/n/nano/nano-2.2.6-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/n/nano/nano-2.2.6-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/n/nano/nano-2.2.6-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/n/nano/nano-2.2.6-ictce-4.0.6.eb index 2a997d6bdf..6edb4f983c 100644 --- a/easybuild/easyconfigs/__archive__/n/nano/nano-2.2.6-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/n/nano/nano-2.2.6-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/o/OPARI2/OPARI2-1.0.7-gompi-1.4.12-no-OFED.eb b/easybuild/easyconfigs/__archive__/o/OPARI2/OPARI2-1.0.7-gompi-1.4.12-no-OFED.eb index 0361dfc86a..6ba1cb4abd 100644 --- a/easybuild/easyconfigs/__archive__/o/OPARI2/OPARI2-1.0.7-gompi-1.4.12-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/o/OPARI2/OPARI2-1.0.7-gompi-1.4.12-no-OFED.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/__archive__/o/OPARI2/OPARI2-1.1.1-gompi-1.4.12-no-OFED.eb b/easybuild/easyconfigs/__archive__/o/OPARI2/OPARI2-1.1.1-gompi-1.4.12-no-OFED.eb index 45442d4279..14ec77b8ce 100644 --- a/easybuild/easyconfigs/__archive__/o/OPARI2/OPARI2-1.1.1-gompi-1.4.12-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/o/OPARI2/OPARI2-1.1.1-gompi-1.4.12-no-OFED.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/__archive__/o/OTF/OTF-1.12.4-gompi-1.4.12-no-OFED.eb b/easybuild/easyconfigs/__archive__/o/OTF/OTF-1.12.4-gompi-1.4.12-no-OFED.eb index e12b8e7289..e14fc7614e 100644 --- a/easybuild/easyconfigs/__archive__/o/OTF/OTF-1.12.4-gompi-1.4.12-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/o/OTF/OTF-1.12.4-gompi-1.4.12-no-OFED.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/__archive__/o/OTF2/OTF2-1.2.1-gompi-1.4.12-no-OFED.eb b/easybuild/easyconfigs/__archive__/o/OTF2/OTF2-1.2.1-gompi-1.4.12-no-OFED.eb index 88c6562214..ec87a9a0a1 100644 --- a/easybuild/easyconfigs/__archive__/o/OTF2/OTF2-1.2.1-gompi-1.4.12-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/o/OTF2/OTF2-1.2.1-gompi-1.4.12-no-OFED.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/__archive__/p/PAPI/PAPI-5.0.1-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/p/PAPI/PAPI-5.0.1-goalf-1.1.0-no-OFED.eb index 4cd82eaeb6..e509bee068 100644 --- a/easybuild/easyconfigs/__archive__/p/PAPI/PAPI-5.0.1-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/p/PAPI/PAPI-5.0.1-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/p/PAPI/PAPI-5.0.1-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/p/PAPI/PAPI-5.0.1-ictce-4.0.6.eb index 7a5c98d762..767ac0cf8a 100644 --- a/easybuild/easyconfigs/__archive__/p/PAPI/PAPI-5.0.1-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/p/PAPI/PAPI-5.0.1-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/p/PAPI/PAPI-5.2.0-gompi-1.4.12-no-OFED.eb b/easybuild/easyconfigs/__archive__/p/PAPI/PAPI-5.2.0-gompi-1.4.12-no-OFED.eb index c8c6b3d569..34593b5431 100644 --- a/easybuild/easyconfigs/__archive__/p/PAPI/PAPI-5.2.0-gompi-1.4.12-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/p/PAPI/PAPI-5.2.0-gompi-1.4.12-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/p/PDT/PDT-3.19-gompi-1.4.12-no-OFED.eb b/easybuild/easyconfigs/__archive__/p/PDT/PDT-3.19-gompi-1.4.12-no-OFED.eb index eef9a27cd7..9c604d4a85 100644 --- a/easybuild/easyconfigs/__archive__/p/PDT/PDT-3.19-gompi-1.4.12-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/p/PDT/PDT-3.19-gompi-1.4.12-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2015 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr diff --git a/easybuild/easyconfigs/__archive__/p/PLINK/PLINK-1.07-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/p/PLINK/PLINK-1.07-goalf-1.1.0-no-OFED.eb index 71cade10ff..852c7755e0 100644 --- a/easybuild/easyconfigs/__archive__/p/PLINK/PLINK-1.07-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/p/PLINK/PLINK-1.07-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Thekla Loizou , Andreas Panteli , diff --git a/easybuild/easyconfigs/__archive__/p/PnMPI/PnMPI-1.2.0-gompi-1.4.12-no-OFED.eb b/easybuild/easyconfigs/__archive__/p/PnMPI/PnMPI-1.2.0-gompi-1.4.12-no-OFED.eb index 909fa6783b..63102afdba 100644 --- a/easybuild/easyconfigs/__archive__/p/PnMPI/PnMPI-1.2.0-gompi-1.4.12-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/p/PnMPI/PnMPI-1.2.0-gompi-1.4.12-no-OFED.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/__archive__/p/parallel/parallel-20130122-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/p/parallel/parallel-20130122-goalf-1.1.0-no-OFED.eb index 3804c6ccaa..55ce03a711 100644 --- a/easybuild/easyconfigs/__archive__/p/parallel/parallel-20130122-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/p/parallel/parallel-20130122-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/p/parallel/parallel-20130122-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/p/parallel/parallel-20130122-ictce-4.0.6.eb index 94c10ffced..fb701cf2e0 100644 --- a/easybuild/easyconfigs/__archive__/p/parallel/parallel-20130122-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/p/parallel/parallel-20130122-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/r/RNAz/RNAz-2.1-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/r/RNAz/RNAz-2.1-goalf-1.1.0-no-OFED.eb index 5f373bcc46..d87f890d0f 100644 --- a/easybuild/easyconfigs/__archive__/r/RNAz/RNAz-2.1-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/r/RNAz/RNAz-2.1-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/r/RNAz/RNAz-2.1-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/r/RNAz/RNAz-2.1-ictce-4.0.6.eb index 71400b6f39..27678245ba 100644 --- a/easybuild/easyconfigs/__archive__/r/RNAz/RNAz-2.1-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/r/RNAz/RNAz-2.1-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/s/SAMtools/SAMtools-0.1.18-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/s/SAMtools/SAMtools-0.1.18-goalf-1.1.0-no-OFED.eb index 495ee12fa8..2d7908e75a 100644 --- a/easybuild/easyconfigs/__archive__/s/SAMtools/SAMtools-0.1.18-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/s/SAMtools/SAMtools-0.1.18-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/s/SAMtools/SAMtools-0.1.18-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/s/SAMtools/SAMtools-0.1.18-ictce-4.0.6.eb index b9570c368a..3a8baa0737 100644 --- a/easybuild/easyconfigs/__archive__/s/SAMtools/SAMtools-0.1.18-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/s/SAMtools/SAMtools-0.1.18-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/s/SOAPdenovo/SOAPdenovo-1.05-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/s/SOAPdenovo/SOAPdenovo-1.05-goalf-1.1.0-no-OFED.eb index 8da8e28b17..336f9b970c 100644 --- a/easybuild/easyconfigs/__archive__/s/SOAPdenovo/SOAPdenovo-1.05-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/s/SOAPdenovo/SOAPdenovo-1.05-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/s/SOAPdenovo/SOAPdenovo-1.05-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/s/SOAPdenovo/SOAPdenovo-1.05-ictce-4.0.6.eb index 3fda9e525f..9210bc4b2a 100644 --- a/easybuild/easyconfigs/__archive__/s/SOAPdenovo/SOAPdenovo-1.05-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/s/SOAPdenovo/SOAPdenovo-1.05-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/s/Scalasca/Scalasca-1.4.3-gompi-1.4.12-no-OFED.eb b/easybuild/easyconfigs/__archive__/s/Scalasca/Scalasca-1.4.3-gompi-1.4.12-no-OFED.eb index 26b61def41..b264014712 100644 --- a/easybuild/easyconfigs/__archive__/s/Scalasca/Scalasca-1.4.3-gompi-1.4.12-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/s/Scalasca/Scalasca-1.4.3-gompi-1.4.12-no-OFED.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/__archive__/s/Scalasca/Scalasca-2.0-gompi-1.4.12-no-OFED.eb b/easybuild/easyconfigs/__archive__/s/Scalasca/Scalasca-2.0-gompi-1.4.12-no-OFED.eb index b4c09a0c49..a6bb75721d 100644 --- a/easybuild/easyconfigs/__archive__/s/Scalasca/Scalasca-2.0-gompi-1.4.12-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/s/Scalasca/Scalasca-2.0-gompi-1.4.12-no-OFED.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/__archive__/s/Score-P/Score-P-1.2.1-gompi-1.4.12-no-OFED.eb b/easybuild/easyconfigs/__archive__/s/Score-P/Score-P-1.2.1-gompi-1.4.12-no-OFED.eb index 4c327fa96c..dbfcd3190c 100644 --- a/easybuild/easyconfigs/__archive__/s/Score-P/Score-P-1.2.1-gompi-1.4.12-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/s/Score-P/Score-P-1.2.1-gompi-1.4.12-no-OFED.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/__archive__/s/Stow/Stow-1.3.3-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/s/Stow/Stow-1.3.3-goalf-1.1.0-no-OFED.eb index 0d2c3773f8..7d558ac71a 100644 --- a/easybuild/easyconfigs/__archive__/s/Stow/Stow-1.3.3-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/s/Stow/Stow-1.3.3-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/s/Stow/Stow-1.3.3-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/s/Stow/Stow-1.3.3-ictce-4.0.6.eb index e7734dc526..4b640a501f 100644 --- a/easybuild/easyconfigs/__archive__/s/Stow/Stow-1.3.3-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/s/Stow/Stow-1.3.3-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/t/TAU/TAU-2.22.2-gompi-1.4.12-no-OFED.eb b/easybuild/easyconfigs/__archive__/t/TAU/TAU-2.22.2-gompi-1.4.12-no-OFED.eb index b8a2739b01..ccfd573f79 100644 --- a/easybuild/easyconfigs/__archive__/t/TAU/TAU-2.22.2-gompi-1.4.12-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/t/TAU/TAU-2.22.2-gompi-1.4.12-no-OFED.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/__archive__/t/Tar/Tar-1.26-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/t/Tar/Tar-1.26-goalf-1.1.0-no-OFED.eb index 9c40f2197e..70a6e42479 100644 --- a/easybuild/easyconfigs/__archive__/t/Tar/Tar-1.26-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/t/Tar/Tar-1.26-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright (c) 2012-2013 Cyprus Institute / CaSToRC # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/__archive__/t/Tar/Tar-1.26-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/t/Tar/Tar-1.26-ictce-4.0.6.eb index 79b6f833d1..76bcf79055 100644 --- a/easybuild/easyconfigs/__archive__/t/Tar/Tar-1.26-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/t/Tar/Tar-1.26-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright (c) 2012-2013 Cyprus Institute / CaSToRC # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/__archive__/t/TopHat/TopHat-2.0.4-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/t/TopHat/TopHat-2.0.4-goalf-1.1.0-no-OFED.eb index 2ba3b07819..9eecf23237 100644 --- a/easybuild/easyconfigs/__archive__/t/TopHat/TopHat-2.0.4-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/t/TopHat/TopHat-2.0.4-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/t/TopHat/TopHat-2.0.8-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/t/TopHat/TopHat-2.0.8-ictce-4.0.6.eb index 76567e2542..dcf1959131 100644 --- a/easybuild/easyconfigs/__archive__/t/TopHat/TopHat-2.0.8-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/t/TopHat/TopHat-2.0.8-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/t/tcsh/tcsh-6.18.01-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/t/tcsh/tcsh-6.18.01-goalf-1.1.0-no-OFED.eb index 66720a2d37..81bacb467e 100644 --- a/easybuild/easyconfigs/__archive__/t/tcsh/tcsh-6.18.01-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/t/tcsh/tcsh-6.18.01-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Computer Science and Communications Research Unit # Authors:: Valentin Plugaru diff --git a/easybuild/easyconfigs/__archive__/t/tcsh/tcsh-6.18.01-ictce-3.2.2.u3.eb b/easybuild/easyconfigs/__archive__/t/tcsh/tcsh-6.18.01-ictce-3.2.2.u3.eb index e8fe446e8b..dae024dd09 100644 --- a/easybuild/easyconfigs/__archive__/t/tcsh/tcsh-6.18.01-ictce-3.2.2.u3.eb +++ b/easybuild/easyconfigs/__archive__/t/tcsh/tcsh-6.18.01-ictce-3.2.2.u3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Computer Science and Communications Research Unit # Authors:: Valentin Plugaru diff --git a/easybuild/easyconfigs/__archive__/t/tcsh/tcsh-6.18.01-ictce-4.1.13.eb b/easybuild/easyconfigs/__archive__/t/tcsh/tcsh-6.18.01-ictce-4.1.13.eb index 42dc94a346..b878f2b439 100644 --- a/easybuild/easyconfigs/__archive__/t/tcsh/tcsh-6.18.01-ictce-4.1.13.eb +++ b/easybuild/easyconfigs/__archive__/t/tcsh/tcsh-6.18.01-ictce-4.1.13.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Computer Science and Communications Research Unit # Authors:: Valentin Plugaru diff --git a/easybuild/easyconfigs/__archive__/t/tcsh/tcsh-6.18.01-iqacml-3.7.3.eb b/easybuild/easyconfigs/__archive__/t/tcsh/tcsh-6.18.01-iqacml-3.7.3.eb index 37494982ed..a65b416429 100644 --- a/easybuild/easyconfigs/__archive__/t/tcsh/tcsh-6.18.01-iqacml-3.7.3.eb +++ b/easybuild/easyconfigs/__archive__/t/tcsh/tcsh-6.18.01-iqacml-3.7.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Computer Science and Communications Research Unit # Authors:: Valentin Plugaru diff --git a/easybuild/easyconfigs/__archive__/u/UDUNITS/UDUNITS-2.1.24-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/u/UDUNITS/UDUNITS-2.1.24-goalf-1.1.0-no-OFED.eb index a52aa694fc..bfa34ecda1 100644 --- a/easybuild/easyconfigs/__archive__/u/UDUNITS/UDUNITS-2.1.24-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/u/UDUNITS/UDUNITS-2.1.24-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg, Ghent University # Authors:: Fotis Georgatos , Kenneth Hoste (Ghent University) diff --git a/easybuild/easyconfigs/__archive__/u/UDUNITS/UDUNITS-2.1.24-ictce-3.2.2.u3.eb b/easybuild/easyconfigs/__archive__/u/UDUNITS/UDUNITS-2.1.24-ictce-3.2.2.u3.eb index b9d1c0a574..5c9413974d 100644 --- a/easybuild/easyconfigs/__archive__/u/UDUNITS/UDUNITS-2.1.24-ictce-3.2.2.u3.eb +++ b/easybuild/easyconfigs/__archive__/u/UDUNITS/UDUNITS-2.1.24-ictce-3.2.2.u3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg, Ghent University # Authors:: Fotis Georgatos , Kenneth Hoste (Ghent University) diff --git a/easybuild/easyconfigs/__archive__/u/UDUNITS/UDUNITS-2.1.24-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/u/UDUNITS/UDUNITS-2.1.24-ictce-4.0.6.eb index 7a9b90a956..a61ec089a4 100644 --- a/easybuild/easyconfigs/__archive__/u/UDUNITS/UDUNITS-2.1.24-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/u/UDUNITS/UDUNITS-2.1.24-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg, Ghent University # Authors:: Fotis Georgatos , Kenneth Hoste (Ghent University) diff --git a/easybuild/easyconfigs/__archive__/u/UDUNITS/UDUNITS-2.1.24-ictce-4.1.13.eb b/easybuild/easyconfigs/__archive__/u/UDUNITS/UDUNITS-2.1.24-ictce-4.1.13.eb index f166af2248..09c2b01c03 100644 --- a/easybuild/easyconfigs/__archive__/u/UDUNITS/UDUNITS-2.1.24-ictce-4.1.13.eb +++ b/easybuild/easyconfigs/__archive__/u/UDUNITS/UDUNITS-2.1.24-ictce-4.1.13.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg, Ghent University # Authors:: Fotis Georgatos , Kenneth Hoste (Ghent University) diff --git a/easybuild/easyconfigs/__archive__/u/UDUNITS/UDUNITS-2.1.24-iqacml-3.7.3.eb b/easybuild/easyconfigs/__archive__/u/UDUNITS/UDUNITS-2.1.24-iqacml-3.7.3.eb index 193e10df49..b2201ef04e 100644 --- a/easybuild/easyconfigs/__archive__/u/UDUNITS/UDUNITS-2.1.24-iqacml-3.7.3.eb +++ b/easybuild/easyconfigs/__archive__/u/UDUNITS/UDUNITS-2.1.24-iqacml-3.7.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg, Ghent University # Authors:: Fotis Georgatos , Kenneth Hoste (Ghent University) diff --git a/easybuild/easyconfigs/__archive__/v/VTK/VTK-5.10.1-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/v/VTK/VTK-5.10.1-goalf-1.1.0-no-OFED.eb index d0373056bb..34a7df2c71 100644 --- a/easybuild/easyconfigs/__archive__/v/VTK/VTK-5.10.1-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/v/VTK/VTK-5.10.1-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/v/VTK/VTK-5.10.1-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/v/VTK/VTK-5.10.1-ictce-4.0.6.eb index 2a354f444a..64d04fb6e5 100644 --- a/easybuild/easyconfigs/__archive__/v/VTK/VTK-5.10.1-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/v/VTK/VTK-5.10.1-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/v/VTK/VTK-6.0.0-ictce-4.1.13-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/v/VTK/VTK-6.0.0-ictce-4.1.13-Python-2.7.3.eb index fb24b1b64c..02603d970f 100644 --- a/easybuild/easyconfigs/__archive__/v/VTK/VTK-6.0.0-ictce-4.1.13-Python-2.7.3.eb +++ b/easybuild/easyconfigs/__archive__/v/VTK/VTK-6.0.0-ictce-4.1.13-Python-2.7.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.8.1-cgmpolf-1.1.6.eb b/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.8.1-cgmpolf-1.1.6.eb index 831d945988..f5fe5e11ed 100644 --- a/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.8.1-cgmpolf-1.1.6.eb +++ b/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.8.1-cgmpolf-1.1.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.8.1-cgmvolf-1.1.12rc1.eb b/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.8.1-cgmvolf-1.1.12rc1.eb index 4ef81eed36..1f1889615e 100644 --- a/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.8.1-cgmvolf-1.1.12rc1.eb +++ b/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.8.1-cgmvolf-1.1.12rc1.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.8.1-cgmvolf-1.2.7.eb b/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.8.1-cgmvolf-1.2.7.eb index 07d51ab2d9..cc1196047f 100644 --- a/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.8.1-cgmvolf-1.2.7.eb +++ b/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.8.1-cgmvolf-1.2.7.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.8.1-cgoolf-1.1.7.eb b/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.8.1-cgoolf-1.1.7.eb index b01834e9d7..a9f0386228 100644 --- a/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.8.1-cgoolf-1.1.7.eb +++ b/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.8.1-cgoolf-1.1.7.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.8.1-gmvolf-1.7.12.eb b/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.8.1-gmvolf-1.7.12.eb index 9b14309ef1..1243dcfcb8 100644 --- a/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.8.1-gmvolf-1.7.12.eb +++ b/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.8.1-gmvolf-1.7.12.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.8.1-gmvolf-1.7.12rc1.eb b/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.8.1-gmvolf-1.7.12rc1.eb index 6b6c92bf80..32ef6ee8bd 100644 --- a/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.8.1-gmvolf-1.7.12rc1.eb +++ b/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.8.1-gmvolf-1.7.12rc1.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.8.1-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.8.1-goalf-1.1.0-no-OFED.eb index 87fdb08561..fd8cedb7a9 100644 --- a/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.8.1-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.8.1-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.9.0-goalf-1.5.12-no-OFED.eb b/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.9.0-goalf-1.5.12-no-OFED.eb index 3a3d16b550..4f5a351349 100644 --- a/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.9.0-goalf-1.5.12-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/v/Valgrind/Valgrind-3.9.0-goalf-1.5.12-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA, Ghent University # Authors:: Fotis Georgatos , Ward Poelmans diff --git a/easybuild/easyconfigs/__archive__/v/VampirTrace/VampirTrace-5.14.4-gompi-1.4.12-no-OFED.eb b/easybuild/easyconfigs/__archive__/v/VampirTrace/VampirTrace-5.14.4-gompi-1.4.12-no-OFED.eb index 02bc1f21cc..4f6d2fd3db 100644 --- a/easybuild/easyconfigs/__archive__/v/VampirTrace/VampirTrace-5.14.4-gompi-1.4.12-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/v/VampirTrace/VampirTrace-5.14.4-gompi-1.4.12-no-OFED.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/__archive__/v/Velvet/Velvet-1.2.07-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/v/Velvet/Velvet-1.2.07-goalf-1.1.0-no-OFED.eb index 898d4cda78..9c6279fddf 100644 --- a/easybuild/easyconfigs/__archive__/v/Velvet/Velvet-1.2.07-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/v/Velvet/Velvet-1.2.07-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/v/Velvet/Velvet-1.2.07-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/v/Velvet/Velvet-1.2.07-ictce-4.0.6.eb index 96163b744c..3179b97658 100644 --- a/easybuild/easyconfigs/__archive__/v/Velvet/Velvet-1.2.07-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/v/Velvet/Velvet-1.2.07-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/v/ViennaRNA/ViennaRNA-2.0.7-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/v/ViennaRNA/ViennaRNA-2.0.7-goalf-1.1.0-no-OFED.eb index 795671412f..e2b533028e 100644 --- a/easybuild/easyconfigs/__archive__/v/ViennaRNA/ViennaRNA-2.0.7-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/v/ViennaRNA/ViennaRNA-2.0.7-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/v/ViennaRNA/ViennaRNA-2.0.7-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/v/ViennaRNA/ViennaRNA-2.0.7-ictce-4.0.6.eb index b7723d7af3..c767b5e210 100644 --- a/easybuild/easyconfigs/__archive__/v/ViennaRNA/ViennaRNA-2.0.7-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/v/ViennaRNA/ViennaRNA-2.0.7-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/v/Viper/Viper-1.0.0-goalf-1.1.0-no-OFED-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/v/Viper/Viper-1.0.0-goalf-1.1.0-no-OFED-Python-2.7.3.eb index 66555db5aa..19e0844ca8 100644 --- a/easybuild/easyconfigs/__archive__/v/Viper/Viper-1.0.0-goalf-1.1.0-no-OFED-Python-2.7.3.eb +++ b/easybuild/easyconfigs/__archive__/v/Viper/Viper-1.0.0-goalf-1.1.0-no-OFED-Python-2.7.3.eb @@ -22,7 +22,7 @@ versionsuffix = "-%s-%s" % (python, pythonversion) dependencies = [(python, pythonversion)] # hack, 'import viper' fails because VTK and numpy dependencies are missing -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/100 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/100 options = {'modulename': 'os'} sanity_check_paths = { diff --git a/easybuild/easyconfigs/__archive__/v/Viper/Viper-1.0.0-ictce-4.0.6-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/v/Viper/Viper-1.0.0-ictce-4.0.6-Python-2.7.3.eb index 031d7e98f1..0800e6ccb7 100644 --- a/easybuild/easyconfigs/__archive__/v/Viper/Viper-1.0.0-ictce-4.0.6-Python-2.7.3.eb +++ b/easybuild/easyconfigs/__archive__/v/Viper/Viper-1.0.0-ictce-4.0.6-Python-2.7.3.eb @@ -22,7 +22,7 @@ versionsuffix = "-%s-%s" % (python, pythonversion) dependencies = [(python, pythonversion)] # hack, 'import viper' fails because VTK and numpy dependencies are missing -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/100 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/100 options = {'modulename': 'os'} sanity_check_paths = { diff --git a/easybuild/easyconfigs/__archive__/w/wiki2beamer/wiki2beamer-0.9.5-goalf-1.1.0-no-OFED-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/w/wiki2beamer/wiki2beamer-0.9.5-goalf-1.1.0-no-OFED-Python-2.7.3.eb index e43780a277..daf144962d 100644 --- a/easybuild/easyconfigs/__archive__/w/wiki2beamer/wiki2beamer-0.9.5-goalf-1.1.0-no-OFED-Python-2.7.3.eb +++ b/easybuild/easyconfigs/__archive__/w/wiki2beamer/wiki2beamer-0.9.5-goalf-1.1.0-no-OFED-Python-2.7.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/y/YAML-Syck/YAML-Syck-1.27-ictce-4.1.13-Perl-5.16.3.eb b/easybuild/easyconfigs/__archive__/y/YAML-Syck/YAML-Syck-1.27-ictce-4.1.13-Perl-5.16.3.eb index 5efafeb0f0..405a8b5fde 100644 --- a/easybuild/easyconfigs/__archive__/y/YAML-Syck/YAML-Syck-1.27-ictce-4.1.13-Perl-5.16.3.eb +++ b/easybuild/easyconfigs/__archive__/y/YAML-Syck/YAML-Syck-1.27-ictce-4.1.13-Perl-5.16.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013 Uni.Lu/LCSB # Authors:: Nils Christian diff --git a/easybuild/easyconfigs/__archive__/y/Yasm/Yasm-1.2.0-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/y/Yasm/Yasm-1.2.0-goalf-1.1.0-no-OFED.eb index e2bfa1c5fb..56100a1cb5 100644 --- a/easybuild/easyconfigs/__archive__/y/Yasm/Yasm-1.2.0-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/y/Yasm/Yasm-1.2.0-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/y/Yasm/Yasm-1.2.0-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/y/Yasm/Yasm-1.2.0-ictce-4.0.6.eb index 5b66cf87a7..70d7963092 100644 --- a/easybuild/easyconfigs/__archive__/y/Yasm/Yasm-1.2.0-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/y/Yasm/Yasm-1.2.0-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/z/zsync/zsync-0.6.2-goalf-1.1.0-no-OFED.eb b/easybuild/easyconfigs/__archive__/z/zsync/zsync-0.6.2-goalf-1.1.0-no-OFED.eb index b70a682d96..c293d54a8c 100644 --- a/easybuild/easyconfigs/__archive__/z/zsync/zsync-0.6.2-goalf-1.1.0-no-OFED.eb +++ b/easybuild/easyconfigs/__archive__/z/zsync/zsync-0.6.2-goalf-1.1.0-no-OFED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/__archive__/z/zsync/zsync-0.6.2-ictce-4.0.6.eb b/easybuild/easyconfigs/__archive__/z/zsync/zsync-0.6.2-ictce-4.0.6.eb index 9a77005cb5..0719af199a 100644 --- a/easybuild/easyconfigs/__archive__/z/zsync/zsync-0.6.2-ictce-4.0.6.eb +++ b/easybuild/easyconfigs/__archive__/z/zsync/zsync-0.6.2-ictce-4.0.6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/ABINIT/ABINIT-7.0.3-x86_64_linux_gnu4.5.eb b/easybuild/easyconfigs/a/ABINIT/ABINIT-7.0.3-x86_64_linux_gnu4.5.eb index 0674deea91..4802aa3c15 100644 --- a/easybuild/easyconfigs/a/ABINIT/ABINIT-7.0.3-x86_64_linux_gnu4.5.eb +++ b/easybuild/easyconfigs/a/ABINIT/ABINIT-7.0.3-x86_64_linux_gnu4.5.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/ABINIT/ABINIT-7.0.5-x86_64_linux_gnu4.5.eb b/easybuild/easyconfigs/a/ABINIT/ABINIT-7.0.5-x86_64_linux_gnu4.5.eb index f6e72f3fb7..bb745faa33 100644 --- a/easybuild/easyconfigs/a/ABINIT/ABINIT-7.0.5-x86_64_linux_gnu4.5.eb +++ b/easybuild/easyconfigs/a/ABINIT/ABINIT-7.0.5-x86_64_linux_gnu4.5.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/ABINIT/ABINIT-7.2.1-x86_64_linux_gnu4.5.eb b/easybuild/easyconfigs/a/ABINIT/ABINIT-7.2.1-x86_64_linux_gnu4.5.eb index a5a53cf83d..1d942af521 100644 --- a/easybuild/easyconfigs/a/ABINIT/ABINIT-7.2.1-x86_64_linux_gnu4.5.eb +++ b/easybuild/easyconfigs/a/ABINIT/ABINIT-7.2.1-x86_64_linux_gnu4.5.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/ABINIT/ABINIT-7.4.3-goolf-1.4.10-ETSF_IO-1.0.4.eb b/easybuild/easyconfigs/a/ABINIT/ABINIT-7.4.3-goolf-1.4.10-ETSF_IO-1.0.4.eb index f598583eb7..30945704b7 100644 --- a/easybuild/easyconfigs/a/ABINIT/ABINIT-7.4.3-goolf-1.4.10-ETSF_IO-1.0.4.eb +++ b/easybuild/easyconfigs/a/ABINIT/ABINIT-7.4.3-goolf-1.4.10-ETSF_IO-1.0.4.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2014 The Cyprus Institute # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/a/ABySS/ABySS-1.3.4-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/a/ABySS/ABySS-1.3.4-goolf-1.4.10-Python-2.7.3.eb index 6d7dc91575..e205e2d8ac 100644 --- a/easybuild/easyconfigs/a/ABySS/ABySS-1.3.4-goolf-1.4.10-Python-2.7.3.eb +++ b/easybuild/easyconfigs/a/ABySS/ABySS-1.3.4-goolf-1.4.10-Python-2.7.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/ABySS/ABySS-1.3.4-ictce-5.3.0-Python-2.7.3.eb b/easybuild/easyconfigs/a/ABySS/ABySS-1.3.4-ictce-5.3.0-Python-2.7.3.eb index f7709440c3..5a1d132b7c 100644 --- a/easybuild/easyconfigs/a/ABySS/ABySS-1.3.4-ictce-5.3.0-Python-2.7.3.eb +++ b/easybuild/easyconfigs/a/ABySS/ABySS-1.3.4-ictce-5.3.0-Python-2.7.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/ABySS/ABySS-1.3.6-goolf-1.4.10-Python-2.7.5.eb b/easybuild/easyconfigs/a/ABySS/ABySS-1.3.6-goolf-1.4.10-Python-2.7.5.eb index 93b76ef8be..4ebae49b2a 100644 --- a/easybuild/easyconfigs/a/ABySS/ABySS-1.3.6-goolf-1.4.10-Python-2.7.5.eb +++ b/easybuild/easyconfigs/a/ABySS/ABySS-1.3.6-goolf-1.4.10-Python-2.7.5.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/ABySS/ABySS-1.3.7-intel-2015a-Python-2.7.9.eb b/easybuild/easyconfigs/a/ABySS/ABySS-1.3.7-intel-2015a-Python-2.7.9.eb index 6b5c1c6d52..a55aa9d2cf 100644 --- a/easybuild/easyconfigs/a/ABySS/ABySS-1.3.7-intel-2015a-Python-2.7.9.eb +++ b/easybuild/easyconfigs/a/ABySS/ABySS-1.3.7-intel-2015a-Python-2.7.9.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/ABySS/ABySS-1.5.2-goolf-1.4.10.eb b/easybuild/easyconfigs/a/ABySS/ABySS-1.5.2-goolf-1.4.10.eb index c055778c8e..5995eab527 100644 --- a/easybuild/easyconfigs/a/ABySS/ABySS-1.5.2-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/a/ABySS/ABySS-1.5.2-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Maxime Schmitt , Fotis Georgatos diff --git a/easybuild/easyconfigs/a/ABySS/ABySS-1.9.0-foss-2016a.eb b/easybuild/easyconfigs/a/ABySS/ABySS-1.9.0-foss-2016a.eb index aa09a6e789..5bd2d17aaf 100644 --- a/easybuild/easyconfigs/a/ABySS/ABySS-1.9.0-foss-2016a.eb +++ b/easybuild/easyconfigs/a/ABySS/ABySS-1.9.0-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Maxime Schmitt , Fotis Georgatos diff --git a/easybuild/easyconfigs/a/AFNI/AFNI-linux_openmp_64-goolf-1.5.14-20141023.eb b/easybuild/easyconfigs/a/AFNI/AFNI-linux_openmp_64-goolf-1.5.14-20141023.eb index c680dc7f26..d880a919fb 100644 --- a/easybuild/easyconfigs/a/AFNI/AFNI-linux_openmp_64-goolf-1.5.14-20141023.eb +++ b/easybuild/easyconfigs/a/AFNI/AFNI-linux_openmp_64-goolf-1.5.14-20141023.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Bart Verleye # Center for eResearch, Auckland easyblock = 'PackedBinary' diff --git a/easybuild/easyconfigs/a/AFNI/AFNI-linux_openmp_64-intel-2015a-20141023.eb b/easybuild/easyconfigs/a/AFNI/AFNI-linux_openmp_64-intel-2015a-20141023.eb index f082a4fbeb..686bb45434 100644 --- a/easybuild/easyconfigs/a/AFNI/AFNI-linux_openmp_64-intel-2015a-20141023.eb +++ b/easybuild/easyconfigs/a/AFNI/AFNI-linux_openmp_64-intel-2015a-20141023.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Bart Verleye # Center for eResearch, Auckland easyblock = 'PackedBinary' diff --git a/easybuild/easyconfigs/a/ALLPATHS-LG/ALLPATHS-LG-46968-goolf-1.4.10.eb b/easybuild/easyconfigs/a/ALLPATHS-LG/ALLPATHS-LG-46968-goolf-1.4.10.eb index 6fb42921f6..33c6b93585 100644 --- a/easybuild/easyconfigs/a/ALLPATHS-LG/ALLPATHS-LG-46968-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/a/ALLPATHS-LG/ALLPATHS-LG-46968-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , Thekla Loizou , diff --git a/easybuild/easyconfigs/a/ALLPATHS-LG/ALLPATHS-LG-52488-foss-2016a.eb b/easybuild/easyconfigs/a/ALLPATHS-LG/ALLPATHS-LG-52488-foss-2016a.eb index 0227efebd7..27afe82b2d 100755 --- a/easybuild/easyconfigs/a/ALLPATHS-LG/ALLPATHS-LG-52488-foss-2016a.eb +++ b/easybuild/easyconfigs/a/ALLPATHS-LG/ALLPATHS-LG-52488-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , Thekla Loizou , diff --git a/easybuild/easyconfigs/a/AMOS/AMOS-3.1.0-goolf-1.4.10.eb b/easybuild/easyconfigs/a/AMOS/AMOS-3.1.0-goolf-1.4.10.eb index e1a0148b75..440bc7a909 100644 --- a/easybuild/easyconfigs/a/AMOS/AMOS-3.1.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/a/AMOS/AMOS-3.1.0-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/a/AMOS/AMOS-3.1.0-ictce-5.3.0.eb b/easybuild/easyconfigs/a/AMOS/AMOS-3.1.0-ictce-5.3.0.eb index 7fce76229e..d767191d1b 100644 --- a/easybuild/easyconfigs/a/AMOS/AMOS-3.1.0-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/a/AMOS/AMOS-3.1.0-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/a/APBS/APBS-1.4-linux-static-x86_64.eb b/easybuild/easyconfigs/a/APBS/APBS-1.4-linux-static-x86_64.eb index 730a5cb604..53c4769900 100644 --- a/easybuild/easyconfigs/a/APBS/APBS-1.4-linux-static-x86_64.eb +++ b/easybuild/easyconfigs/a/APBS/APBS-1.4-linux-static-x86_64.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/a/ASHS/ASHS-rev103_20140612.eb b/easybuild/easyconfigs/a/ASHS/ASHS-rev103_20140612.eb index a251f6e6b4..86e01377a6 100644 --- a/easybuild/easyconfigs/a/ASHS/ASHS-rev103_20140612.eb +++ b/easybuild/easyconfigs/a/ASHS/ASHS-rev103_20140612.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Ravi Tripathi # Email: ravi89@uab.edu diff --git a/easybuild/easyconfigs/a/AdapterRemoval/AdapterRemoval-2.2.0-foss-2016b.eb b/easybuild/easyconfigs/a/AdapterRemoval/AdapterRemoval-2.2.0-foss-2016b.eb index 738b03c0ca..50e7938a22 100644 --- a/easybuild/easyconfigs/a/AdapterRemoval/AdapterRemoval-2.2.0-foss-2016b.eb +++ b/easybuild/easyconfigs/a/AdapterRemoval/AdapterRemoval-2.2.0-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild easyblock = 'MakeCp' diff --git a/easybuild/easyconfigs/a/Aspera-CLI/Aspera-CLI-3.7.2.354.010c3b8.eb b/easybuild/easyconfigs/a/Aspera-CLI/Aspera-CLI-3.7.2.354.010c3b8.eb index 576043e6dd..4f0e52ebff 100644 --- a/easybuild/easyconfigs/a/Aspera-CLI/Aspera-CLI-3.7.2.354.010c3b8.eb +++ b/easybuild/easyconfigs/a/Aspera-CLI/Aspera-CLI-3.7.2.354.010c3b8.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Author: Daniel D. Kinnamon # Division of Human Genetics # The Ohio State University Wexner Medical Center diff --git a/easybuild/easyconfigs/a/AutoDock_Vina/AutoDock_Vina-1.1.2_linux_x86.eb b/easybuild/easyconfigs/a/AutoDock_Vina/AutoDock_Vina-1.1.2_linux_x86.eb index 98f8c2275a..e4f561f624 100644 --- a/easybuild/easyconfigs/a/AutoDock_Vina/AutoDock_Vina-1.1.2_linux_x86.eb +++ b/easybuild/easyconfigs/a/AutoDock_Vina/AutoDock_Vina-1.1.2_linux_x86.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.13.4-goolf-1.4.10.eb b/easybuild/easyconfigs/a/Automake/Automake-1.13.4-goolf-1.4.10.eb index 11720186ff..d45cd6848d 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.13.4-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.13.4-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.13.4-ictce-5.3.0.eb b/easybuild/easyconfigs/a/Automake/Automake-1.13.4-ictce-5.3.0.eb index b9e7f68389..31955d8aed 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.13.4-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.13.4-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.13.4-ictce-5.5.0.eb b/easybuild/easyconfigs/a/Automake/Automake-1.13.4-ictce-5.5.0.eb index 5661ddb517..30d9cf6f3a 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.13.4-ictce-5.5.0.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.13.4-ictce-5.5.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Authors:: Alan O'Cais # $Id$ diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.14-GCC-4.8.2.eb b/easybuild/easyconfigs/a/Automake/Automake-1.14-GCC-4.8.2.eb index bec66dfd3d..07a0d34525 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.14-GCC-4.8.2.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.14-GCC-4.8.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.14-ictce-5.3.0.eb b/easybuild/easyconfigs/a/Automake/Automake-1.14-ictce-5.3.0.eb index 2e5a33ea9b..28155619ee 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.14-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.14-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.14-ictce-5.5.0.eb b/easybuild/easyconfigs/a/Automake/Automake-1.14-ictce-5.5.0.eb index 1ef76d9727..eb44e9f250 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.14-ictce-5.5.0.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.14-ictce-5.5.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.14-intel-2016a.eb b/easybuild/easyconfigs/a/Automake/Automake-1.14-intel-2016a.eb index a1f5954bb7..f6806921ee 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.14-intel-2016a.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.14-intel-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.14.1-GCC-4.8.2.eb b/easybuild/easyconfigs/a/Automake/Automake-1.14.1-GCC-4.8.2.eb index 3a06e84989..8374474780 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.14.1-GCC-4.8.2.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.14.1-GCC-4.8.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15-GCC-4.7.2.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15-GCC-4.7.2.eb index 05705b029e..9beb6f5545 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.15-GCC-4.7.2.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15-GCC-4.7.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15-GCC-4.8.4.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15-GCC-4.8.4.eb index bf119a1eaf..661344dafe 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.15-GCC-4.8.4.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15-GCC-4.8.4.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15-GCC-4.9.2.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15-GCC-4.9.2.eb index b24d010c0a..5839e4ae64 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.15-GCC-4.9.2.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15-GCC-4.9.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15-GCC-4.9.3-2.25.eb index a37c1d9e3b..e5248806a5 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.15-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15-GCC-4.9.3-2.25.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15-GCC-5.4.0-2.26.eb index e42ff28556..de29b041a3 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.15-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15-GCC-5.4.0-2.26.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15-GCCcore-4.9.3.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15-GCCcore-4.9.3.eb index 5927ea856a..b5a5bec1bd 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.15-GCCcore-4.9.3.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15-GCCcore-4.9.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15-GCCcore-5.4.0.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15-GCCcore-5.4.0.eb index 0d4c530534..1e6da1f343 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.15-GCCcore-5.4.0.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15-GCCcore-5.4.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15-GCCcore-6.3.0.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15-GCCcore-6.3.0.eb index 304170650f..e7a39e24d8 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.15-GCCcore-6.3.0.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15-GCCcore-6.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15-GNU-4.9.2-2.25.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15-GNU-4.9.2-2.25.eb index f0e456c431..766349c4fd 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.15-GNU-4.9.2-2.25.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15-GNU-4.9.2-2.25.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15-GNU-4.9.3-2.25.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15-GNU-4.9.3-2.25.eb index 1c089451d8..d97b8a59c7 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.15-GNU-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15-GNU-4.9.3-2.25.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15-GNU-5.1.0-2.25.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15-GNU-5.1.0-2.25.eb index 1d63ee839d..7cce783015 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.15-GNU-5.1.0-2.25.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15-GNU-5.1.0-2.25.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15-foss-2015a.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15-foss-2015a.eb index 7303c3d70e..0c1ee484bc 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.15-foss-2015a.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15-foss-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15-foss-2015b.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15-foss-2015b.eb index 543e7a0ba7..d06c3b5cb6 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.15-foss-2015b.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15-foss-2015b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15-foss-2016.04.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15-foss-2016.04.eb index 40213b047b..21d3b4aab0 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.15-foss-2016.04.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15-foss-2016.04.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15-foss-2016a.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15-foss-2016a.eb index f73c4759ee..65fc481bf4 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.15-foss-2016a.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15-foss-2016b.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15-foss-2016b.eb index 5c1e645dea..c72d3ad8d7 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.15-foss-2016b.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15-foss-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15-gimkl-2.11.5.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15-gimkl-2.11.5.eb index d521a6ebe2..49bcde6b70 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.15-gimkl-2.11.5.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15-gimkl-2.11.5.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15-ictce-5.3.0.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15-ictce-5.3.0.eb index cc76e86a61..3b84dabf7b 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.15-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15-ictce-5.5.0.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15-ictce-5.5.0.eb index 25677b6f64..a8793fcf5f 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.15-ictce-5.5.0.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15-ictce-5.5.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15-intel-2015a.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15-intel-2015a.eb index 3a528809f4..a3cddb527c 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.15-intel-2015a.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15-intel-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15-intel-2015b.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15-intel-2015b.eb index 8a059d28e6..67f074a5f9 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.15-intel-2015b.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15-intel-2015b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15-intel-2016.02-GCC-4.9.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15-intel-2016.02-GCC-4.9.eb index 84750fffa9..c7071ba16e 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.15-intel-2016.02-GCC-4.9.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15-intel-2016.02-GCC-4.9.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15-intel-2016a.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15-intel-2016a.eb index 06fbc9d74b..6ece7398d5 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.15-intel-2016a.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15-intel-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15-intel-2016b.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15-intel-2016b.eb index 2a6c180878..d3009f88e2 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.15-intel-2016b.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15-intel-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15-iomkl-2016.07.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15-iomkl-2016.07.eb index d787cbd50b..88bed3e485 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.15-iomkl-2016.07.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15-iomkl-2016.07.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15-iomkl-2016.09-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15-iomkl-2016.09-GCC-4.9.3-2.25.eb index c8260533e6..97cf835b9b 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.15-iomkl-2016.09-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15-iomkl-2016.09-GCC-4.9.3-2.25.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15.eb index 155ccd39aa..49b03cdda9 100644 --- a/easybuild/easyconfigs/a/Automake/Automake-1.15.eb +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/a2ps/a2ps-4.14-goolf-1.4.10.eb b/easybuild/easyconfigs/a/a2ps/a2ps-4.14-goolf-1.4.10.eb index 97e5c8330b..43ebff1094 100644 --- a/easybuild/easyconfigs/a/a2ps/a2ps-4.14-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/a/a2ps/a2ps-4.14-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/a2ps/a2ps-4.14-ictce-5.3.0.eb b/easybuild/easyconfigs/a/a2ps/a2ps-4.14-ictce-5.3.0.eb index efd5845e70..7c34cc881b 100644 --- a/easybuild/easyconfigs/a/a2ps/a2ps-4.14-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/a/a2ps/a2ps-4.14-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/annovar/annovar-2016Feb01-foss-2016a-Perl-5.22.1.eb b/easybuild/easyconfigs/a/annovar/annovar-2016Feb01-foss-2016a-Perl-5.22.1.eb index e14e022891..92edb6bb67 100644 --- a/easybuild/easyconfigs/a/annovar/annovar-2016Feb01-foss-2016a-Perl-5.22.1.eb +++ b/easybuild/easyconfigs/a/annovar/annovar-2016Feb01-foss-2016a-Perl-5.22.1.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Modified by Adam Huffman # The Francis Crick Institute diff --git a/easybuild/easyconfigs/a/argtable/argtable-2.13-foss-2015b.eb b/easybuild/easyconfigs/a/argtable/argtable-2.13-foss-2015b.eb index 251023a5bd..92c65de8d1 100644 --- a/easybuild/easyconfigs/a/argtable/argtable-2.13-foss-2015b.eb +++ b/easybuild/easyconfigs/a/argtable/argtable-2.13-foss-2015b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/a/argtable/argtable-2.13-foss-2016b.eb b/easybuild/easyconfigs/a/argtable/argtable-2.13-foss-2016b.eb index ec3422f109..2eb391926f 100644 --- a/easybuild/easyconfigs/a/argtable/argtable-2.13-foss-2016b.eb +++ b/easybuild/easyconfigs/a/argtable/argtable-2.13-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/a/argtable/argtable-2.13-goolf-1.4.10.eb b/easybuild/easyconfigs/a/argtable/argtable-2.13-goolf-1.4.10.eb index 5b65e6e0a5..aa880de8ec 100644 --- a/easybuild/easyconfigs/a/argtable/argtable-2.13-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/a/argtable/argtable-2.13-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/a/aria2/aria2-1.15.1-goolf-1.4.10.eb b/easybuild/easyconfigs/a/aria2/aria2-1.15.1-goolf-1.4.10.eb index 7d1302187b..b870897d26 100644 --- a/easybuild/easyconfigs/a/aria2/aria2-1.15.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/a/aria2/aria2-1.15.1-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/a/aria2/aria2-1.15.1-ictce-5.3.0.eb b/easybuild/easyconfigs/a/aria2/aria2-1.15.1-ictce-5.3.0.eb index f4d08974f2..5cbd7bb040 100644 --- a/easybuild/easyconfigs/a/aria2/aria2-1.15.1-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/a/aria2/aria2-1.15.1-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/b/BCFtools/BCFtools-1.1-goolf-1.4.10.eb b/easybuild/easyconfigs/b/BCFtools/BCFtools-1.1-goolf-1.4.10.eb index b307dca6af..b404abc90b 100644 --- a/easybuild/easyconfigs/b/BCFtools/BCFtools-1.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/BCFtools/BCFtools-1.1-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/BCFtools/BCFtools-1.3.1-goolf-1.7.20.eb b/easybuild/easyconfigs/b/BCFtools/BCFtools-1.3.1-goolf-1.7.20.eb index d1c00e81a6..e0f7223e0f 100644 --- a/easybuild/easyconfigs/b/BCFtools/BCFtools-1.3.1-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/b/BCFtools/BCFtools-1.3.1-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/b/BEDOPS/BEDOPS-2.4.1-GCC-4.8.4.eb b/easybuild/easyconfigs/b/BEDOPS/BEDOPS-2.4.1-GCC-4.8.4.eb index 4ed43caefd..4efc6b0c7d 100644 --- a/easybuild/easyconfigs/b/BEDOPS/BEDOPS-2.4.1-GCC-4.8.4.eb +++ b/easybuild/easyconfigs/b/BEDOPS/BEDOPS-2.4.1-GCC-4.8.4.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/BEDOPS/BEDOPS-2.4.2-GCC-4.8.2.eb b/easybuild/easyconfigs/b/BEDOPS/BEDOPS-2.4.2-GCC-4.8.2.eb index ffd5f8b8e6..dc4740370e 100644 --- a/easybuild/easyconfigs/b/BEDOPS/BEDOPS-2.4.2-GCC-4.8.2.eb +++ b/easybuild/easyconfigs/b/BEDOPS/BEDOPS-2.4.2-GCC-4.8.2.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez, Wiktor Jurkowski # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/BEDOPS/BEDOPS-2.4.26.eb b/easybuild/easyconfigs/b/BEDOPS/BEDOPS-2.4.26.eb index b96f53227b..8a52cdc728 100644 --- a/easybuild/easyconfigs/b/BEDOPS/BEDOPS-2.4.26.eb +++ b/easybuild/easyconfigs/b/BEDOPS/BEDOPS-2.4.26.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild easyblock = 'Tarball' diff --git a/easybuild/easyconfigs/b/BEEF/BEEF-0.1.1-r16-intel-2015a.eb b/easybuild/easyconfigs/b/BEEF/BEEF-0.1.1-r16-intel-2015a.eb index 0f53e3f3c3..ffdd4549c8 100644 --- a/easybuild/easyconfigs/b/BEEF/BEEF-0.1.1-r16-intel-2015a.eb +++ b/easybuild/easyconfigs/b/BEEF/BEEF-0.1.1-r16-intel-2015a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Benjamin P. Roberts # New Zealand eScience Infrastructure # The University of Auckland, Auckland, New Zealand diff --git a/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-goolf-1.4.10.eb b/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-goolf-1.4.10.eb index a4739e8c8e..c18f95594e 100644 --- a/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-goolf-1.7.20.eb b/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-goolf-1.7.20.eb index 76e9215e88..f6de18a805 100644 --- a/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-goolf-1.7.20.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-ictce-5.3.0.eb b/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-ictce-5.3.0.eb index 5bbf580366..14232999d6 100644 --- a/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/b/BH/BH-1.60.0-1-foss-2015b-R-3.2.3.eb b/easybuild/easyconfigs/b/BH/BH-1.60.0-1-foss-2015b-R-3.2.3.eb index 16cdd37dda..c0f5cd84bc 100644 --- a/easybuild/easyconfigs/b/BH/BH-1.60.0-1-foss-2015b-R-3.2.3.eb +++ b/easybuild/easyconfigs/b/BH/BH-1.60.0-1-foss-2015b-R-3.2.3.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Author: Adam Huffman # The Francis Crick Institute diff --git a/easybuild/easyconfigs/b/BLASR/BLASR-2.1-goolf-1.4.10.eb b/easybuild/easyconfigs/b/BLASR/BLASR-2.1-goolf-1.4.10.eb index 1461dc4f22..a65d17b813 100644 --- a/easybuild/easyconfigs/b/BLASR/BLASR-2.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/BLASR/BLASR-2.1-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/BLASR/BLASR-2.2-intel-2016b.eb b/easybuild/easyconfigs/b/BLASR/BLASR-2.2-intel-2016b.eb index d31c4ec289..eaea479586 100644 --- a/easybuild/easyconfigs/b/BLASR/BLASR-2.2-intel-2016b.eb +++ b/easybuild/easyconfigs/b/BLASR/BLASR-2.2-intel-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.27-goolf-1.4.10.eb b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.27-goolf-1.4.10.eb index d441a3b6be..94be2abbf8 100644 --- a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.27-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.27-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.28-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.28-goolf-1.4.10-Python-2.7.3.eb index f3f69270a5..b6365defe3 100644 --- a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.28-goolf-1.4.10-Python-2.7.3.eb +++ b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.28-goolf-1.4.10-Python-2.7.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos , Kenneth Hoste (UGent) diff --git a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.28-goolf-1.4.10.eb b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.28-goolf-1.4.10.eb index 0da49b06b6..4d988cb0cd 100644 --- a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.28-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.28-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos , Kenneth Hoste (UGent) diff --git a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.28-ictce-5.3.0-Python-2.7.3.eb b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.28-ictce-5.3.0-Python-2.7.3.eb index a4329e5cf5..2fb0a6aeec 100644 --- a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.28-ictce-5.3.0-Python-2.7.3.eb +++ b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.28-ictce-5.3.0-Python-2.7.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos , Kenneth Hoste (UGent) diff --git a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.28-ictce-5.3.0.eb b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.28-ictce-5.3.0.eb index a55a29ffe4..c4c54549a4 100644 --- a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.28-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.28-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos , Kenneth Hoste (UGent) diff --git a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.30-foss-2015a-Python-2.7.9.eb b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.30-foss-2015a-Python-2.7.9.eb index 8c97b6b7aa..3c11c9414b 100644 --- a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.30-foss-2015a-Python-2.7.9.eb +++ b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.30-foss-2015a-Python-2.7.9.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Luxembourg Centre for Systems Biomedicine # Authors:: Fotis Georgatos , Kenneth Hoste (UGent) diff --git a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.30-goolf-1.4.10.eb b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.30-goolf-1.4.10.eb index 5daf7c4b33..60d5401e1e 100644 --- a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.30-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.30-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Luxembourg Centre for Systems Biomedicine # Authors:: Fotis Georgatos , Kenneth Hoste (UGent) diff --git a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.30-intel-2015a-Python-2.7.9.eb b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.30-intel-2015a-Python-2.7.9.eb index 87e25ede69..6c427e6894 100644 --- a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.30-intel-2015a-Python-2.7.9.eb +++ b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.30-intel-2015a-Python-2.7.9.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos , Kenneth Hoste (UGent) diff --git a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.31-foss-2015b-Python-2.7.10.eb b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.31-foss-2015b-Python-2.7.10.eb index a64fc6a528..a02e6a5b24 100644 --- a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.31-foss-2015b-Python-2.7.10.eb +++ b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.31-foss-2015b-Python-2.7.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos , Kenneth Hoste (UGent) diff --git a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.31-intel-2015a-Python-2.7.10.eb b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.31-intel-2015a-Python-2.7.10.eb index e09b9fd298..85d9b0cc0d 100644 --- a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.31-intel-2015a-Python-2.7.10.eb +++ b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.31-intel-2015a-Python-2.7.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos , Kenneth Hoste (UGent) diff --git a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.31-intel-2015b-Python-2.7.10.eb b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.31-intel-2015b-Python-2.7.10.eb index a150b8d6d9..6dc430a123 100644 --- a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.31-intel-2015b-Python-2.7.10.eb +++ b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.2.31-intel-2015b-Python-2.7.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos , Kenneth Hoste (UGent) diff --git a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.3.0-foss-2016a-Python-2.7.11.eb b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.3.0-foss-2016a-Python-2.7.11.eb index c7b71288fa..866b25a202 100644 --- a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.3.0-foss-2016a-Python-2.7.11.eb +++ b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.3.0-foss-2016a-Python-2.7.11.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos , Kenneth Hoste (UGent) diff --git a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.6.0-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.6.0-intel-2017a-Python-2.7.13.eb index 37ae5901c6..654ef1d919 100644 --- a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.6.0-intel-2017a-Python-2.7.13.eb +++ b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.6.0-intel-2017a-Python-2.7.13.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos , Kenneth Hoste (UGent) diff --git a/easybuild/easyconfigs/b/BLAST/BLAST-2.2.26-Linux_x86_64.eb b/easybuild/easyconfigs/b/BLAST/BLAST-2.2.26-Linux_x86_64.eb index 5befdd3e11..98748d456d 100644 --- a/easybuild/easyconfigs/b/BLAST/BLAST-2.2.26-Linux_x86_64.eb +++ b/easybuild/easyconfigs/b/BLAST/BLAST-2.2.26-Linux_x86_64.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/BLAT/BLAT-3.5-goolf-1.4.10.eb b/easybuild/easyconfigs/b/BLAT/BLAT-3.5-goolf-1.4.10.eb index eb88b061dd..083100e335 100644 --- a/easybuild/easyconfigs/b/BLAT/BLAT-3.5-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/BLAT/BLAT-3.5-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , Thekla Loizou diff --git a/easybuild/easyconfigs/b/BLAT/BLAT-3.5-ictce-5.5.0-libpng-1.6.9.eb b/easybuild/easyconfigs/b/BLAT/BLAT-3.5-ictce-5.5.0-libpng-1.6.9.eb index 0222da1546..df2e50f7ef 100644 --- a/easybuild/easyconfigs/b/BLAT/BLAT-3.5-ictce-5.5.0-libpng-1.6.9.eb +++ b/easybuild/easyconfigs/b/BLAT/BLAT-3.5-ictce-5.5.0-libpng-1.6.9.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , Thekla Loizou diff --git a/easybuild/easyconfigs/b/BLAT/BLAT-3.5-ictce-5.5.0.eb b/easybuild/easyconfigs/b/BLAT/BLAT-3.5-ictce-5.5.0.eb index 955ee61e30..c62cc8c37c 100644 --- a/easybuild/easyconfigs/b/BLAT/BLAT-3.5-ictce-5.5.0.eb +++ b/easybuild/easyconfigs/b/BLAT/BLAT-3.5-ictce-5.5.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , Thekla Loizou diff --git a/easybuild/easyconfigs/b/BLAT/BLAT-3.5-intel-2016b.eb b/easybuild/easyconfigs/b/BLAT/BLAT-3.5-intel-2016b.eb index dfa7db4489..73121f1b93 100644 --- a/easybuild/easyconfigs/b/BLAT/BLAT-3.5-intel-2016b.eb +++ b/easybuild/easyconfigs/b/BLAT/BLAT-3.5-intel-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , Thekla Loizou diff --git a/easybuild/easyconfigs/b/BLAT/BLAT-3.5-intel-2017a.eb b/easybuild/easyconfigs/b/BLAT/BLAT-3.5-intel-2017a.eb index 7e57ded042..6ccbd52bf5 100644 --- a/easybuild/easyconfigs/b/BLAT/BLAT-3.5-intel-2017a.eb +++ b/easybuild/easyconfigs/b/BLAT/BLAT-3.5-intel-2017a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , Thekla Loizou diff --git a/easybuild/easyconfigs/b/BWA/BWA-0.6.2-goolf-1.4.10.eb b/easybuild/easyconfigs/b/BWA/BWA-0.6.2-goolf-1.4.10.eb index 88e63bb1ae..8ffe52e8b4 100644 --- a/easybuild/easyconfigs/b/BWA/BWA-0.6.2-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/BWA/BWA-0.6.2-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/b/BWA/BWA-0.6.2-ictce-5.3.0.eb b/easybuild/easyconfigs/b/BWA/BWA-0.6.2-ictce-5.3.0.eb index bd449ad58f..347e942fa7 100644 --- a/easybuild/easyconfigs/b/BWA/BWA-0.6.2-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/b/BWA/BWA-0.6.2-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/b/BWA/BWA-0.7.13-foss-2015b.eb b/easybuild/easyconfigs/b/BWA/BWA-0.7.13-foss-2015b.eb index 2018ca59b4..bc277b6746 100644 --- a/easybuild/easyconfigs/b/BWA/BWA-0.7.13-foss-2015b.eb +++ b/easybuild/easyconfigs/b/BWA/BWA-0.7.13-foss-2015b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA # Authors:: George Tsouloupas , Fotis Georgatos diff --git a/easybuild/easyconfigs/b/BWA/BWA-0.7.13-foss-2016a.eb b/easybuild/easyconfigs/b/BWA/BWA-0.7.13-foss-2016a.eb index 419aba7bab..5701149cf0 100644 --- a/easybuild/easyconfigs/b/BWA/BWA-0.7.13-foss-2016a.eb +++ b/easybuild/easyconfigs/b/BWA/BWA-0.7.13-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA # Authors:: George Tsouloupas , Fotis Georgatos diff --git a/easybuild/easyconfigs/b/BWA/BWA-0.7.13-goolf-1.4.10.eb b/easybuild/easyconfigs/b/BWA/BWA-0.7.13-goolf-1.4.10.eb index 2dbdeeb980..8727436b5f 100644 --- a/easybuild/easyconfigs/b/BWA/BWA-0.7.13-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/BWA/BWA-0.7.13-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA # Authors:: George Tsouloupas , Fotis Georgatos , diff --git a/easybuild/easyconfigs/b/BWA/BWA-0.7.13-intel-2016a.eb b/easybuild/easyconfigs/b/BWA/BWA-0.7.13-intel-2016a.eb index f4774cbbbe..17ac0a8257 100644 --- a/easybuild/easyconfigs/b/BWA/BWA-0.7.13-intel-2016a.eb +++ b/easybuild/easyconfigs/b/BWA/BWA-0.7.13-intel-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA # Authors:: George Tsouloupas , Fotis Georgatos diff --git a/easybuild/easyconfigs/b/BWA/BWA-0.7.15-foss-2016a.eb b/easybuild/easyconfigs/b/BWA/BWA-0.7.15-foss-2016a.eb index 88e524cd9d..44614302d1 100644 --- a/easybuild/easyconfigs/b/BWA/BWA-0.7.15-foss-2016a.eb +++ b/easybuild/easyconfigs/b/BWA/BWA-0.7.15-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA # Authors:: George Tsouloupas , Fotis Georgatos diff --git a/easybuild/easyconfigs/b/BWA/BWA-0.7.15-intel-2016b.eb b/easybuild/easyconfigs/b/BWA/BWA-0.7.15-intel-2016b.eb index 62b042ace9..e96ea32189 100644 --- a/easybuild/easyconfigs/b/BWA/BWA-0.7.15-intel-2016b.eb +++ b/easybuild/easyconfigs/b/BWA/BWA-0.7.15-intel-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA # Authors:: George Tsouloupas , Fotis Georgatos diff --git a/easybuild/easyconfigs/b/BWA/BWA-0.7.15-intel-2017a.eb b/easybuild/easyconfigs/b/BWA/BWA-0.7.15-intel-2017a.eb index 04f7fad391..587cba3307 100644 --- a/easybuild/easyconfigs/b/BWA/BWA-0.7.15-intel-2017a.eb +++ b/easybuild/easyconfigs/b/BWA/BWA-0.7.15-intel-2017a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA # Authors:: George Tsouloupas , Fotis Georgatos diff --git a/easybuild/easyconfigs/b/BWA/BWA-0.7.4-goolf-1.4.10.eb b/easybuild/easyconfigs/b/BWA/BWA-0.7.4-goolf-1.4.10.eb index 6c6c1aff71..440154e3c4 100644 --- a/easybuild/easyconfigs/b/BWA/BWA-0.7.4-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/BWA/BWA-0.7.4-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA # Authors:: George Tsouloupas , Fotis Georgatos diff --git a/easybuild/easyconfigs/b/BWA/BWA-0.7.4-ictce-5.3.0.eb b/easybuild/easyconfigs/b/BWA/BWA-0.7.4-ictce-5.3.0.eb index 66de8f1a86..d9ece5f8bc 100644 --- a/easybuild/easyconfigs/b/BWA/BWA-0.7.4-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/b/BWA/BWA-0.7.4-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA # Authors:: George Tsouloupas , Fotis Georgatos diff --git a/easybuild/easyconfigs/b/BWA/BWA-0.7.5a-goolf-1.4.10.eb b/easybuild/easyconfigs/b/BWA/BWA-0.7.5a-goolf-1.4.10.eb index 860efca9e4..de76a6f003 100644 --- a/easybuild/easyconfigs/b/BWA/BWA-0.7.5a-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/BWA/BWA-0.7.5a-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA # Authors:: George Tsouloupas , Fotis Georgatos diff --git a/easybuild/easyconfigs/b/BXH_XCEDE_TOOLS/BXH_XCEDE_TOOLS-1.11.1.eb b/easybuild/easyconfigs/b/BXH_XCEDE_TOOLS/BXH_XCEDE_TOOLS-1.11.1.eb index c0802f9ddd..1584cea297 100644 --- a/easybuild/easyconfigs/b/BXH_XCEDE_TOOLS/BXH_XCEDE_TOOLS-1.11.1.eb +++ b/easybuild/easyconfigs/b/BXH_XCEDE_TOOLS/BXH_XCEDE_TOOLS-1.11.1.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Ravi Tripathi # Email: ravi89@uab.edu diff --git a/easybuild/easyconfigs/b/BamTools/BamTools-2.2.3-goolf-1.4.10.eb b/easybuild/easyconfigs/b/BamTools/BamTools-2.2.3-goolf-1.4.10.eb index 3c60714d7f..b2223051af 100644 --- a/easybuild/easyconfigs/b/BamTools/BamTools-2.2.3-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/BamTools/BamTools-2.2.3-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , George Tsouloupas diff --git a/easybuild/easyconfigs/b/BamTools/BamTools-2.2.3-ictce-5.3.0.eb b/easybuild/easyconfigs/b/BamTools/BamTools-2.2.3-ictce-5.3.0.eb index 7fbeba0c2d..8ff8d44b31 100644 --- a/easybuild/easyconfigs/b/BamTools/BamTools-2.2.3-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/b/BamTools/BamTools-2.2.3-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , George Tsouloupas diff --git a/easybuild/easyconfigs/b/BamTools/BamTools-2.4.0-foss-2015b.eb b/easybuild/easyconfigs/b/BamTools/BamTools-2.4.0-foss-2015b.eb index 9e9c2961a5..4cba6a6b0e 100644 --- a/easybuild/easyconfigs/b/BamTools/BamTools-2.4.0-foss-2015b.eb +++ b/easybuild/easyconfigs/b/BamTools/BamTools-2.4.0-foss-2015b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , George Tsouloupas diff --git a/easybuild/easyconfigs/b/BamTools/BamTools-2.4.0-foss-2016b.eb b/easybuild/easyconfigs/b/BamTools/BamTools-2.4.0-foss-2016b.eb index b1a2aa0cf6..9f0e3941f0 100644 --- a/easybuild/easyconfigs/b/BamTools/BamTools-2.4.0-foss-2016b.eb +++ b/easybuild/easyconfigs/b/BamTools/BamTools-2.4.0-foss-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , George Tsouloupas diff --git a/easybuild/easyconfigs/b/BamUtil/BamUtil-1.0.13-foss-2015b.eb b/easybuild/easyconfigs/b/BamUtil/BamUtil-1.0.13-foss-2015b.eb index bbca7a748e..f601bc63da 100644 --- a/easybuild/easyconfigs/b/BamUtil/BamUtil-1.0.13-foss-2015b.eb +++ b/easybuild/easyconfigs/b/BamUtil/BamUtil-1.0.13-foss-2015b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Author: Adam Huffman # adam.huffman@crick.ac.uk diff --git a/easybuild/easyconfigs/b/BamUtil/BamUtil-1.0.13-intel-2016b.eb b/easybuild/easyconfigs/b/BamUtil/BamUtil-1.0.13-intel-2016b.eb index ceadf51bc5..65f9d502aa 100644 --- a/easybuild/easyconfigs/b/BamUtil/BamUtil-1.0.13-intel-2016b.eb +++ b/easybuild/easyconfigs/b/BamUtil/BamUtil-1.0.13-intel-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Author: Adam Huffman # adam.huffman@crick.ac.uk diff --git a/easybuild/easyconfigs/b/Bash/Bash-4.2-goolf-1.4.10.eb b/easybuild/easyconfigs/b/Bash/Bash-4.2-goolf-1.4.10.eb index 7cf887ea82..528d89262c 100644 --- a/easybuild/easyconfigs/b/Bash/Bash-4.2-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/Bash/Bash-4.2-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Computer Science and Communications Research Unit # Authors:: Valentin Plugaru diff --git a/easybuild/easyconfigs/b/Bash/Bash-4.2-ictce-5.3.0.eb b/easybuild/easyconfigs/b/Bash/Bash-4.2-ictce-5.3.0.eb index b45858d56f..8432304838 100644 --- a/easybuild/easyconfigs/b/Bash/Bash-4.2-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/b/Bash/Bash-4.2-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Computer Science and Communications Research Unit # Authors:: Valentin Plugaru diff --git a/easybuild/easyconfigs/b/Bash/Bash-4.3-GCC-4.9.2.eb b/easybuild/easyconfigs/b/Bash/Bash-4.3-GCC-4.9.2.eb index 3d11d3fad4..c6c7915da3 100644 --- a/easybuild/easyconfigs/b/Bash/Bash-4.3-GCC-4.9.2.eb +++ b/easybuild/easyconfigs/b/Bash/Bash-4.3-GCC-4.9.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild ## # Copyright:: Copyright 2012-2013 University of Luxembourg/Computer Science and Communications Research Unit # Authors:: Valentin Plugaru diff --git a/easybuild/easyconfigs/b/BayPass/BayPass-2.1-goolf-1.7.20.eb b/easybuild/easyconfigs/b/BayPass/BayPass-2.1-goolf-1.7.20.eb index 65f14b74d8..25bcd12143 100644 --- a/easybuild/easyconfigs/b/BayPass/BayPass-2.1-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/b/BayPass/BayPass-2.1-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/b/BayeScEnv/BayeScEnv-1.1-foss-2016a.eb b/easybuild/easyconfigs/b/BayeScEnv/BayeScEnv-1.1-foss-2016a.eb index 25707a1810..e2b2f40c7e 100644 --- a/easybuild/easyconfigs/b/BayeScEnv/BayeScEnv-1.1-foss-2016a.eb +++ b/easybuild/easyconfigs/b/BayeScEnv/BayeScEnv-1.1-foss-2016a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/b/BayeScEnv/BayeScEnv-1.1-goolf-1.4.10.eb b/easybuild/easyconfigs/b/BayeScEnv/BayeScEnv-1.1-goolf-1.4.10.eb index a0b996743d..336a764164 100644 --- a/easybuild/easyconfigs/b/BayeScEnv/BayeScEnv-1.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/BayeScEnv/BayeScEnv-1.1-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/b/BayeScan/BayeScan-2.1-foss-2016a.eb b/easybuild/easyconfigs/b/BayeScan/BayeScan-2.1-foss-2016a.eb index ebd814c54e..f1ea19dfa0 100644 --- a/easybuild/easyconfigs/b/BayeScan/BayeScan-2.1-foss-2016a.eb +++ b/easybuild/easyconfigs/b/BayeScan/BayeScan-2.1-foss-2016a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/b/BayeScan/BayeScan-2.1-goolf-1.4.10.eb b/easybuild/easyconfigs/b/BayeScan/BayeScan-2.1-goolf-1.4.10.eb index 2902acfde6..3a8d229257 100644 --- a/easybuild/easyconfigs/b/BayeScan/BayeScan-2.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/BayeScan/BayeScan-2.1-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/b/BayesTraits/BayesTraits-1.0-linux32.eb b/easybuild/easyconfigs/b/BayesTraits/BayesTraits-1.0-linux32.eb index 8d561cd81b..d034b7c154 100644 --- a/easybuild/easyconfigs/b/BayesTraits/BayesTraits-1.0-linux32.eb +++ b/easybuild/easyconfigs/b/BayesTraits/BayesTraits-1.0-linux32.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/BayesTraits/BayesTraits-2.0-Beta-Linux64.eb b/easybuild/easyconfigs/b/BayesTraits/BayesTraits-2.0-Beta-Linux64.eb index 29cb55f251..a7199d6201 100644 --- a/easybuild/easyconfigs/b/BayesTraits/BayesTraits-2.0-Beta-Linux64.eb +++ b/easybuild/easyconfigs/b/BayesTraits/BayesTraits-2.0-Beta-Linux64.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/Beast/Beast-1.8.4.eb b/easybuild/easyconfigs/b/Beast/Beast-1.8.4.eb index 283940594d..c94bcc0b40 100644 --- a/easybuild/easyconfigs/b/Beast/Beast-1.8.4.eb +++ b/easybuild/easyconfigs/b/Beast/Beast-1.8.4.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/Beast/Beast-2.1.3.eb b/easybuild/easyconfigs/b/Beast/Beast-2.1.3.eb index f28387fbee..512e98ad2a 100644 --- a/easybuild/easyconfigs/b/Beast/Beast-2.1.3.eb +++ b/easybuild/easyconfigs/b/Beast/Beast-2.1.3.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/Beast/Beast-2.4.0-foss-2016a.eb b/easybuild/easyconfigs/b/Beast/Beast-2.4.0-foss-2016a.eb index 484da63909..1e44caf2ee 100644 --- a/easybuild/easyconfigs/b/Beast/Beast-2.4.0-foss-2016a.eb +++ b/easybuild/easyconfigs/b/Beast/Beast-2.4.0-foss-2016a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/Biopython/Biopython-1.61-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/b/Biopython/Biopython-1.61-goolf-1.4.10-Python-2.7.3.eb index 26ff0e4f6a..5462b9b74f 100644 --- a/easybuild/easyconfigs/b/Biopython/Biopython-1.61-goolf-1.4.10-Python-2.7.3.eb +++ b/easybuild/easyconfigs/b/Biopython/Biopython-1.61-goolf-1.4.10-Python-2.7.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , Thekla Loizou , diff --git a/easybuild/easyconfigs/b/Biopython/Biopython-1.61-ictce-5.3.0-Python-2.7.3.eb b/easybuild/easyconfigs/b/Biopython/Biopython-1.61-ictce-5.3.0-Python-2.7.3.eb index 462ab92f17..bb428926a0 100644 --- a/easybuild/easyconfigs/b/Biopython/Biopython-1.61-ictce-5.3.0-Python-2.7.3.eb +++ b/easybuild/easyconfigs/b/Biopython/Biopython-1.61-ictce-5.3.0-Python-2.7.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , Thekla Loizou , diff --git a/easybuild/easyconfigs/b/Biopython/Biopython-1.65-foss-2016a-Python-2.7.11.eb b/easybuild/easyconfigs/b/Biopython/Biopython-1.65-foss-2016a-Python-2.7.11.eb index c5aa94f58c..cc4c98123e 100644 --- a/easybuild/easyconfigs/b/Biopython/Biopython-1.65-foss-2016a-Python-2.7.11.eb +++ b/easybuild/easyconfigs/b/Biopython/Biopython-1.65-foss-2016a-Python-2.7.11.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , Thekla Loizou , diff --git a/easybuild/easyconfigs/b/Biopython/Biopython-1.68-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/b/Biopython/Biopython-1.68-foss-2016b-Python-2.7.12.eb index f5a410bf23..74455b1860 100644 --- a/easybuild/easyconfigs/b/Biopython/Biopython-1.68-foss-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/b/Biopython/Biopython-1.68-foss-2016b-Python-2.7.12.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , Thekla Loizou , diff --git a/easybuild/easyconfigs/b/Biopython/Biopython-1.68-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/b/Biopython/Biopython-1.68-intel-2016b-Python-2.7.12.eb index 762f84f558..7f7a694462 100644 --- a/easybuild/easyconfigs/b/Biopython/Biopython-1.68-intel-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/b/Biopython/Biopython-1.68-intel-2016b-Python-2.7.12.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , Thekla Loizou , diff --git a/easybuild/easyconfigs/b/Biopython/Biopython-1.68-intel-2016b-Python-3.5.2.eb b/easybuild/easyconfigs/b/Biopython/Biopython-1.68-intel-2016b-Python-3.5.2.eb index 36d03b946c..cb2c07fb7f 100644 --- a/easybuild/easyconfigs/b/Biopython/Biopython-1.68-intel-2016b-Python-3.5.2.eb +++ b/easybuild/easyconfigs/b/Biopython/Biopython-1.68-intel-2016b-Python-3.5.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , Thekla Loizou , diff --git a/easybuild/easyconfigs/b/Bismark/Bismark-0.10.1-goolf-1.4.10.eb b/easybuild/easyconfigs/b/Bismark/Bismark-0.10.1-goolf-1.4.10.eb index ee96cc0a43..d6a0d16ca9 100644 --- a/easybuild/easyconfigs/b/Bismark/Bismark-0.10.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/Bismark/Bismark-0.10.1-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2014 The Cyprus Institute # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/b/BitSeq/BitSeq-0.7.0-goolf-1.4.10.eb b/easybuild/easyconfigs/b/BitSeq/BitSeq-0.7.0-goolf-1.4.10.eb index 5a270ebc00..49a48ad18f 100644 --- a/easybuild/easyconfigs/b/BitSeq/BitSeq-0.7.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/BitSeq/BitSeq-0.7.0-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/Bonnie++/Bonnie++-1.03e-goolf-1.4.10.eb b/easybuild/easyconfigs/b/Bonnie++/Bonnie++-1.03e-goolf-1.4.10.eb index fd432782eb..63fcc66046 100644 --- a/easybuild/easyconfigs/b/Bonnie++/Bonnie++-1.03e-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/Bonnie++/Bonnie++-1.03e-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/b/Bonnie++/Bonnie++-1.03e-ictce-5.3.0.eb b/easybuild/easyconfigs/b/Bonnie++/Bonnie++-1.03e-ictce-5.3.0.eb index c663871a9c..cce4aa524a 100644 --- a/easybuild/easyconfigs/b/Bonnie++/Bonnie++-1.03e-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/b/Bonnie++/Bonnie++-1.03e-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/b/Bonnie++/Bonnie++-1.97-foss-2016a.eb b/easybuild/easyconfigs/b/Bonnie++/Bonnie++-1.97-foss-2016a.eb index f63a76fa69..b9cf727486 100644 --- a/easybuild/easyconfigs/b/Bonnie++/Bonnie++-1.97-foss-2016a.eb +++ b/easybuild/easyconfigs/b/Bonnie++/Bonnie++-1.97-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.0.2-goolf-1.4.10.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.0.2-goolf-1.4.10.eb index f334c5a116..696fee331f 100644 --- a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.0.2-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.0.2-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.0.2-ictce-5.3.0.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.0.2-ictce-5.3.0.eb index fa8a4e145b..c6f9f99e38 100644 --- a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.0.2-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.0.2-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.0.5-goolf-1.4.10.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.0.5-goolf-1.4.10.eb index a81247d559..5f0e98a15a 100644 --- a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.0.5-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.0.5-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.0.6-goolf-1.4.10.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.0.6-goolf-1.4.10.eb index 00cfc5cb06..45020b3fa7 100644 --- a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.0.6-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.0.6-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.1.0-goolf-1.4.10.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.1.0-goolf-1.4.10.eb index 8f006d9054..151407252c 100644 --- a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.1.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.1.0-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.1.0-ictce-5.5.0.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.1.0-ictce-5.5.0.eb index de611ce79f..ed9036db9f 100644 --- a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.1.0-ictce-5.5.0.eb +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.1.0-ictce-5.5.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.0-goolf-1.4.10.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.0-goolf-1.4.10.eb index 9dc4955f2b..f453956b9e 100644 --- a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.0-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.2-goolf-1.4.10.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.2-goolf-1.4.10.eb index 535fcdd94e..d67420cc10 100644 --- a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.2-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.2-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.4-goolf-1.4.10.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.4-goolf-1.4.10.eb index 8e2370c316..726d063f44 100644 --- a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.4-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.4-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.5-goolf-1.7.20.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.5-goolf-1.7.20.eb index b011315af8..91e64b60c7 100644 --- a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.5-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.5-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.5-intel-2015a.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.5-intel-2015a.eb index 4dca70247f..7849523909 100644 --- a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.5-intel-2015a.eb +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.5-intel-2015a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.6-foss-2015b.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.6-foss-2015b.eb index 6cd8cef8b8..379fb19b0a 100644 --- a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.6-foss-2015b.eb +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.6-foss-2015b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.6-intel-2015b.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.6-intel-2015b.eb index 5c6e44e1e9..37dd9eeb5e 100644 --- a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.6-intel-2015b.eb +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.6-intel-2015b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.7-foss-2015b.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.7-foss-2015b.eb index 7cd080fdb1..e3549fe5dc 100644 --- a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.7-foss-2015b.eb +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.7-foss-2015b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.8-foss-2015b.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.8-foss-2015b.eb index e6c1bebf90..c461c553d1 100644 --- a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.8-foss-2015b.eb +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.8-foss-2015b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.8-foss-2016a.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.8-foss-2016a.eb index 4982ab4d19..35ea0c2d17 100644 --- a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.8-foss-2016a.eb +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.8-foss-2016a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.9-foss-2016a.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.9-foss-2016a.eb index cf2e82b71c..2e3a3b0513 100644 --- a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.9-foss-2016a.eb +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.9-foss-2016a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.9-goolf-1.7.20.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.9-goolf-1.7.20.eb index 637e625710..728208e851 100644 --- a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.9-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.9-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.9-intel-2016b.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.9-intel-2016b.eb index ba74ca9337..cadc838afb 100644 --- a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.9-intel-2016b.eb +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.2.9-intel-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-intel-2017a.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-intel-2017a.eb index 8b78bff172..875117f165 100644 --- a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-intel-2017a.eb +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-intel-2017a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/b/bam-readcount/bam-readcount-0.7.4-foss-2015b.eb b/easybuild/easyconfigs/b/bam-readcount/bam-readcount-0.7.4-foss-2015b.eb index 9f5b2f295c..2bde81198c 100644 --- a/easybuild/easyconfigs/b/bam-readcount/bam-readcount-0.7.4-foss-2015b.eb +++ b/easybuild/easyconfigs/b/bam-readcount/bam-readcount-0.7.4-foss-2015b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Adam Huffman # The Francis Crick Institute easyblock = 'CMakeMake' diff --git a/easybuild/easyconfigs/b/bam2fastq/bam2fastq-1.1.0-goolf-1.4.10.eb b/easybuild/easyconfigs/b/bam2fastq/bam2fastq-1.1.0-goolf-1.4.10.eb index c86e6e0a3b..17f4948e3d 100644 --- a/easybuild/easyconfigs/b/bam2fastq/bam2fastq-1.1.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/bam2fastq/bam2fastq-1.1.0-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA # Authors:: George Tsouloupas , Fotis Georgatos , Kenneth Hoste (UGent) diff --git a/easybuild/easyconfigs/b/bam2fastq/bam2fastq-1.1.0-ictce-5.3.0.eb b/easybuild/easyconfigs/b/bam2fastq/bam2fastq-1.1.0-ictce-5.3.0.eb index 4398ec5150..6826ce4726 100644 --- a/easybuild/easyconfigs/b/bam2fastq/bam2fastq-1.1.0-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/b/bam2fastq/bam2fastq-1.1.0-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA # Authors:: George Tsouloupas , Fotis Georgatos , Kenneth Hoste (UGent) diff --git a/easybuild/easyconfigs/b/bbFTP/bbFTP-3.2.0-goolf-1.4.10.eb b/easybuild/easyconfigs/b/bbFTP/bbFTP-3.2.0-goolf-1.4.10.eb index b334202a6e..b5a8101154 100644 --- a/easybuild/easyconfigs/b/bbFTP/bbFTP-3.2.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/bbFTP/bbFTP-3.2.0-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/b/bbFTP/bbFTP-3.2.1-intel-2016a.eb b/easybuild/easyconfigs/b/bbFTP/bbFTP-3.2.1-intel-2016a.eb index 3c955962eb..4eba5f7b79 100644 --- a/easybuild/easyconfigs/b/bbFTP/bbFTP-3.2.1-intel-2016a.eb +++ b/easybuild/easyconfigs/b/bbFTP/bbFTP-3.2.1-intel-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/b/bbcp/bbcp-12.01.30.00.0-amd64_linux26.eb b/easybuild/easyconfigs/b/bbcp/bbcp-12.01.30.00.0-amd64_linux26.eb index 738e6ce0b1..4779d17ea8 100644 --- a/easybuild/easyconfigs/b/bbcp/bbcp-12.01.30.00.0-amd64_linux26.eb +++ b/easybuild/easyconfigs/b/bbcp/bbcp-12.01.30.00.0-amd64_linux26.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/b/bbftpPRO/bbftpPRO-9.3.1-goolf-1.4.10.eb b/easybuild/easyconfigs/b/bbftpPRO/bbftpPRO-9.3.1-goolf-1.4.10.eb index 29c92454a6..fe465ff81c 100644 --- a/easybuild/easyconfigs/b/bbftpPRO/bbftpPRO-9.3.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/bbftpPRO/bbftpPRO-9.3.1-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/b/bbftpPRO/bbftpPRO-9.3.1-ictce-5.3.0.eb b/easybuild/easyconfigs/b/bbftpPRO/bbftpPRO-9.3.1-ictce-5.3.0.eb index 21a811ccbf..45d006c6b1 100644 --- a/easybuild/easyconfigs/b/bbftpPRO/bbftpPRO-9.3.1-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/b/bbftpPRO/bbftpPRO-9.3.1-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/b/bc/bc-1.06.95-GCC-4.8.2.eb b/easybuild/easyconfigs/b/bc/bc-1.06.95-GCC-4.8.2.eb index 3755390098..a2bbef0236 100644 --- a/easybuild/easyconfigs/b/bc/bc-1.06.95-GCC-4.8.2.eb +++ b/easybuild/easyconfigs/b/bc/bc-1.06.95-GCC-4.8.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # ## diff --git a/easybuild/easyconfigs/b/binutils/binutils-2.22-goolf-1.4.10.eb b/easybuild/easyconfigs/b/binutils/binutils-2.22-goolf-1.4.10.eb index de87300f7c..1c728da8c0 100644 --- a/easybuild/easyconfigs/b/binutils/binutils-2.22-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/binutils/binutils-2.22-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/b/binutils/binutils-2.22-goolf-1.5.14.eb b/easybuild/easyconfigs/b/binutils/binutils-2.22-goolf-1.5.14.eb index d989a00acf..b9f1d711c1 100644 --- a/easybuild/easyconfigs/b/binutils/binutils-2.22-goolf-1.5.14.eb +++ b/easybuild/easyconfigs/b/binutils/binutils-2.22-goolf-1.5.14.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Luxembourg Centre for Systems Biomedicine # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/b/biodeps/biodeps-1.6-goolf-1.4.10-extended.eb b/easybuild/easyconfigs/b/biodeps/biodeps-1.6-goolf-1.4.10-extended.eb index 428ecbe9cf..847f035741 100644 --- a/easybuild/easyconfigs/b/biodeps/biodeps-1.6-goolf-1.4.10-extended.eb +++ b/easybuild/easyconfigs/b/biodeps/biodeps-1.6-goolf-1.4.10-extended.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/b/biodeps/biodeps-1.6-goolf-1.4.10.eb b/easybuild/easyconfigs/b/biodeps/biodeps-1.6-goolf-1.4.10.eb index 6fcc534d72..c2a6853c15 100644 --- a/easybuild/easyconfigs/b/biodeps/biodeps-1.6-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/b/biodeps/biodeps-1.6-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/b/biodeps/biodeps-1.6-ictce-5.3.0-extended.eb b/easybuild/easyconfigs/b/biodeps/biodeps-1.6-ictce-5.3.0-extended.eb index 34a00add44..3354b93931 100644 --- a/easybuild/easyconfigs/b/biodeps/biodeps-1.6-ictce-5.3.0-extended.eb +++ b/easybuild/easyconfigs/b/biodeps/biodeps-1.6-ictce-5.3.0-extended.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/b/biodeps/biodeps-1.6-ictce-5.3.0.eb b/easybuild/easyconfigs/b/biodeps/biodeps-1.6-ictce-5.3.0.eb index 1091497ff7..02f177a07b 100644 --- a/easybuild/easyconfigs/b/biodeps/biodeps-1.6-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/b/biodeps/biodeps-1.6-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/b/bwakit/bwakit-0.7.15_x64-linux.eb b/easybuild/easyconfigs/b/bwakit/bwakit-0.7.15_x64-linux.eb index 25c4049311..d9d9591bf7 100644 --- a/easybuild/easyconfigs/b/bwakit/bwakit-0.7.15_x64-linux.eb +++ b/easybuild/easyconfigs/b/bwakit/bwakit-0.7.15_x64-linux.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/c/CAP3/CAP3-20071221-intel-x86.eb b/easybuild/easyconfigs/c/CAP3/CAP3-20071221-intel-x86.eb index 98b5be9cc7..de682d1d50 100644 --- a/easybuild/easyconfigs/c/CAP3/CAP3-20071221-intel-x86.eb +++ b/easybuild/easyconfigs/c/CAP3/CAP3-20071221-intel-x86.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/c/CAP3/CAP3-20071221-intel-x86_64.eb b/easybuild/easyconfigs/c/CAP3/CAP3-20071221-intel-x86_64.eb index a459a2b2ae..ceeb82f27d 100644 --- a/easybuild/easyconfigs/c/CAP3/CAP3-20071221-intel-x86_64.eb +++ b/easybuild/easyconfigs/c/CAP3/CAP3-20071221-intel-x86_64.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/c/CAP3/CAP3-20071221-opteron.eb b/easybuild/easyconfigs/c/CAP3/CAP3-20071221-opteron.eb index 574d59a93d..4747b56abd 100644 --- a/easybuild/easyconfigs/c/CAP3/CAP3-20071221-opteron.eb +++ b/easybuild/easyconfigs/c/CAP3/CAP3-20071221-opteron.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/c/CD-HIT/CD-HIT-4.5.4-ictce-5.3.0-2011-03-07.eb b/easybuild/easyconfigs/c/CD-HIT/CD-HIT-4.5.4-ictce-5.3.0-2011-03-07.eb index e4650118de..9879063135 100644 --- a/easybuild/easyconfigs/c/CD-HIT/CD-HIT-4.5.4-ictce-5.3.0-2011-03-07.eb +++ b/easybuild/easyconfigs/c/CD-HIT/CD-HIT-4.5.4-ictce-5.3.0-2011-03-07.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , George Tsouloupas diff --git a/easybuild/easyconfigs/c/CD-HIT/CD-HIT-4.6.1-foss-2015b-2012-08-27.eb b/easybuild/easyconfigs/c/CD-HIT/CD-HIT-4.6.1-foss-2015b-2012-08-27.eb index 2fdb2ffa3d..6304e11440 100644 --- a/easybuild/easyconfigs/c/CD-HIT/CD-HIT-4.6.1-foss-2015b-2012-08-27.eb +++ b/easybuild/easyconfigs/c/CD-HIT/CD-HIT-4.6.1-foss-2015b-2012-08-27.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/c/CD-HIT/CD-HIT-4.6.1-goolf-1.4.10-2012-08-27.eb b/easybuild/easyconfigs/c/CD-HIT/CD-HIT-4.6.1-goolf-1.4.10-2012-08-27.eb index c3e01a8650..1d1c993287 100644 --- a/easybuild/easyconfigs/c/CD-HIT/CD-HIT-4.6.1-goolf-1.4.10-2012-08-27.eb +++ b/easybuild/easyconfigs/c/CD-HIT/CD-HIT-4.6.1-goolf-1.4.10-2012-08-27.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/c/CD-HIT/CD-HIT-4.6.1-ictce-5.5.0-2012-08-27.eb b/easybuild/easyconfigs/c/CD-HIT/CD-HIT-4.6.1-ictce-5.5.0-2012-08-27.eb index 5563d4c561..81ac44439d 100644 --- a/easybuild/easyconfigs/c/CD-HIT/CD-HIT-4.6.1-ictce-5.5.0-2012-08-27.eb +++ b/easybuild/easyconfigs/c/CD-HIT/CD-HIT-4.6.1-ictce-5.5.0-2012-08-27.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/c/CD-HIT/CD-HIT-4.6.4-GNU-4.9.3-2.25-2015-0603.eb b/easybuild/easyconfigs/c/CD-HIT/CD-HIT-4.6.4-GNU-4.9.3-2.25-2015-0603.eb index 268e532192..9c71be8290 100644 --- a/easybuild/easyconfigs/c/CD-HIT/CD-HIT-4.6.4-GNU-4.9.3-2.25-2015-0603.eb +++ b/easybuild/easyconfigs/c/CD-HIT/CD-HIT-4.6.4-GNU-4.9.3-2.25-2015-0603.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/c/CD-HIT/CD-HIT-4.6.4-foss-2015b-2015-0603.eb b/easybuild/easyconfigs/c/CD-HIT/CD-HIT-4.6.4-foss-2015b-2015-0603.eb index 832db33507..a251b7271b 100644 --- a/easybuild/easyconfigs/c/CD-HIT/CD-HIT-4.6.4-foss-2015b-2015-0603.eb +++ b/easybuild/easyconfigs/c/CD-HIT/CD-HIT-4.6.4-foss-2015b-2015-0603.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/c/CD-HIT/CD-HIT-4.6.6-foss-2016b.eb b/easybuild/easyconfigs/c/CD-HIT/CD-HIT-4.6.6-foss-2016b.eb index 741d95b545..47badeab0f 100644 --- a/easybuild/easyconfigs/c/CD-HIT/CD-HIT-4.6.6-foss-2016b.eb +++ b/easybuild/easyconfigs/c/CD-HIT/CD-HIT-4.6.6-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild easyblock = 'MakeCp' diff --git a/easybuild/easyconfigs/c/CEM/CEM-0.9.1-goolf-1.4.10.eb b/easybuild/easyconfigs/c/CEM/CEM-0.9.1-goolf-1.4.10.eb index 6709e17801..3a72410974 100644 --- a/easybuild/easyconfigs/c/CEM/CEM-0.9.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/c/CEM/CEM-0.9.1-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/c/CHASE/CHASE-20130626.eb b/easybuild/easyconfigs/c/CHASE/CHASE-20130626.eb index 83fba54e75..a951a89a48 100644 --- a/easybuild/easyconfigs/c/CHASE/CHASE-20130626.eb +++ b/easybuild/easyconfigs/c/CHASE/CHASE-20130626.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Ravi Tripathi # Email: ravi89@uab.edu diff --git a/easybuild/easyconfigs/c/CONTRAfold/CONTRAfold-2.02-goolf-1.4.10.eb b/easybuild/easyconfigs/c/CONTRAfold/CONTRAfold-2.02-goolf-1.4.10.eb index 7f2755eaba..0ede673dd5 100644 --- a/easybuild/easyconfigs/c/CONTRAfold/CONTRAfold-2.02-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/c/CONTRAfold/CONTRAfold-2.02-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/c/CONTRAlign/CONTRAlign-2.01-goolf-1.4.10-proteins.eb b/easybuild/easyconfigs/c/CONTRAlign/CONTRAlign-2.01-goolf-1.4.10-proteins.eb index b60083b2b2..b276c15679 100644 --- a/easybuild/easyconfigs/c/CONTRAlign/CONTRAlign-2.01-goolf-1.4.10-proteins.eb +++ b/easybuild/easyconfigs/c/CONTRAlign/CONTRAlign-2.01-goolf-1.4.10-proteins.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/c/CONTRAlign/CONTRAlign-2.01-goolf-1.4.10-rna.eb b/easybuild/easyconfigs/c/CONTRAlign/CONTRAlign-2.01-goolf-1.4.10-rna.eb index 41ffea3e50..67bfcf476e 100644 --- a/easybuild/easyconfigs/c/CONTRAlign/CONTRAlign-2.01-goolf-1.4.10-rna.eb +++ b/easybuild/easyconfigs/c/CONTRAlign/CONTRAlign-2.01-goolf-1.4.10-rna.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/c/CUDA/CUDA-5.0.35-1.eb b/easybuild/easyconfigs/c/CUDA/CUDA-5.0.35-1.eb index 8997152413..c2e6b4b406 100644 --- a/easybuild/easyconfigs/c/CUDA/CUDA-5.0.35-1.eb +++ b/easybuild/easyconfigs/c/CUDA/CUDA-5.0.35-1.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA, Ghent University # Authors:: George Tsouloupas , Fotis Georgatos , Kenneth Hoste diff --git a/easybuild/easyconfigs/c/CUDA/CUDA-5.0.35-GCC-4.6.4-1.eb b/easybuild/easyconfigs/c/CUDA/CUDA-5.0.35-GCC-4.6.4-1.eb index 194a2991a9..266db17b73 100644 --- a/easybuild/easyconfigs/c/CUDA/CUDA-5.0.35-GCC-4.6.4-1.eb +++ b/easybuild/easyconfigs/c/CUDA/CUDA-5.0.35-GCC-4.6.4-1.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA, Ghent University # Authors:: George Tsouloupas , Fotis Georgatos , Kenneth Hoste diff --git a/easybuild/easyconfigs/c/CUDA/CUDA-5.5.22-GCC-4.7.2.eb b/easybuild/easyconfigs/c/CUDA/CUDA-5.5.22-GCC-4.7.2.eb index 437ebc2ce7..3213a31732 100644 --- a/easybuild/easyconfigs/c/CUDA/CUDA-5.5.22-GCC-4.7.2.eb +++ b/easybuild/easyconfigs/c/CUDA/CUDA-5.5.22-GCC-4.7.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA, Ghent University # Authors:: George Tsouloupas , Fotis Georgatos , Kenneth Hoste diff --git a/easybuild/easyconfigs/c/CUDA/CUDA-5.5.22-GCC-4.8.2.eb b/easybuild/easyconfigs/c/CUDA/CUDA-5.5.22-GCC-4.8.2.eb index 63bd33a5ba..41fb7a42e9 100644 --- a/easybuild/easyconfigs/c/CUDA/CUDA-5.5.22-GCC-4.8.2.eb +++ b/easybuild/easyconfigs/c/CUDA/CUDA-5.5.22-GCC-4.8.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA, Ghent University # Authors:: George Tsouloupas , Fotis Georgatos , Kenneth Hoste diff --git a/easybuild/easyconfigs/c/CUDA/CUDA-5.5.22.eb b/easybuild/easyconfigs/c/CUDA/CUDA-5.5.22.eb index c2fec1c504..bf2df9790e 100644 --- a/easybuild/easyconfigs/c/CUDA/CUDA-5.5.22.eb +++ b/easybuild/easyconfigs/c/CUDA/CUDA-5.5.22.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA, Ghent University # Authors:: George Tsouloupas , Fotis Georgatos , Kenneth Hoste diff --git a/easybuild/easyconfigs/c/CUDA/CUDA-6.0.37.eb b/easybuild/easyconfigs/c/CUDA/CUDA-6.0.37.eb index 76cb0b94f9..009755e0fb 100644 --- a/easybuild/easyconfigs/c/CUDA/CUDA-6.0.37.eb +++ b/easybuild/easyconfigs/c/CUDA/CUDA-6.0.37.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 Cyprus Institute / CaSToRC, University of Luxembourg / LCSB, Ghent University # Authors:: George Tsouloupas , Fotis Georgatos , Kenneth Hoste diff --git a/easybuild/easyconfigs/c/CUDA/CUDA-6.5.14.eb b/easybuild/easyconfigs/c/CUDA/CUDA-6.5.14.eb index 920ee4c4fa..d2a841d669 100644 --- a/easybuild/easyconfigs/c/CUDA/CUDA-6.5.14.eb +++ b/easybuild/easyconfigs/c/CUDA/CUDA-6.5.14.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 Cyprus Institute / CaSToRC, University of Luxembourg / LCSB, Ghent University # Authors:: George Tsouloupas , Fotis Georgatos , Kenneth Hoste diff --git a/easybuild/easyconfigs/c/CUDA/CUDA-7.5.18-GCC-4.9.4-2.25.eb b/easybuild/easyconfigs/c/CUDA/CUDA-7.5.18-GCC-4.9.4-2.25.eb index eecde07096..e931619230 100644 --- a/easybuild/easyconfigs/c/CUDA/CUDA-7.5.18-GCC-4.9.4-2.25.eb +++ b/easybuild/easyconfigs/c/CUDA/CUDA-7.5.18-GCC-4.9.4-2.25.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2016 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA, Ghent University, Microway # Authors:: George Tsouloupas , Fotis Georgatos , Kenneth Hoste, Eliot Eshelman diff --git a/easybuild/easyconfigs/c/CUDA/CUDA-7.5.18-iccifort-2015.3.187-GNU-4.9.3-2.25.eb b/easybuild/easyconfigs/c/CUDA/CUDA-7.5.18-iccifort-2015.3.187-GNU-4.9.3-2.25.eb index 45b63f0380..b9b41e5dca 100644 --- a/easybuild/easyconfigs/c/CUDA/CUDA-7.5.18-iccifort-2015.3.187-GNU-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/c/CUDA/CUDA-7.5.18-iccifort-2015.3.187-GNU-4.9.3-2.25.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 Cyprus Institute / CaSToRC, University of Luxembourg / LCSB, Ghent University, # Forschungszentrum Juelich diff --git a/easybuild/easyconfigs/c/CUDA/CUDA-7.5.18-iccifort-2016.3.210-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/c/CUDA/CUDA-7.5.18-iccifort-2016.3.210-GCC-4.9.3-2.25.eb index 72651d5b54..0752dc6cc8 100644 --- a/easybuild/easyconfigs/c/CUDA/CUDA-7.5.18-iccifort-2016.3.210-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/c/CUDA/CUDA-7.5.18-iccifort-2016.3.210-GCC-4.9.3-2.25.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 Cyprus Institute / CaSToRC, University of Luxembourg / LCSB, Ghent University, # Forschungszentrum Juelich diff --git a/easybuild/easyconfigs/c/CVS/CVS-1.11.23-GCC-4.8.2.eb b/easybuild/easyconfigs/c/CVS/CVS-1.11.23-GCC-4.8.2.eb index b8b9c80a8d..d6aba60dab 100644 --- a/easybuild/easyconfigs/c/CVS/CVS-1.11.23-GCC-4.8.2.eb +++ b/easybuild/easyconfigs/c/CVS/CVS-1.11.23-GCC-4.8.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # ## diff --git a/easybuild/easyconfigs/c/CVS/CVS-1.11.23-GCCcore-4.9.3.eb b/easybuild/easyconfigs/c/CVS/CVS-1.11.23-GCCcore-4.9.3.eb index e9bbed8bb4..b4f49365df 100644 --- a/easybuild/easyconfigs/c/CVS/CVS-1.11.23-GCCcore-4.9.3.eb +++ b/easybuild/easyconfigs/c/CVS/CVS-1.11.23-GCCcore-4.9.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # ## diff --git a/easybuild/easyconfigs/c/ChIP-Seq/ChIP-Seq-1.5-1-goolf-1.4.10.eb b/easybuild/easyconfigs/c/ChIP-Seq/ChIP-Seq-1.5-1-goolf-1.4.10.eb index b0d7e2e41b..0b19390665 100644 --- a/easybuild/easyconfigs/c/ChIP-Seq/ChIP-Seq-1.5-1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/c/ChIP-Seq/ChIP-Seq-1.5-1-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/c/ChIP-Seq/ChIP-Seq-1.5-1-goolf-1.7.20.eb b/easybuild/easyconfigs/c/ChIP-Seq/ChIP-Seq-1.5-1-goolf-1.7.20.eb index 54bfcde59b..8e66ed510b 100644 --- a/easybuild/easyconfigs/c/ChIP-Seq/ChIP-Seq-1.5-1-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/c/ChIP-Seq/ChIP-Seq-1.5-1-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/c/Chapel/Chapel-1.10.0-goolf-1.4.10.eb b/easybuild/easyconfigs/c/Chapel/Chapel-1.10.0-goolf-1.4.10.eb index d78acf92e2..2131f933b4 100644 --- a/easybuild/easyconfigs/c/Chapel/Chapel-1.10.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/c/Chapel/Chapel-1.10.0-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2014, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/c/Chapel/Chapel-1.10.0-goolf-1.6.10.eb b/easybuild/easyconfigs/c/Chapel/Chapel-1.10.0-goolf-1.6.10.eb index e0ea8f21ce..e1386c970b 100644 --- a/easybuild/easyconfigs/c/Chapel/Chapel-1.10.0-goolf-1.6.10.eb +++ b/easybuild/easyconfigs/c/Chapel/Chapel-1.10.0-goolf-1.6.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2014, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/c/Chapel/Chapel-1.6.0-goolf-1.4.10.eb b/easybuild/easyconfigs/c/Chapel/Chapel-1.6.0-goolf-1.4.10.eb index a1aed2106e..a5282bdd2a 100644 --- a/easybuild/easyconfigs/c/Chapel/Chapel-1.6.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/c/Chapel/Chapel-1.6.0-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/c/Chapel/Chapel-1.7.0-goolf-1.4.10.eb b/easybuild/easyconfigs/c/Chapel/Chapel-1.7.0-goolf-1.4.10.eb index 0d583d38e1..a293117d13 100644 --- a/easybuild/easyconfigs/c/Chapel/Chapel-1.7.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/c/Chapel/Chapel-1.7.0-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/c/Chapel/Chapel-1.8.0-goolf-1.4.10.eb b/easybuild/easyconfigs/c/Chapel/Chapel-1.8.0-goolf-1.4.10.eb index 9a54bec5f4..b85bbceaf9 100644 --- a/easybuild/easyconfigs/c/Chapel/Chapel-1.8.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/c/Chapel/Chapel-1.8.0-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/c/Chapel/Chapel-1.8.0-goolf-1.6.10.eb b/easybuild/easyconfigs/c/Chapel/Chapel-1.8.0-goolf-1.6.10.eb index 9f53c75fb2..e6d5a956d7 100644 --- a/easybuild/easyconfigs/c/Chapel/Chapel-1.8.0-goolf-1.6.10.eb +++ b/easybuild/easyconfigs/c/Chapel/Chapel-1.8.0-goolf-1.6.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/c/Chapel/Chapel-1.9.0-goolf-1.4.10.eb b/easybuild/easyconfigs/c/Chapel/Chapel-1.9.0-goolf-1.4.10.eb index 45906bfb00..9d6afe2d98 100644 --- a/easybuild/easyconfigs/c/Chapel/Chapel-1.9.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/c/Chapel/Chapel-1.9.0-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2014, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/c/Chapel/Chapel-1.9.0-goolf-1.5.14.eb b/easybuild/easyconfigs/c/Chapel/Chapel-1.9.0-goolf-1.5.14.eb index 80c79f1859..3f3cf69376 100644 --- a/easybuild/easyconfigs/c/Chapel/Chapel-1.9.0-goolf-1.5.14.eb +++ b/easybuild/easyconfigs/c/Chapel/Chapel-1.9.0-goolf-1.5.14.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Authors:: Jordi Blasco (NeSI) # License:: MIT/GPL diff --git a/easybuild/easyconfigs/c/Chapel/Chapel-1.9.0-goolf-1.6.10.eb b/easybuild/easyconfigs/c/Chapel/Chapel-1.9.0-goolf-1.6.10.eb index 289cbf479a..af2eb91036 100644 --- a/easybuild/easyconfigs/c/Chapel/Chapel-1.9.0-goolf-1.6.10.eb +++ b/easybuild/easyconfigs/c/Chapel/Chapel-1.9.0-goolf-1.6.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2014, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/c/Check/Check-0.9.12-goolf-1.4.10.eb b/easybuild/easyconfigs/c/Check/Check-0.9.12-goolf-1.4.10.eb index 665f1371cb..1a131a403b 100644 --- a/easybuild/easyconfigs/c/Check/Check-0.9.12-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/c/Check/Check-0.9.12-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/c/Chimera/Chimera-1.10-linux_x86_64.eb b/easybuild/easyconfigs/c/Chimera/Chimera-1.10-linux_x86_64.eb index d050aae52b..509561f076 100644 --- a/easybuild/easyconfigs/c/Chimera/Chimera-1.10-linux_x86_64.eb +++ b/easybuild/easyconfigs/c/Chimera/Chimera-1.10-linux_x86_64.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/c/Circos/Circos-0.69-5-foss-2016b-Perl-5.24.0.eb b/easybuild/easyconfigs/c/Circos/Circos-0.69-5-foss-2016b-Perl-5.24.0.eb index 893126e7c3..319ec0d55c 100644 --- a/easybuild/easyconfigs/c/Circos/Circos-0.69-5-foss-2016b-Perl-5.24.0.eb +++ b/easybuild/easyconfigs/c/Circos/Circos-0.69-5-foss-2016b-Perl-5.24.0.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild easyblock = 'Tarball' diff --git a/easybuild/easyconfigs/c/Clang/Clang-3.2-GCC-4.7.3.eb b/easybuild/easyconfigs/c/Clang/Clang-3.2-GCC-4.7.3.eb index 05ffad5f40..183e2860f5 100644 --- a/easybuild/easyconfigs/c/Clang/Clang-3.2-GCC-4.7.3.eb +++ b/easybuild/easyconfigs/c/Clang/Clang-3.2-GCC-4.7.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013 Dmitri Gribenko # Authors:: Dmitri Gribenko diff --git a/easybuild/easyconfigs/c/Clang/Clang-3.3-GCC-4.8.1.eb b/easybuild/easyconfigs/c/Clang/Clang-3.3-GCC-4.8.1.eb index 66ca5a1bc4..066a79dfcb 100644 --- a/easybuild/easyconfigs/c/Clang/Clang-3.3-GCC-4.8.1.eb +++ b/easybuild/easyconfigs/c/Clang/Clang-3.3-GCC-4.8.1.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013 Dmitri Gribenko, Ward Poelmans # Authors:: Dmitri Gribenko diff --git a/easybuild/easyconfigs/c/Clang/Clang-3.4-GCC-4.8.2.eb b/easybuild/easyconfigs/c/Clang/Clang-3.4-GCC-4.8.2.eb index 5a1fdbfc0b..3c76811582 100644 --- a/easybuild/easyconfigs/c/Clang/Clang-3.4-GCC-4.8.2.eb +++ b/easybuild/easyconfigs/c/Clang/Clang-3.4-GCC-4.8.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013 Dmitri Gribenko, Ward Poelmans # Authors:: Dmitri Gribenko diff --git a/easybuild/easyconfigs/c/Clang/Clang-3.4.1-GCC-4.8.2.eb b/easybuild/easyconfigs/c/Clang/Clang-3.4.1-GCC-4.8.2.eb index 12a16f8dd5..987ff2c9ae 100644 --- a/easybuild/easyconfigs/c/Clang/Clang-3.4.1-GCC-4.8.2.eb +++ b/easybuild/easyconfigs/c/Clang/Clang-3.4.1-GCC-4.8.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013 Dmitri Gribenko, Ward Poelmans # Authors:: Dmitri Gribenko diff --git a/easybuild/easyconfigs/c/Clang/Clang-3.4.2-GCC-4.8.2.eb b/easybuild/easyconfigs/c/Clang/Clang-3.4.2-GCC-4.8.2.eb index f425fcd86e..d228769b61 100644 --- a/easybuild/easyconfigs/c/Clang/Clang-3.4.2-GCC-4.8.2.eb +++ b/easybuild/easyconfigs/c/Clang/Clang-3.4.2-GCC-4.8.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2014 Dmitri Gribenko, Ward Poelmans # Authors:: Dmitri Gribenko diff --git a/easybuild/easyconfigs/c/Clang/Clang-3.6.0-GCC-4.9.2.eb b/easybuild/easyconfigs/c/Clang/Clang-3.6.0-GCC-4.9.2.eb index 9d5881c525..3478797af3 100644 --- a/easybuild/easyconfigs/c/Clang/Clang-3.6.0-GCC-4.9.2.eb +++ b/easybuild/easyconfigs/c/Clang/Clang-3.6.0-GCC-4.9.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013 Dmitri Gribenko, Ward Poelmans # Authors:: Dmitri Gribenko diff --git a/easybuild/easyconfigs/c/Clang/Clang-3.6.1-GCC-4.9.2.eb b/easybuild/easyconfigs/c/Clang/Clang-3.6.1-GCC-4.9.2.eb index bb31f282f6..e83e5346d7 100644 --- a/easybuild/easyconfigs/c/Clang/Clang-3.6.1-GCC-4.9.2.eb +++ b/easybuild/easyconfigs/c/Clang/Clang-3.6.1-GCC-4.9.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013 Dmitri Gribenko, Ward Poelmans # Authors:: Dmitri Gribenko diff --git a/easybuild/easyconfigs/c/Clang/Clang-3.7.0-GNU-4.9.3-2.25.eb b/easybuild/easyconfigs/c/Clang/Clang-3.7.0-GNU-4.9.3-2.25.eb index a76712524b..d79fb1dcca 100644 --- a/easybuild/easyconfigs/c/Clang/Clang-3.7.0-GNU-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/c/Clang/Clang-3.7.0-GNU-4.9.3-2.25.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2015 Dmitri Gribenko, Ward Poelmans # Authors:: Dmitri Gribenko diff --git a/easybuild/easyconfigs/c/Clang/Clang-3.7.1-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/c/Clang/Clang-3.7.1-GCC-4.9.3-2.25.eb index ee437ef2f2..961f0eb891 100644 --- a/easybuild/easyconfigs/c/Clang/Clang-3.7.1-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/c/Clang/Clang-3.7.1-GCC-4.9.3-2.25.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2015 Dmitri Gribenko, Ward Poelmans # Authors:: Dmitri Gribenko diff --git a/easybuild/easyconfigs/c/Clang/Clang-3.7.1-foss-2016a.eb b/easybuild/easyconfigs/c/Clang/Clang-3.7.1-foss-2016a.eb index 9037365bc8..99e144ac87 100644 --- a/easybuild/easyconfigs/c/Clang/Clang-3.7.1-foss-2016a.eb +++ b/easybuild/easyconfigs/c/Clang/Clang-3.7.1-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2015 Dmitri Gribenko, Ward Poelmans # Authors:: Dmitri Gribenko diff --git a/easybuild/easyconfigs/c/Clang/Clang-3.8.0-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/c/Clang/Clang-3.8.0-GCC-4.9.3-2.25.eb index 23fe1ddcc9..d2ce11eb6a 100644 --- a/easybuild/easyconfigs/c/Clang/Clang-3.8.0-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/c/Clang/Clang-3.8.0-GCC-4.9.3-2.25.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2015 Dmitri Gribenko, Ward Poelmans # Authors:: Dmitri Gribenko diff --git a/easybuild/easyconfigs/c/Clang/Clang-3.8.1-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/c/Clang/Clang-3.8.1-GCC-5.4.0-2.26.eb index 3c6cb72c88..f8e1c1318f 100644 --- a/easybuild/easyconfigs/c/Clang/Clang-3.8.1-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/c/Clang/Clang-3.8.1-GCC-5.4.0-2.26.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2015 Dmitri Gribenko, Ward Poelmans # Authors:: Dmitri Gribenko diff --git a/easybuild/easyconfigs/c/Clang/Clang-3.8.1-foss-2016b.eb b/easybuild/easyconfigs/c/Clang/Clang-3.8.1-foss-2016b.eb index bc4ee73735..16b0d65003 100644 --- a/easybuild/easyconfigs/c/Clang/Clang-3.8.1-foss-2016b.eb +++ b/easybuild/easyconfigs/c/Clang/Clang-3.8.1-foss-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2015 Dmitri Gribenko, Ward Poelmans # Authors:: Dmitri Gribenko diff --git a/easybuild/easyconfigs/c/Clustal-Omega/Clustal-Omega-1.2.0-foss-2015b.eb b/easybuild/easyconfigs/c/Clustal-Omega/Clustal-Omega-1.2.0-foss-2015b.eb index 2ddcf2b93a..444a714932 100644 --- a/easybuild/easyconfigs/c/Clustal-Omega/Clustal-Omega-1.2.0-foss-2015b.eb +++ b/easybuild/easyconfigs/c/Clustal-Omega/Clustal-Omega-1.2.0-foss-2015b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/c/Clustal-Omega/Clustal-Omega-1.2.0-foss-2016b.eb b/easybuild/easyconfigs/c/Clustal-Omega/Clustal-Omega-1.2.0-foss-2016b.eb index 06226cf0b0..4b16e09c52 100644 --- a/easybuild/easyconfigs/c/Clustal-Omega/Clustal-Omega-1.2.0-foss-2016b.eb +++ b/easybuild/easyconfigs/c/Clustal-Omega/Clustal-Omega-1.2.0-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/c/Clustal-Omega/Clustal-Omega-1.2.0-goolf-1.4.10.eb b/easybuild/easyconfigs/c/Clustal-Omega/Clustal-Omega-1.2.0-goolf-1.4.10.eb index 4286aeb066..333cd83483 100644 --- a/easybuild/easyconfigs/c/Clustal-Omega/Clustal-Omega-1.2.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/c/Clustal-Omega/Clustal-Omega-1.2.0-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/c/ClustalW2/ClustalW2-2.1-foss-2015b.eb b/easybuild/easyconfigs/c/ClustalW2/ClustalW2-2.1-foss-2015b.eb index 2c61c0adb7..d60a1926b6 100644 --- a/easybuild/easyconfigs/c/ClustalW2/ClustalW2-2.1-foss-2015b.eb +++ b/easybuild/easyconfigs/c/ClustalW2/ClustalW2-2.1-foss-2015b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/c/ClustalW2/ClustalW2-2.1-foss-2016b.eb b/easybuild/easyconfigs/c/ClustalW2/ClustalW2-2.1-foss-2016b.eb index 2a03b23888..dd5edaff52 100644 --- a/easybuild/easyconfigs/c/ClustalW2/ClustalW2-2.1-foss-2016b.eb +++ b/easybuild/easyconfigs/c/ClustalW2/ClustalW2-2.1-foss-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/c/ClustalW2/ClustalW2-2.1-goolf-1.4.10.eb b/easybuild/easyconfigs/c/ClustalW2/ClustalW2-2.1-goolf-1.4.10.eb index de52a79a13..2e81136477 100644 --- a/easybuild/easyconfigs/c/ClustalW2/ClustalW2-2.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/c/ClustalW2/ClustalW2-2.1-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/c/ClustalW2/ClustalW2-2.1-ictce-5.3.0.eb b/easybuild/easyconfigs/c/ClustalW2/ClustalW2-2.1-ictce-5.3.0.eb index 068dfd89ce..5e25ce08f3 100644 --- a/easybuild/easyconfigs/c/ClustalW2/ClustalW2-2.1-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/c/ClustalW2/ClustalW2-2.1-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/c/ConnectomeWorkbench/ConnectomeWorkbench-1.2.2.eb b/easybuild/easyconfigs/c/ConnectomeWorkbench/ConnectomeWorkbench-1.2.2.eb index 0cb98a2054..1b697a0fc2 100644 --- a/easybuild/easyconfigs/c/ConnectomeWorkbench/ConnectomeWorkbench-1.2.2.eb +++ b/easybuild/easyconfigs/c/ConnectomeWorkbench/ConnectomeWorkbench-1.2.2.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Ravi Tripathi # Email: ravi89@uab.edu diff --git a/easybuild/easyconfigs/c/Cookiecutter/Cookiecutter-1.4.0-goolf-1.7.20-Python-2.7.11.eb b/easybuild/easyconfigs/c/Cookiecutter/Cookiecutter-1.4.0-goolf-1.7.20-Python-2.7.11.eb index 88fa4436a0..df729ad2ff 100644 --- a/easybuild/easyconfigs/c/Cookiecutter/Cookiecutter-1.4.0-goolf-1.7.20-Python-2.7.11.eb +++ b/easybuild/easyconfigs/c/Cookiecutter/Cookiecutter-1.4.0-goolf-1.7.20-Python-2.7.11.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/c/Coot/Coot-0.8.1-binary-Linux-x86_64-rhel-6-python-gtk2.eb b/easybuild/easyconfigs/c/Coot/Coot-0.8.1-binary-Linux-x86_64-rhel-6-python-gtk2.eb index 1386d5329d..c89dad88b7 100644 --- a/easybuild/easyconfigs/c/Coot/Coot-0.8.1-binary-Linux-x86_64-rhel-6-python-gtk2.eb +++ b/easybuild/easyconfigs/c/Coot/Coot-0.8.1-binary-Linux-x86_64-rhel-6-python-gtk2.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Adam Mazur # Research IT # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/c/Corkscrew/Corkscrew-2.0-goolf-1.4.10.eb b/easybuild/easyconfigs/c/Corkscrew/Corkscrew-2.0-goolf-1.4.10.eb index 8e4f18d89d..82fce2b21b 100644 --- a/easybuild/easyconfigs/c/Corkscrew/Corkscrew-2.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/c/Corkscrew/Corkscrew-2.0-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/c/Corkscrew/Corkscrew-2.0-ictce-5.3.0.eb b/easybuild/easyconfigs/c/Corkscrew/Corkscrew-2.0-ictce-5.3.0.eb index 0afa91c77f..68607c8fb2 100644 --- a/easybuild/easyconfigs/c/Corkscrew/Corkscrew-2.0-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/c/Corkscrew/Corkscrew-2.0-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/c/Cube/Cube-4.2-goolf-1.5.14.eb b/easybuild/easyconfigs/c/Cube/Cube-4.2-goolf-1.5.14.eb index 94f4a3ca61..4ad949c668 100644 --- a/easybuild/easyconfigs/c/Cube/Cube-4.2-goolf-1.5.14.eb +++ b/easybuild/easyconfigs/c/Cube/Cube-4.2-goolf-1.5.14.eb @@ -1,5 +1,5 @@ ## -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2015 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr diff --git a/easybuild/easyconfigs/c/Cube/Cube-4.2.3-goolf-1.5.14.eb b/easybuild/easyconfigs/c/Cube/Cube-4.2.3-goolf-1.5.14.eb index ad5e3d68d5..d6ae37f211 100644 --- a/easybuild/easyconfigs/c/Cube/Cube-4.2.3-goolf-1.5.14.eb +++ b/easybuild/easyconfigs/c/Cube/Cube-4.2.3-goolf-1.5.14.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Authors:: Jordi Blasco # License:: New BSD # diff --git a/easybuild/easyconfigs/c/Cube/Cube-4.3-foss-2015a.eb b/easybuild/easyconfigs/c/Cube/Cube-4.3-foss-2015a.eb index 5763a26ed1..b4f629e071 100644 --- a/easybuild/easyconfigs/c/Cube/Cube-4.3-foss-2015a.eb +++ b/easybuild/easyconfigs/c/Cube/Cube-4.3-foss-2015a.eb @@ -1,5 +1,5 @@ ## -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2015 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr diff --git a/easybuild/easyconfigs/c/Cube/Cube-4.3.2-foss-2015a.eb b/easybuild/easyconfigs/c/Cube/Cube-4.3.2-foss-2015a.eb index c274b99b8c..259be54087 100644 --- a/easybuild/easyconfigs/c/Cube/Cube-4.3.2-foss-2015a.eb +++ b/easybuild/easyconfigs/c/Cube/Cube-4.3.2-foss-2015a.eb @@ -1,5 +1,5 @@ ## -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2015 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr diff --git a/easybuild/easyconfigs/c/Cube/Cube-4.3.4-foss-2016a.eb b/easybuild/easyconfigs/c/Cube/Cube-4.3.4-foss-2016a.eb index 2ac3b5a935..44788c8041 100644 --- a/easybuild/easyconfigs/c/Cube/Cube-4.3.4-foss-2016a.eb +++ b/easybuild/easyconfigs/c/Cube/Cube-4.3.4-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2016 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr diff --git a/easybuild/easyconfigs/c/Cufflinks/Cufflinks-1.3.0-goolf-1.4.10.eb b/easybuild/easyconfigs/c/Cufflinks/Cufflinks-1.3.0-goolf-1.4.10.eb index 7b8dca8554..7e5d556bb7 100644 --- a/easybuild/easyconfigs/c/Cufflinks/Cufflinks-1.3.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/c/Cufflinks/Cufflinks-1.3.0-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/c/Cufflinks/Cufflinks-2.0.2-goolf-1.4.10.eb b/easybuild/easyconfigs/c/Cufflinks/Cufflinks-2.0.2-goolf-1.4.10.eb index 25b9208f0e..4c2199c2b2 100644 --- a/easybuild/easyconfigs/c/Cufflinks/Cufflinks-2.0.2-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/c/Cufflinks/Cufflinks-2.0.2-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/c/Cufflinks/Cufflinks-2.0.2-ictce-5.3.0.eb b/easybuild/easyconfigs/c/Cufflinks/Cufflinks-2.0.2-ictce-5.3.0.eb index 9c37cd717b..0aa76e0d7c 100644 --- a/easybuild/easyconfigs/c/Cufflinks/Cufflinks-2.0.2-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/c/Cufflinks/Cufflinks-2.0.2-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/c/Cufflinks/Cufflinks-2.1.1-ictce-5.5.0.eb b/easybuild/easyconfigs/c/Cufflinks/Cufflinks-2.1.1-ictce-5.5.0.eb index 6751cec530..0afef46d29 100644 --- a/easybuild/easyconfigs/c/Cufflinks/Cufflinks-2.1.1-ictce-5.5.0.eb +++ b/easybuild/easyconfigs/c/Cufflinks/Cufflinks-2.1.1-ictce-5.5.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/c/ccache/ccache-3.1.9-goolf-1.4.10.eb b/easybuild/easyconfigs/c/ccache/ccache-3.1.9-goolf-1.4.10.eb index 3bf08594da..97cad490a6 100644 --- a/easybuild/easyconfigs/c/ccache/ccache-3.1.9-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/c/ccache/ccache-3.1.9-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/c/ccache/ccache-3.1.9-ictce-5.3.0.eb b/easybuild/easyconfigs/c/ccache/ccache-3.1.9-ictce-5.3.0.eb index 84c3e7baf8..98555a7a7a 100644 --- a/easybuild/easyconfigs/c/ccache/ccache-3.1.9-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/c/ccache/ccache-3.1.9-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/c/ccache/ccache-3.2.5.eb b/easybuild/easyconfigs/c/ccache/ccache-3.2.5.eb index 3880874512..1db87d3057 100644 --- a/easybuild/easyconfigs/c/ccache/ccache-3.2.5.eb +++ b/easybuild/easyconfigs/c/ccache/ccache-3.2.5.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/c/ccache/ccache-3.3.1.eb b/easybuild/easyconfigs/c/ccache/ccache-3.3.1.eb index 66a9fe225a..f857d10d3a 100644 --- a/easybuild/easyconfigs/c/ccache/ccache-3.3.1.eb +++ b/easybuild/easyconfigs/c/ccache/ccache-3.3.1.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/c/ccache/ccache-3.3.3.eb b/easybuild/easyconfigs/c/ccache/ccache-3.3.3.eb index f3c8b6240f..66d52c698c 100644 --- a/easybuild/easyconfigs/c/ccache/ccache-3.3.3.eb +++ b/easybuild/easyconfigs/c/ccache/ccache-3.3.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/c/cflow/cflow-1.4-goolf-1.4.10.eb b/easybuild/easyconfigs/c/cflow/cflow-1.4-goolf-1.4.10.eb index bb9da36f80..a04ee2f9d7 100644 --- a/easybuild/easyconfigs/c/cflow/cflow-1.4-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/c/cflow/cflow-1.4-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/c/cflow/cflow-1.4-ictce-5.3.0.eb b/easybuild/easyconfigs/c/cflow/cflow-1.4-ictce-5.3.0.eb index 107d08647f..30c2c7c615 100644 --- a/easybuild/easyconfigs/c/cflow/cflow-1.4-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/c/cflow/cflow-1.4-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/c/cgdb/cgdb-0.6.5-goolf-1.4.10.eb b/easybuild/easyconfigs/c/cgdb/cgdb-0.6.5-goolf-1.4.10.eb index 9684225cb7..2c027621e8 100644 --- a/easybuild/easyconfigs/c/cgdb/cgdb-0.6.5-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/c/cgdb/cgdb-0.6.5-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/c/cgdb/cgdb-0.6.5-ictce-5.3.0.eb b/easybuild/easyconfigs/c/cgdb/cgdb-0.6.5-ictce-5.3.0.eb index eb6eb8ffbf..fe9db26324 100644 --- a/easybuild/easyconfigs/c/cgdb/cgdb-0.6.5-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/c/cgdb/cgdb-0.6.5-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/c/ctffind/ctffind-4.0.17-intel-2015b.eb b/easybuild/easyconfigs/c/ctffind/ctffind-4.0.17-intel-2015b.eb index 60152e7602..f6b9d86aa2 100644 --- a/easybuild/easyconfigs/c/ctffind/ctffind-4.0.17-intel-2015b.eb +++ b/easybuild/easyconfigs/c/ctffind/ctffind-4.0.17-intel-2015b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/c/cuDNN/cuDNN-4.0.eb b/easybuild/easyconfigs/c/cuDNN/cuDNN-4.0.eb index 5bcd0e1aa3..ccc5cdbff9 100644 --- a/easybuild/easyconfigs/c/cuDNN/cuDNN-4.0.eb +++ b/easybuild/easyconfigs/c/cuDNN/cuDNN-4.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Author: Stephane Thiell ## diff --git a/easybuild/easyconfigs/c/cuDNN/cuDNN-5.0-CUDA-7.5.18.eb b/easybuild/easyconfigs/c/cuDNN/cuDNN-5.0-CUDA-7.5.18.eb index aaab290dcf..1c8da2633c 100644 --- a/easybuild/easyconfigs/c/cuDNN/cuDNN-5.0-CUDA-7.5.18.eb +++ b/easybuild/easyconfigs/c/cuDNN/cuDNN-5.0-CUDA-7.5.18.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Author: Stephane Thiell ## diff --git a/easybuild/easyconfigs/c/cuDNN/cuDNN-5.0-rc.eb b/easybuild/easyconfigs/c/cuDNN/cuDNN-5.0-rc.eb index 536c2f33c6..97236ec5ff 100644 --- a/easybuild/easyconfigs/c/cuDNN/cuDNN-5.0-rc.eb +++ b/easybuild/easyconfigs/c/cuDNN/cuDNN-5.0-rc.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Author: Stephane Thiell ## diff --git a/easybuild/easyconfigs/c/cuDNN/cuDNN-5.1-CUDA-8.0.44.eb b/easybuild/easyconfigs/c/cuDNN/cuDNN-5.1-CUDA-8.0.44.eb index 08976a1f68..655063d179 100644 --- a/easybuild/easyconfigs/c/cuDNN/cuDNN-5.1-CUDA-8.0.44.eb +++ b/easybuild/easyconfigs/c/cuDNN/cuDNN-5.1-CUDA-8.0.44.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Author: Stephane Thiell ## diff --git a/easybuild/easyconfigs/c/cuDNN/cuDNN-6.0-CUDA-8.0.61.eb b/easybuild/easyconfigs/c/cuDNN/cuDNN-6.0-CUDA-8.0.61.eb index 942648ea47..29bbebe51b 100644 --- a/easybuild/easyconfigs/c/cuDNN/cuDNN-6.0-CUDA-8.0.61.eb +++ b/easybuild/easyconfigs/c/cuDNN/cuDNN-6.0-CUDA-8.0.61.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Author: Stephane Thiell ## diff --git a/easybuild/easyconfigs/c/cutadapt/cutadapt-1.3-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/c/cutadapt/cutadapt-1.3-goolf-1.4.10-Python-2.7.3.eb index d487d344f6..15b0a97b3b 100644 --- a/easybuild/easyconfigs/c/cutadapt/cutadapt-1.3-goolf-1.4.10-Python-2.7.3.eb +++ b/easybuild/easyconfigs/c/cutadapt/cutadapt-1.3-goolf-1.4.10-Python-2.7.3.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics (SIB) # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/c/cutadapt/cutadapt-1.3-goolf-1.4.10-Python-2.7.5.eb b/easybuild/easyconfigs/c/cutadapt/cutadapt-1.3-goolf-1.4.10-Python-2.7.5.eb index aceb217de4..78181eace3 100644 --- a/easybuild/easyconfigs/c/cutadapt/cutadapt-1.3-goolf-1.4.10-Python-2.7.5.eb +++ b/easybuild/easyconfigs/c/cutadapt/cutadapt-1.3-goolf-1.4.10-Python-2.7.5.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics (SIB) # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/c/cutadapt/cutadapt-1.4.1-foss-2014b-Python-2.7.8.eb b/easybuild/easyconfigs/c/cutadapt/cutadapt-1.4.1-foss-2014b-Python-2.7.8.eb index 9d2802684e..2eb271b2cb 100644 --- a/easybuild/easyconfigs/c/cutadapt/cutadapt-1.4.1-foss-2014b-Python-2.7.8.eb +++ b/easybuild/easyconfigs/c/cutadapt/cutadapt-1.4.1-foss-2014b-Python-2.7.8.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics (SIB) # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/c/cutadapt/cutadapt-1.4.1-goolf-1.4.10-Python-2.7.5.eb b/easybuild/easyconfigs/c/cutadapt/cutadapt-1.4.1-goolf-1.4.10-Python-2.7.5.eb index a4f5169761..0a914d43dd 100644 --- a/easybuild/easyconfigs/c/cutadapt/cutadapt-1.4.1-goolf-1.4.10-Python-2.7.5.eb +++ b/easybuild/easyconfigs/c/cutadapt/cutadapt-1.4.1-goolf-1.4.10-Python-2.7.5.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics (SIB) # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/c/cutadapt/cutadapt-1.5-foss-2014b-Python-2.7.8.eb b/easybuild/easyconfigs/c/cutadapt/cutadapt-1.5-foss-2014b-Python-2.7.8.eb index edcade8044..b5fa67bd28 100644 --- a/easybuild/easyconfigs/c/cutadapt/cutadapt-1.5-foss-2014b-Python-2.7.8.eb +++ b/easybuild/easyconfigs/c/cutadapt/cutadapt-1.5-foss-2014b-Python-2.7.8.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics (SIB) # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/c/cutadapt/cutadapt-1.6-foss-2014b-Python-2.7.8.eb b/easybuild/easyconfigs/c/cutadapt/cutadapt-1.6-foss-2014b-Python-2.7.8.eb index 6d660f5bc5..9fd455ea4e 100644 --- a/easybuild/easyconfigs/c/cutadapt/cutadapt-1.6-foss-2014b-Python-2.7.8.eb +++ b/easybuild/easyconfigs/c/cutadapt/cutadapt-1.6-foss-2014b-Python-2.7.8.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics (SIB) # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/c/cutadapt/cutadapt-1.7-foss-2014b-Python-2.7.8.eb b/easybuild/easyconfigs/c/cutadapt/cutadapt-1.7-foss-2014b-Python-2.7.8.eb index 7e135e5021..8fd82f9c4c 100644 --- a/easybuild/easyconfigs/c/cutadapt/cutadapt-1.7-foss-2014b-Python-2.7.8.eb +++ b/easybuild/easyconfigs/c/cutadapt/cutadapt-1.7-foss-2014b-Python-2.7.8.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics (SIB) # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/c/cutadapt/cutadapt-1.7.1-foss-2014b-Python-2.7.8.eb b/easybuild/easyconfigs/c/cutadapt/cutadapt-1.7.1-foss-2014b-Python-2.7.8.eb index ccfea59372..4eaa0d8f1e 100644 --- a/easybuild/easyconfigs/c/cutadapt/cutadapt-1.7.1-foss-2014b-Python-2.7.8.eb +++ b/easybuild/easyconfigs/c/cutadapt/cutadapt-1.7.1-foss-2014b-Python-2.7.8.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics (SIB) # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/c/cutadapt/cutadapt-1.8.1-intel-2015a-Python-2.7.9.eb b/easybuild/easyconfigs/c/cutadapt/cutadapt-1.8.1-intel-2015a-Python-2.7.9.eb index 8898d1ce85..1f2a8db354 100644 --- a/easybuild/easyconfigs/c/cutadapt/cutadapt-1.8.1-intel-2015a-Python-2.7.9.eb +++ b/easybuild/easyconfigs/c/cutadapt/cutadapt-1.8.1-intel-2015a-Python-2.7.9.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics (SIB) # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/c/cutadapt/cutadapt-1.9.1-foss-2015b-Python-2.7.10.eb b/easybuild/easyconfigs/c/cutadapt/cutadapt-1.9.1-foss-2015b-Python-2.7.10.eb index 6c74a88bb4..2508964d7f 100644 --- a/easybuild/easyconfigs/c/cutadapt/cutadapt-1.9.1-foss-2015b-Python-2.7.10.eb +++ b/easybuild/easyconfigs/c/cutadapt/cutadapt-1.9.1-foss-2015b-Python-2.7.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics (SIB) # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/c/cutadapt/cutadapt-1.9.1-foss-2016a-Python-2.7.11.eb b/easybuild/easyconfigs/c/cutadapt/cutadapt-1.9.1-foss-2016a-Python-2.7.11.eb index 99d5dfa45c..65f2550e40 100644 --- a/easybuild/easyconfigs/c/cutadapt/cutadapt-1.9.1-foss-2016a-Python-2.7.11.eb +++ b/easybuild/easyconfigs/c/cutadapt/cutadapt-1.9.1-foss-2016a-Python-2.7.11.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics (SIB) # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/c/cutadapt/cutadapt-1.9.1-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/c/cutadapt/cutadapt-1.9.1-foss-2016b-Python-2.7.12.eb index 63398f9cb0..9397e22d2b 100644 --- a/easybuild/easyconfigs/c/cutadapt/cutadapt-1.9.1-foss-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/c/cutadapt/cutadapt-1.9.1-foss-2016b-Python-2.7.12.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics (SIB) # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/d/DIALIGN-TX/DIALIGN-TX-1.0.2-goolf-1.4.10.eb b/easybuild/easyconfigs/d/DIALIGN-TX/DIALIGN-TX-1.0.2-goolf-1.4.10.eb index f6fd6246c4..bb425b52f0 100644 --- a/easybuild/easyconfigs/d/DIALIGN-TX/DIALIGN-TX-1.0.2-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/d/DIALIGN-TX/DIALIGN-TX-1.0.2-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/d/DIAMOND/DIAMOND-0.8.35-goolf-1.7.20.eb b/easybuild/easyconfigs/d/DIAMOND/DIAMOND-0.8.35-goolf-1.7.20.eb index 19f96d592f..2c2bb31863 100644 --- a/easybuild/easyconfigs/d/DIAMOND/DIAMOND-0.8.35-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/d/DIAMOND/DIAMOND-0.8.35-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/d/DIAMOND/DIAMOND-0.9.6-goolf-1.7.20.eb b/easybuild/easyconfigs/d/DIAMOND/DIAMOND-0.9.6-goolf-1.7.20.eb index bc285581b6..3d1b5aebca 100644 --- a/easybuild/easyconfigs/d/DIAMOND/DIAMOND-0.9.6-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/d/DIAMOND/DIAMOND-0.9.6-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/d/DMTCP/DMTCP-2.4.5.eb b/easybuild/easyconfigs/d/DMTCP/DMTCP-2.4.5.eb index 04e4fd7a51..27c3a7d1ef 100644 --- a/easybuild/easyconfigs/d/DMTCP/DMTCP-2.4.5.eb +++ b/easybuild/easyconfigs/d/DMTCP/DMTCP-2.4.5.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Ravi Tripathi # Email: ravi89@uab.edu diff --git a/easybuild/easyconfigs/d/DMTCP/DMTCP-2.5.0-foss-2016a.eb b/easybuild/easyconfigs/d/DMTCP/DMTCP-2.5.0-foss-2016a.eb index 1687e9b44d..f7a7f714c1 100644 --- a/easybuild/easyconfigs/d/DMTCP/DMTCP-2.5.0-foss-2016a.eb +++ b/easybuild/easyconfigs/d/DMTCP/DMTCP-2.5.0-foss-2016a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Ravi Tripathi # Email: ravi89@uab.edu diff --git a/easybuild/easyconfigs/d/DSRC/DSRC-2.0rc-linux-64-bit.eb b/easybuild/easyconfigs/d/DSRC/DSRC-2.0rc-linux-64-bit.eb index 76c48d1e81..2a945fa40d 100644 --- a/easybuild/easyconfigs/d/DSRC/DSRC-2.0rc-linux-64-bit.eb +++ b/easybuild/easyconfigs/d/DSRC/DSRC-2.0rc-linux-64-bit.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2015 NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/d/DendroPy/DendroPy-3.12.0-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/d/DendroPy/DendroPy-3.12.0-goolf-1.4.10-Python-2.7.3.eb index 7d7b15088e..000354596f 100644 --- a/easybuild/easyconfigs/d/DendroPy/DendroPy-3.12.0-goolf-1.4.10-Python-2.7.3.eb +++ b/easybuild/easyconfigs/d/DendroPy/DendroPy-3.12.0-goolf-1.4.10-Python-2.7.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2014 The Cyprus Institute # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/d/DicomBrowser/DicomBrowser-1.7.0b5-Java-1.7.0_80.eb b/easybuild/easyconfigs/d/DicomBrowser/DicomBrowser-1.7.0b5-Java-1.7.0_80.eb index 5106c4165f..e27f766c81 100644 --- a/easybuild/easyconfigs/d/DicomBrowser/DicomBrowser-1.7.0b5-Java-1.7.0_80.eb +++ b/easybuild/easyconfigs/d/DicomBrowser/DicomBrowser-1.7.0b5-Java-1.7.0_80.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/d/Diffutils/Diffutils-3.2-goolf-1.4.10.eb b/easybuild/easyconfigs/d/Diffutils/Diffutils-3.2-goolf-1.4.10.eb index cfed427bb7..730559ad83 100644 --- a/easybuild/easyconfigs/d/Diffutils/Diffutils-3.2-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/d/Diffutils/Diffutils-3.2-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/d/Diffutils/Diffutils-3.2-ictce-5.3.0.eb b/easybuild/easyconfigs/d/Diffutils/Diffutils-3.2-ictce-5.3.0.eb index 9021d61ff6..94063017d3 100644 --- a/easybuild/easyconfigs/d/Diffutils/Diffutils-3.2-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/d/Diffutils/Diffutils-3.2-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/d/Diffutils/Diffutils-3.3-GCC-4.8.2.eb b/easybuild/easyconfigs/d/Diffutils/Diffutils-3.3-GCC-4.8.2.eb index 03dd2d88f6..a48cfb999d 100644 --- a/easybuild/easyconfigs/d/Diffutils/Diffutils-3.3-GCC-4.8.2.eb +++ b/easybuild/easyconfigs/d/Diffutils/Diffutils-3.3-GCC-4.8.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/d/disambiguate/disambiguate-1.0.0-goolf-1.7.20-Python-2.7.11.eb b/easybuild/easyconfigs/d/disambiguate/disambiguate-1.0.0-goolf-1.7.20-Python-2.7.11.eb index 8b40d87ea0..3f7a8cf8e8 100644 --- a/easybuild/easyconfigs/d/disambiguate/disambiguate-1.0.0-goolf-1.7.20-Python-2.7.11.eb +++ b/easybuild/easyconfigs/d/disambiguate/disambiguate-1.0.0-goolf-1.7.20-Python-2.7.11.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/d/drFAST/drFAST-1.0.0.0-goolf-1.4.10.eb b/easybuild/easyconfigs/d/drFAST/drFAST-1.0.0.0-goolf-1.4.10.eb index 3d7e8e50d6..b4f4f41636 100644 --- a/easybuild/easyconfigs/d/drFAST/drFAST-1.0.0.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/d/drFAST/drFAST-1.0.0.0-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/d/drFAST/drFAST-1.0.0.0-ictce-6.2.5.eb b/easybuild/easyconfigs/d/drFAST/drFAST-1.0.0.0-ictce-6.2.5.eb index 33794a918d..60fff5c063 100644 --- a/easybuild/easyconfigs/d/drFAST/drFAST-1.0.0.0-ictce-6.2.5.eb +++ b/easybuild/easyconfigs/d/drFAST/drFAST-1.0.0.0-ictce-6.2.5.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/e/EIGENSOFT/EIGENSOFT-6.0.1-foss-2016a.eb b/easybuild/easyconfigs/e/EIGENSOFT/EIGENSOFT-6.0.1-foss-2016a.eb index c1c0d70437..15ad25d3e8 100644 --- a/easybuild/easyconfigs/e/EIGENSOFT/EIGENSOFT-6.0.1-foss-2016a.eb +++ b/easybuild/easyconfigs/e/EIGENSOFT/EIGENSOFT-6.0.1-foss-2016a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/e/EIGENSOFT/EIGENSOFT-6.1.1-foss-2016a.eb b/easybuild/easyconfigs/e/EIGENSOFT/EIGENSOFT-6.1.1-foss-2016a.eb index 198de40465..7dd70ec70b 100644 --- a/easybuild/easyconfigs/e/EIGENSOFT/EIGENSOFT-6.1.1-foss-2016a.eb +++ b/easybuild/easyconfigs/e/EIGENSOFT/EIGENSOFT-6.1.1-foss-2016a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/e/EIGENSOFT/EIGENSOFT-6.1.1-goolf-1.7.20.eb b/easybuild/easyconfigs/e/EIGENSOFT/EIGENSOFT-6.1.1-goolf-1.7.20.eb index a429626ec5..1b6aee4f0e 100644 --- a/easybuild/easyconfigs/e/EIGENSOFT/EIGENSOFT-6.1.1-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/e/EIGENSOFT/EIGENSOFT-6.1.1-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/e/EIGENSOFT/EIGENSOFT-6.1.4-foss-2016b.eb b/easybuild/easyconfigs/e/EIGENSOFT/EIGENSOFT-6.1.4-foss-2016b.eb index 5b6b65198e..13e8afdb7f 100644 --- a/easybuild/easyconfigs/e/EIGENSOFT/EIGENSOFT-6.1.4-foss-2016b.eb +++ b/easybuild/easyconfigs/e/EIGENSOFT/EIGENSOFT-6.1.4-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/e/ELPA/ELPA-2013.11-ictce-5.3.0.eb b/easybuild/easyconfigs/e/ELPA/ELPA-2013.11-ictce-5.3.0.eb index c9a900612f..b23777f71c 100644 --- a/easybuild/easyconfigs/e/ELPA/ELPA-2013.11-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/e/ELPA/ELPA-2013.11-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Authors:: Inge Gutheil , Alan O'Cais # License:: MIT/GPL diff --git a/easybuild/easyconfigs/e/ELPA/ELPA-2013.11-ictce-5.5.0.eb b/easybuild/easyconfigs/e/ELPA/ELPA-2013.11-ictce-5.5.0.eb index 9783862078..05d749936e 100644 --- a/easybuild/easyconfigs/e/ELPA/ELPA-2013.11-ictce-5.5.0.eb +++ b/easybuild/easyconfigs/e/ELPA/ELPA-2013.11-ictce-5.5.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Authors:: Inge Gutheil , Alan O'Cais # License:: MIT/GPL diff --git a/easybuild/easyconfigs/e/ELPA/ELPA-2016.05.004-intel-2016b.eb b/easybuild/easyconfigs/e/ELPA/ELPA-2016.05.004-intel-2016b.eb index b188df034a..6168179ce8 100644 --- a/easybuild/easyconfigs/e/ELPA/ELPA-2016.05.004-intel-2016b.eb +++ b/easybuild/easyconfigs/e/ELPA/ELPA-2016.05.004-intel-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Authors:: Inge Gutheil , Alan O'Cais # License:: MIT/GPL diff --git a/easybuild/easyconfigs/e/ELPA/ELPA-2016.05.004-intel-2017a.eb b/easybuild/easyconfigs/e/ELPA/ELPA-2016.05.004-intel-2017a.eb index 75d318f670..ee72d9cdc5 100644 --- a/easybuild/easyconfigs/e/ELPA/ELPA-2016.05.004-intel-2017a.eb +++ b/easybuild/easyconfigs/e/ELPA/ELPA-2016.05.004-intel-2017a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Authors:: Inge Gutheil , Alan O'Cais # License:: MIT/GPL diff --git a/easybuild/easyconfigs/e/ELPH/ELPH-1.0.1-goolf-1.4.10.eb b/easybuild/easyconfigs/e/ELPH/ELPH-1.0.1-goolf-1.4.10.eb index 8ac9aea768..5f261e1c14 100644 --- a/easybuild/easyconfigs/e/ELPH/ELPH-1.0.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/e/ELPH/ELPH-1.0.1-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/e/ELPH/ELPH-1.0.1-ictce-6.2.5.eb b/easybuild/easyconfigs/e/ELPH/ELPH-1.0.1-ictce-6.2.5.eb index ba2c506ee5..71841b9321 100644 --- a/easybuild/easyconfigs/e/ELPH/ELPH-1.0.1-ictce-6.2.5.eb +++ b/easybuild/easyconfigs/e/ELPH/ELPH-1.0.1-ictce-6.2.5.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/e/ELinks/ELinks-0.12pre5-goolf-1.4.10.eb b/easybuild/easyconfigs/e/ELinks/ELinks-0.12pre5-goolf-1.4.10.eb index ee65cc074e..c8cce9a3c7 100644 --- a/easybuild/easyconfigs/e/ELinks/ELinks-0.12pre5-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/e/ELinks/ELinks-0.12pre5-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/e/ELinks/ELinks-0.12pre5-ictce-5.3.0.eb b/easybuild/easyconfigs/e/ELinks/ELinks-0.12pre5-ictce-5.3.0.eb index 176ffcb6bd..0c4dfa07a3 100644 --- a/easybuild/easyconfigs/e/ELinks/ELinks-0.12pre5-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/e/ELinks/ELinks-0.12pre5-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/e/ESPResSo/ESPResSo-3.1.1-goolf-1.4.10-parallel.eb b/easybuild/easyconfigs/e/ESPResSo/ESPResSo-3.1.1-goolf-1.4.10-parallel.eb index 209b0e8d81..f31aca4bb2 100644 --- a/easybuild/easyconfigs/e/ESPResSo/ESPResSo-3.1.1-goolf-1.4.10-parallel.eb +++ b/easybuild/easyconfigs/e/ESPResSo/ESPResSo-3.1.1-goolf-1.4.10-parallel.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Josh Berryman , Fotis Georgatos diff --git a/easybuild/easyconfigs/e/ESPResSo/ESPResSo-3.1.1-goolf-1.4.10-serial.eb b/easybuild/easyconfigs/e/ESPResSo/ESPResSo-3.1.1-goolf-1.4.10-serial.eb index 80ab0978a1..250bf7f6ef 100644 --- a/easybuild/easyconfigs/e/ESPResSo/ESPResSo-3.1.1-goolf-1.4.10-serial.eb +++ b/easybuild/easyconfigs/e/ESPResSo/ESPResSo-3.1.1-goolf-1.4.10-serial.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Josh Berryman , Fotis Georgatos diff --git a/easybuild/easyconfigs/e/ESPResSo/ESPResSo-3.1.1-ictce-5.3.0-parallel.eb b/easybuild/easyconfigs/e/ESPResSo/ESPResSo-3.1.1-ictce-5.3.0-parallel.eb index 9ad3efca4c..16a651c9b3 100644 --- a/easybuild/easyconfigs/e/ESPResSo/ESPResSo-3.1.1-ictce-5.3.0-parallel.eb +++ b/easybuild/easyconfigs/e/ESPResSo/ESPResSo-3.1.1-ictce-5.3.0-parallel.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Josh Berryman , Fotis Georgatos diff --git a/easybuild/easyconfigs/e/ESPResSo/ESPResSo-3.1.1-ictce-5.3.0-serial.eb b/easybuild/easyconfigs/e/ESPResSo/ESPResSo-3.1.1-ictce-5.3.0-serial.eb index 525e2ebf3e..be9504c095 100644 --- a/easybuild/easyconfigs/e/ESPResSo/ESPResSo-3.1.1-ictce-5.3.0-serial.eb +++ b/easybuild/easyconfigs/e/ESPResSo/ESPResSo-3.1.1-ictce-5.3.0-serial.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Josh Berryman , Fotis Georgatos diff --git a/easybuild/easyconfigs/e/ETSF_IO/ETSF_IO-1.0.4-goolf-1.4.10.eb b/easybuild/easyconfigs/e/ETSF_IO/ETSF_IO-1.0.4-goolf-1.4.10.eb index 17f0b9d160..cfe2dfd1da 100644 --- a/easybuild/easyconfigs/e/ETSF_IO/ETSF_IO-1.0.4-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/e/ETSF_IO/ETSF_IO-1.0.4-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2014 The Cyprus Institute # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/e/ETSF_IO/ETSF_IO-1.0.4-intel-2015b.eb b/easybuild/easyconfigs/e/ETSF_IO/ETSF_IO-1.0.4-intel-2015b.eb index 7e7f19b2ca..502c0c493a 100644 --- a/easybuild/easyconfigs/e/ETSF_IO/ETSF_IO-1.0.4-intel-2015b.eb +++ b/easybuild/easyconfigs/e/ETSF_IO/ETSF_IO-1.0.4-intel-2015b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2014 The Cyprus Institute # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.0.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.0.0.eb index 6a13fbccbd..819bcfdba2 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.0.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.0.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.0.0' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.0.1.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.0.1.eb index 1fc508215c..c22351c6de 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.0.1.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.0.1.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.0.1' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.0.2.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.0.2.eb index aefe4f3461..10e52177b1 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.0.2.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.0.2.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.0.2' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.1.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.1.0.eb index aec17460aa..b86dfbf810 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.1.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.1.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.1.0' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.10.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.10.0.eb index 12381b6467..a6804f4f58 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.10.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.10.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.10.0' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.11.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.11.0.eb index a8ef6b164a..23833e2836 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.11.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.11.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.11.0' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.11.1.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.11.1.eb index d2df7f1988..47f1a751e4 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.11.1.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.11.1.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.11.1' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.12.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.12.0.eb index 345d210d28..e4a27cb487 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.12.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.12.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.12.0' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.12.1.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.12.1.eb index 97720876b9..eb82e53707 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.12.1.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.12.1.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.12.1' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.13.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.13.0.eb index 0b5ba14c24..5455bc671c 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.13.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.13.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.13.0' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.14.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.14.0.eb index 0176f2b558..bf7bef23ba 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.14.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.14.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.14.0' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.15.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.15.0.eb index 3ae286c658..bc94abbd43 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.15.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.15.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = "1.15.0" -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.15.1.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.15.1.eb index b4fb5e015c..567d84626d 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.15.1.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.15.1.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = "1.15.1" -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.15.2.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.15.2.eb index 9025d6b24b..dc940ff5f3 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.15.2.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.15.2.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = "1.15.2" -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.16.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.16.0.eb index 2ac7d84426..07b994c134 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.16.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.16.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = "1.16.0" -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.16.1.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.16.1.eb index a7a958a3ca..063c0cae95 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.16.1.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.16.1.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = "1.16.1" -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.16.2.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.16.2.eb index 26fbe953cd..ca54ce2b48 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.16.2.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.16.2.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = "1.16.2" -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.2.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.2.0.eb index 84e658abed..5ab2ef518b 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.2.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.2.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.2.0' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.3.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.3.0.eb index 62ec508192..74208a9b9f 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.3.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.3.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.3.0' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.4.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.4.0.eb index f56094b5c0..cf1ab671cb 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.4.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.4.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.4.0' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.5.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.5.0.eb index df9a262ab2..395394e677 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.5.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.5.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.5.0' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.6.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.6.0.eb index 9082a71a46..673b37a447 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.6.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.6.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.6.0' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.7.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.7.0.eb index a2164fa02d..d63e41ec85 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.7.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.7.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.7.0' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.8.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.8.0.eb index 8fa4a0a750..f5a9269b1f 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.8.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.8.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.8.0' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.8.1.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.8.1.eb index 1774b8976c..e18328251e 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.8.1.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.8.1.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.8.1' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.8.2.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.8.2.eb index d990801ac2..76df856dd7 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.8.2.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.8.2.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.8.2' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.9.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.9.0.eb index 97801124aa..d2e8a2944e 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.9.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.9.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.9.0' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.0.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.0.0.eb index 81d586f625..24720fca1c 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.0.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.0.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = "2.0.0" -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.1.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.1.0.eb index cb8c19e606..4a7b7be82f 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.1.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.1.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '2.1.0' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.1.1.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.1.1.eb index 632563276e..84afda8b48 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.1.1.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.1.1.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '2.1.1' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.2.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.2.0.eb index 116950af4b..ce7e5bf141 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.2.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.2.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '2.2.0' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.3.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.3.0.eb index 6080ef8f0c..31548a1769 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.3.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.3.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '2.3.0' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.4.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.4.0.eb index bc8d7c8dd5..d7fe564a73 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.4.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.4.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '2.4.0' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.5.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.5.0.eb index 37d212b334..89f2840b11 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.5.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.5.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '2.5.0' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.6.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.6.0.eb index 01e4502a09..5d5435bb7f 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.6.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.6.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '2.6.0' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.7.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.7.0.eb index 1ca29896e8..b09425b770 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.7.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.7.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '2.7.0' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.8.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.8.0.eb index 07bb77b453..2e50e9c4e7 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.8.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.8.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '2.8.0' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.8.1.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.8.1.eb index f166a5d587..d8d510a78c 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.8.1.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.8.1.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '2.8.1' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.8.2.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.8.2.eb index b0edd36c96..2c33962b07 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.8.2.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.8.2.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '2.8.2' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.9.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.9.0.eb index 09a04b73a8..7ab918d84c 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.9.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.9.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '2.9.0' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.0.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.0.0.eb index a77b43aaad..c9a8f9fb2a 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.0.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.0.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '3.0.0' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.0.1.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.0.1.eb index 3d9fd92508..7fcaac8436 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.0.1.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.0.1.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '3.0.1' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.0.2.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.0.2.eb index 708295ab3c..ab22452b62 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.0.2.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.0.2.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '3.0.2' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.1.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.1.0.eb index 606f9a318d..7961017185 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.1.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.1.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '3.1.0' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.1.1.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.1.1.eb index 2dbc7fa9ba..bb9b2572df 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.1.1.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.1.1.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '3.1.1' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.1.2.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.1.2.eb index eaadea3b41..7bf19cc08b 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.1.2.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.1.2.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '3.1.2' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.2.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.2.0.eb index d84e16eaba..97d13804f9 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.2.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.2.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '3.2.0' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.2.1.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.2.1.eb index dfebb15dea..ee42c1d6b9 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.2.1.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.2.1.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '3.2.1' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.3.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.3.0.eb index c11a0f20c4..5d4ea9ca97 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.3.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.3.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '3.3.0' -homepage = 'http://hpcugent.github.com/easybuild/' +homepage = 'http://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/Eigen/Eigen-3.1.1-goolf-1.4.10.eb b/easybuild/easyconfigs/e/Eigen/Eigen-3.1.1-goolf-1.4.10.eb index f64ca17dc1..03e5ae3142 100644 --- a/easybuild/easyconfigs/e/Eigen/Eigen-3.1.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/e/Eigen/Eigen-3.1.1-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/e/Eigen/Eigen-3.1.1-ictce-5.3.0.eb b/easybuild/easyconfigs/e/Eigen/Eigen-3.1.1-ictce-5.3.0.eb index c2159638f2..29c0f0a24e 100644 --- a/easybuild/easyconfigs/e/Eigen/Eigen-3.1.1-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/e/Eigen/Eigen-3.1.1-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/e/Eigen/Eigen-3.1.4-goolf-1.4.10.eb b/easybuild/easyconfigs/e/Eigen/Eigen-3.1.4-goolf-1.4.10.eb index ad65bdfc92..52df5baa8d 100644 --- a/easybuild/easyconfigs/e/Eigen/Eigen-3.1.4-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/e/Eigen/Eigen-3.1.4-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/e/Eigen/Eigen-3.1.4-ictce-5.3.0.eb b/easybuild/easyconfigs/e/Eigen/Eigen-3.1.4-ictce-5.3.0.eb index 0a2271f035..0fec576ce6 100644 --- a/easybuild/easyconfigs/e/Eigen/Eigen-3.1.4-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/e/Eigen/Eigen-3.1.4-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/e/Eigen/Eigen-3.1.4-ictce-5.5.0.eb b/easybuild/easyconfigs/e/Eigen/Eigen-3.1.4-ictce-5.5.0.eb index 0dd48816d2..70ef04ea87 100644 --- a/easybuild/easyconfigs/e/Eigen/Eigen-3.1.4-ictce-5.5.0.eb +++ b/easybuild/easyconfigs/e/Eigen/Eigen-3.1.4-ictce-5.5.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/e/Eigen/Eigen-3.2.0-ictce-5.5.0.eb b/easybuild/easyconfigs/e/Eigen/Eigen-3.2.0-ictce-5.5.0.eb index 9e7b9cf60d..7831be18f5 100644 --- a/easybuild/easyconfigs/e/Eigen/Eigen-3.2.0-ictce-5.5.0.eb +++ b/easybuild/easyconfigs/e/Eigen/Eigen-3.2.0-ictce-5.5.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/e/Eigen/Eigen-3.2.2-goolf-1.5.14.eb b/easybuild/easyconfigs/e/Eigen/Eigen-3.2.2-goolf-1.5.14.eb index 7cbefdf8ab..1e4a8f49a5 100644 --- a/easybuild/easyconfigs/e/Eigen/Eigen-3.2.2-goolf-1.5.14.eb +++ b/easybuild/easyconfigs/e/Eigen/Eigen-3.2.2-goolf-1.5.14.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/e/Eigen/Eigen-3.2.2-ictce-7.1.2.eb b/easybuild/easyconfigs/e/Eigen/Eigen-3.2.2-ictce-7.1.2.eb index 81edc7d68b..f1219c065a 100644 --- a/easybuild/easyconfigs/e/Eigen/Eigen-3.2.2-ictce-7.1.2.eb +++ b/easybuild/easyconfigs/e/Eigen/Eigen-3.2.2-ictce-7.1.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/e/Eigen/Eigen-3.2.2-intel-2014b.eb b/easybuild/easyconfigs/e/Eigen/Eigen-3.2.2-intel-2014b.eb index b3c186165b..16de65cee4 100644 --- a/easybuild/easyconfigs/e/Eigen/Eigen-3.2.2-intel-2014b.eb +++ b/easybuild/easyconfigs/e/Eigen/Eigen-3.2.2-intel-2014b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/e/Eigen/Eigen-3.2.6-goolf-1.7.20.eb b/easybuild/easyconfigs/e/Eigen/Eigen-3.2.6-goolf-1.7.20.eb index 59832233f0..2ac82d539a 100644 --- a/easybuild/easyconfigs/e/Eigen/Eigen-3.2.6-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/e/Eigen/Eigen-3.2.6-goolf-1.7.20.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/e/ErlangOTP/ErlangOTP-R16B02-goolf-1.4.10-no-Java.eb b/easybuild/easyconfigs/e/ErlangOTP/ErlangOTP-R16B02-goolf-1.4.10-no-Java.eb index 1e6432cb6d..32b4b7697d 100644 --- a/easybuild/easyconfigs/e/ErlangOTP/ErlangOTP-R16B02-goolf-1.4.10-no-Java.eb +++ b/easybuild/easyconfigs/e/ErlangOTP/ErlangOTP-R16B02-goolf-1.4.10-no-Java.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/e/Exonerate/Exonerate-2.2.0-foss-2015b.eb b/easybuild/easyconfigs/e/Exonerate/Exonerate-2.2.0-foss-2015b.eb index 6a9d4b5398..84c6277a5a 100644 --- a/easybuild/easyconfigs/e/Exonerate/Exonerate-2.2.0-foss-2015b.eb +++ b/easybuild/easyconfigs/e/Exonerate/Exonerate-2.2.0-foss-2015b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/e/Exonerate/Exonerate-2.2.0-goolf-1.4.10.eb b/easybuild/easyconfigs/e/Exonerate/Exonerate-2.2.0-goolf-1.4.10.eb index 7f862017dd..db59680faa 100644 --- a/easybuild/easyconfigs/e/Exonerate/Exonerate-2.2.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/e/Exonerate/Exonerate-2.2.0-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/e/Exonerate/Exonerate-2.2.0-ictce-5.3.0.eb b/easybuild/easyconfigs/e/Exonerate/Exonerate-2.2.0-ictce-5.3.0.eb index 899422100c..19e0931e00 100644 --- a/easybuild/easyconfigs/e/Exonerate/Exonerate-2.2.0-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/e/Exonerate/Exonerate-2.2.0-ictce-5.3.0.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/e/Exonerate/Exonerate-2.4.0-foss-2015b.eb b/easybuild/easyconfigs/e/Exonerate/Exonerate-2.4.0-foss-2015b.eb index 524d427c0e..89c9d6f1ca 100644 --- a/easybuild/easyconfigs/e/Exonerate/Exonerate-2.4.0-foss-2015b.eb +++ b/easybuild/easyconfigs/e/Exonerate/Exonerate-2.4.0-foss-2015b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/e/Exonerate/Exonerate-2.4.0-foss-2016a.eb b/easybuild/easyconfigs/e/Exonerate/Exonerate-2.4.0-foss-2016a.eb index 0cfe11f239..9d263392d3 100644 --- a/easybuild/easyconfigs/e/Exonerate/Exonerate-2.4.0-foss-2016a.eb +++ b/easybuild/easyconfigs/e/Exonerate/Exonerate-2.4.0-foss-2016a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/e/Exonerate/Exonerate-2.4.0-foss-2016b.eb b/easybuild/easyconfigs/e/Exonerate/Exonerate-2.4.0-foss-2016b.eb index f186cddd62..afcb38952d 100644 --- a/easybuild/easyconfigs/e/Exonerate/Exonerate-2.4.0-foss-2016b.eb +++ b/easybuild/easyconfigs/e/Exonerate/Exonerate-2.4.0-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/e/Extrae/Extrae-3.0.1-foss-2015a.eb b/easybuild/easyconfigs/e/Extrae/Extrae-3.0.1-foss-2015a.eb index 4e0f98d635..a37c5f2e77 100644 --- a/easybuild/easyconfigs/e/Extrae/Extrae-3.0.1-foss-2015a.eb +++ b/easybuild/easyconfigs/e/Extrae/Extrae-3.0.1-foss-2015a.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/e/eXpress/eXpress-1.5.1-goolf-1.4.10.eb b/easybuild/easyconfigs/e/eXpress/eXpress-1.5.1-goolf-1.4.10.eb index 037dcd8185..94c1eb603b 100644 --- a/easybuild/easyconfigs/e/eXpress/eXpress-1.5.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/e/eXpress/eXpress-1.5.1-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/f/FASTA/FASTA-36.3.5e-foss-2016b.eb b/easybuild/easyconfigs/f/FASTA/FASTA-36.3.5e-foss-2016b.eb index 93fe9bd8a4..9ecdd700fb 100644 --- a/easybuild/easyconfigs/f/FASTA/FASTA-36.3.5e-foss-2016b.eb +++ b/easybuild/easyconfigs/f/FASTA/FASTA-36.3.5e-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild easyblock = 'MakeCp' diff --git a/easybuild/easyconfigs/f/FASTA/FASTA-36.3.5e-goolf-1.4.10.eb b/easybuild/easyconfigs/f/FASTA/FASTA-36.3.5e-goolf-1.4.10.eb index cb997fa593..7738a65d8c 100644 --- a/easybuild/easyconfigs/f/FASTA/FASTA-36.3.5e-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/f/FASTA/FASTA-36.3.5e-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , Thekla Loizou , diff --git a/easybuild/easyconfigs/f/FASTA/FASTA-36.3.5e-ictce-5.3.0.eb b/easybuild/easyconfigs/f/FASTA/FASTA-36.3.5e-ictce-5.3.0.eb index 31a89c0085..723f27db16 100644 --- a/easybuild/easyconfigs/f/FASTA/FASTA-36.3.5e-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/f/FASTA/FASTA-36.3.5e-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , Thekla Loizou , diff --git a/easybuild/easyconfigs/f/FASTX-Toolkit/FASTX-Toolkit-0.0.13.2-goolf-1.4.10.eb b/easybuild/easyconfigs/f/FASTX-Toolkit/FASTX-Toolkit-0.0.13.2-goolf-1.4.10.eb index 3b0992eef6..0c2b26660e 100644 --- a/easybuild/easyconfigs/f/FASTX-Toolkit/FASTX-Toolkit-0.0.13.2-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/f/FASTX-Toolkit/FASTX-Toolkit-0.0.13.2-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/f/FASTX-Toolkit/FASTX-Toolkit-0.0.13.2-ictce-5.3.0.eb b/easybuild/easyconfigs/f/FASTX-Toolkit/FASTX-Toolkit-0.0.13.2-ictce-5.3.0.eb index 1f15e35214..8736954b97 100644 --- a/easybuild/easyconfigs/f/FASTX-Toolkit/FASTX-Toolkit-0.0.13.2-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/f/FASTX-Toolkit/FASTX-Toolkit-0.0.13.2-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-foss-2015b.eb b/easybuild/easyconfigs/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-foss-2015b.eb index 000e1a89b7..6b26b56f8f 100644 --- a/easybuild/easyconfigs/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-foss-2015b.eb +++ b/easybuild/easyconfigs/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-foss-2015b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-foss-2016a.eb b/easybuild/easyconfigs/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-foss-2016a.eb index a69a7b9e2f..0b62a9167c 100644 --- a/easybuild/easyconfigs/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-foss-2016a.eb +++ b/easybuild/easyconfigs/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-foss-2016b.eb b/easybuild/easyconfigs/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-foss-2016b.eb index ef4b99cd73..c8f2a2e194 100644 --- a/easybuild/easyconfigs/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-foss-2016b.eb +++ b/easybuild/easyconfigs/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-foss-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-goolf-1.4.10.eb b/easybuild/easyconfigs/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-goolf-1.4.10.eb index 1b0419e8b8..2455f164d6 100644 --- a/easybuild/easyconfigs/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-intel-2015a.eb b/easybuild/easyconfigs/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-intel-2015a.eb index 88eedbe248..bfe6932967 100644 --- a/easybuild/easyconfigs/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-intel-2015a.eb +++ b/easybuild/easyconfigs/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-intel-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/f/FFLAS-FFPACK/FFLAS-FFPACK-2.2.0-foss-2016a.eb b/easybuild/easyconfigs/f/FFLAS-FFPACK/FFLAS-FFPACK-2.2.0-foss-2016a.eb index da99f9d5b8..d03b85f906 100644 --- a/easybuild/easyconfigs/f/FFLAS-FFPACK/FFLAS-FFPACK-2.2.0-foss-2016a.eb +++ b/easybuild/easyconfigs/f/FFLAS-FFPACK/FFLAS-FFPACK-2.2.0-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild recipe; see https://github.com/hpcugent/easybuild +# This file is an EasyBuild recipe; see https://github.com/easybuilders/easybuild # # Copyright:: Copyright (c) 2016 Riccardo Murri # Authors:: Riccardo Murri diff --git a/easybuild/easyconfigs/f/FLAC/FLAC-1.3.1-foss-2015a.eb b/easybuild/easyconfigs/f/FLAC/FLAC-1.3.1-foss-2015a.eb index 76be36ffc6..81cb92955e 100644 --- a/easybuild/easyconfigs/f/FLAC/FLAC-1.3.1-foss-2015a.eb +++ b/easybuild/easyconfigs/f/FLAC/FLAC-1.3.1-foss-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Author: Stephane Thiell ### diff --git a/easybuild/easyconfigs/f/FSA/FSA-1.15.8-goolf-1.4.10.eb b/easybuild/easyconfigs/f/FSA/FSA-1.15.8-goolf-1.4.10.eb index 0f49be8035..7e45a7cbdc 100644 --- a/easybuild/easyconfigs/f/FSA/FSA-1.15.8-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/f/FSA/FSA-1.15.8-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/NTUA, Swiss Institute of Bioinformatics # Authors:: Fotis Georgatos , Pablo Escobar Lopez diff --git a/easybuild/easyconfigs/f/FSA/FSA-1.15.8-ictce-5.3.0.eb b/easybuild/easyconfigs/f/FSA/FSA-1.15.8-ictce-5.3.0.eb index 27159a0ac8..c0b720f5c0 100644 --- a/easybuild/easyconfigs/f/FSA/FSA-1.15.8-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/f/FSA/FSA-1.15.8-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/NTUA, Swiss Institute of Bioinformatics # Authors:: Fotis Georgatos , Pablo Escobar Lopez diff --git a/easybuild/easyconfigs/f/FastQC/FastQC-0.10.1-Java-1.7.0_80.eb b/easybuild/easyconfigs/f/FastQC/FastQC-0.10.1-Java-1.7.0_80.eb index 5441477664..602621d4aa 100644 --- a/easybuild/easyconfigs/f/FastQC/FastQC-0.10.1-Java-1.7.0_80.eb +++ b/easybuild/easyconfigs/f/FastQC/FastQC-0.10.1-Java-1.7.0_80.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , Thekla Loizou diff --git a/easybuild/easyconfigs/f/Firefox/Firefox-44.0.2.eb b/easybuild/easyconfigs/f/Firefox/Firefox-44.0.2.eb index 1788c8a21a..5f3c9ec326 100644 --- a/easybuild/easyconfigs/f/Firefox/Firefox-44.0.2.eb +++ b/easybuild/easyconfigs/f/Firefox/Firefox-44.0.2.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/f/fastPHASE/fastPHASE-1.4.8.eb b/easybuild/easyconfigs/f/fastPHASE/fastPHASE-1.4.8.eb index 189d668ffd..f17bac6c21 100644 --- a/easybuild/easyconfigs/f/fastPHASE/fastPHASE-1.4.8.eb +++ b/easybuild/easyconfigs/f/fastPHASE/fastPHASE-1.4.8.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Ravi Tripathi # Email: ravi89@uab.edu diff --git a/easybuild/easyconfigs/f/fastQValidator/fastQValidator-0.1.1a-20151214-goolf-1.7.20-aadc6f9.eb b/easybuild/easyconfigs/f/fastQValidator/fastQValidator-0.1.1a-20151214-goolf-1.7.20-aadc6f9.eb index 5e8c01ab2d..fa8db6dbc2 100644 --- a/easybuild/easyconfigs/f/fastQValidator/fastQValidator-0.1.1a-20151214-goolf-1.7.20-aadc6f9.eb +++ b/easybuild/easyconfigs/f/fastQValidator/fastQValidator-0.1.1a-20151214-goolf-1.7.20-aadc6f9.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/f/fastqz/fastqz-1.5-GCC-4.8.2.eb b/easybuild/easyconfigs/f/fastqz/fastqz-1.5-GCC-4.8.2.eb index 4af4d1b872..2f83116b78 100644 --- a/easybuild/easyconfigs/f/fastqz/fastqz-1.5-GCC-4.8.2.eb +++ b/easybuild/easyconfigs/f/fastqz/fastqz-1.5-GCC-4.8.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2015 NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/f/file/file-5.17-GCC-4.8.2.eb b/easybuild/easyconfigs/f/file/file-5.17-GCC-4.8.2.eb index bca5d69508..6d15ec35c6 100644 --- a/easybuild/easyconfigs/f/file/file-5.17-GCC-4.8.2.eb +++ b/easybuild/easyconfigs/f/file/file-5.17-GCC-4.8.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # ## diff --git a/easybuild/easyconfigs/f/file/file-5.25-intel-2016a.eb b/easybuild/easyconfigs/f/file/file-5.25-intel-2016a.eb index 61f8e29397..2cd84ee8fc 100644 --- a/easybuild/easyconfigs/f/file/file-5.25-intel-2016a.eb +++ b/easybuild/easyconfigs/f/file/file-5.25-intel-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # ## diff --git a/easybuild/easyconfigs/f/file/file-5.28-foss-2016b.eb b/easybuild/easyconfigs/f/file/file-5.28-foss-2016b.eb index 51d81cd710..23357248bb 100644 --- a/easybuild/easyconfigs/f/file/file-5.28-foss-2016b.eb +++ b/easybuild/easyconfigs/f/file/file-5.28-foss-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # ## diff --git a/easybuild/easyconfigs/f/file/file-5.30-intel-2017a.eb b/easybuild/easyconfigs/f/file/file-5.30-intel-2017a.eb index cab481c6f4..92682e458a 100644 --- a/easybuild/easyconfigs/f/file/file-5.30-intel-2017a.eb +++ b/easybuild/easyconfigs/f/file/file-5.30-intel-2017a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # ## diff --git a/easybuild/easyconfigs/f/findutils/findutils-4.2.33-goolf-1.4.10.eb b/easybuild/easyconfigs/f/findutils/findutils-4.2.33-goolf-1.4.10.eb index 6b2e49e08a..56642aa7ab 100644 --- a/easybuild/easyconfigs/f/findutils/findutils-4.2.33-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/f/findutils/findutils-4.2.33-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/f/findutils/findutils-4.2.33-ictce-5.3.0.eb b/easybuild/easyconfigs/f/findutils/findutils-4.2.33-ictce-5.3.0.eb index ea5abc6927..34097eba86 100644 --- a/easybuild/easyconfigs/f/findutils/findutils-4.2.33-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/f/findutils/findutils-4.2.33-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/f/findutils/findutils-4.4.2-GCC-4.8.2.eb b/easybuild/easyconfigs/f/findutils/findutils-4.4.2-GCC-4.8.2.eb index bd925b7e0f..b9beaeb6db 100644 --- a/easybuild/easyconfigs/f/findutils/findutils-4.4.2-GCC-4.8.2.eb +++ b/easybuild/easyconfigs/f/findutils/findutils-4.4.2-GCC-4.8.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/f/fqzcomp/fqzcomp-4.6-GCC-4.8.2.eb b/easybuild/easyconfigs/f/fqzcomp/fqzcomp-4.6-GCC-4.8.2.eb index c4cf3f3ff7..35005a8b95 100644 --- a/easybuild/easyconfigs/f/fqzcomp/fqzcomp-4.6-GCC-4.8.2.eb +++ b/easybuild/easyconfigs/f/fqzcomp/fqzcomp-4.6-GCC-4.8.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2015 NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/g/GATK/GATK-2.5-2-Java-1.7.0_10.eb b/easybuild/easyconfigs/g/GATK/GATK-2.5-2-Java-1.7.0_10.eb index 6afbdb7b4c..b64688b618 100644 --- a/easybuild/easyconfigs/g/GATK/GATK-2.5-2-Java-1.7.0_10.eb +++ b/easybuild/easyconfigs/g/GATK/GATK-2.5-2-Java-1.7.0_10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA # Authors:: George Tsouloupas , Fotis Georgatos , Kenneth Hoste (UGent) diff --git a/easybuild/easyconfigs/g/GATK/GATK-2.6-5-Java-1.7.0_10.eb b/easybuild/easyconfigs/g/GATK/GATK-2.6-5-Java-1.7.0_10.eb index 921621187e..1b89f6c6ec 100644 --- a/easybuild/easyconfigs/g/GATK/GATK-2.6-5-Java-1.7.0_10.eb +++ b/easybuild/easyconfigs/g/GATK/GATK-2.6-5-Java-1.7.0_10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA # Authors:: George Tsouloupas , Fotis Georgatos , Kenneth Hoste (UGent) diff --git a/easybuild/easyconfigs/g/GATK/GATK-2.7-4-Java-1.7.0_10.eb b/easybuild/easyconfigs/g/GATK/GATK-2.7-4-Java-1.7.0_10.eb index 7e9f79abb8..1969cdc702 100644 --- a/easybuild/easyconfigs/g/GATK/GATK-2.7-4-Java-1.7.0_10.eb +++ b/easybuild/easyconfigs/g/GATK/GATK-2.7-4-Java-1.7.0_10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA # Authors:: George Tsouloupas , Fotis Georgatos , Kenneth Hoste (UGent) diff --git a/easybuild/easyconfigs/g/GATK/GATK-2.8-1-Java-1.7.0_10.eb b/easybuild/easyconfigs/g/GATK/GATK-2.8-1-Java-1.7.0_10.eb index 959d6f681a..df931a819c 100644 --- a/easybuild/easyconfigs/g/GATK/GATK-2.8-1-Java-1.7.0_10.eb +++ b/easybuild/easyconfigs/g/GATK/GATK-2.8-1-Java-1.7.0_10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA # Authors:: George Tsouloupas , Fotis Georgatos , Kenneth Hoste (UGent) diff --git a/easybuild/easyconfigs/g/GATK/GATK-3.0-0-Java-1.7.0_10.eb b/easybuild/easyconfigs/g/GATK/GATK-3.0-0-Java-1.7.0_10.eb index a6fc22eedf..afaf5a587a 100644 --- a/easybuild/easyconfigs/g/GATK/GATK-3.0-0-Java-1.7.0_10.eb +++ b/easybuild/easyconfigs/g/GATK/GATK-3.0-0-Java-1.7.0_10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2014 Cyprus Institute # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/g/GATK/GATK-3.3-0-Java-1.7.0_21.eb b/easybuild/easyconfigs/g/GATK/GATK-3.3-0-Java-1.7.0_21.eb index bae4a90d91..fd5122e871 100644 --- a/easybuild/easyconfigs/g/GATK/GATK-3.3-0-Java-1.7.0_21.eb +++ b/easybuild/easyconfigs/g/GATK/GATK-3.3-0-Java-1.7.0_21.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 Cyprus Institute / CaSToRC, University of Luxembourg / LCSB # Authors:: George Tsouloupas , Fotis Georgatos , diff --git a/easybuild/easyconfigs/g/GATK/GATK-3.3-0-Java-1.7.0_80.eb b/easybuild/easyconfigs/g/GATK/GATK-3.3-0-Java-1.7.0_80.eb index 88a772e2f8..f3b21831fe 100644 --- a/easybuild/easyconfigs/g/GATK/GATK-3.3-0-Java-1.7.0_80.eb +++ b/easybuild/easyconfigs/g/GATK/GATK-3.3-0-Java-1.7.0_80.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 Cyprus Institute / CaSToRC, University of Luxembourg / LCSB # Authors:: George Tsouloupas , Fotis Georgatos , diff --git a/easybuild/easyconfigs/g/GATK/GATK-3.3-0-Java-1.8.0_66.eb b/easybuild/easyconfigs/g/GATK/GATK-3.3-0-Java-1.8.0_66.eb index d0d5a239b6..8dd25ea92a 100644 --- a/easybuild/easyconfigs/g/GATK/GATK-3.3-0-Java-1.8.0_66.eb +++ b/easybuild/easyconfigs/g/GATK/GATK-3.3-0-Java-1.8.0_66.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 Cyprus Institute / CaSToRC, University of Luxembourg / LCSB # Authors:: George Tsouloupas , Fotis Georgatos , diff --git a/easybuild/easyconfigs/g/GATK/GATK-3.5-Java-1.8.0_66.eb b/easybuild/easyconfigs/g/GATK/GATK-3.5-Java-1.8.0_66.eb index b6d45b10ea..598a86e9b2 100644 --- a/easybuild/easyconfigs/g/GATK/GATK-3.5-Java-1.8.0_66.eb +++ b/easybuild/easyconfigs/g/GATK/GATK-3.5-Java-1.8.0_66.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 Cyprus Institute / CaSToRC, University of Luxembourg / LCSB # Authors:: George Tsouloupas , Fotis Georgatos , diff --git a/easybuild/easyconfigs/g/GATK/GATK-3.5-Java-1.8.0_74.eb b/easybuild/easyconfigs/g/GATK/GATK-3.5-Java-1.8.0_74.eb index 935f73ec90..06ec8c03a7 100644 --- a/easybuild/easyconfigs/g/GATK/GATK-3.5-Java-1.8.0_74.eb +++ b/easybuild/easyconfigs/g/GATK/GATK-3.5-Java-1.8.0_74.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 Cyprus Institute / CaSToRC, University of Luxembourg / LCSB # Authors:: George Tsouloupas , Fotis Georgatos , diff --git a/easybuild/easyconfigs/g/GATK/GATK-3.6-Java-1.8.0_92.eb b/easybuild/easyconfigs/g/GATK/GATK-3.6-Java-1.8.0_92.eb index 6ed0f40863..bd6fea5ef5 100644 --- a/easybuild/easyconfigs/g/GATK/GATK-3.6-Java-1.8.0_92.eb +++ b/easybuild/easyconfigs/g/GATK/GATK-3.6-Java-1.8.0_92.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 Cyprus Institute / CaSToRC, University of Luxembourg / LCSB # Authors:: George Tsouloupas , Fotis Georgatos , diff --git a/easybuild/easyconfigs/g/GATK/GATK-3.7-Java-1.8.0_112.eb b/easybuild/easyconfigs/g/GATK/GATK-3.7-Java-1.8.0_112.eb index afc148cb14..bc0c66d4fe 100644 --- a/easybuild/easyconfigs/g/GATK/GATK-3.7-Java-1.8.0_112.eb +++ b/easybuild/easyconfigs/g/GATK/GATK-3.7-Java-1.8.0_112.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 Cyprus Institute / CaSToRC, University of Luxembourg / LCSB # Authors:: George Tsouloupas , Fotis Georgatos , diff --git a/easybuild/easyconfigs/g/GCC/GCC-system.eb b/easybuild/easyconfigs/g/GCC/GCC-system.eb index b24177d713..cff7cc3f07 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-system.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-system.eb @@ -1,5 +1,5 @@ ## -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2015 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr diff --git a/easybuild/easyconfigs/g/GD/GD-2.66-foss-2016b-Perl-5.24.0.eb b/easybuild/easyconfigs/g/GD/GD-2.66-foss-2016b-Perl-5.24.0.eb index 88f756e1ce..73a29b2ebe 100644 --- a/easybuild/easyconfigs/g/GD/GD-2.66-foss-2016b-Perl-5.24.0.eb +++ b/easybuild/easyconfigs/g/GD/GD-2.66-foss-2016b-Perl-5.24.0.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild easyblock = 'PerlModule' diff --git a/easybuild/easyconfigs/g/GDB/GDB-7.5.1-goolf-1.4.10.eb b/easybuild/easyconfigs/g/GDB/GDB-7.5.1-goolf-1.4.10.eb index 633ee3c7d8..03c1be68ac 100644 --- a/easybuild/easyconfigs/g/GDB/GDB-7.5.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/g/GDB/GDB-7.5.1-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/g/GEM-library/GEM-library-20130406-045632_pre-release-3_Linux-x86_64.eb b/easybuild/easyconfigs/g/GEM-library/GEM-library-20130406-045632_pre-release-3_Linux-x86_64.eb index b7ffec63fe..62ae81e4f0 100644 --- a/easybuild/easyconfigs/g/GEM-library/GEM-library-20130406-045632_pre-release-3_Linux-x86_64.eb +++ b/easybuild/easyconfigs/g/GEM-library/GEM-library-20130406-045632_pre-release-3_Linux-x86_64.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/g/GEMSTAT/GEMSTAT-1.0-goolf-1.4.10.eb b/easybuild/easyconfigs/g/GEMSTAT/GEMSTAT-1.0-goolf-1.4.10.eb index 71eda7f181..4bfe15af38 100644 --- a/easybuild/easyconfigs/g/GEMSTAT/GEMSTAT-1.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/g/GEMSTAT/GEMSTAT-1.0-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/g/GFOLD/GFOLD-1.1.4-goolf-1.7.20.eb b/easybuild/easyconfigs/g/GFOLD/GFOLD-1.1.4-goolf-1.7.20.eb index ae8931f569..f2c4bc1afd 100644 --- a/easybuild/easyconfigs/g/GFOLD/GFOLD-1.1.4-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/g/GFOLD/GFOLD-1.1.4-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/g/GFOLD/GFOLD-1.1.4-intel-2016a.eb b/easybuild/easyconfigs/g/GFOLD/GFOLD-1.1.4-intel-2016a.eb index 5afa7f55f9..4f13bddcdc 100644 --- a/easybuild/easyconfigs/g/GFOLD/GFOLD-1.1.4-intel-2016a.eb +++ b/easybuild/easyconfigs/g/GFOLD/GFOLD-1.1.4-intel-2016a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/g/GIMPS/GIMPS-p95v279-GCC-4.8.2.eb b/easybuild/easyconfigs/g/GIMPS/GIMPS-p95v279-GCC-4.8.2.eb index ebe4c931a7..0260a39483 100644 --- a/easybuild/easyconfigs/g/GIMPS/GIMPS-p95v279-GCC-4.8.2.eb +++ b/easybuild/easyconfigs/g/GIMPS/GIMPS-p95v279-GCC-4.8.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/g/GIMPS/GIMPS-p95v279.linux64.eb b/easybuild/easyconfigs/g/GIMPS/GIMPS-p95v279.linux64.eb index 55fa61353f..271972fd7f 100644 --- a/easybuild/easyconfigs/g/GIMPS/GIMPS-p95v279.linux64.eb +++ b/easybuild/easyconfigs/g/GIMPS/GIMPS-p95v279.linux64.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/g/GLIMMER/GLIMMER-3.02b-goolf-1.4.10.eb b/easybuild/easyconfigs/g/GLIMMER/GLIMMER-3.02b-goolf-1.4.10.eb index 8ad521809b..9224bccf7f 100644 --- a/easybuild/easyconfigs/g/GLIMMER/GLIMMER-3.02b-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/g/GLIMMER/GLIMMER-3.02b-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , Thekla Loizou diff --git a/easybuild/easyconfigs/g/GLIMMER/GLIMMER-3.02b-ictce-5.3.0.eb b/easybuild/easyconfigs/g/GLIMMER/GLIMMER-3.02b-ictce-5.3.0.eb index e4aa1f5c2e..90a24de0cf 100644 --- a/easybuild/easyconfigs/g/GLIMMER/GLIMMER-3.02b-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/g/GLIMMER/GLIMMER-3.02b-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , Thekla Loizou diff --git a/easybuild/easyconfigs/g/GMAP-GSNAP/GMAP-GSNAP-2014-01-21-goolf-1.4.10.eb b/easybuild/easyconfigs/g/GMAP-GSNAP/GMAP-GSNAP-2014-01-21-goolf-1.4.10.eb index d00a71f2d8..4da7b9cac0 100644 --- a/easybuild/easyconfigs/g/GMAP-GSNAP/GMAP-GSNAP-2014-01-21-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/g/GMAP-GSNAP/GMAP-GSNAP-2014-01-21-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/g/GMAP-GSNAP/GMAP-GSNAP-2014-06-10-goolf-1.4.10.eb b/easybuild/easyconfigs/g/GMAP-GSNAP/GMAP-GSNAP-2014-06-10-goolf-1.4.10.eb index 3994be6bc4..01026712de 100644 --- a/easybuild/easyconfigs/g/GMAP-GSNAP/GMAP-GSNAP-2014-06-10-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/g/GMAP-GSNAP/GMAP-GSNAP-2014-06-10-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/g/GMAP-GSNAP/GMAP-GSNAP-2015-12-31.v2-foss-2015b.eb b/easybuild/easyconfigs/g/GMAP-GSNAP/GMAP-GSNAP-2015-12-31.v2-foss-2015b.eb index abea13b1ce..48d2d898a5 100644 --- a/easybuild/easyconfigs/g/GMAP-GSNAP/GMAP-GSNAP-2015-12-31.v2-foss-2015b.eb +++ b/easybuild/easyconfigs/g/GMAP-GSNAP/GMAP-GSNAP-2015-12-31.v2-foss-2015b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/g/GMAP-GSNAP/GMAP-GSNAP-2016-05-01-foss-2016a.eb b/easybuild/easyconfigs/g/GMAP-GSNAP/GMAP-GSNAP-2016-05-01-foss-2016a.eb index f2525337c6..a93eff9b9b 100644 --- a/easybuild/easyconfigs/g/GMAP-GSNAP/GMAP-GSNAP-2016-05-01-foss-2016a.eb +++ b/easybuild/easyconfigs/g/GMAP-GSNAP/GMAP-GSNAP-2016-05-01-foss-2016a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/g/GMAP-GSNAP/GMAP-GSNAP-2016-11-07-foss-2016b.eb b/easybuild/easyconfigs/g/GMAP-GSNAP/GMAP-GSNAP-2016-11-07-foss-2016b.eb index 6b8d559ccc..7af870d276 100644 --- a/easybuild/easyconfigs/g/GMAP-GSNAP/GMAP-GSNAP-2016-11-07-foss-2016b.eb +++ b/easybuild/easyconfigs/g/GMAP-GSNAP/GMAP-GSNAP-2016-11-07-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-2016-foss-2016b-hybrid.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-2016-foss-2016b-hybrid.eb index f72c224d32..cf07fe6921 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-2016-foss-2016b-hybrid.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-2016-foss-2016b-hybrid.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2016 University of Luxembourg / LCSB, Cyprus Institute / CaSToRC, # Ghent University / The Francis Crick Institute diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-2016-foss-2016b-mt.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-2016-foss-2016b-mt.eb index 1a85f392c7..4b007038bb 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-2016-foss-2016b-mt.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-2016-foss-2016b-mt.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2016 University of Luxembourg / LCSB, Cyprus Institute / CaSToRC, # Ghent University / The Francis Crick Institute diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.1-foss-2017a-PLUMED.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.1-foss-2017a-PLUMED.eb index 9fc85b8f3e..392a977903 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.1-foss-2017a-PLUMED.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.1-foss-2017a-PLUMED.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2016 University of Luxembourg / LCSB, Cyprus Institute / CaSToRC, # Ghent University / The Francis Crick Institute diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.2-foss-2017a.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.2-foss-2017a.eb index 8ad8f765c7..b2f4ae93aa 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.2-foss-2017a.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.2-foss-2017a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2016 University of Luxembourg / LCSB, Cyprus Institute / CaSToRC, # Ghent University / The Francis Crick Institute diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-foss-2017a.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-foss-2017a.eb index c3f26a2915..42fbccf907 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-foss-2017a.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-foss-2017a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2016 University of Luxembourg / LCSB, Cyprus Institute / CaSToRC, # Ghent University / The Francis Crick Institute diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-intel-2017a.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-intel-2017a.eb index edcd456df0..c0b9b8febe 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-intel-2017a.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-intel-2017a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2016 University of Luxembourg / LCSB, Cyprus Institute / CaSToRC, # Ghent University / The Francis Crick Institute diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-3.3.3-goolf-1.5.14.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-3.3.3-goolf-1.5.14.eb index 6cbe4c8289..fbece4acc1 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-3.3.3-goolf-1.5.14.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-3.3.3-goolf-1.5.14.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.1-goolf-1.4.10-hybrid.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.1-goolf-1.4.10-hybrid.eb index 85881f3e38..483e81edc4 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.1-goolf-1.4.10-hybrid.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.1-goolf-1.4.10-hybrid.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.1-goolf-1.4.10-mt.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.1-goolf-1.4.10-mt.eb index 8dac71d952..f8e9652452 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.1-goolf-1.4.10-mt.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.1-goolf-1.4.10-mt.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.1-ictce-5.3.0-hybrid.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.1-ictce-5.3.0-hybrid.eb index 11decefff1..e046619790 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.1-ictce-5.3.0-hybrid.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.1-ictce-5.3.0-hybrid.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.1-ictce-5.3.0-mt.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.1-ictce-5.3.0-mt.eb index 7bc4e4ad92..2336d79f1f 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.1-ictce-5.3.0-mt.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.1-ictce-5.3.0-mt.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.5-goolf-1.4.10-hybrid.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.5-goolf-1.4.10-hybrid.eb index eaada284fd..cf451c2390 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.5-goolf-1.4.10-hybrid.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.5-goolf-1.4.10-hybrid.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.5-goolf-1.4.10-mt.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.5-goolf-1.4.10-mt.eb index 95002c6f56..21de51a948 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.5-goolf-1.4.10-mt.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.5-goolf-1.4.10-mt.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.5-ictce-5.5.0-hybrid.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.5-ictce-5.5.0-hybrid.eb index 4e7a111b3a..6060f72245 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.5-ictce-5.5.0-hybrid.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.5-ictce-5.5.0-hybrid.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.5-ictce-5.5.0-mt.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.5-ictce-5.5.0-mt.eb index 1d36cf5099..ae821baece 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.5-ictce-5.5.0-mt.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.5-ictce-5.5.0-mt.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.7-CrayGNU-2015.06-mpi.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.7-CrayGNU-2015.06-mpi.eb index adf36de398..48b16c52ff 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.7-CrayGNU-2015.06-mpi.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.7-CrayGNU-2015.06-mpi.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg / LCSB, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.7-CrayGNU-2015.11-mpi.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.7-CrayGNU-2015.11-mpi.eb index f52ab6e342..0456808f10 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.7-CrayGNU-2015.11-mpi.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.7-CrayGNU-2015.11-mpi.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg / LCSB, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.7-CrayIntel-2015.11-mpi.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.7-CrayIntel-2015.11-mpi.eb index 3f046b2129..cce424c9ba 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.7-CrayIntel-2015.11-mpi.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-4.6.7-CrayIntel-2015.11-mpi.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg / LCSB, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-5.0.2-ictce-7.1.2-mt.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-5.0.2-ictce-7.1.2-mt.eb index b6b649c1ec..db4bdb854c 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-5.0.2-ictce-7.1.2-mt.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-5.0.2-ictce-7.1.2-mt.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg / LCSB, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-5.0.4-intel-2015a-hybrid.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-5.0.4-intel-2015a-hybrid.eb index 0914af5ffd..fc540e8f19 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-5.0.4-intel-2015a-hybrid.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-5.0.4-intel-2015a-hybrid.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg / LCSB, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-5.0.4-intel-2015a-mt.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-5.0.4-intel-2015a-mt.eb index f0da8f6053..dab6da36ba 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-5.0.4-intel-2015a-mt.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-5.0.4-intel-2015a-mt.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg / LCSB, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-5.0.5-intel-2015a-hybrid.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-5.0.5-intel-2015a-hybrid.eb index c7e0273a3e..1e5465d878 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-5.0.5-intel-2015a-hybrid.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-5.0.5-intel-2015a-hybrid.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg / LCSB, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-5.0.7-intel-2015a-hybrid.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-5.0.7-intel-2015a-hybrid.eb index 69bf5a5d40..a45d822382 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-5.0.7-intel-2015a-hybrid.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-5.0.7-intel-2015a-hybrid.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg / LCSB, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.1-intel-2015b-hybrid.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.1-intel-2015b-hybrid.eb index 327b471426..9fd003a18d 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.1-intel-2015b-hybrid.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.1-intel-2015b-hybrid.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg / LCSB, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.2-foss-2015b-hybrid.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.2-foss-2015b-hybrid.eb index db2a991381..100f817f32 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.2-foss-2015b-hybrid.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.2-foss-2015b-hybrid.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg / LCSB, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.2-foss-2016a-hybrid.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.2-foss-2016a-hybrid.eb index e699b7dd9b..0f65d23d03 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.2-foss-2016a-hybrid.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.2-foss-2016a-hybrid.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg / LCSB, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.2-foss-2016a-mt.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.2-foss-2016a-mt.eb index 3c8fdff8cf..9c98d6f546 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.2-foss-2016a-mt.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.2-foss-2016a-mt.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg / LCSB, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.2-goolf-1.7.20-mt.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.2-goolf-1.7.20-mt.eb index 5f20cd92b4..7292972b00 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.2-goolf-1.7.20-mt.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.2-goolf-1.7.20-mt.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg / LCSB, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.2-intel-2016a-hybrid-dp.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.2-intel-2016a-hybrid-dp.eb index e85182e185..922df0412b 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.2-intel-2016a-hybrid-dp.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.2-intel-2016a-hybrid-dp.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg / LCSB, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.2-intel-2016a-hybrid.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.2-intel-2016a-hybrid.eb index 1d0b356a9e..6db4e0caa3 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.2-intel-2016a-hybrid.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.2-intel-2016a-hybrid.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg / LCSB, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.4-foss-2016b-hybrid.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.4-foss-2016b-hybrid.eb index 2e153e4c27..ed0de02f0d 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.4-foss-2016b-hybrid.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.4-foss-2016b-hybrid.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg / LCSB, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.4-foss-2016b-mt.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.4-foss-2016b-mt.eb index ab660ee955..a3faf14469 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.4-foss-2016b-mt.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-5.1.4-foss-2016b-mt.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg / LCSB, Cyprus Institute / CaSToRC, Ghent University # Authors:: Wiktor Jurkowski , Fotis Georgatos , \ diff --git a/easybuild/easyconfigs/g/GROMOS++/GROMOS++-1.0.2211-goolf-1.5.14-openmp.eb b/easybuild/easyconfigs/g/GROMOS++/GROMOS++-1.0.2211-goolf-1.5.14-openmp.eb index cd7029cdae..14cf03acd4 100644 --- a/easybuild/easyconfigs/g/GROMOS++/GROMOS++-1.0.2211-goolf-1.5.14-openmp.eb +++ b/easybuild/easyconfigs/g/GROMOS++/GROMOS++-1.0.2211-goolf-1.5.14-openmp.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Benjamin P. Roberts # New Zealand eScience Infrastructure # The University of Auckland, Auckland, New Zealand diff --git a/easybuild/easyconfigs/g/GROMOS++/GROMOS++-1.0.2211-goolf-1.5.14-serial.eb b/easybuild/easyconfigs/g/GROMOS++/GROMOS++-1.0.2211-goolf-1.5.14-serial.eb index 2b1345c99b..372e30a64a 100644 --- a/easybuild/easyconfigs/g/GROMOS++/GROMOS++-1.0.2211-goolf-1.5.14-serial.eb +++ b/easybuild/easyconfigs/g/GROMOS++/GROMOS++-1.0.2211-goolf-1.5.14-serial.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Benjamin P. Roberts # New Zealand eScience Infrastructure # The University of Auckland, Auckland, New Zealand diff --git a/easybuild/easyconfigs/g/GTI/GTI-1.2.0-goolf-1.5.14.eb b/easybuild/easyconfigs/g/GTI/GTI-1.2.0-goolf-1.5.14.eb index d2f8ea38ad..a06a2799fd 100644 --- a/easybuild/easyconfigs/g/GTI/GTI-1.2.0-goolf-1.5.14.eb +++ b/easybuild/easyconfigs/g/GTI/GTI-1.2.0-goolf-1.5.14.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/g/GTOOL/GTOOL-0.7.5.eb b/easybuild/easyconfigs/g/GTOOL/GTOOL-0.7.5.eb index 69e22e6cab..df06c73009 100644 --- a/easybuild/easyconfigs/g/GTOOL/GTOOL-0.7.5.eb +++ b/easybuild/easyconfigs/g/GTOOL/GTOOL-0.7.5.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Ravi Tripathi # Email: ravi89@uab.edu diff --git a/easybuild/easyconfigs/g/Givaro/Givaro-4.0.1-foss-2016a.eb b/easybuild/easyconfigs/g/Givaro/Givaro-4.0.1-foss-2016a.eb index 22ad6d392a..b56c68075d 100644 --- a/easybuild/easyconfigs/g/Givaro/Givaro-4.0.1-foss-2016a.eb +++ b/easybuild/easyconfigs/g/Givaro/Givaro-4.0.1-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild recipe; see https://github.com/hpcugent/easybuild +# This file is an EasyBuild recipe; see https://github.com/easybuilders/easybuild # # Copyright:: Copyright (c) 2016 Riccardo Murri # Authors:: Riccardo Murri diff --git a/easybuild/easyconfigs/g/gawk/gawk-4.0.2-goolf-1.4.10.eb b/easybuild/easyconfigs/g/gawk/gawk-4.0.2-goolf-1.4.10.eb index 39b5e35917..b1ff3e1fdc 100644 --- a/easybuild/easyconfigs/g/gawk/gawk-4.0.2-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/g/gawk/gawk-4.0.2-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/g/gawk/gawk-4.0.2-ictce-5.3.0.eb b/easybuild/easyconfigs/g/gawk/gawk-4.0.2-ictce-5.3.0.eb index 75c54349b6..a78d2827af 100644 --- a/easybuild/easyconfigs/g/gawk/gawk-4.0.2-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/g/gawk/gawk-4.0.2-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/g/gencore_variant_detection/gencore_variant_detection-1.0.eb b/easybuild/easyconfigs/g/gencore_variant_detection/gencore_variant_detection-1.0.eb index f4f2214acc..ff69d49387 100644 --- a/easybuild/easyconfigs/g/gencore_variant_detection/gencore_variant_detection-1.0.eb +++ b/easybuild/easyconfigs/g/gencore_variant_detection/gencore_variant_detection-1.0.eb @@ -1,5 +1,5 @@ ## -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2015 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr diff --git a/easybuild/easyconfigs/g/git-lfs/git-lfs-1.1.1.eb b/easybuild/easyconfigs/g/git-lfs/git-lfs-1.1.1.eb index c16d2b51eb..449b40c4aa 100755 --- a/easybuild/easyconfigs/g/git-lfs/git-lfs-1.1.1.eb +++ b/easybuild/easyconfigs/g/git-lfs/git-lfs-1.1.1.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/g/git/git-1.7.12-goolf-1.4.10.eb b/easybuild/easyconfigs/g/git/git-1.7.12-goolf-1.4.10.eb index 7f241b6884..68edf4aa52 100644 --- a/easybuild/easyconfigs/g/git/git-1.7.12-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/g/git/git-1.7.12-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/g/git/git-1.7.12-ictce-5.3.0.eb b/easybuild/easyconfigs/g/git/git-1.7.12-ictce-5.3.0.eb index 316219216f..3fc62cda33 100644 --- a/easybuild/easyconfigs/g/git/git-1.7.12-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/g/git/git-1.7.12-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/g/git/git-1.8.2-goolf-1.4.10.eb b/easybuild/easyconfigs/g/git/git-1.8.2-goolf-1.4.10.eb index 12ddedc547..98ff106f5e 100644 --- a/easybuild/easyconfigs/g/git/git-1.8.2-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/g/git/git-1.8.2-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/g/git/git-1.8.3.1-goolf-1.4.10.eb b/easybuild/easyconfigs/g/git/git-1.8.3.1-goolf-1.4.10.eb index 343da7e2bc..9d558fa920 100644 --- a/easybuild/easyconfigs/g/git/git-1.8.3.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/g/git/git-1.8.3.1-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/g/git/git-1.8.5.6-GCC-4.9.2.eb b/easybuild/easyconfigs/g/git/git-1.8.5.6-GCC-4.9.2.eb index 7360f033fe..6ac9c8056e 100644 --- a/easybuild/easyconfigs/g/git/git-1.8.5.6-GCC-4.9.2.eb +++ b/easybuild/easyconfigs/g/git/git-1.8.5.6-GCC-4.9.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/g/git/git-2.2.2-GCC-4.9.2.eb b/easybuild/easyconfigs/g/git/git-2.2.2-GCC-4.9.2.eb index 1da07f9d58..9d36d6d2e5 100644 --- a/easybuild/easyconfigs/g/git/git-2.2.2-GCC-4.9.2.eb +++ b/easybuild/easyconfigs/g/git/git-2.2.2-GCC-4.9.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/g/git/git-2.4.1-GCC-4.9.2.eb b/easybuild/easyconfigs/g/git/git-2.4.1-GCC-4.9.2.eb index ec7ac4488b..e2b308a370 100644 --- a/easybuild/easyconfigs/g/git/git-2.4.1-GCC-4.9.2.eb +++ b/easybuild/easyconfigs/g/git/git-2.4.1-GCC-4.9.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/g/gnuplot/gnuplot-4.6.0-goolf-1.4.10.eb b/easybuild/easyconfigs/g/gnuplot/gnuplot-4.6.0-goolf-1.4.10.eb index 3d45dffc3f..b7a8f51ec8 100644 --- a/easybuild/easyconfigs/g/gnuplot/gnuplot-4.6.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/g/gnuplot/gnuplot-4.6.0-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/g/gnuplot/gnuplot-4.6.0-ictce-5.3.0.eb b/easybuild/easyconfigs/g/gnuplot/gnuplot-4.6.0-ictce-5.3.0.eb index b95685cff8..30a93a0ae6 100644 --- a/easybuild/easyconfigs/g/gnuplot/gnuplot-4.6.0-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/g/gnuplot/gnuplot-4.6.0-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/g/gnuplot/gnuplot-4.6.6-intel-2014b.eb b/easybuild/easyconfigs/g/gnuplot/gnuplot-4.6.6-intel-2014b.eb index 7112a25a66..175322b4a7 100644 --- a/easybuild/easyconfigs/g/gnuplot/gnuplot-4.6.6-intel-2014b.eb +++ b/easybuild/easyconfigs/g/gnuplot/gnuplot-4.6.6-intel-2014b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.0-intel-2014b.eb b/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.0-intel-2014b.eb index e30d4a22d3..98df4333c5 100644 --- a/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.0-intel-2014b.eb +++ b/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.0-intel-2014b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Luxembourg Centre for Systems Biomedicine # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.0-intel-2015a.eb b/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.0-intel-2015a.eb index 8f7d80279e..711098e083 100644 --- a/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.0-intel-2015a.eb +++ b/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.0-intel-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Luxembourg Centre for Systems Biomedicine # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.1-intel-2015b.eb b/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.1-intel-2015b.eb index 5903cd754c..622c222c99 100644 --- a/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.1-intel-2015b.eb +++ b/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.1-intel-2015b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Luxembourg Centre for Systems Biomedicine # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.3-foss-2016a.eb b/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.3-foss-2016a.eb index 7e42e00e67..abc501af50 100644 --- a/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.3-foss-2016a.eb +++ b/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.3-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Luxembourg Centre for Systems Biomedicine # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.3-intel-2016a.eb b/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.3-intel-2016a.eb index 131131cfee..e83b27fbe1 100644 --- a/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.3-intel-2016a.eb +++ b/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.3-intel-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Luxembourg Centre for Systems Biomedicine # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.5-foss-2016b.eb b/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.5-foss-2016b.eb index 20416b1946..09840a3a2e 100755 --- a/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.5-foss-2016b.eb +++ b/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.5-foss-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Luxembourg Centre for Systems Biomedicine # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.5-intel-2016b.eb b/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.5-intel-2016b.eb index 1181859b40..500cd9df29 100644 --- a/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.5-intel-2016b.eb +++ b/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.5-intel-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Luxembourg Centre for Systems Biomedicine # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.6-intel-2017a.eb b/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.6-intel-2017a.eb index 22b8ccefa5..7b2974dbf3 100644 --- a/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.6-intel-2017a.eb +++ b/easybuild/easyconfigs/g/gnuplot/gnuplot-5.0.6-intel-2017a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Luxembourg Centre for Systems Biomedicine # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/g/grabix/grabix-0.1.6-goolf-1.7.20.eb b/easybuild/easyconfigs/g/grabix/grabix-0.1.6-goolf-1.7.20.eb index 1bf0222ad3..a16b047807 100644 --- a/easybuild/easyconfigs/g/grabix/grabix-0.1.6-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/g/grabix/grabix-0.1.6-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/g/gromosXX/gromosXX-1.0.1737-goolf-1.5.14-mpi.eb b/easybuild/easyconfigs/g/gromosXX/gromosXX-1.0.1737-goolf-1.5.14-mpi.eb index 3020c00623..bffc1db371 100644 --- a/easybuild/easyconfigs/g/gromosXX/gromosXX-1.0.1737-goolf-1.5.14-mpi.eb +++ b/easybuild/easyconfigs/g/gromosXX/gromosXX-1.0.1737-goolf-1.5.14-mpi.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Benjamin P. Roberts # New Zealand eScience Infrastructure # The University of Auckland, Auckland, New Zealand diff --git a/easybuild/easyconfigs/g/gromosXX/gromosXX-1.0.1737-goolf-1.5.14-openmp.eb b/easybuild/easyconfigs/g/gromosXX/gromosXX-1.0.1737-goolf-1.5.14-openmp.eb index 8cae45f338..d14dd7b8c3 100644 --- a/easybuild/easyconfigs/g/gromosXX/gromosXX-1.0.1737-goolf-1.5.14-openmp.eb +++ b/easybuild/easyconfigs/g/gromosXX/gromosXX-1.0.1737-goolf-1.5.14-openmp.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Benjamin P. Roberts # New Zealand eScience Infrastructure # The University of Auckland, Auckland, New Zealand diff --git a/easybuild/easyconfigs/g/gromosXX/gromosXX-1.0.1737-goolf-1.5.14-serial.eb b/easybuild/easyconfigs/g/gromosXX/gromosXX-1.0.1737-goolf-1.5.14-serial.eb index 075812f642..3f1f59fa95 100644 --- a/easybuild/easyconfigs/g/gromosXX/gromosXX-1.0.1737-goolf-1.5.14-serial.eb +++ b/easybuild/easyconfigs/g/gromosXX/gromosXX-1.0.1737-goolf-1.5.14-serial.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Benjamin P. Roberts # New Zealand eScience Infrastructure # The University of Auckland, Auckland, New Zealand diff --git a/easybuild/easyconfigs/g/gzip/gzip-1.5-goolf-1.4.10.eb b/easybuild/easyconfigs/g/gzip/gzip-1.5-goolf-1.4.10.eb index 04f2007013..346229a60d 100644 --- a/easybuild/easyconfigs/g/gzip/gzip-1.5-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/g/gzip/gzip-1.5-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright (c) 2012-2013 Cyprus Institute / CaSToRC # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/g/gzip/gzip-1.5-ictce-5.3.0.eb b/easybuild/easyconfigs/g/gzip/gzip-1.5-ictce-5.3.0.eb index 677ec0c4a6..0282f12e45 100644 --- a/easybuild/easyconfigs/g/gzip/gzip-1.5-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/g/gzip/gzip-1.5-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild recipy as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild recipy as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright (c) 2012-2013 Cyprus Institute / CaSToRC # Author:: Thekla Loizou diff --git a/easybuild/easyconfigs/g/gzip/gzip-1.6-goolf-1.5.14.eb b/easybuild/easyconfigs/g/gzip/gzip-1.6-goolf-1.5.14.eb index 87a654b58c..356edf5aad 100644 --- a/easybuild/easyconfigs/g/gzip/gzip-1.6-goolf-1.5.14.eb +++ b/easybuild/easyconfigs/g/gzip/gzip-1.6-goolf-1.5.14.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright (c) 2012-2013 Cyprus Institute / CaSToRC # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/g/gzip/gzip-1.6-goolf-1.6.10.eb b/easybuild/easyconfigs/g/gzip/gzip-1.6-goolf-1.6.10.eb index 86cfca091f..fdb8e4ad69 100644 --- a/easybuild/easyconfigs/g/gzip/gzip-1.6-goolf-1.6.10.eb +++ b/easybuild/easyconfigs/g/gzip/gzip-1.6-goolf-1.6.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright (c) 2012-2013 Cyprus Institute / CaSToRC # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/g/gzip/gzip-1.6-ictce-5.3.0.eb b/easybuild/easyconfigs/g/gzip/gzip-1.6-ictce-5.3.0.eb index 443c4e034e..006952caba 100644 --- a/easybuild/easyconfigs/g/gzip/gzip-1.6-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/g/gzip/gzip-1.6-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright (c) 2012-2013 Cyprus Institute / CaSToRC # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/g/gzip/gzip-1.6-ictce-5.5.0.eb b/easybuild/easyconfigs/g/gzip/gzip-1.6-ictce-5.5.0.eb index ce75649419..24f9247f5e 100644 --- a/easybuild/easyconfigs/g/gzip/gzip-1.6-ictce-5.5.0.eb +++ b/easybuild/easyconfigs/g/gzip/gzip-1.6-ictce-5.5.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright (c) 2012-2013 Cyprus Institute / CaSToRC # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/g/gzip/gzip-1.6-ictce-6.2.5.eb b/easybuild/easyconfigs/g/gzip/gzip-1.6-ictce-6.2.5.eb index 0b795ea36c..9c01e1b2fa 100644 --- a/easybuild/easyconfigs/g/gzip/gzip-1.6-ictce-6.2.5.eb +++ b/easybuild/easyconfigs/g/gzip/gzip-1.6-ictce-6.2.5.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright (c) 2012-2013 Cyprus Institute / CaSToRC # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/h/HAPGEN2/HAPGEN2-2.2.0.eb b/easybuild/easyconfigs/h/HAPGEN2/HAPGEN2-2.2.0.eb index 9874a034c6..9ce0955413 100644 --- a/easybuild/easyconfigs/h/HAPGEN2/HAPGEN2-2.2.0.eb +++ b/easybuild/easyconfigs/h/HAPGEN2/HAPGEN2-2.2.0.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Ravi Tripathi # Email: ravi89@uab.edu diff --git a/easybuild/easyconfigs/h/HH-suite/HH-suite-2.0.16-goolf-1.4.10.eb b/easybuild/easyconfigs/h/HH-suite/HH-suite-2.0.16-goolf-1.4.10.eb index 562e595557..d814155d48 100644 --- a/easybuild/easyconfigs/h/HH-suite/HH-suite-2.0.16-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/h/HH-suite/HH-suite-2.0.16-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild recipy as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild recipy as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/h/HMMER/HMMER-3.0-goolf-1.4.10.eb b/easybuild/easyconfigs/h/HMMER/HMMER-3.0-goolf-1.4.10.eb index ee8ba62195..575f1cb3a1 100644 --- a/easybuild/easyconfigs/h/HMMER/HMMER-3.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/h/HMMER/HMMER-3.0-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/h/HMMER/HMMER-3.0-ictce-5.3.0.eb b/easybuild/easyconfigs/h/HMMER/HMMER-3.0-ictce-5.3.0.eb index ee8eae3fa7..58666bd91f 100644 --- a/easybuild/easyconfigs/h/HMMER/HMMER-3.0-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/h/HMMER/HMMER-3.0-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/h/HMMER/HMMER-3.1b1-goolf-1.4.10.eb b/easybuild/easyconfigs/h/HMMER/HMMER-3.1b1-goolf-1.4.10.eb index c4861d5fc5..180372ef32 100644 --- a/easybuild/easyconfigs/h/HMMER/HMMER-3.1b1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/h/HMMER/HMMER-3.1b1-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Nils Christian , Fotis Georgatos diff --git a/easybuild/easyconfigs/h/HMMER/HMMER-3.1b1-ictce-5.3.0.eb b/easybuild/easyconfigs/h/HMMER/HMMER-3.1b1-ictce-5.3.0.eb index de6a298e59..46ef675ae2 100644 --- a/easybuild/easyconfigs/h/HMMER/HMMER-3.1b1-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/h/HMMER/HMMER-3.1b1-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Nils Christian , Fotis Georgatos diff --git a/easybuild/easyconfigs/h/HMMER/HMMER-3.1b1-ictce-6.2.5.eb b/easybuild/easyconfigs/h/HMMER/HMMER-3.1b1-ictce-6.2.5.eb index 2a1f6d334f..9368f8b014 100644 --- a/easybuild/easyconfigs/h/HMMER/HMMER-3.1b1-ictce-6.2.5.eb +++ b/easybuild/easyconfigs/h/HMMER/HMMER-3.1b1-ictce-6.2.5.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Nils Christian , Fotis Georgatos diff --git a/easybuild/easyconfigs/h/HMMER/HMMER-3.1b2-foss-2016a.eb b/easybuild/easyconfigs/h/HMMER/HMMER-3.1b2-foss-2016a.eb index aed3e32ba8..cad1b86e44 100644 --- a/easybuild/easyconfigs/h/HMMER/HMMER-3.1b2-foss-2016a.eb +++ b/easybuild/easyconfigs/h/HMMER/HMMER-3.1b2-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Nils Christian , Fotis Georgatos diff --git a/easybuild/easyconfigs/h/HMMER/HMMER-3.1b2-intel-2015a.eb b/easybuild/easyconfigs/h/HMMER/HMMER-3.1b2-intel-2015a.eb index 66c915507d..eb4bc8d61f 100644 --- a/easybuild/easyconfigs/h/HMMER/HMMER-3.1b2-intel-2015a.eb +++ b/easybuild/easyconfigs/h/HMMER/HMMER-3.1b2-intel-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Nils Christian , Fotis Georgatos diff --git a/easybuild/easyconfigs/h/HMMER/HMMER-3.1b2-intel-2017a.eb b/easybuild/easyconfigs/h/HMMER/HMMER-3.1b2-intel-2017a.eb index 3ca7456fc5..16913ef0f2 100644 --- a/easybuild/easyconfigs/h/HMMER/HMMER-3.1b2-intel-2017a.eb +++ b/easybuild/easyconfigs/h/HMMER/HMMER-3.1b2-intel-2017a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Nils Christian , Fotis Georgatos diff --git a/easybuild/easyconfigs/h/HPCBIOS_Bioinfo/HPCBIOS_Bioinfo-20130829-goolf-1.4.10.eb b/easybuild/easyconfigs/h/HPCBIOS_Bioinfo/HPCBIOS_Bioinfo-20130829-goolf-1.4.10.eb index 05c50b39b9..36c9dbdcc4 100644 --- a/easybuild/easyconfigs/h/HPCBIOS_Bioinfo/HPCBIOS_Bioinfo-20130829-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/h/HPCBIOS_Bioinfo/HPCBIOS_Bioinfo-20130829-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/h/HPCBIOS_Bioinfo/HPCBIOS_Bioinfo-20130829-ictce-5.3.0.eb b/easybuild/easyconfigs/h/HPCBIOS_Bioinfo/HPCBIOS_Bioinfo-20130829-ictce-5.3.0.eb index a420531cae..2a8073ec74 100644 --- a/easybuild/easyconfigs/h/HPCBIOS_Bioinfo/HPCBIOS_Bioinfo-20130829-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/h/HPCBIOS_Bioinfo/HPCBIOS_Bioinfo-20130829-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/h/HPCBIOS_Debuggers/HPCBIOS_Debuggers-20130829-goolf-1.4.10.eb b/easybuild/easyconfigs/h/HPCBIOS_Debuggers/HPCBIOS_Debuggers-20130829-goolf-1.4.10.eb index 259d3f70b6..1b8304beca 100644 --- a/easybuild/easyconfigs/h/HPCBIOS_Debuggers/HPCBIOS_Debuggers-20130829-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/h/HPCBIOS_Debuggers/HPCBIOS_Debuggers-20130829-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/h/HPCBIOS_LifeSciences/HPCBIOS_LifeSciences-20130829-goolf-1.4.10.eb b/easybuild/easyconfigs/h/HPCBIOS_LifeSciences/HPCBIOS_LifeSciences-20130829-goolf-1.4.10.eb index ac9bda6d5d..f65efedca6 100644 --- a/easybuild/easyconfigs/h/HPCBIOS_LifeSciences/HPCBIOS_LifeSciences-20130829-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/h/HPCBIOS_LifeSciences/HPCBIOS_LifeSciences-20130829-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/h/HPCBIOS_LifeSciences/HPCBIOS_LifeSciences-20130829-ictce-5.3.0.eb b/easybuild/easyconfigs/h/HPCBIOS_LifeSciences/HPCBIOS_LifeSciences-20130829-ictce-5.3.0.eb index a4a4c517a0..c6d311c611 100644 --- a/easybuild/easyconfigs/h/HPCBIOS_LifeSciences/HPCBIOS_LifeSciences-20130829-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/h/HPCBIOS_LifeSciences/HPCBIOS_LifeSciences-20130829-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/h/HPCBIOS_Math/HPCBIOS_Math-20130829-goolf-1.4.10.eb b/easybuild/easyconfigs/h/HPCBIOS_Math/HPCBIOS_Math-20130829-goolf-1.4.10.eb index db4a026864..3147429e4f 100644 --- a/easybuild/easyconfigs/h/HPCBIOS_Math/HPCBIOS_Math-20130829-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/h/HPCBIOS_Math/HPCBIOS_Math-20130829-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/h/HPCBIOS_Math/HPCBIOS_Math-20130829-ictce-5.3.0.eb b/easybuild/easyconfigs/h/HPCBIOS_Math/HPCBIOS_Math-20130829-ictce-5.3.0.eb index 53cb50514f..a497fa7b0e 100644 --- a/easybuild/easyconfigs/h/HPCBIOS_Math/HPCBIOS_Math-20130829-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/h/HPCBIOS_Math/HPCBIOS_Math-20130829-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/h/HPCBIOS_Profilers/HPCBIOS_Profilers-20130829-goolf-1.4.10.eb b/easybuild/easyconfigs/h/HPCBIOS_Profilers/HPCBIOS_Profilers-20130829-goolf-1.4.10.eb index 7f92d9a951..a39dfd9547 100644 --- a/easybuild/easyconfigs/h/HPCBIOS_Profilers/HPCBIOS_Profilers-20130829-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/h/HPCBIOS_Profilers/HPCBIOS_Profilers-20130829-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.1-goolf-1.4.10.eb b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.1-goolf-1.4.10.eb index 2f2abef4e6..0f044b4961 100644 --- a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.1-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.2.1-foss-2015a.eb b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.2.1-foss-2015a.eb index 36facf37a3..ffc593fc72 100644 --- a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.2.1-foss-2015a.eb +++ b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.2.1-foss-2015a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.2.1-goolf-1.7.20.eb b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.2.1-goolf-1.7.20.eb index 7f25a2acfb..510a0b491a 100644 --- a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.2.1-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.2.1-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.2.1-intel-2015a.eb b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.2.1-intel-2015a.eb index 258f48d92e..5770c1df40 100644 --- a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.2.1-intel-2015a.eb +++ b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.2.1-intel-2015a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.2.1-intel-2015b.eb b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.2.1-intel-2015b.eb index 8c0f7d5ac6..bc2b40e77d 100644 --- a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.2.1-intel-2015b.eb +++ b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.2.1-intel-2015b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.3-foss-2016a.eb b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.3-foss-2016a.eb index 93d7d3c6df..aa4b195ecd 100644 --- a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.3-foss-2016a.eb +++ b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.3-foss-2016a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.3-intel-2016a.eb b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.3-intel-2016a.eb index 7b22333e99..3cf499fca6 100644 --- a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.3-intel-2016a.eb +++ b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.3-intel-2016a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.3.1-foss-2016a.eb b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.3.1-foss-2016a.eb index a935ba2870..77e076361b 100644 --- a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.3.1-foss-2016a.eb +++ b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.3.1-foss-2016a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.3.1-foss-2016b.eb b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.3.1-foss-2016b.eb index 71dc997206..76292f8b71 100644 --- a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.3.1-foss-2016b.eb +++ b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.3.1-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.3.1-goolf-1.7.20.eb b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.3.1-goolf-1.7.20.eb index f75133a502..890b17a7bb 100644 --- a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.3.1-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.3.1-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.3.1-intel-2016b.eb b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.3.1-intel-2016b.eb index 38ae993dca..beb21e0706 100644 --- a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.3.1-intel-2016b.eb +++ b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.3.1-intel-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.3.2-intel-2016b.eb b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.3.2-intel-2016b.eb index b0528a8f0c..d8508a8bed 100644 --- a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.3.2-intel-2016b.eb +++ b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.3.2-intel-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.4-foss-2016b.eb b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.4-foss-2016b.eb index 9bdb215d4c..6efdbf1487 100644 --- a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.4-foss-2016b.eb +++ b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.4-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.4-intel-2016b.eb b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.4-intel-2016b.eb index 5c5a91710c..6836878b7b 100644 --- a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.4-intel-2016b.eb +++ b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.4-intel-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.4.1-intel-2017a.eb b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.4.1-intel-2017a.eb index 03cac8f884..a8c2560f6d 100644 --- a/easybuild/easyconfigs/h/HTSlib/HTSlib-1.4.1-intel-2017a.eb +++ b/easybuild/easyconfigs/h/HTSlib/HTSlib-1.4.1-intel-2017a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/h/HTSlib/HTSlib-20160107-intel-2017a-PacBio.eb b/easybuild/easyconfigs/h/HTSlib/HTSlib-20160107-intel-2017a-PacBio.eb index e9e046ddd8..332b887d49 100644 --- a/easybuild/easyconfigs/h/HTSlib/HTSlib-20160107-intel-2017a-PacBio.eb +++ b/easybuild/easyconfigs/h/HTSlib/HTSlib-20160107-intel-2017a-PacBio.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/i/IDBA-UD/IDBA-UD-1.1.1-goolf-1.4.10.eb b/easybuild/easyconfigs/i/IDBA-UD/IDBA-UD-1.1.1-goolf-1.4.10.eb index 70a1e78b61..fe1544cd62 100644 --- a/easybuild/easyconfigs/i/IDBA-UD/IDBA-UD-1.1.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/i/IDBA-UD/IDBA-UD-1.1.1-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/i/IGV/IGV-2.3.68-Java-1.7.0_80.eb b/easybuild/easyconfigs/i/IGV/IGV-2.3.68-Java-1.7.0_80.eb index be548b30c0..ee79473cdf 100644 --- a/easybuild/easyconfigs/i/IGV/IGV-2.3.68-Java-1.7.0_80.eb +++ b/easybuild/easyconfigs/i/IGV/IGV-2.3.68-Java-1.7.0_80.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/i/IGV/IGV-2.3.80-Java-1.7.0_80.eb b/easybuild/easyconfigs/i/IGV/IGV-2.3.80-Java-1.7.0_80.eb index fb24a4205c..c819155a71 100644 --- a/easybuild/easyconfigs/i/IGV/IGV-2.3.80-Java-1.7.0_80.eb +++ b/easybuild/easyconfigs/i/IGV/IGV-2.3.80-Java-1.7.0_80.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/i/IGVTools/IGVTools-2.3.68-Java-1.7.0_80.eb b/easybuild/easyconfigs/i/IGVTools/IGVTools-2.3.68-Java-1.7.0_80.eb index 5610a087c8..cea60ec233 100644 --- a/easybuild/easyconfigs/i/IGVTools/IGVTools-2.3.68-Java-1.7.0_80.eb +++ b/easybuild/easyconfigs/i/IGVTools/IGVTools-2.3.68-Java-1.7.0_80.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/i/IGVTools/IGVTools-2.3.72-Java-1.7.0_80.eb b/easybuild/easyconfigs/i/IGVTools/IGVTools-2.3.72-Java-1.7.0_80.eb index a1e88b7409..789c813666 100644 --- a/easybuild/easyconfigs/i/IGVTools/IGVTools-2.3.72-Java-1.7.0_80.eb +++ b/easybuild/easyconfigs/i/IGVTools/IGVTools-2.3.72-Java-1.7.0_80.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/i/IGVTools/IGVTools-2.3.75-Java-1.7.0_80.eb b/easybuild/easyconfigs/i/IGVTools/IGVTools-2.3.75-Java-1.7.0_80.eb index 6bb0cfc42f..d8d59137d0 100644 --- a/easybuild/easyconfigs/i/IGVTools/IGVTools-2.3.75-Java-1.7.0_80.eb +++ b/easybuild/easyconfigs/i/IGVTools/IGVTools-2.3.75-Java-1.7.0_80.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/i/IMOD/IMOD-4.7.15_RHEL6-64_CUDA6.0.eb b/easybuild/easyconfigs/i/IMOD/IMOD-4.7.15_RHEL6-64_CUDA6.0.eb index 2cca42e4db..51f4a9d25b 100644 --- a/easybuild/easyconfigs/i/IMOD/IMOD-4.7.15_RHEL6-64_CUDA6.0.eb +++ b/easybuild/easyconfigs/i/IMOD/IMOD-4.7.15_RHEL6-64_CUDA6.0.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # authors: # * Pablo Escobar Lopez (sciCORE - University of Basel - SIB Swiss Institute of Bioinformatics) # * Benjamin Roberts (Landcare Research NZ Ltd) diff --git a/easybuild/easyconfigs/i/IMPUTE2/IMPUTE2-2.3.0_x86_64_dynamic.eb b/easybuild/easyconfigs/i/IMPUTE2/IMPUTE2-2.3.0_x86_64_dynamic.eb index 03ab71fb09..5e16612e00 100644 --- a/easybuild/easyconfigs/i/IMPUTE2/IMPUTE2-2.3.0_x86_64_dynamic.eb +++ b/easybuild/easyconfigs/i/IMPUTE2/IMPUTE2-2.3.0_x86_64_dynamic.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/i/IMPUTE2/IMPUTE2-2.3.0_x86_64_static.eb b/easybuild/easyconfigs/i/IMPUTE2/IMPUTE2-2.3.0_x86_64_static.eb index ba5278c540..3bbb6f11e4 100644 --- a/easybuild/easyconfigs/i/IMPUTE2/IMPUTE2-2.3.0_x86_64_static.eb +++ b/easybuild/easyconfigs/i/IMPUTE2/IMPUTE2-2.3.0_x86_64_static.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/i/IMPUTE2/IMPUTE2-2.3.2_x86_64_dynamic.eb b/easybuild/easyconfigs/i/IMPUTE2/IMPUTE2-2.3.2_x86_64_dynamic.eb index 4a7086b810..a3ccfb16ac 100644 --- a/easybuild/easyconfigs/i/IMPUTE2/IMPUTE2-2.3.2_x86_64_dynamic.eb +++ b/easybuild/easyconfigs/i/IMPUTE2/IMPUTE2-2.3.2_x86_64_dynamic.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/i/IMPUTE2/IMPUTE2-2.3.2_x86_64_static.eb b/easybuild/easyconfigs/i/IMPUTE2/IMPUTE2-2.3.2_x86_64_static.eb index 2f68d383ff..d7a1d00fa6 100644 --- a/easybuild/easyconfigs/i/IMPUTE2/IMPUTE2-2.3.2_x86_64_static.eb +++ b/easybuild/easyconfigs/i/IMPUTE2/IMPUTE2-2.3.2_x86_64_static.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/i/IOR/IOR-2.10.3-goolf-1.4.10-mpiio.eb b/easybuild/easyconfigs/i/IOR/IOR-2.10.3-goolf-1.4.10-mpiio.eb index da34c32da1..369a2092f8 100644 --- a/easybuild/easyconfigs/i/IOR/IOR-2.10.3-goolf-1.4.10-mpiio.eb +++ b/easybuild/easyconfigs/i/IOR/IOR-2.10.3-goolf-1.4.10-mpiio.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/i/IOR/IOR-2.10.3-intel-2014b-mpiio.eb b/easybuild/easyconfigs/i/IOR/IOR-2.10.3-intel-2014b-mpiio.eb index 7502a94f71..4cabeebb51 100644 --- a/easybuild/easyconfigs/i/IOR/IOR-2.10.3-intel-2014b-mpiio.eb +++ b/easybuild/easyconfigs/i/IOR/IOR-2.10.3-intel-2014b-mpiio.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/i/IOR/IOR-3.0.1-foss-2016a-mpiio.eb b/easybuild/easyconfigs/i/IOR/IOR-3.0.1-foss-2016a-mpiio.eb index 66d029ece5..ab6a7103ce 100644 --- a/easybuild/easyconfigs/i/IOR/IOR-3.0.1-foss-2016a-mpiio.eb +++ b/easybuild/easyconfigs/i/IOR/IOR-3.0.1-foss-2016a-mpiio.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/i/IPython/IPython-4.1.0-goolf-1.4.10-Python-2.7.5.eb b/easybuild/easyconfigs/i/IPython/IPython-4.1.0-goolf-1.4.10-Python-2.7.5.eb index cc3235c707..d40e59455e 100644 --- a/easybuild/easyconfigs/i/IPython/IPython-4.1.0-goolf-1.4.10-Python-2.7.5.eb +++ b/easybuild/easyconfigs/i/IPython/IPython-4.1.0-goolf-1.4.10-Python-2.7.5.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/i/IPython/IPython-4.2.0-goolf-1.7.20-Python-2.7.11.eb b/easybuild/easyconfigs/i/IPython/IPython-4.2.0-goolf-1.7.20-Python-2.7.11.eb index e5a53f115d..4d411ebcda 100644 --- a/easybuild/easyconfigs/i/IPython/IPython-4.2.0-goolf-1.7.20-Python-2.7.11.eb +++ b/easybuild/easyconfigs/i/IPython/IPython-4.2.0-goolf-1.7.20-Python-2.7.11.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/i/IPython/IPython-4.2.0-intel-2016a-Python-2.7.11.eb b/easybuild/easyconfigs/i/IPython/IPython-4.2.0-intel-2016a-Python-2.7.11.eb index ec8e81a4ce..86ef6979c5 100644 --- a/easybuild/easyconfigs/i/IPython/IPython-4.2.0-intel-2016a-Python-2.7.11.eb +++ b/easybuild/easyconfigs/i/IPython/IPython-4.2.0-intel-2016a-Python-2.7.11.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/i/ImageMagick/ImageMagick-7.0.2-9-intel-2016a.eb b/easybuild/easyconfigs/i/ImageMagick/ImageMagick-7.0.2-9-intel-2016a.eb index 17c246342c..5a4fee9bff 100644 --- a/easybuild/easyconfigs/i/ImageMagick/ImageMagick-7.0.2-9-intel-2016a.eb +++ b/easybuild/easyconfigs/i/ImageMagick/ImageMagick-7.0.2-9-intel-2016a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Ravi Tripathi # Email: ravi89@uab.edu diff --git a/easybuild/easyconfigs/i/ImageMagick/ImageMagick-7.0.3-1-intel-2016b.eb b/easybuild/easyconfigs/i/ImageMagick/ImageMagick-7.0.3-1-intel-2016b.eb index 7e4fd1539e..9453d2738a 100644 --- a/easybuild/easyconfigs/i/ImageMagick/ImageMagick-7.0.3-1-intel-2016b.eb +++ b/easybuild/easyconfigs/i/ImageMagick/ImageMagick-7.0.3-1-intel-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Ravi Tripathi # Email: ravi89@uab.edu diff --git a/easybuild/easyconfigs/i/ImageMagick/ImageMagick-7.0.5-10-foss-2016b.eb b/easybuild/easyconfigs/i/ImageMagick/ImageMagick-7.0.5-10-foss-2016b.eb index 495de72aba..11c3dbd676 100644 --- a/easybuild/easyconfigs/i/ImageMagick/ImageMagick-7.0.5-10-foss-2016b.eb +++ b/easybuild/easyconfigs/i/ImageMagick/ImageMagick-7.0.5-10-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Ravi Tripathi # Email: ravi89@uab.edu diff --git a/easybuild/easyconfigs/i/ImageMagick/ImageMagick-7.0.5-4-intel-2017a.eb b/easybuild/easyconfigs/i/ImageMagick/ImageMagick-7.0.5-4-intel-2017a.eb index b01509be3a..1d846a28fe 100644 --- a/easybuild/easyconfigs/i/ImageMagick/ImageMagick-7.0.5-4-intel-2017a.eb +++ b/easybuild/easyconfigs/i/ImageMagick/ImageMagick-7.0.5-4-intel-2017a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Ravi Tripathi # Email: ravi89@uab.edu diff --git a/easybuild/easyconfigs/i/Infernal/Infernal-1.1-goolf-1.4.10.eb b/easybuild/easyconfigs/i/Infernal/Infernal-1.1-goolf-1.4.10.eb index 033191a3d9..430a419631 100644 --- a/easybuild/easyconfigs/i/Infernal/Infernal-1.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/i/Infernal/Infernal-1.1-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/i/Infernal/Infernal-1.1-ictce-5.3.0.eb b/easybuild/easyconfigs/i/Infernal/Infernal-1.1-ictce-5.3.0.eb index e7debfe98f..76f0bd86d1 100644 --- a/easybuild/easyconfigs/i/Infernal/Infernal-1.1-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/i/Infernal/Infernal-1.1-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/i/Infernal/Infernal-1.1rc1-goolf-1.4.10.eb b/easybuild/easyconfigs/i/Infernal/Infernal-1.1rc1-goolf-1.4.10.eb index 5171c8b613..a1c6278078 100644 --- a/easybuild/easyconfigs/i/Infernal/Infernal-1.1rc1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/i/Infernal/Infernal-1.1rc1-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/i/Infernal/Infernal-1.1rc1-ictce-5.3.0.eb b/easybuild/easyconfigs/i/Infernal/Infernal-1.1rc1-ictce-5.3.0.eb index a1476edd29..303ad1f1b5 100644 --- a/easybuild/easyconfigs/i/Infernal/Infernal-1.1rc1-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/i/Infernal/Infernal-1.1rc1-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/i/Iperf/Iperf-2.0.5-goolf-1.4.10.eb b/easybuild/easyconfigs/i/Iperf/Iperf-2.0.5-goolf-1.4.10.eb index 68b608ac4b..045ed0c649 100644 --- a/easybuild/easyconfigs/i/Iperf/Iperf-2.0.5-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/i/Iperf/Iperf-2.0.5-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/i/Iperf/Iperf-2.0.5-ictce-5.3.0.eb b/easybuild/easyconfigs/i/Iperf/Iperf-2.0.5-ictce-5.3.0.eb index 3bbd50af7c..5206bec3f8 100644 --- a/easybuild/easyconfigs/i/Iperf/Iperf-2.0.5-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/i/Iperf/Iperf-2.0.5-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/i/IsoInfer/IsoInfer-0.9.1-goolf-1.4.10.eb b/easybuild/easyconfigs/i/IsoInfer/IsoInfer-0.9.1-goolf-1.4.10.eb index 5f71030257..237e4fd6ac 100644 --- a/easybuild/easyconfigs/i/IsoInfer/IsoInfer-0.9.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/i/IsoInfer/IsoInfer-0.9.1-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Authors: Kenneth Hoste (UGent), Pablo Escobar Lopez (Unibas) easyblock = 'MakeCp' diff --git a/easybuild/easyconfigs/i/IsoInfer/IsoInfer-0.9.1-ictce-6.2.5.eb b/easybuild/easyconfigs/i/IsoInfer/IsoInfer-0.9.1-ictce-6.2.5.eb index 10342bedf0..1e7adc8498 100644 --- a/easybuild/easyconfigs/i/IsoInfer/IsoInfer-0.9.1-ictce-6.2.5.eb +++ b/easybuild/easyconfigs/i/IsoInfer/IsoInfer-0.9.1-ictce-6.2.5.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Authors: Kenneth Hoste (UGent), Pablo Escobar Lopez (Unibas) easyblock = 'MakeCp' diff --git a/easybuild/easyconfigs/i/icc/icc-2016.0.109-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/icc/icc-2016.0.109-GCC-4.9.3-2.25.eb index f15a97cd30..96e09e4442 100644 --- a/easybuild/easyconfigs/i/icc/icc-2016.0.109-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/icc/icc-2016.0.109-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'icc' version = '2016.0.109' diff --git a/easybuild/easyconfigs/i/icc/icc-2016.0.109.eb b/easybuild/easyconfigs/i/icc/icc-2016.0.109.eb index 18895dbe61..6f3261b9b3 100644 --- a/easybuild/easyconfigs/i/icc/icc-2016.0.109.eb +++ b/easybuild/easyconfigs/i/icc/icc-2016.0.109.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'icc' version = '2016.0.109' diff --git a/easybuild/easyconfigs/i/icc/icc-2016.1.150-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/icc/icc-2016.1.150-GCC-4.9.3-2.25.eb index d375c69cbb..64e0d33ac6 100644 --- a/easybuild/easyconfigs/i/icc/icc-2016.1.150-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/icc/icc-2016.1.150-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'icc' version = '2016.1.150' diff --git a/easybuild/easyconfigs/i/icc/icc-2016.2.181-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/icc/icc-2016.2.181-GCC-4.9.3-2.25.eb index 4d0d75afae..721567e03f 100644 --- a/easybuild/easyconfigs/i/icc/icc-2016.2.181-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/icc/icc-2016.2.181-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'icc' version = '2016.2.181' diff --git a/easybuild/easyconfigs/i/icc/icc-2016.2.181-GCC-5.3.0-2.26.eb b/easybuild/easyconfigs/i/icc/icc-2016.2.181-GCC-5.3.0-2.26.eb index 5c1c6d97c5..0cbfad31f7 100644 --- a/easybuild/easyconfigs/i/icc/icc-2016.2.181-GCC-5.3.0-2.26.eb +++ b/easybuild/easyconfigs/i/icc/icc-2016.2.181-GCC-5.3.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'icc' version = '2016.2.181' diff --git a/easybuild/easyconfigs/i/icc/icc-2016.3.210-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/icc/icc-2016.3.210-GCC-4.9.3-2.25.eb index 4511a57a9e..2895d405cf 100644 --- a/easybuild/easyconfigs/i/icc/icc-2016.3.210-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/icc/icc-2016.3.210-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'icc' version = '2016.3.210' diff --git a/easybuild/easyconfigs/i/icc/icc-2016.3.210-GCC-5.3.0-2.26.eb b/easybuild/easyconfigs/i/icc/icc-2016.3.210-GCC-5.3.0-2.26.eb index 2192bcc506..15866eea89 100644 --- a/easybuild/easyconfigs/i/icc/icc-2016.3.210-GCC-5.3.0-2.26.eb +++ b/easybuild/easyconfigs/i/icc/icc-2016.3.210-GCC-5.3.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'icc' version = '2016.3.210' diff --git a/easybuild/easyconfigs/i/icc/icc-2016.3.210-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/icc/icc-2016.3.210-GCC-5.4.0-2.26.eb index 9ce84e0f30..dc7b23e0a2 100644 --- a/easybuild/easyconfigs/i/icc/icc-2016.3.210-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/icc/icc-2016.3.210-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'icc' version = '2016.3.210' diff --git a/easybuild/easyconfigs/i/icc/icc-2017.0.098-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/icc/icc-2017.0.098-GCC-5.4.0-2.26.eb index d1cc307109..06ec2ed952 100644 --- a/easybuild/easyconfigs/i/icc/icc-2017.0.098-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/icc/icc-2017.0.098-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'icc' version = '2017.0.098' diff --git a/easybuild/easyconfigs/i/icc/icc-2017.1.132-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/icc/icc-2017.1.132-GCC-5.4.0-2.26.eb index 924f53625d..126b6eb3e0 100644 --- a/easybuild/easyconfigs/i/icc/icc-2017.1.132-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/icc/icc-2017.1.132-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'icc' version = '2017.1.132' diff --git a/easybuild/easyconfigs/i/icc/icc-2017.1.132-GCC-6.3.0-2.27.eb b/easybuild/easyconfigs/i/icc/icc-2017.1.132-GCC-6.3.0-2.27.eb index 39745a0399..bada3a0811 100644 --- a/easybuild/easyconfigs/i/icc/icc-2017.1.132-GCC-6.3.0-2.27.eb +++ b/easybuild/easyconfigs/i/icc/icc-2017.1.132-GCC-6.3.0-2.27.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'icc' version = '2017.1.132' diff --git a/easybuild/easyconfigs/i/icc/icc-2017.2.174-GCC-6.3.0-2.27.eb b/easybuild/easyconfigs/i/icc/icc-2017.2.174-GCC-6.3.0-2.27.eb index cd7f8184fe..6d8d739d3b 100644 --- a/easybuild/easyconfigs/i/icc/icc-2017.2.174-GCC-6.3.0-2.27.eb +++ b/easybuild/easyconfigs/i/icc/icc-2017.2.174-GCC-6.3.0-2.27.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'icc' version = '2017.2.174' diff --git a/easybuild/easyconfigs/i/iccifort/iccifort-2016.0.109-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/iccifort/iccifort-2016.0.109-GCC-4.9.3-2.25.eb index d51e11b541..4af351f8fe 100644 --- a/easybuild/easyconfigs/i/iccifort/iccifort-2016.0.109-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/iccifort/iccifort-2016.0.109-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iccifort' diff --git a/easybuild/easyconfigs/i/iccifort/iccifort-2016.0.109.eb b/easybuild/easyconfigs/i/iccifort/iccifort-2016.0.109.eb index f03bb37944..6753c1145f 100644 --- a/easybuild/easyconfigs/i/iccifort/iccifort-2016.0.109.eb +++ b/easybuild/easyconfigs/i/iccifort/iccifort-2016.0.109.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iccifort' diff --git a/easybuild/easyconfigs/i/iccifort/iccifort-2016.1.150-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/iccifort/iccifort-2016.1.150-GCC-4.9.3-2.25.eb index 8bf45db5e6..923d9700ec 100644 --- a/easybuild/easyconfigs/i/iccifort/iccifort-2016.1.150-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/iccifort/iccifort-2016.1.150-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iccifort' diff --git a/easybuild/easyconfigs/i/iccifort/iccifort-2016.2.181-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/iccifort/iccifort-2016.2.181-GCC-4.9.3-2.25.eb index 7fc5fd1e8f..b3ced2b66f 100644 --- a/easybuild/easyconfigs/i/iccifort/iccifort-2016.2.181-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/iccifort/iccifort-2016.2.181-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iccifort' diff --git a/easybuild/easyconfigs/i/iccifort/iccifort-2016.2.181-GCC-5.3.0-2.26.eb b/easybuild/easyconfigs/i/iccifort/iccifort-2016.2.181-GCC-5.3.0-2.26.eb index 0b2036c9e0..f7d7ee5159 100644 --- a/easybuild/easyconfigs/i/iccifort/iccifort-2016.2.181-GCC-5.3.0-2.26.eb +++ b/easybuild/easyconfigs/i/iccifort/iccifort-2016.2.181-GCC-5.3.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iccifort' diff --git a/easybuild/easyconfigs/i/iccifort/iccifort-2016.3.210-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/iccifort/iccifort-2016.3.210-GCC-4.9.3-2.25.eb index f961d74a1f..fcdd6710aa 100644 --- a/easybuild/easyconfigs/i/iccifort/iccifort-2016.3.210-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/iccifort/iccifort-2016.3.210-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iccifort' diff --git a/easybuild/easyconfigs/i/iccifort/iccifort-2016.3.210-GCC-5.3.0-2.26.eb b/easybuild/easyconfigs/i/iccifort/iccifort-2016.3.210-GCC-5.3.0-2.26.eb index f89991b41e..d7cafce265 100644 --- a/easybuild/easyconfigs/i/iccifort/iccifort-2016.3.210-GCC-5.3.0-2.26.eb +++ b/easybuild/easyconfigs/i/iccifort/iccifort-2016.3.210-GCC-5.3.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iccifort' diff --git a/easybuild/easyconfigs/i/iccifort/iccifort-2016.3.210-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/iccifort/iccifort-2016.3.210-GCC-5.4.0-2.26.eb index 52e91145c6..41183af553 100644 --- a/easybuild/easyconfigs/i/iccifort/iccifort-2016.3.210-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/iccifort/iccifort-2016.3.210-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iccifort' diff --git a/easybuild/easyconfigs/i/iccifort/iccifort-2017.0.098-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/iccifort/iccifort-2017.0.098-GCC-5.4.0-2.26.eb index e2ed764a7b..e047e9f7b3 100644 --- a/easybuild/easyconfigs/i/iccifort/iccifort-2017.0.098-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/iccifort/iccifort-2017.0.098-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iccifort' diff --git a/easybuild/easyconfigs/i/iccifort/iccifort-2017.1.132-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/iccifort/iccifort-2017.1.132-GCC-5.4.0-2.26.eb index 6e347be3a2..de0d741a72 100644 --- a/easybuild/easyconfigs/i/iccifort/iccifort-2017.1.132-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/iccifort/iccifort-2017.1.132-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iccifort' diff --git a/easybuild/easyconfigs/i/iccifort/iccifort-2017.1.132-GCC-6.3.0-2.27.eb b/easybuild/easyconfigs/i/iccifort/iccifort-2017.1.132-GCC-6.3.0-2.27.eb index ea60f74334..3ec7427089 100644 --- a/easybuild/easyconfigs/i/iccifort/iccifort-2017.1.132-GCC-6.3.0-2.27.eb +++ b/easybuild/easyconfigs/i/iccifort/iccifort-2017.1.132-GCC-6.3.0-2.27.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iccifort' diff --git a/easybuild/easyconfigs/i/iccifort/iccifort-2017.2.174-GCC-6.3.0-2.27.eb b/easybuild/easyconfigs/i/iccifort/iccifort-2017.2.174-GCC-6.3.0-2.27.eb index d622580adc..87ed0a937d 100644 --- a/easybuild/easyconfigs/i/iccifort/iccifort-2017.2.174-GCC-6.3.0-2.27.eb +++ b/easybuild/easyconfigs/i/iccifort/iccifort-2017.2.174-GCC-6.3.0-2.27.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = 'Toolchain' name = 'iccifort' diff --git a/easybuild/easyconfigs/i/ifort/ifort-2016.0.109-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/ifort/ifort-2016.0.109-GCC-4.9.3-2.25.eb index a32fd8278a..255161f320 100644 --- a/easybuild/easyconfigs/i/ifort/ifort-2016.0.109-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/ifort/ifort-2016.0.109-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'ifort' version = '2016.0.109' diff --git a/easybuild/easyconfigs/i/ifort/ifort-2016.0.109.eb b/easybuild/easyconfigs/i/ifort/ifort-2016.0.109.eb index b40428eab7..479cec077d 100644 --- a/easybuild/easyconfigs/i/ifort/ifort-2016.0.109.eb +++ b/easybuild/easyconfigs/i/ifort/ifort-2016.0.109.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'ifort' version = '2016.0.109' diff --git a/easybuild/easyconfigs/i/ifort/ifort-2016.1.150-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/ifort/ifort-2016.1.150-GCC-4.9.3-2.25.eb index fdfcf853b6..a01ea21032 100644 --- a/easybuild/easyconfigs/i/ifort/ifort-2016.1.150-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/ifort/ifort-2016.1.150-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'ifort' version = '2016.1.150' diff --git a/easybuild/easyconfigs/i/ifort/ifort-2016.2.181-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/ifort/ifort-2016.2.181-GCC-4.9.3-2.25.eb index 39dd006552..4a5a9da050 100644 --- a/easybuild/easyconfigs/i/ifort/ifort-2016.2.181-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/ifort/ifort-2016.2.181-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'ifort' version = '2016.2.181' diff --git a/easybuild/easyconfigs/i/ifort/ifort-2016.2.181-GCC-5.3.0-2.26.eb b/easybuild/easyconfigs/i/ifort/ifort-2016.2.181-GCC-5.3.0-2.26.eb index 952e908d84..61a7a9cb99 100644 --- a/easybuild/easyconfigs/i/ifort/ifort-2016.2.181-GCC-5.3.0-2.26.eb +++ b/easybuild/easyconfigs/i/ifort/ifort-2016.2.181-GCC-5.3.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'ifort' version = '2016.2.181' diff --git a/easybuild/easyconfigs/i/ifort/ifort-2016.3.210-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/ifort/ifort-2016.3.210-GCC-4.9.3-2.25.eb index 624fe2510b..67930d3ffb 100644 --- a/easybuild/easyconfigs/i/ifort/ifort-2016.3.210-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/ifort/ifort-2016.3.210-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'ifort' version = '2016.3.210' diff --git a/easybuild/easyconfigs/i/ifort/ifort-2016.3.210-GCC-5.3.0-2.26.eb b/easybuild/easyconfigs/i/ifort/ifort-2016.3.210-GCC-5.3.0-2.26.eb index 148dc06764..189b6b9916 100644 --- a/easybuild/easyconfigs/i/ifort/ifort-2016.3.210-GCC-5.3.0-2.26.eb +++ b/easybuild/easyconfigs/i/ifort/ifort-2016.3.210-GCC-5.3.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'ifort' version = '2016.3.210' diff --git a/easybuild/easyconfigs/i/ifort/ifort-2016.3.210-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/ifort/ifort-2016.3.210-GCC-5.4.0-2.26.eb index 48e857188b..bbc290ac69 100644 --- a/easybuild/easyconfigs/i/ifort/ifort-2016.3.210-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/ifort/ifort-2016.3.210-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'ifort' version = '2016.3.210' diff --git a/easybuild/easyconfigs/i/ifort/ifort-2017.0.098-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/ifort/ifort-2017.0.098-GCC-5.4.0-2.26.eb index 26de8ad254..994e8bb45e 100644 --- a/easybuild/easyconfigs/i/ifort/ifort-2017.0.098-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/ifort/ifort-2017.0.098-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'ifort' version = '2017.0.098' diff --git a/easybuild/easyconfigs/i/ifort/ifort-2017.1.132-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/ifort/ifort-2017.1.132-GCC-5.4.0-2.26.eb index c275933f9d..d03607c38d 100644 --- a/easybuild/easyconfigs/i/ifort/ifort-2017.1.132-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/ifort/ifort-2017.1.132-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'ifort' version = '2017.1.132' diff --git a/easybuild/easyconfigs/i/ifort/ifort-2017.1.132-GCC-6.3.0-2.27.eb b/easybuild/easyconfigs/i/ifort/ifort-2017.1.132-GCC-6.3.0-2.27.eb index 746cfd78bf..11f2e31d72 100644 --- a/easybuild/easyconfigs/i/ifort/ifort-2017.1.132-GCC-6.3.0-2.27.eb +++ b/easybuild/easyconfigs/i/ifort/ifort-2017.1.132-GCC-6.3.0-2.27.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'ifort' version = '2017.1.132' diff --git a/easybuild/easyconfigs/i/ifort/ifort-2017.2.174-GCC-6.3.0-2.27.eb b/easybuild/easyconfigs/i/ifort/ifort-2017.2.174-GCC-6.3.0-2.27.eb index c4b671b697..7d3dc3b6f7 100644 --- a/easybuild/easyconfigs/i/ifort/ifort-2017.2.174-GCC-6.3.0-2.27.eb +++ b/easybuild/easyconfigs/i/ifort/ifort-2017.2.174-GCC-6.3.0-2.27.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'ifort' version = '2017.2.174' diff --git a/easybuild/easyconfigs/i/iimpi/iimpi-2016.00-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/iimpi/iimpi-2016.00-GCC-4.9.3-2.25.eb index 73e504fad6..57a86a76d8 100644 --- a/easybuild/easyconfigs/i/iimpi/iimpi-2016.00-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/iimpi/iimpi-2016.00-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iimpi' diff --git a/easybuild/easyconfigs/i/iimpi/iimpi-2016.01-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/iimpi/iimpi-2016.01-GCC-4.9.3-2.25.eb index 5df1cad542..8e46199a8e 100644 --- a/easybuild/easyconfigs/i/iimpi/iimpi-2016.01-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/iimpi/iimpi-2016.01-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iimpi' diff --git a/easybuild/easyconfigs/i/iimpi/iimpi-2016.02-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/iimpi/iimpi-2016.02-GCC-4.9.3-2.25.eb index 3d1b981714..3c4734b17b 100644 --- a/easybuild/easyconfigs/i/iimpi/iimpi-2016.02-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/iimpi/iimpi-2016.02-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iimpi' diff --git a/easybuild/easyconfigs/i/iimpi/iimpi-2016.02-GCC-5.3.0-2.26.eb b/easybuild/easyconfigs/i/iimpi/iimpi-2016.02-GCC-5.3.0-2.26.eb index 9e93414ff1..9c1506b2e4 100644 --- a/easybuild/easyconfigs/i/iimpi/iimpi-2016.02-GCC-5.3.0-2.26.eb +++ b/easybuild/easyconfigs/i/iimpi/iimpi-2016.02-GCC-5.3.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iimpi' diff --git a/easybuild/easyconfigs/i/iimpi/iimpi-2016.03-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/iimpi/iimpi-2016.03-GCC-4.9.3-2.25.eb index f4a56beef1..e3b3a17989 100644 --- a/easybuild/easyconfigs/i/iimpi/iimpi-2016.03-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/iimpi/iimpi-2016.03-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iimpi' diff --git a/easybuild/easyconfigs/i/iimpi/iimpi-2016.03-GCC-5.3.0-2.26.eb b/easybuild/easyconfigs/i/iimpi/iimpi-2016.03-GCC-5.3.0-2.26.eb index 8e5a35ceef..2b5ee4fd1b 100644 --- a/easybuild/easyconfigs/i/iimpi/iimpi-2016.03-GCC-5.3.0-2.26.eb +++ b/easybuild/easyconfigs/i/iimpi/iimpi-2016.03-GCC-5.3.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iimpi' diff --git a/easybuild/easyconfigs/i/iimpi/iimpi-2016.03-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/iimpi/iimpi-2016.03-GCC-5.4.0-2.26.eb index 8ee7c61e95..3fa553dc7b 100644 --- a/easybuild/easyconfigs/i/iimpi/iimpi-2016.03-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/iimpi/iimpi-2016.03-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iimpi' diff --git a/easybuild/easyconfigs/i/iimpi/iimpi-2016b.eb b/easybuild/easyconfigs/i/iimpi/iimpi-2016b.eb index 0af3e3a3ab..5db059f41d 100644 --- a/easybuild/easyconfigs/i/iimpi/iimpi-2016b.eb +++ b/easybuild/easyconfigs/i/iimpi/iimpi-2016b.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iimpi' diff --git a/easybuild/easyconfigs/i/iimpi/iimpi-2017.00-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/iimpi/iimpi-2017.00-GCC-5.4.0-2.26.eb index 1af95a3473..d6118a326e 100644 --- a/easybuild/easyconfigs/i/iimpi/iimpi-2017.00-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/iimpi/iimpi-2017.00-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iimpi' diff --git a/easybuild/easyconfigs/i/iimpi/iimpi-2017.01-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/iimpi/iimpi-2017.01-GCC-5.4.0-2.26.eb index 97332c6ea3..1807df2103 100644 --- a/easybuild/easyconfigs/i/iimpi/iimpi-2017.01-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/iimpi/iimpi-2017.01-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iimpi' diff --git a/easybuild/easyconfigs/i/iimpi/iimpi-2017.02-GCC-6.3.0-2.27.eb b/easybuild/easyconfigs/i/iimpi/iimpi-2017.02-GCC-6.3.0-2.27.eb index b0f86b1096..96132c62bd 100644 --- a/easybuild/easyconfigs/i/iimpi/iimpi-2017.02-GCC-6.3.0-2.27.eb +++ b/easybuild/easyconfigs/i/iimpi/iimpi-2017.02-GCC-6.3.0-2.27.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iimpi' diff --git a/easybuild/easyconfigs/i/iimpi/iimpi-2017a.eb b/easybuild/easyconfigs/i/iimpi/iimpi-2017a.eb index c272ff0803..daa347a40e 100644 --- a/easybuild/easyconfigs/i/iimpi/iimpi-2017a.eb +++ b/easybuild/easyconfigs/i/iimpi/iimpi-2017a.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iimpi' diff --git a/easybuild/easyconfigs/i/iimpic/iimpic-2016.10.eb b/easybuild/easyconfigs/i/iimpic/iimpic-2016.10.eb index 33bf002bbf..b1196702a9 100644 --- a/easybuild/easyconfigs/i/iimpic/iimpic-2016.10.eb +++ b/easybuild/easyconfigs/i/iimpic/iimpic-2016.10.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iimpic' diff --git a/easybuild/easyconfigs/i/imkl/imkl-11.3.0.109-iimpi-2016.00-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/imkl/imkl-11.3.0.109-iimpi-2016.00-GCC-4.9.3-2.25.eb index a928de1ca4..c67f0e36d5 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-11.3.0.109-iimpi-2016.00-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-11.3.0.109-iimpi-2016.00-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'imkl' version = '11.3.0.109' diff --git a/easybuild/easyconfigs/i/imkl/imkl-11.3.1.150-iimpi-2016.01-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/imkl/imkl-11.3.1.150-iimpi-2016.01-GCC-4.9.3-2.25.eb index 49c3e5d75b..5f46cfbdc5 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-11.3.1.150-iimpi-2016.01-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-11.3.1.150-iimpi-2016.01-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'imkl' version = '11.3.1.150' diff --git a/easybuild/easyconfigs/i/imkl/imkl-11.3.2.181-iimpi-2016.02-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/imkl/imkl-11.3.2.181-iimpi-2016.02-GCC-4.9.3-2.25.eb index 91dcce3df9..41939dc99b 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-11.3.2.181-iimpi-2016.02-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-11.3.2.181-iimpi-2016.02-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'imkl' version = '11.3.2.181' diff --git a/easybuild/easyconfigs/i/imkl/imkl-11.3.2.181-iimpi-2016.02-GCC-5.3.0-2.26.eb b/easybuild/easyconfigs/i/imkl/imkl-11.3.2.181-iimpi-2016.02-GCC-5.3.0-2.26.eb index d1edf0b015..9ec0acc472 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-11.3.2.181-iimpi-2016.02-GCC-5.3.0-2.26.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-11.3.2.181-iimpi-2016.02-GCC-5.3.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'imkl' version = '11.3.2.181' diff --git a/easybuild/easyconfigs/i/imkl/imkl-11.3.2.181-pompi-2016.03.eb b/easybuild/easyconfigs/i/imkl/imkl-11.3.2.181-pompi-2016.03.eb index ac3a95728c..f85a4efd37 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-11.3.2.181-pompi-2016.03.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-11.3.2.181-pompi-2016.03.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'imkl' version = '11.3.2.181' diff --git a/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016.03-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016.03-GCC-4.9.3-2.25.eb index 0a5bb0e3ee..710968ace7 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016.03-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016.03-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'imkl' version = '11.3.3.210' diff --git a/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016.03-GCC-5.3.0-2.26.eb b/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016.03-GCC-5.3.0-2.26.eb index 09806746b2..8418178c3b 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016.03-GCC-5.3.0-2.26.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016.03-GCC-5.3.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'imkl' version = '11.3.3.210' diff --git a/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016.03-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016.03-GCC-5.4.0-2.26.eb index 490c4fbf42..bf72302fc9 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016.03-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016.03-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'imkl' version = '11.3.3.210' diff --git a/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016b.eb b/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016b.eb index cce72ce10a..c3af772fef 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016b.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016b.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'imkl' version = '11.3.3.210' diff --git a/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpic-2016.10.eb b/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpic-2016.10.eb index 601460577a..d5a808222b 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpic-2016.10.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpic-2016.10.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'imkl' version = '11.3.3.210' diff --git a/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-pompi-2016.04.eb b/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-pompi-2016.04.eb index ab281bf6b1..a138ed11d0 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-pompi-2016.04.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-pompi-2016.04.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'imkl' version = '11.3.3.210' diff --git a/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-pompi-2016.09.eb b/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-pompi-2016.09.eb index ea94f4aa6a..5981bc06f0 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-pompi-2016.09.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-pompi-2016.09.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'imkl' version = '11.3.3.210' diff --git a/easybuild/easyconfigs/i/imkl/imkl-2017.0.098-iimpi-2017.00-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/imkl/imkl-2017.0.098-iimpi-2017.00-GCC-5.4.0-2.26.eb index 341dbab7ed..2ec64feae2 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-2017.0.098-iimpi-2017.00-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-2017.0.098-iimpi-2017.00-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'imkl' version = '2017.0.098' diff --git a/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iimpi-2017.01-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iimpi-2017.01-GCC-5.4.0-2.26.eb index be8b68226a..105db4b7f3 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iimpi-2017.01-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iimpi-2017.01-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'imkl' version = '2017.1.132' diff --git a/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iimpi-2017a.eb b/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iimpi-2017a.eb index e28e5314fa..bbf353b48c 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iimpi-2017a.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iimpi-2017a.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'imkl' version = '2017.1.132' diff --git a/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iompi-2017.01.eb b/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iompi-2017.01.eb index 1f68711972..dc78fc3b80 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iompi-2017.01.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iompi-2017.01.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'imkl' version = '2017.1.132' diff --git a/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iompi-2017a.eb b/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iompi-2017a.eb index 38909739c9..324695a571 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iompi-2017a.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iompi-2017a.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'imkl' version = '2017.1.132' diff --git a/easybuild/easyconfigs/i/imkl/imkl-2017.2.174-iimpi-2017.02-GCC-6.3.0-2.27.eb b/easybuild/easyconfigs/i/imkl/imkl-2017.2.174-iimpi-2017.02-GCC-6.3.0-2.27.eb index 62ed829038..5c4c02adc2 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-2017.2.174-iimpi-2017.02-GCC-6.3.0-2.27.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-2017.2.174-iimpi-2017.02-GCC-6.3.0-2.27.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'imkl' version = '2017.2.174' diff --git a/easybuild/easyconfigs/i/impi/impi-2017.0.098-iccifort-2017.0.098-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/impi/impi-2017.0.098-iccifort-2017.0.098-GCC-5.4.0-2.26.eb index 3457aacbc5..35a62bb371 100644 --- a/easybuild/easyconfigs/i/impi/impi-2017.0.098-iccifort-2017.0.098-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/impi/impi-2017.0.098-iccifort-2017.0.098-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'impi' version = '2017.0.098' diff --git a/easybuild/easyconfigs/i/impi/impi-2017.1.132-iccifort-2017.1.132-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/impi/impi-2017.1.132-iccifort-2017.1.132-GCC-5.4.0-2.26.eb index aa746359e2..7c55fcf3e3 100644 --- a/easybuild/easyconfigs/i/impi/impi-2017.1.132-iccifort-2017.1.132-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/impi/impi-2017.1.132-iccifort-2017.1.132-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'impi' version = '2017.1.132' diff --git a/easybuild/easyconfigs/i/impi/impi-2017.1.132-iccifort-2017.1.132-GCC-6.3.0-2.27.eb b/easybuild/easyconfigs/i/impi/impi-2017.1.132-iccifort-2017.1.132-GCC-6.3.0-2.27.eb index 48a890bbcf..4222d6a26a 100644 --- a/easybuild/easyconfigs/i/impi/impi-2017.1.132-iccifort-2017.1.132-GCC-6.3.0-2.27.eb +++ b/easybuild/easyconfigs/i/impi/impi-2017.1.132-iccifort-2017.1.132-GCC-6.3.0-2.27.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'impi' version = '2017.1.132' diff --git a/easybuild/easyconfigs/i/impi/impi-2017.2.174-iccifort-2017.2.174-GCC-6.3.0-2.27.eb b/easybuild/easyconfigs/i/impi/impi-2017.2.174-iccifort-2017.2.174-GCC-6.3.0-2.27.eb index 2d925e4ac1..fbace1b7ac 100644 --- a/easybuild/easyconfigs/i/impi/impi-2017.2.174-iccifort-2017.2.174-GCC-6.3.0-2.27.eb +++ b/easybuild/easyconfigs/i/impi/impi-2017.2.174-iccifort-2017.2.174-GCC-6.3.0-2.27.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'impi' version = '2017.2.174' diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.1.109-iccifort-2016.0.109-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/impi/impi-5.1.1.109-iccifort-2016.0.109-GCC-4.9.3-2.25.eb index 2a54c28eb8..72c0998995 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.1.109-iccifort-2016.0.109-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.1.109-iccifort-2016.0.109-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'impi' version = '5.1.1.109' diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.2.150-iccifort-2016.1.150-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/impi/impi-5.1.2.150-iccifort-2016.1.150-GCC-4.9.3-2.25.eb index 71b0e15d81..eddf864db7 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.2.150-iccifort-2016.1.150-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.2.150-iccifort-2016.1.150-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'impi' version = '5.1.2.150' diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-4.9.3-2.25.eb index 8f1eb713c5..b779e3185b 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'impi' version = '5.1.3.181' diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-5.3.0-2.26.eb b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-5.3.0-2.26.eb index 72d570c9ae..b05f10add0 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-5.3.0-2.26.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-5.3.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'impi' version = '5.1.3.181' diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-4.9.3-2.25.eb index 212b21a522..a8d2a5e21e 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'impi' version = '5.1.3.181' diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.3.0-2.26.eb b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.3.0-2.26.eb index 783cda572d..2886d91689 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.3.0-2.26.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.3.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'impi' version = '5.1.3.181' diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.4.0-2.26.eb index 420224789e..da9923db0a 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'impi' version = '5.1.3.181' diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifortcuda-2016.10.eb b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifortcuda-2016.10.eb index b61daed0c1..2da07ac2d4 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifortcuda-2016.10.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifortcuda-2016.10.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ name = 'impi' version = '5.1.3.181' diff --git a/easybuild/easyconfigs/i/intel/intel-2016.00.eb b/easybuild/easyconfigs/i/intel/intel-2016.00.eb index 2f03a7cc46..f4149f4027 100644 --- a/easybuild/easyconfigs/i/intel/intel-2016.00.eb +++ b/easybuild/easyconfigs/i/intel/intel-2016.00.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'intel' diff --git a/easybuild/easyconfigs/i/intel/intel-2016.01.eb b/easybuild/easyconfigs/i/intel/intel-2016.01.eb index 7c51ee2938..1f12eaea94 100644 --- a/easybuild/easyconfigs/i/intel/intel-2016.01.eb +++ b/easybuild/easyconfigs/i/intel/intel-2016.01.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'intel' diff --git a/easybuild/easyconfigs/i/iompi/iompi-2017.01.eb b/easybuild/easyconfigs/i/iompi/iompi-2017.01.eb index 9c2c6b52a5..b648d9709a 100644 --- a/easybuild/easyconfigs/i/iompi/iompi-2017.01.eb +++ b/easybuild/easyconfigs/i/iompi/iompi-2017.01.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iompi' diff --git a/easybuild/easyconfigs/i/iompi/iompi-2017a.eb b/easybuild/easyconfigs/i/iompi/iompi-2017a.eb index 571b319a14..c74e1212e9 100644 --- a/easybuild/easyconfigs/i/iompi/iompi-2017a.eb +++ b/easybuild/easyconfigs/i/iompi/iompi-2017a.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild +# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iompi' diff --git a/easybuild/easyconfigs/j/JAGS/JAGS-3.4.0-goolf-1.4.10.eb b/easybuild/easyconfigs/j/JAGS/JAGS-3.4.0-goolf-1.4.10.eb index d0c1108872..076891eb84 100644 --- a/easybuild/easyconfigs/j/JAGS/JAGS-3.4.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/j/JAGS/JAGS-3.4.0-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/j/JAGS/JAGS-3.4.0-ictce-6.2.5.eb b/easybuild/easyconfigs/j/JAGS/JAGS-3.4.0-ictce-6.2.5.eb index 9e1ed006d5..adaf15166d 100644 --- a/easybuild/easyconfigs/j/JAGS/JAGS-3.4.0-ictce-6.2.5.eb +++ b/easybuild/easyconfigs/j/JAGS/JAGS-3.4.0-ictce-6.2.5.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/j/JAGS/JAGS-3.4.0-intel-2014b.eb b/easybuild/easyconfigs/j/JAGS/JAGS-3.4.0-intel-2014b.eb index 76755f474c..38931e456f 100644 --- a/easybuild/easyconfigs/j/JAGS/JAGS-3.4.0-intel-2014b.eb +++ b/easybuild/easyconfigs/j/JAGS/JAGS-3.4.0-intel-2014b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/j/JAGS/JAGS-4.2.0-foss-2016a.eb b/easybuild/easyconfigs/j/JAGS/JAGS-4.2.0-foss-2016a.eb index b168dd347e..9d8a457376 100644 --- a/easybuild/easyconfigs/j/JAGS/JAGS-4.2.0-foss-2016a.eb +++ b/easybuild/easyconfigs/j/JAGS/JAGS-4.2.0-foss-2016a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/j/JAGS/JAGS-4.2.0-intel-2016a.eb b/easybuild/easyconfigs/j/JAGS/JAGS-4.2.0-intel-2016a.eb index 1474dde18b..ff82e5fae9 100644 --- a/easybuild/easyconfigs/j/JAGS/JAGS-4.2.0-intel-2016a.eb +++ b/easybuild/easyconfigs/j/JAGS/JAGS-4.2.0-intel-2016a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/j/Jellyfish/Jellyfish-1.1.11-foss-2016a.eb b/easybuild/easyconfigs/j/Jellyfish/Jellyfish-1.1.11-foss-2016a.eb index 8e2a518511..6ff63e83c0 100644 --- a/easybuild/easyconfigs/j/Jellyfish/Jellyfish-1.1.11-foss-2016a.eb +++ b/easybuild/easyconfigs/j/Jellyfish/Jellyfish-1.1.11-foss-2016a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/j/Jellyfish/Jellyfish-1.1.11-foss-2016b.eb b/easybuild/easyconfigs/j/Jellyfish/Jellyfish-1.1.11-foss-2016b.eb index 6acf8320e7..a27ec31e26 100644 --- a/easybuild/easyconfigs/j/Jellyfish/Jellyfish-1.1.11-foss-2016b.eb +++ b/easybuild/easyconfigs/j/Jellyfish/Jellyfish-1.1.11-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.1.3-foss-2014b.eb b/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.1.3-foss-2014b.eb index bd77b8e773..6db319bc18 100644 --- a/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.1.3-foss-2014b.eb +++ b/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.1.3-foss-2014b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.1.3-goolf-1.4.10.eb b/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.1.3-goolf-1.4.10.eb index e874c05030..948d483703 100644 --- a/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.1.3-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.1.3-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.2.3-intel-2015b.eb b/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.2.3-intel-2015b.eb index 5e170ee4c5..c33284a909 100644 --- a/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.2.3-intel-2015b.eb +++ b/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.2.3-intel-2015b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.2.4-foss-2015b.eb b/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.2.4-foss-2015b.eb index ff49f091da..9c8c977462 100644 --- a/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.2.4-foss-2015b.eb +++ b/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.2.4-foss-2015b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.2.4-intel-2015b.eb b/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.2.4-intel-2015b.eb index 01b9cb403d..d8949f35fa 100644 --- a/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.2.4-intel-2015b.eb +++ b/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.2.4-intel-2015b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.2.6-goolf-1.7.20.eb b/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.2.6-goolf-1.7.20.eb index 09aa380fc6..1696c554aa 100644 --- a/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.2.6-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.2.6-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/j/jModelTest/jModelTest-2.1.10r20160303-Java-1.8.0_92.eb b/easybuild/easyconfigs/j/jModelTest/jModelTest-2.1.10r20160303-Java-1.8.0_92.eb index 3c4304258a..e619e71cb4 100644 --- a/easybuild/easyconfigs/j/jModelTest/jModelTest-2.1.10r20160303-Java-1.8.0_92.eb +++ b/easybuild/easyconfigs/j/jModelTest/jModelTest-2.1.10r20160303-Java-1.8.0_92.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/j/jModelTest/jModelTest-2.1.9r20160115-goolf-1.4.10-Java-1.7.0_75.eb b/easybuild/easyconfigs/j/jModelTest/jModelTest-2.1.9r20160115-goolf-1.4.10-Java-1.7.0_75.eb index f01140a3e5..dafa45afa9 100644 --- a/easybuild/easyconfigs/j/jModelTest/jModelTest-2.1.9r20160115-goolf-1.4.10-Java-1.7.0_75.eb +++ b/easybuild/easyconfigs/j/jModelTest/jModelTest-2.1.9r20160115-goolf-1.4.10-Java-1.7.0_75.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/k/kallisto/kallisto-0.43.1-foss-2016b.eb b/easybuild/easyconfigs/k/kallisto/kallisto-0.43.1-foss-2016b.eb index 9d74f7a398..54e8f3a226 100644 --- a/easybuild/easyconfigs/k/kallisto/kallisto-0.43.1-foss-2016b.eb +++ b/easybuild/easyconfigs/k/kallisto/kallisto-0.43.1-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild easyblock = 'CMakeMake' diff --git a/easybuild/easyconfigs/k/khmer/khmer-1.1-goolf-1.4.10-Python-2.7.5.eb b/easybuild/easyconfigs/k/khmer/khmer-1.1-goolf-1.4.10-Python-2.7.5.eb index a821aa77f2..2d87b632b4 100644 --- a/easybuild/easyconfigs/k/khmer/khmer-1.1-goolf-1.4.10-Python-2.7.5.eb +++ b/easybuild/easyconfigs/k/khmer/khmer-1.1-goolf-1.4.10-Python-2.7.5.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/k/khmer/khmer-1.4.1-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/k/khmer/khmer-1.4.1-foss-2016b-Python-2.7.12.eb index 68addbe817..5e1eea59c2 100644 --- a/easybuild/easyconfigs/k/khmer/khmer-1.4.1-foss-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/k/khmer/khmer-1.4.1-foss-2016b-Python-2.7.12.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/l/LAME/LAME-3.99.5-foss-2015a.eb b/easybuild/easyconfigs/l/LAME/LAME-3.99.5-foss-2015a.eb index a1da0d2c90..d087299b3c 100644 --- a/easybuild/easyconfigs/l/LAME/LAME-3.99.5-foss-2015a.eb +++ b/easybuild/easyconfigs/l/LAME/LAME-3.99.5-foss-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Author: Stephane Thiell ### diff --git a/easybuild/easyconfigs/l/LAME/LAME-3.99.5-foss-2016b.eb b/easybuild/easyconfigs/l/LAME/LAME-3.99.5-foss-2016b.eb index 042510cf2a..f61518de91 100644 --- a/easybuild/easyconfigs/l/LAME/LAME-3.99.5-foss-2016b.eb +++ b/easybuild/easyconfigs/l/LAME/LAME-3.99.5-foss-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Author: Stephane Thiell ### diff --git a/easybuild/easyconfigs/l/LASTZ/LASTZ-1.02.00-goolf-1.7.20.eb b/easybuild/easyconfigs/l/LASTZ/LASTZ-1.02.00-goolf-1.7.20.eb index d7a88ce495..64d822c449 100644 --- a/easybuild/easyconfigs/l/LASTZ/LASTZ-1.02.00-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/l/LASTZ/LASTZ-1.02.00-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/l/LWM2/LWM2-1.1-ictce-5.3.0.eb b/easybuild/easyconfigs/l/LWM2/LWM2-1.1-ictce-5.3.0.eb index 18cafee304..fa8505d85c 100644 --- a/easybuild/easyconfigs/l/LWM2/LWM2-1.1-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/l/LWM2/LWM2-1.1-ictce-5.3.0.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/l/LZO/LZO-2.06-goolf-1.4.10.eb b/easybuild/easyconfigs/l/LZO/LZO-2.06-goolf-1.4.10.eb index 82b1a9bd7b..47a560f2cc 100644 --- a/easybuild/easyconfigs/l/LZO/LZO-2.06-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/l/LZO/LZO-2.06-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/l/LZO/LZO-2.06-ictce-5.3.0.eb b/easybuild/easyconfigs/l/LZO/LZO-2.06-ictce-5.3.0.eb index 5b7a6a1f5c..8aa4e392fe 100644 --- a/easybuild/easyconfigs/l/LZO/LZO-2.06-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/l/LZO/LZO-2.06-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/l/LZO/LZO-2.09-intel-2016b.eb b/easybuild/easyconfigs/l/LZO/LZO-2.09-intel-2016b.eb index 6e7ff8a596..9e716ad72c 100644 --- a/easybuild/easyconfigs/l/LZO/LZO-2.09-intel-2016b.eb +++ b/easybuild/easyconfigs/l/LZO/LZO-2.09-intel-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/l/LZO/LZO-2.10-intel-2017a.eb b/easybuild/easyconfigs/l/LZO/LZO-2.10-intel-2017a.eb index 801057a84f..161e209f29 100644 --- a/easybuild/easyconfigs/l/LZO/LZO-2.10-intel-2017a.eb +++ b/easybuild/easyconfigs/l/LZO/LZO-2.10-intel-2017a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/l/LeadIT/LeadIT-2.1.9.eb b/easybuild/easyconfigs/l/LeadIT/LeadIT-2.1.9.eb index 27a91f92c0..4232098544 100644 --- a/easybuild/easyconfigs/l/LeadIT/LeadIT-2.1.9.eb +++ b/easybuild/easyconfigs/l/LeadIT/LeadIT-2.1.9.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Ravi Tripathi # Email: ravi89@uab.edu diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-goolf-1.4.10.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-goolf-1.4.10.eb index b741841310..73513a342d 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-ictce-5.3.0.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-ictce-5.3.0.eb index 3b637dfd68..c9a462f4f4 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2014.06.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2014.06.eb index 2d0643c0a8..a27f793005 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2014.06.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2014.06.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2014b.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2014b.eb index 42a3e46a06..8db6c03653 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2014b.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2014b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2015a.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2015a.eb index a080abfe8e..c0287c6b3a 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2015a.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2015b.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2015b.eb index 769d5c3bf4..4efb1e7e06 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2015b.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.3-intel-2015b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4-foss-2015a.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4-foss-2015a.eb index 9fdf349e0c..c4f46971bf 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4-foss-2015a.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4-foss-2015a.eb @@ -1,6 +1,6 @@ # Built with EasyBuild version 2.2.0dev on 2015-06-16_10-51-42 ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4-intel-2015a.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4-intel-2015a.eb index caf97944ef..01eb7c0c93 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4-intel-2015a.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4-intel-2015a.eb @@ -1,6 +1,6 @@ # Built with EasyBuild version 2.2.0dev on 2015-06-16_10-51-42 ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4beta-foss-2015a.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4beta-foss-2015a.eb index a7ec21003e..4b2b2093c4 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4beta-foss-2015a.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4beta-foss-2015a.eb @@ -1,6 +1,6 @@ # Built with EasyBuild version 2.2.0dev on 2015-06-16_10-51-42 ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4beta-intel-2015a.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4beta-intel-2015a.eb index 2ebd87d4b6..3dc8674fdf 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4beta-intel-2015a.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.4beta-intel-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-foss-2015a.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-foss-2015a.eb index 259a9d8bc6..382c881a95 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-foss-2015a.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-foss-2015a.eb @@ -1,6 +1,6 @@ # Built with EasyBuild version 2.2.0dev on 2015-06-16_10-51-42 ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-foss-2016a.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-foss-2016a.eb index f513557a05..76688580b9 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-foss-2016a.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos , Alan O'Cais (JSC) diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-foss-2016b.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-foss-2016b.eb index a7365c221f..a98972105e 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-foss-2016b.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-foss-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos , Alan O'Cais (JSC) diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-intel-2016a.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-intel-2016a.eb index b666f47dc2..fda1e3ceb5 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-intel-2016a.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-intel-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos , Alan O'Cais (JSC) diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-intel-2016b.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-intel-2016b.eb index 9281e4ddc9..cb758aec72 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-intel-2016b.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.6-intel-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos , Alan O'Cais (JSC) diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.7-foss-2016b.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.7-foss-2016b.eb index e74567cf30..49f589e6d4 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.7-foss-2016b.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.7-foss-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos , Alan O'Cais (JSC) diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.7-intel-2017a.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.7-intel-2017a.eb index 073c1b3d60..bc88218600 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.7-intel-2017a.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.7-intel-2017a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos , Alan O'Cais (JSC) diff --git a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.8-intel-2017a.eb b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.8-intel-2017a.eb index 445e665d1d..c1c395504c 100644 --- a/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.8-intel-2017a.eb +++ b/easybuild/easyconfigs/l/LibTIFF/LibTIFF-4.0.8-intel-2017a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos , Alan O'Cais (JSC) diff --git a/easybuild/easyconfigs/l/LinBox/LinBox-1.4.0-foss-2016a.eb b/easybuild/easyconfigs/l/LinBox/LinBox-1.4.0-foss-2016a.eb index f0951b2b35..32aac5dd56 100644 --- a/easybuild/easyconfigs/l/LinBox/LinBox-1.4.0-foss-2016a.eb +++ b/easybuild/easyconfigs/l/LinBox/LinBox-1.4.0-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild recipe; see https://github.com/hpcugent/easybuild +# This file is an EasyBuild recipe; see https://github.com/easybuilders/easybuild # # Copyright:: Copyright (c) 2016 Riccardo Murri # Authors:: Riccardo Murri diff --git a/easybuild/easyconfigs/l/lbzip2/lbzip2-2.5-goolf-1.7.20.eb b/easybuild/easyconfigs/l/lbzip2/lbzip2-2.5-goolf-1.7.20.eb index 5abfa7b4da..cb155b9c9f 100644 --- a/easybuild/easyconfigs/l/lbzip2/lbzip2-2.5-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/l/lbzip2/lbzip2-2.5-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/l/less/less-458-GCC-4.8.2.eb b/easybuild/easyconfigs/l/less/less-458-GCC-4.8.2.eb index 3ee23b3ce7..3870f8d203 100644 --- a/easybuild/easyconfigs/l/less/less-458-GCC-4.8.2.eb +++ b/easybuild/easyconfigs/l/less/less-458-GCC-4.8.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # ## diff --git a/easybuild/easyconfigs/l/lftp/lftp-4.4.1-goolf-1.4.10.eb b/easybuild/easyconfigs/l/lftp/lftp-4.4.1-goolf-1.4.10.eb index d1eb5179b8..d656d8a7e2 100644 --- a/easybuild/easyconfigs/l/lftp/lftp-4.4.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/l/lftp/lftp-4.4.1-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/l/lftp/lftp-4.6.4-GNU-4.9.3-2.25.eb b/easybuild/easyconfigs/l/lftp/lftp-4.6.4-GNU-4.9.3-2.25.eb index f9975e31e2..0e5f0b7f04 100644 --- a/easybuild/easyconfigs/l/lftp/lftp-4.6.4-GNU-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/l/lftp/lftp-4.6.4-GNU-4.9.3-2.25.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/l/libgd/libgd-2.2.4-foss-2016b.eb b/easybuild/easyconfigs/l/libgd/libgd-2.2.4-foss-2016b.eb index 5856a57c8d..c1f0033e09 100644 --- a/easybuild/easyconfigs/l/libgd/libgd-2.2.4-foss-2016b.eb +++ b/easybuild/easyconfigs/l/libgd/libgd-2.2.4-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild easyblock = 'ConfigureMake' diff --git a/easybuild/easyconfigs/l/libgtextutils/libgtextutils-0.6.1-goolf-1.4.10.eb b/easybuild/easyconfigs/l/libgtextutils/libgtextutils-0.6.1-goolf-1.4.10.eb index 2f55afa678..9a49b39337 100644 --- a/easybuild/easyconfigs/l/libgtextutils/libgtextutils-0.6.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/l/libgtextutils/libgtextutils-0.6.1-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/l/libgtextutils/libgtextutils-0.6.1-goolf-1.7.20.eb b/easybuild/easyconfigs/l/libgtextutils/libgtextutils-0.6.1-goolf-1.7.20.eb index 1b5c00b84c..e53635c2b0 100644 --- a/easybuild/easyconfigs/l/libgtextutils/libgtextutils-0.6.1-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/l/libgtextutils/libgtextutils-0.6.1-goolf-1.7.20.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/l/libgtextutils/libgtextutils-0.6.1-ictce-5.3.0.eb b/easybuild/easyconfigs/l/libgtextutils/libgtextutils-0.6.1-ictce-5.3.0.eb index 7ff4a544d3..29770eb9ac 100644 --- a/easybuild/easyconfigs/l/libgtextutils/libgtextutils-0.6.1-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/l/libgtextutils/libgtextutils-0.6.1-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/l/libgtextutils/libgtextutils-0.6.1-intel-2015a.eb b/easybuild/easyconfigs/l/libgtextutils/libgtextutils-0.6.1-intel-2015a.eb index a911adbdf6..b6e7c90fb8 100644 --- a/easybuild/easyconfigs/l/libgtextutils/libgtextutils-0.6.1-intel-2015a.eb +++ b/easybuild/easyconfigs/l/libgtextutils/libgtextutils-0.6.1-intel-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/l/libgtextutils/libgtextutils-0.7-foss-2015b.eb b/easybuild/easyconfigs/l/libgtextutils/libgtextutils-0.7-foss-2015b.eb index 733d12d5e4..6f04e6d6a8 100644 --- a/easybuild/easyconfigs/l/libgtextutils/libgtextutils-0.7-foss-2015b.eb +++ b/easybuild/easyconfigs/l/libgtextutils/libgtextutils-0.7-foss-2015b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/l/libgtextutils/libgtextutils-0.7-foss-2016a.eb b/easybuild/easyconfigs/l/libgtextutils/libgtextutils-0.7-foss-2016a.eb index c1b5b27e46..21f520c0e6 100644 --- a/easybuild/easyconfigs/l/libgtextutils/libgtextutils-0.7-foss-2016a.eb +++ b/easybuild/easyconfigs/l/libgtextutils/libgtextutils-0.7-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/l/libgtextutils/libgtextutils-0.7-foss-2016b.eb b/easybuild/easyconfigs/l/libgtextutils/libgtextutils-0.7-foss-2016b.eb index 0c761422aa..416434ef6e 100644 --- a/easybuild/easyconfigs/l/libgtextutils/libgtextutils-0.7-foss-2016b.eb +++ b/easybuild/easyconfigs/l/libgtextutils/libgtextutils-0.7-foss-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/l/libharu/libharu-2.2.0-goolf-1.4.10.eb b/easybuild/easyconfigs/l/libharu/libharu-2.2.0-goolf-1.4.10.eb index ede4708977..34834f9883 100644 --- a/easybuild/easyconfigs/l/libharu/libharu-2.2.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/l/libharu/libharu-2.2.0-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA # Authors:: George Tsouloupas , Fotis Georgatos diff --git a/easybuild/easyconfigs/l/libharu/libharu-2.2.0-ictce-5.3.0.eb b/easybuild/easyconfigs/l/libharu/libharu-2.2.0-ictce-5.3.0.eb index 29d1902d63..c6e5039403 100644 --- a/easybuild/easyconfigs/l/libharu/libharu-2.2.0-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/l/libharu/libharu-2.2.0-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA # Authors:: George Tsouloupas , Fotis Georgatos diff --git a/easybuild/easyconfigs/l/libharu/libharu-2.3.0-foss-2016a.eb b/easybuild/easyconfigs/l/libharu/libharu-2.3.0-foss-2016a.eb index f150abd20c..6400af43d6 100644 --- a/easybuild/easyconfigs/l/libharu/libharu-2.3.0-foss-2016a.eb +++ b/easybuild/easyconfigs/l/libharu/libharu-2.3.0-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA # Authors:: George Tsouloupas , Fotis Georgatos diff --git a/easybuild/easyconfigs/l/libharu/libharu-2.3.0-foss-2016b.eb b/easybuild/easyconfigs/l/libharu/libharu-2.3.0-foss-2016b.eb index 2b4825fe33..041fd7f660 100644 --- a/easybuild/easyconfigs/l/libharu/libharu-2.3.0-foss-2016b.eb +++ b/easybuild/easyconfigs/l/libharu/libharu-2.3.0-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA # Authors:: George Tsouloupas , Fotis Georgatos diff --git a/easybuild/easyconfigs/l/libharu/libharu-2.3.0-intel-2017a.eb b/easybuild/easyconfigs/l/libharu/libharu-2.3.0-intel-2017a.eb index b87a22de76..144f1b9687 100644 --- a/easybuild/easyconfigs/l/libharu/libharu-2.3.0-intel-2017a.eb +++ b/easybuild/easyconfigs/l/libharu/libharu-2.3.0-intel-2017a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA # Authors:: George Tsouloupas , Fotis Georgatos diff --git a/easybuild/easyconfigs/l/libungif/libungif-4.1.4-goolf-1.4.10.eb b/easybuild/easyconfigs/l/libungif/libungif-4.1.4-goolf-1.4.10.eb index 4ae4db7879..b8af039cc7 100644 --- a/easybuild/easyconfigs/l/libungif/libungif-4.1.4-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/l/libungif/libungif-4.1.4-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/l/libungif/libungif-4.1.4-ictce-5.3.0.eb b/easybuild/easyconfigs/l/libungif/libungif-4.1.4-ictce-5.3.0.eb index 51b4352aa5..e851a2e134 100644 --- a/easybuild/easyconfigs/l/libungif/libungif-4.1.4-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/l/libungif/libungif-4.1.4-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/l/libyaml/libyaml-0.1.4-goolf-1.4.10.eb b/easybuild/easyconfigs/l/libyaml/libyaml-0.1.4-goolf-1.4.10.eb index 1383948289..b13bc6b78f 100644 --- a/easybuild/easyconfigs/l/libyaml/libyaml-0.1.4-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/l/libyaml/libyaml-0.1.4-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Nils Christian diff --git a/easybuild/easyconfigs/l/libyaml/libyaml-0.1.4-ictce-5.3.0.eb b/easybuild/easyconfigs/l/libyaml/libyaml-0.1.4-ictce-5.3.0.eb index ff0da7e033..f14a7e7513 100644 --- a/easybuild/easyconfigs/l/libyaml/libyaml-0.1.4-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/l/libyaml/libyaml-0.1.4-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Nils Christian diff --git a/easybuild/easyconfigs/l/libyaml/libyaml-0.1.6-intel-2015a.eb b/easybuild/easyconfigs/l/libyaml/libyaml-0.1.6-intel-2015a.eb index 2a9749a581..17d86127bf 100644 --- a/easybuild/easyconfigs/l/libyaml/libyaml-0.1.6-intel-2015a.eb +++ b/easybuild/easyconfigs/l/libyaml/libyaml-0.1.6-intel-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Nils Christian diff --git a/easybuild/easyconfigs/l/libyaml/libyaml-0.1.6-intel-2015b.eb b/easybuild/easyconfigs/l/libyaml/libyaml-0.1.6-intel-2015b.eb index cf285fb5ec..0af648ec22 100644 --- a/easybuild/easyconfigs/l/libyaml/libyaml-0.1.6-intel-2015b.eb +++ b/easybuild/easyconfigs/l/libyaml/libyaml-0.1.6-intel-2015b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Nils Christian diff --git a/easybuild/easyconfigs/l/libyaml/libyaml-0.1.6-intel-2016a.eb b/easybuild/easyconfigs/l/libyaml/libyaml-0.1.6-intel-2016a.eb index c715793903..bb08d2990a 100644 --- a/easybuild/easyconfigs/l/libyaml/libyaml-0.1.6-intel-2016a.eb +++ b/easybuild/easyconfigs/l/libyaml/libyaml-0.1.6-intel-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Nils Christian diff --git a/easybuild/easyconfigs/l/libyaml/libyaml-0.1.6-intel-2016b.eb b/easybuild/easyconfigs/l/libyaml/libyaml-0.1.6-intel-2016b.eb index e7ae73819e..83ca6c3ec6 100644 --- a/easybuild/easyconfigs/l/libyaml/libyaml-0.1.6-intel-2016b.eb +++ b/easybuild/easyconfigs/l/libyaml/libyaml-0.1.6-intel-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Nils Christian diff --git a/easybuild/easyconfigs/l/libyaml/libyaml-0.1.7.eb b/easybuild/easyconfigs/l/libyaml/libyaml-0.1.7.eb index 44f94ecc3d..c04077ae4e 100644 --- a/easybuild/easyconfigs/l/libyaml/libyaml-0.1.7.eb +++ b/easybuild/easyconfigs/l/libyaml/libyaml-0.1.7.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Nils Christian diff --git a/easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-2017a.eb b/easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-2017a.eb index ebb2f3de9b..1d91bac04d 100644 --- a/easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-2017a.eb +++ b/easybuild/easyconfigs/l/likwid/likwid-4.2.0-foss-2017a.eb @@ -1,7 +1,7 @@ ## # -*- mode: python; -*- # EasyBuild reciPY for LikWid -- see https://github.com/RRZE-HPC/likwid -# as per https://github.com/hpcugent/easybuild +# as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2017 UL HPC -- hpc.uni.lu # Authors:: UL HPC Team diff --git a/easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-2017a.eb b/easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-2017a.eb index b38fb421b8..5558b79e5f 100644 --- a/easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-2017a.eb +++ b/easybuild/easyconfigs/l/likwid/likwid-4.2.0-intel-2017a.eb @@ -1,7 +1,7 @@ ## # -*- mode: python; -*- # EasyBuild reciPY for LikWid -- see https://github.com/RRZE-HPC/likwid -# as per https://github.com/hpcugent/easybuild +# as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2017 UL HPC -- hpc.uni.lu # Authors:: UL HPC Team diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-CrayGNU-2015.06.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-CrayGNU-2015.06.eb index 54365e5c12..4811e3333a 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-CrayGNU-2015.06.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-CrayGNU-2015.06.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-CrayGNU-2015.11.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-CrayGNU-2015.11.eb index 41431f6ed6..08c0165d80 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-CrayGNU-2015.11.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-CrayGNU-2015.11.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.7.2.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.7.2.eb index 91d64e5bd3..dfbd2123ff 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.7.2.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.7.2.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.8.2.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.8.2.eb index cb0daa392f..0c6c8895af 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.8.2.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.8.2.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.8.4.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.8.4.eb index e59131c48f..4f5b6c32ba 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.8.4.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.8.4.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.9.2-binutils-2.25.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.9.2-binutils-2.25.eb index c9b8ae162c..09ed58a2b9 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.9.2-binutils-2.25.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.9.2-binutils-2.25.eb @@ -17,7 +17,7 @@ source_urls = [GNU_SOURCE] builddependencies = [('binutils', '2.25', '', True)] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.9.2.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.9.2.eb index d52dd469f6..91e9fc5026 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.9.2.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.9.2.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.9.3-2.25.eb index 5658dda837..18abbd3731 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.9.3-2.25.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.9.3-binutils-2.25.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.9.3-binutils-2.25.eb index 006446b9f0..675ca2e5f8 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.9.3-binutils-2.25.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.9.3-binutils-2.25.eb @@ -17,7 +17,7 @@ source_urls = [GNU_SOURCE] builddependencies = [('binutils', '2.25', '', True)] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.9.3.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.9.3.eb index e7a4d305fe..49ea4854d5 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.9.3.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-4.9.3.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-5.1.0-binutils-2.25.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-5.1.0-binutils-2.25.eb index 6e2de92ed5..b86be0771d 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-5.1.0-binutils-2.25.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-5.1.0-binutils-2.25.eb @@ -17,7 +17,7 @@ source_urls = [GNU_SOURCE] builddependencies = [('binutils', '2.25', '', True)] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-5.4.0-2.26.eb index ab63650383..cf9325ba99 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCC-5.4.0-2.26.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCCcore-4.9.2.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCCcore-4.9.2.eb index 4a7f47d9bc..7c607c059e 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCCcore-4.9.2.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCCcore-4.9.2.eb @@ -17,7 +17,7 @@ source_urls = [GNU_SOURCE] builddependencies = [('binutils', '2.25', '', True)] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS='-fgnu89-inline'" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCCcore-4.9.3.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCCcore-4.9.3.eb index 72fbf1541b..25039d6e39 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCCcore-4.9.3.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCCcore-4.9.3.eb @@ -17,7 +17,7 @@ source_urls = [GNU_SOURCE] builddependencies = [('binutils', '2.25', '', True)] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS='-fgnu89-inline'" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCCcore-4.9.4.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCCcore-4.9.4.eb index 83effb6682..697ed59231 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCCcore-4.9.4.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCCcore-4.9.4.eb @@ -17,7 +17,7 @@ source_urls = [GNU_SOURCE] builddependencies = [('binutils', '2.25', '', True)] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS='-fgnu89-inline'" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCCcore-5.3.0.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCCcore-5.3.0.eb index d508b59ac7..9fd2f629f9 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCCcore-5.3.0.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCCcore-5.3.0.eb @@ -17,7 +17,7 @@ source_urls = [GNU_SOURCE] builddependencies = [('binutils', '2.26', '', True)] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCCcore-5.4.0.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCCcore-5.4.0.eb index 702e859518..3ea2d5a8a5 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCCcore-5.4.0.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCCcore-5.4.0.eb @@ -17,7 +17,7 @@ source_urls = [GNU_SOURCE] builddependencies = [('binutils', '2.26', '', True)] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCCcore-6.1.0.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCCcore-6.1.0.eb index 87ca206fb4..dfbcc45466 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCCcore-6.1.0.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCCcore-6.1.0.eb @@ -17,7 +17,7 @@ source_urls = [GNU_SOURCE] builddependencies = [('binutils', '2.27', '', True)] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCCcore-6.2.0.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCCcore-6.2.0.eb index 9a89ad1fbd..a888ba53c1 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-GCCcore-6.2.0.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-GCCcore-6.2.0.eb @@ -17,7 +17,7 @@ source_urls = [GNU_SOURCE] builddependencies = [('binutils', '2.27', '', True)] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-GNU-4.9.2-2.25.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-GNU-4.9.2-2.25.eb index 9fd3840472..e74ca76bb2 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-GNU-4.9.2-2.25.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-GNU-4.9.2-2.25.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-GNU-4.9.3-2.25.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-GNU-4.9.3-2.25.eb index 222b4603e6..89d12d3ecc 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-GNU-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-GNU-4.9.3-2.25.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-GNU-5.1.0-2.25.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-GNU-5.1.0-2.25.eb index 8d48b94390..b8a22e8dd1 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-GNU-5.1.0-2.25.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-GNU-5.1.0-2.25.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-foss-2014b.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-foss-2014b.eb index 4190871d6e..9f81198d34 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-foss-2014b.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-foss-2014b.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-foss-2015.05.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-foss-2015.05.eb index a244ff7f0d..abf727c78d 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-foss-2015.05.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-foss-2015.05.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-foss-2015a.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-foss-2015a.eb index 6b8e25d1d4..8a2f6a69b7 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-foss-2015a.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-foss-2015a.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-foss-2015b.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-foss-2015b.eb index 414bbac849..c94c57b0c9 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-foss-2015b.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-foss-2015b.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-foss-2016.04.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-foss-2016.04.eb index e93393c961..ac1d3f2336 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-foss-2016.04.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-foss-2016.04.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-foss-2016a.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-foss-2016a.eb index 32fe2f7b78..d6580cb3e9 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-foss-2016a.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-foss-2016a.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS='-fgnu89-inline'" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-foss-2016b.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-foss-2016b.eb index 3d6737ba08..7121f7d172 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-foss-2016b.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-foss-2016b.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-gimkl-2.11.5.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-gimkl-2.11.5.eb index 04ba474daf..75de298f7a 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-gimkl-2.11.5.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-gimkl-2.11.5.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-ictce-5.4.0.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-ictce-5.4.0.eb index ca3c0c7b6c..0157f04741 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-ictce-5.4.0.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-ictce-5.4.0.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-ictce-5.5.0.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-ictce-5.5.0.eb index e8ed91309a..740881ec34 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-ictce-5.5.0.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-ictce-5.5.0.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-ictce-7.1.2.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-ictce-7.1.2.eb index a896f05992..e141025d05 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-ictce-7.1.2.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-ictce-7.1.2.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-intel-2014b.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-intel-2014b.eb index bd224278e8..39930debab 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-intel-2014b.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-intel-2014b.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-intel-2015a.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-intel-2015a.eb index 942e49510c..0f8a70041c 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-intel-2015a.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-intel-2015a.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-intel-2015b.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-intel-2015b.eb index dbdac66931..0f22f64f82 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-intel-2015b.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-intel-2015b.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-intel-2016.02-GCC-4.9.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-intel-2016.02-GCC-4.9.eb index 683e8274c8..aba40b2a53 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-intel-2016.02-GCC-4.9.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-intel-2016.02-GCC-4.9.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-intel-2016a.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-intel-2016a.eb index 2b9dd5a6b8..308aa5a579 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-intel-2016a.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-intel-2016a.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17-intel-2016b.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17-intel-2016b.eb index d339ed79b8..4da8a15bac 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17-intel-2016b.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17-intel-2016b.eb @@ -14,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17.eb index 159d8d0173..92afdc0086 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17.eb @@ -16,7 +16,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-5.4.0.eb b/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-5.4.0.eb index c1c1439bf3..34356fc1a7 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-5.4.0.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-5.4.0.eb @@ -17,7 +17,7 @@ source_urls = [GNU_SOURCE] builddependencies = [('binutils', '2.26', '', True)] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-6.3.0.eb b/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-6.3.0.eb index ffbaa7a77a..ae199e4d28 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-6.3.0.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-6.3.0.eb @@ -17,7 +17,7 @@ source_urls = [GNU_SOURCE] builddependencies = [('binutils', '2.27', '', True)] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-7.1.0.eb b/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-7.1.0.eb index 18394615f9..0c20559e8b 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-7.1.0.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-7.1.0.eb @@ -17,7 +17,7 @@ source_urls = [GNU_SOURCE] builddependencies = [('binutils', '2.28', '', True)] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.18.eb b/easybuild/easyconfigs/m/M4/M4-1.4.18.eb index f186b0ad85..bce719edb0 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.18.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.18.eb @@ -16,7 +16,7 @@ sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { diff --git a/easybuild/easyconfigs/m/MACH/MACH-1.0.18.eb b/easybuild/easyconfigs/m/MACH/MACH-1.0.18.eb index b2fe855c56..708d54f146 100644 --- a/easybuild/easyconfigs/m/MACH/MACH-1.0.18.eb +++ b/easybuild/easyconfigs/m/MACH/MACH-1.0.18.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Ravi Tripathi # Email: ravi89@uab.edu diff --git a/easybuild/easyconfigs/m/MACS/MACS-1.4.2-1-goolf-1.4.10-Python-2.7.5.eb b/easybuild/easyconfigs/m/MACS/MACS-1.4.2-1-goolf-1.4.10-Python-2.7.5.eb index fe54887474..a1e0594673 100644 --- a/easybuild/easyconfigs/m/MACS/MACS-1.4.2-1-goolf-1.4.10-Python-2.7.5.eb +++ b/easybuild/easyconfigs/m/MACS/MACS-1.4.2-1-goolf-1.4.10-Python-2.7.5.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics (SIB) # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/m/MACS2/MACS2-2.1.0.20150731-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/m/MACS2/MACS2-2.1.0.20150731-goolf-1.4.10-Python-2.7.3.eb index 74d5a36f68..d1dc14f1ec 100644 --- a/easybuild/easyconfigs/m/MACS2/MACS2-2.1.0.20150731-goolf-1.4.10-Python-2.7.3.eb +++ b/easybuild/easyconfigs/m/MACS2/MACS2-2.1.0.20150731-goolf-1.4.10-Python-2.7.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright (c) 2015 Virginia Bioinformatics Institute at Virginia Tech # Authors:: Dominik L. Borkowski diff --git a/easybuild/easyconfigs/m/MAFFT/MAFFT-7.130-goolf-1.4.10-with-extensions.eb b/easybuild/easyconfigs/m/MAFFT/MAFFT-7.130-goolf-1.4.10-with-extensions.eb index 66ff95669d..301e024b2e 100644 --- a/easybuild/easyconfigs/m/MAFFT/MAFFT-7.130-goolf-1.4.10-with-extensions.eb +++ b/easybuild/easyconfigs/m/MAFFT/MAFFT-7.130-goolf-1.4.10-with-extensions.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/m/MAFFT/MAFFT-7.130-ictce-5.3.0-with-extensions.eb b/easybuild/easyconfigs/m/MAFFT/MAFFT-7.130-ictce-5.3.0-with-extensions.eb index 6bf747d607..de247f7e05 100644 --- a/easybuild/easyconfigs/m/MAFFT/MAFFT-7.130-ictce-5.3.0-with-extensions.eb +++ b/easybuild/easyconfigs/m/MAFFT/MAFFT-7.130-ictce-5.3.0-with-extensions.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/m/MAFFT/MAFFT-7.305-foss-2016b-with-extensions.eb b/easybuild/easyconfigs/m/MAFFT/MAFFT-7.305-foss-2016b-with-extensions.eb index 725469edc9..420ca72862 100644 --- a/easybuild/easyconfigs/m/MAFFT/MAFFT-7.305-foss-2016b-with-extensions.eb +++ b/easybuild/easyconfigs/m/MAFFT/MAFFT-7.305-foss-2016b-with-extensions.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/m/MATIO/MATIO-1.5.2-goolf-1.4.10.eb b/easybuild/easyconfigs/m/MATIO/MATIO-1.5.2-goolf-1.4.10.eb index 013f802b61..fb42e73bb6 100644 --- a/easybuild/easyconfigs/m/MATIO/MATIO-1.5.2-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/m/MATIO/MATIO-1.5.2-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2014-2015 The Cyprus Institute # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/m/MATIO/MATIO-1.5.2-intel-2015b.eb b/easybuild/easyconfigs/m/MATIO/MATIO-1.5.2-intel-2015b.eb index 05e18b2e8b..92679ceb39 100644 --- a/easybuild/easyconfigs/m/MATIO/MATIO-1.5.2-intel-2015b.eb +++ b/easybuild/easyconfigs/m/MATIO/MATIO-1.5.2-intel-2015b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2014-2015 The Cyprus Institute # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/m/MCL/MCL-12.135-goolf-1.4.10.eb b/easybuild/easyconfigs/m/MCL/MCL-12.135-goolf-1.4.10.eb index b1a95f4031..79f149914d 100644 --- a/easybuild/easyconfigs/m/MCL/MCL-12.135-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/m/MCL/MCL-12.135-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/m/MCL/MCL-12.135-ictce-5.3.0.eb b/easybuild/easyconfigs/m/MCL/MCL-12.135-ictce-5.3.0.eb index 0619f29465..8922cbe4f1 100644 --- a/easybuild/easyconfigs/m/MCL/MCL-12.135-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/m/MCL/MCL-12.135-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/m/MEGACC/MEGACC-7.0.18-1.eb b/easybuild/easyconfigs/m/MEGACC/MEGACC-7.0.18-1.eb index a3ab3c4257..82d928f902 100644 --- a/easybuild/easyconfigs/m/MEGACC/MEGACC-7.0.18-1.eb +++ b/easybuild/easyconfigs/m/MEGACC/MEGACC-7.0.18-1.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2016, UNIGE # Authors:: Yann Sagon diff --git a/easybuild/easyconfigs/m/MEME/MEME-4.8.0-goolf-1.4.10.eb b/easybuild/easyconfigs/m/MEME/MEME-4.8.0-goolf-1.4.10.eb index 2b1ca4f4f3..a51d0ef450 100644 --- a/easybuild/easyconfigs/m/MEME/MEME-4.8.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/m/MEME/MEME-4.8.0-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/m/MEME/MEME-4.8.0-ictce-5.3.0.eb b/easybuild/easyconfigs/m/MEME/MEME-4.8.0-ictce-5.3.0.eb index 8c5d271d61..71e10b9d12 100644 --- a/easybuild/easyconfigs/m/MEME/MEME-4.8.0-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/m/MEME/MEME-4.8.0-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/m/MM-align/MM-align-20130815-goolf-1.4.10.eb b/easybuild/easyconfigs/m/MM-align/MM-align-20130815-goolf-1.4.10.eb index 6c78bbddaf..11cadedbcf 100644 --- a/easybuild/easyconfigs/m/MM-align/MM-align-20130815-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/m/MM-align/MM-align-20130815-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/m/MMSEQ/MMSEQ-1.0.8-linux64-static.eb b/easybuild/easyconfigs/m/MMSEQ/MMSEQ-1.0.8-linux64-static.eb index 9077537b1d..c3c02301be 100644 --- a/easybuild/easyconfigs/m/MMSEQ/MMSEQ-1.0.8-linux64-static.eb +++ b/easybuild/easyconfigs/m/MMSEQ/MMSEQ-1.0.8-linux64-static.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/m/MOSAIK/MOSAIK-2.2.28-goolf-1.4.10-20140425-24cf06.eb b/easybuild/easyconfigs/m/MOSAIK/MOSAIK-2.2.28-goolf-1.4.10-20140425-24cf06.eb index a98288f900..8006954711 100644 --- a/easybuild/easyconfigs/m/MOSAIK/MOSAIK-2.2.28-goolf-1.4.10-20140425-24cf06.eb +++ b/easybuild/easyconfigs/m/MOSAIK/MOSAIK-2.2.28-goolf-1.4.10-20140425-24cf06.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/m/MOSAIK/MOSAIK-2.2.28-ictce-6.2.5-20140425-24cf06.eb b/easybuild/easyconfigs/m/MOSAIK/MOSAIK-2.2.28-ictce-6.2.5-20140425-24cf06.eb index 3ce4130b75..054ec92efa 100644 --- a/easybuild/easyconfigs/m/MOSAIK/MOSAIK-2.2.28-ictce-6.2.5-20140425-24cf06.eb +++ b/easybuild/easyconfigs/m/MOSAIK/MOSAIK-2.2.28-ictce-6.2.5-20140425-24cf06.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/m/MPJ-Express/MPJ-Express-0.44-foss-2016a-Java-1.8.0_92.eb b/easybuild/easyconfigs/m/MPJ-Express/MPJ-Express-0.44-foss-2016a-Java-1.8.0_92.eb index 6e3b23ba3c..d8d121944a 100644 --- a/easybuild/easyconfigs/m/MPJ-Express/MPJ-Express-0.44-foss-2016a-Java-1.8.0_92.eb +++ b/easybuild/easyconfigs/m/MPJ-Express/MPJ-Express-0.44-foss-2016a-Java-1.8.0_92.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/m/MPJ-Express/MPJ-Express-0.44-goolf-1.4.10-Java-1.7.0_75.eb b/easybuild/easyconfigs/m/MPJ-Express/MPJ-Express-0.44-goolf-1.4.10-Java-1.7.0_75.eb index 8577e3deb4..e553dd3905 100644 --- a/easybuild/easyconfigs/m/MPJ-Express/MPJ-Express-0.44-goolf-1.4.10-Java-1.7.0_75.eb +++ b/easybuild/easyconfigs/m/MPJ-Express/MPJ-Express-0.44-goolf-1.4.10-Java-1.7.0_75.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/m/MRIcron/MRIcron-20150601.eb b/easybuild/easyconfigs/m/MRIcron/MRIcron-20150601.eb index 9830a06815..733f6228b4 100644 --- a/easybuild/easyconfigs/m/MRIcron/MRIcron-20150601.eb +++ b/easybuild/easyconfigs/m/MRIcron/MRIcron-20150601.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Ravi Tripathi # Email: ravi89@uab.edu diff --git a/easybuild/easyconfigs/m/MUMmer/MUMmer-3.23-foss-2016b.eb b/easybuild/easyconfigs/m/MUMmer/MUMmer-3.23-foss-2016b.eb index 279406579d..d8f8b6c576 100644 --- a/easybuild/easyconfigs/m/MUMmer/MUMmer-3.23-foss-2016b.eb +++ b/easybuild/easyconfigs/m/MUMmer/MUMmer-3.23-foss-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/m/MUMmer/MUMmer-3.23-goolf-1.4.10-Perl-5.16.3.eb b/easybuild/easyconfigs/m/MUMmer/MUMmer-3.23-goolf-1.4.10-Perl-5.16.3.eb index c1b84b6840..1c9331d3a6 100644 --- a/easybuild/easyconfigs/m/MUMmer/MUMmer-3.23-goolf-1.4.10-Perl-5.16.3.eb +++ b/easybuild/easyconfigs/m/MUMmer/MUMmer-3.23-goolf-1.4.10-Perl-5.16.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos , Kenneth Hoste diff --git a/easybuild/easyconfigs/m/MUMmer/MUMmer-3.23-goolf-1.4.10.eb b/easybuild/easyconfigs/m/MUMmer/MUMmer-3.23-goolf-1.4.10.eb index 7f6b9e72b5..c14d1b405f 100644 --- a/easybuild/easyconfigs/m/MUMmer/MUMmer-3.23-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/m/MUMmer/MUMmer-3.23-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/m/MUMmer/MUMmer-3.23-ictce-5.3.0-Perl-5.16.3.eb b/easybuild/easyconfigs/m/MUMmer/MUMmer-3.23-ictce-5.3.0-Perl-5.16.3.eb index 89fe1f89da..5f3eab90e4 100644 --- a/easybuild/easyconfigs/m/MUMmer/MUMmer-3.23-ictce-5.3.0-Perl-5.16.3.eb +++ b/easybuild/easyconfigs/m/MUMmer/MUMmer-3.23-ictce-5.3.0-Perl-5.16.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos , Kenneth Hoste diff --git a/easybuild/easyconfigs/m/MUMmer/MUMmer-3.23-ictce-5.3.0.eb b/easybuild/easyconfigs/m/MUMmer/MUMmer-3.23-ictce-5.3.0.eb index 2a22c67912..e8c2cf7793 100644 --- a/easybuild/easyconfigs/m/MUMmer/MUMmer-3.23-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/m/MUMmer/MUMmer-3.23-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/m/MUMmer/MUMmer-4.0.0beta-goolf-1.7.20.eb b/easybuild/easyconfigs/m/MUMmer/MUMmer-4.0.0beta-goolf-1.7.20.eb index 8471838376..df73ec7490 100644 --- a/easybuild/easyconfigs/m/MUMmer/MUMmer-4.0.0beta-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/m/MUMmer/MUMmer-4.0.0beta-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/m/MUSCLE/MUSCLE-3.8.31-foss-2016a.eb b/easybuild/easyconfigs/m/MUSCLE/MUSCLE-3.8.31-foss-2016a.eb index 026425a12b..0107cb4698 100644 --- a/easybuild/easyconfigs/m/MUSCLE/MUSCLE-3.8.31-foss-2016a.eb +++ b/easybuild/easyconfigs/m/MUSCLE/MUSCLE-3.8.31-foss-2016a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/m/MUSCLE/MUSCLE-3.8.31-goolf-1.4.10.eb b/easybuild/easyconfigs/m/MUSCLE/MUSCLE-3.8.31-goolf-1.4.10.eb index f41c1f7758..57e72b59d6 100644 --- a/easybuild/easyconfigs/m/MUSCLE/MUSCLE-3.8.31-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/m/MUSCLE/MUSCLE-3.8.31-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/m/MUSCLE/MUSCLE-3.8.31-i86linux64.eb b/easybuild/easyconfigs/m/MUSCLE/MUSCLE-3.8.31-i86linux64.eb index eb4529c9fa..839544e3dd 100644 --- a/easybuild/easyconfigs/m/MUSCLE/MUSCLE-3.8.31-i86linux64.eb +++ b/easybuild/easyconfigs/m/MUSCLE/MUSCLE-3.8.31-i86linux64.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos , Andreas Panteli , diff --git a/easybuild/easyconfigs/m/MUSCLE/MUSCLE-3.8.31-ictce-5.5.0.eb b/easybuild/easyconfigs/m/MUSCLE/MUSCLE-3.8.31-ictce-5.5.0.eb index 2998cc688a..6ff84960dd 100644 --- a/easybuild/easyconfigs/m/MUSCLE/MUSCLE-3.8.31-ictce-5.5.0.eb +++ b/easybuild/easyconfigs/m/MUSCLE/MUSCLE-3.8.31-ictce-5.5.0.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/m/MUSCLE/MUSCLE-3.8.31-intel-2016a.eb b/easybuild/easyconfigs/m/MUSCLE/MUSCLE-3.8.31-intel-2016a.eb index 467b83b6ce..03afecade9 100644 --- a/easybuild/easyconfigs/m/MUSCLE/MUSCLE-3.8.31-intel-2016a.eb +++ b/easybuild/easyconfigs/m/MUSCLE/MUSCLE-3.8.31-intel-2016a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/m/MUST/MUST-1.2.0-goolf-1.5.14.eb b/easybuild/easyconfigs/m/MUST/MUST-1.2.0-goolf-1.5.14.eb index a3e8ea9b64..d1011fd9c1 100644 --- a/easybuild/easyconfigs/m/MUST/MUST-1.2.0-goolf-1.5.14.eb +++ b/easybuild/easyconfigs/m/MUST/MUST-1.2.0-goolf-1.5.14.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/m/MUSTANG/MUSTANG-3.2.1-goolf-1.4.10.eb b/easybuild/easyconfigs/m/MUSTANG/MUSTANG-3.2.1-goolf-1.4.10.eb index 9ce401d07a..39ec3bd32a 100644 --- a/easybuild/easyconfigs/m/MUSTANG/MUSTANG-3.2.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/m/MUSTANG/MUSTANG-3.2.1-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/m/MView/MView-1.57-goolf-1.4.10-Perl-5.16.3.eb b/easybuild/easyconfigs/m/MView/MView-1.57-goolf-1.4.10-Perl-5.16.3.eb index 973e13d894..086df1b66a 100644 --- a/easybuild/easyconfigs/m/MView/MView-1.57-goolf-1.4.10-Perl-5.16.3.eb +++ b/easybuild/easyconfigs/m/MView/MView-1.57-goolf-1.4.10-Perl-5.16.3.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/m/MaCH/MaCH-1.0.18.c-goolf-1.4.10.eb b/easybuild/easyconfigs/m/MaCH/MaCH-1.0.18.c-goolf-1.4.10.eb index b454981b04..9a34deab14 100644 --- a/easybuild/easyconfigs/m/MaCH/MaCH-1.0.18.c-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/m/MaCH/MaCH-1.0.18.c-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/m/MaCH/MaCH-1.0.18.c-ictce-6.2.5.eb b/easybuild/easyconfigs/m/MaCH/MaCH-1.0.18.c-ictce-6.2.5.eb index e008b133f5..6c4e322386 100644 --- a/easybuild/easyconfigs/m/MaCH/MaCH-1.0.18.c-ictce-6.2.5.eb +++ b/easybuild/easyconfigs/m/MaCH/MaCH-1.0.18.c-ictce-6.2.5.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-2016a.eb b/easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-2016a.eb index 75f0da13ce..08c7be2718 100644 --- a/easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-2016a.eb +++ b/easybuild/easyconfigs/m/MaSuRCA/MaSuRCA-3.2.2-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2017 University of Geneva # Authors:: Yann Sagon diff --git a/easybuild/easyconfigs/m/Maq/Maq-0.7.0.eb b/easybuild/easyconfigs/m/Maq/Maq-0.7.0.eb index 8357cd6199..b268eeb163 100644 --- a/easybuild/easyconfigs/m/Maq/Maq-0.7.0.eb +++ b/easybuild/easyconfigs/m/Maq/Maq-0.7.0.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Ravi Tripathi # Email: ravi89@uab.edu diff --git a/easybuild/easyconfigs/m/Mawk/Mawk-1.3.4-goolf-1.4.10-20150503.eb b/easybuild/easyconfigs/m/Mawk/Mawk-1.3.4-goolf-1.4.10-20150503.eb index 5b5a91c678..752b5a4a61 100644 --- a/easybuild/easyconfigs/m/Mawk/Mawk-1.3.4-goolf-1.4.10-20150503.eb +++ b/easybuild/easyconfigs/m/Mawk/Mawk-1.3.4-goolf-1.4.10-20150503.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/m/MetaVelvet/MetaVelvet-1.2.01-goolf-1.4.10.eb b/easybuild/easyconfigs/m/MetaVelvet/MetaVelvet-1.2.01-goolf-1.4.10.eb index 3887c3f2e8..2fa6bdbab4 100644 --- a/easybuild/easyconfigs/m/MetaVelvet/MetaVelvet-1.2.01-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/m/MetaVelvet/MetaVelvet-1.2.01-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/m/MetaVelvet/MetaVelvet-1.2.01-ictce-5.3.0.eb b/easybuild/easyconfigs/m/MetaVelvet/MetaVelvet-1.2.01-ictce-5.3.0.eb index 98f80aa50e..ec9153655e 100644 --- a/easybuild/easyconfigs/m/MetaVelvet/MetaVelvet-1.2.01-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/m/MetaVelvet/MetaVelvet-1.2.01-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/m/MethPipe/MethPipe-3.0.1-goolf-1.4.10.eb b/easybuild/easyconfigs/m/MethPipe/MethPipe-3.0.1-goolf-1.4.10.eb index 3af2bae350..db06302aba 100644 --- a/easybuild/easyconfigs/m/MethPipe/MethPipe-3.0.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/m/MethPipe/MethPipe-3.0.1-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2014 The Cyprus Institute # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/m/MethPipe/MethPipe-3.0.1-intel-2014b.eb b/easybuild/easyconfigs/m/MethPipe/MethPipe-3.0.1-intel-2014b.eb index 3f4fca5919..644456e884 100644 --- a/easybuild/easyconfigs/m/MethPipe/MethPipe-3.0.1-intel-2014b.eb +++ b/easybuild/easyconfigs/m/MethPipe/MethPipe-3.0.1-intel-2014b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2014 The Cyprus Institute # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/m/Minia/Minia-2.0.7-goolf-1.7.20.eb b/easybuild/easyconfigs/m/Minia/Minia-2.0.7-goolf-1.7.20.eb index 947de950b4..8577f2b939 100644 --- a/easybuild/easyconfigs/m/Minia/Minia-2.0.7-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/m/Minia/Minia-2.0.7-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/m/Minimac/Minimac-20140110-goolf-1.4.10.eb b/easybuild/easyconfigs/m/Minimac/Minimac-20140110-goolf-1.4.10.eb index c110a85228..653db9e11e 100644 --- a/easybuild/easyconfigs/m/Minimac/Minimac-20140110-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/m/Minimac/Minimac-20140110-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/m/Minimac2/Minimac2-2014.9.15-goolf-1.7.20.eb b/easybuild/easyconfigs/m/Minimac2/Minimac2-2014.9.15-goolf-1.7.20.eb index c6a015a815..262f951ba0 100644 --- a/easybuild/easyconfigs/m/Minimac2/Minimac2-2014.9.15-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/m/Minimac2/Minimac2-2014.9.15-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/m/Modeller/Modeller-9.13-goolf-1.4.10-Python-2.7.5.eb b/easybuild/easyconfigs/m/Modeller/Modeller-9.13-goolf-1.4.10-Python-2.7.5.eb index 4beaf4d721..f59e41f393 100644 --- a/easybuild/easyconfigs/m/Modeller/Modeller-9.13-goolf-1.4.10-Python-2.7.5.eb +++ b/easybuild/easyconfigs/m/Modeller/Modeller-9.13-goolf-1.4.10-Python-2.7.5.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/m/MotEvo/MotEvo-1.02-goolf-1.4.10.eb b/easybuild/easyconfigs/m/MotEvo/MotEvo-1.02-goolf-1.4.10.eb index 5da93a4bfe..f84995643d 100644 --- a/easybuild/easyconfigs/m/MotEvo/MotEvo-1.02-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/m/MotEvo/MotEvo-1.02-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/m/MuTect/MuTect-1.1.4-Java-1.7.0_76.eb b/easybuild/easyconfigs/m/MuTect/MuTect-1.1.4-Java-1.7.0_76.eb index aa90066de8..025271c90b 100644 --- a/easybuild/easyconfigs/m/MuTect/MuTect-1.1.4-Java-1.7.0_76.eb +++ b/easybuild/easyconfigs/m/MuTect/MuTect-1.1.4-Java-1.7.0_76.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/m/MuTect/MuTect-1.1.4-Java-1.7.0_80.eb b/easybuild/easyconfigs/m/MuTect/MuTect-1.1.4-Java-1.7.0_80.eb index 4774c63625..46a5db5d00 100644 --- a/easybuild/easyconfigs/m/MuTect/MuTect-1.1.4-Java-1.7.0_80.eb +++ b/easybuild/easyconfigs/m/MuTect/MuTect-1.1.4-Java-1.7.0_80.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/m/MuTect/MuTect-1.1.7-Java-1.7.0_80.eb b/easybuild/easyconfigs/m/MuTect/MuTect-1.1.7-Java-1.7.0_80.eb index c8d608145e..e09b7d7128 100644 --- a/easybuild/easyconfigs/m/MuTect/MuTect-1.1.7-Java-1.7.0_80.eb +++ b/easybuild/easyconfigs/m/MuTect/MuTect-1.1.7-Java-1.7.0_80.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/m/MultiQC/MultiQC-0.7-goolf-1.7.20-Python-2.7.11.eb b/easybuild/easyconfigs/m/MultiQC/MultiQC-0.7-goolf-1.7.20-Python-2.7.11.eb index e9c753506d..433ec7e3b7 100644 --- a/easybuild/easyconfigs/m/MultiQC/MultiQC-0.7-goolf-1.7.20-Python-2.7.11.eb +++ b/easybuild/easyconfigs/m/MultiQC/MultiQC-0.7-goolf-1.7.20-Python-2.7.11.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/m/MultiQC/MultiQC-0.9-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/m/MultiQC/MultiQC-0.9-foss-2016b-Python-2.7.12.eb index cb0f244915..0be8df4a6a 100644 --- a/easybuild/easyconfigs/m/MultiQC/MultiQC-0.9-foss-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/m/MultiQC/MultiQC-0.9-foss-2016b-Python-2.7.12.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Adam Huffman # The Francis Crick Institute # Elements derived from work by Pablo Escobar diff --git a/easybuild/easyconfigs/m/make/make-3.82-GCC-4.8.2.eb b/easybuild/easyconfigs/m/make/make-3.82-GCC-4.8.2.eb index ef981bb4df..fccc02c38a 100644 --- a/easybuild/easyconfigs/m/make/make-3.82-GCC-4.8.2.eb +++ b/easybuild/easyconfigs/m/make/make-3.82-GCC-4.8.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild recipy as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild recipy as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/m/make/make-3.82-goolf-1.4.10.eb b/easybuild/easyconfigs/m/make/make-3.82-goolf-1.4.10.eb index e13659096e..e6d5d57368 100644 --- a/easybuild/easyconfigs/m/make/make-3.82-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/m/make/make-3.82-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild recipy as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild recipy as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/m/make/make-3.82-ictce-5.3.0.eb b/easybuild/easyconfigs/m/make/make-3.82-ictce-5.3.0.eb index 7ab215e130..9b88858f90 100644 --- a/easybuild/easyconfigs/m/make/make-3.82-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/m/make/make-3.82-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild recipy as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild recipy as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/m/make/make-3.82-ictce-5.5.0.eb b/easybuild/easyconfigs/m/make/make-3.82-ictce-5.5.0.eb index 256925f8ab..649ae523d5 100644 --- a/easybuild/easyconfigs/m/make/make-3.82-ictce-5.5.0.eb +++ b/easybuild/easyconfigs/m/make/make-3.82-ictce-5.5.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild recipy as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild recipy as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/m/make/make-4.1-GCC-4.9.2.eb b/easybuild/easyconfigs/m/make/make-4.1-GCC-4.9.2.eb index bff321b4b2..7ca6f969a4 100644 --- a/easybuild/easyconfigs/m/make/make-4.1-GCC-4.9.2.eb +++ b/easybuild/easyconfigs/m/make/make-4.1-GCC-4.9.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild recipy as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild recipy as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/m/mc/mc-4.6.1-goolf-1.4.10.eb b/easybuild/easyconfigs/m/mc/mc-4.6.1-goolf-1.4.10.eb index 87c8b17b1f..a27e4ffe9f 100644 --- a/easybuild/easyconfigs/m/mc/mc-4.6.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/m/mc/mc-4.6.1-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/m/mc/mc-4.6.1-ictce-5.3.0.eb b/easybuild/easyconfigs/m/mc/mc-4.6.1-ictce-5.3.0.eb index 7047839f2d..fcd0c73edf 100644 --- a/easybuild/easyconfigs/m/mc/mc-4.6.1-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/m/mc/mc-4.6.1-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/m/mc/mc-4.8.13-GCC-4.9.2.eb b/easybuild/easyconfigs/m/mc/mc-4.8.13-GCC-4.9.2.eb index 96e39f3ada..a78726d466 100644 --- a/easybuild/easyconfigs/m/mc/mc-4.8.13-GCC-4.9.2.eb +++ b/easybuild/easyconfigs/m/mc/mc-4.8.13-GCC-4.9.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/m/mdtest/mdtest-1.7.1-goolf-1.4.10.eb b/easybuild/easyconfigs/m/mdtest/mdtest-1.7.1-goolf-1.4.10.eb index 13a13c28d8..6682ecef20 100644 --- a/easybuild/easyconfigs/m/mdtest/mdtest-1.7.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/m/mdtest/mdtest-1.7.1-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/m/mdtest/mdtest-1.7.1-ictce-6.2.5.eb b/easybuild/easyconfigs/m/mdtest/mdtest-1.7.1-ictce-6.2.5.eb index fdcf4609af..4002011eea 100644 --- a/easybuild/easyconfigs/m/mdtest/mdtest-1.7.1-ictce-6.2.5.eb +++ b/easybuild/easyconfigs/m/mdtest/mdtest-1.7.1-ictce-6.2.5.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/m/mdtest/mdtest-1.9.3-goolf-1.4.10.eb b/easybuild/easyconfigs/m/mdtest/mdtest-1.9.3-goolf-1.4.10.eb index 6a4c7c8893..59b48a2d38 100644 --- a/easybuild/easyconfigs/m/mdtest/mdtest-1.9.3-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/m/mdtest/mdtest-1.9.3-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/m/mdtest/mdtest-1.9.3-ictce-6.2.5.eb b/easybuild/easyconfigs/m/mdtest/mdtest-1.9.3-ictce-6.2.5.eb index 31e12db3cc..ef13aa622d 100644 --- a/easybuild/easyconfigs/m/mdtest/mdtest-1.9.3-ictce-6.2.5.eb +++ b/easybuild/easyconfigs/m/mdtest/mdtest-1.9.3-ictce-6.2.5.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/m/mpiBLAST/mpiBLAST-1.6.0-goolf-1.4.10.eb b/easybuild/easyconfigs/m/mpiBLAST/mpiBLAST-1.6.0-goolf-1.4.10.eb index 273a8c9d5f..598a5a64ee 100644 --- a/easybuild/easyconfigs/m/mpiBLAST/mpiBLAST-1.6.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/m/mpiBLAST/mpiBLAST-1.6.0-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/m/mpiBLAST/mpiBLAST-1.6.0-ictce-5.2.0.eb b/easybuild/easyconfigs/m/mpiBLAST/mpiBLAST-1.6.0-ictce-5.2.0.eb index 1bb43bc486..1c9d77935a 100644 --- a/easybuild/easyconfigs/m/mpiBLAST/mpiBLAST-1.6.0-ictce-5.2.0.eb +++ b/easybuild/easyconfigs/m/mpiBLAST/mpiBLAST-1.6.0-ictce-5.2.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos , Kenneth Hoste diff --git a/easybuild/easyconfigs/m/mpiBLAST/mpiBLAST-1.6.0-ictce-5.3.0.eb b/easybuild/easyconfigs/m/mpiBLAST/mpiBLAST-1.6.0-ictce-5.3.0.eb index 58c91d09bc..80d940898f 100644 --- a/easybuild/easyconfigs/m/mpiBLAST/mpiBLAST-1.6.0-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/m/mpiBLAST/mpiBLAST-1.6.0-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos , Kenneth Hoste diff --git a/easybuild/easyconfigs/m/mpmath/mpmath-0.19-foss-2016a-Python-2.7.11.eb b/easybuild/easyconfigs/m/mpmath/mpmath-0.19-foss-2016a-Python-2.7.11.eb index 6602e3fb19..f8f47b4abc 100644 --- a/easybuild/easyconfigs/m/mpmath/mpmath-0.19-foss-2016a-Python-2.7.11.eb +++ b/easybuild/easyconfigs/m/mpmath/mpmath-0.19-foss-2016a-Python-2.7.11.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Author: Adam Huffman # adam.huffman@crick.ac.uk diff --git a/easybuild/easyconfigs/m/mpmath/mpmath-0.19-intel-2016a-Python-2.7.11.eb b/easybuild/easyconfigs/m/mpmath/mpmath-0.19-intel-2016a-Python-2.7.11.eb index 56a88f540c..e9f53eb87d 100644 --- a/easybuild/easyconfigs/m/mpmath/mpmath-0.19-intel-2016a-Python-2.7.11.eb +++ b/easybuild/easyconfigs/m/mpmath/mpmath-0.19-intel-2016a-Python-2.7.11.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Author: Adam Huffman # adam.huffman@crick.ac.uk diff --git a/easybuild/easyconfigs/m/mrFAST/mrFAST-2.6.0.1-goolf-1.4.10.eb b/easybuild/easyconfigs/m/mrFAST/mrFAST-2.6.0.1-goolf-1.4.10.eb index fb05915a84..b2be7d9ff5 100644 --- a/easybuild/easyconfigs/m/mrFAST/mrFAST-2.6.0.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/m/mrFAST/mrFAST-2.6.0.1-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/m/mrFAST/mrFAST-2.6.0.1-ictce-6.2.5.eb b/easybuild/easyconfigs/m/mrFAST/mrFAST-2.6.0.1-ictce-6.2.5.eb index 1bc0838af6..d385b5af30 100644 --- a/easybuild/easyconfigs/m/mrFAST/mrFAST-2.6.0.1-ictce-6.2.5.eb +++ b/easybuild/easyconfigs/m/mrFAST/mrFAST-2.6.0.1-ictce-6.2.5.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/m/mrsFAST/mrsFAST-2.6.0.4-goolf-1.4.10.eb b/easybuild/easyconfigs/m/mrsFAST/mrsFAST-2.6.0.4-goolf-1.4.10.eb index e58c648eee..f6a3fa5bda 100644 --- a/easybuild/easyconfigs/m/mrsFAST/mrsFAST-2.6.0.4-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/m/mrsFAST/mrsFAST-2.6.0.4-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/m/mrsFAST/mrsFAST-2.6.0.4-ictce-6.2.5.eb b/easybuild/easyconfigs/m/mrsFAST/mrsFAST-2.6.0.4-ictce-6.2.5.eb index 933177a5af..12a460e953 100644 --- a/easybuild/easyconfigs/m/mrsFAST/mrsFAST-2.6.0.4-ictce-6.2.5.eb +++ b/easybuild/easyconfigs/m/mrsFAST/mrsFAST-2.6.0.4-ictce-6.2.5.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.07-goolf-1.4.10.eb b/easybuild/easyconfigs/n/NASM/NASM-2.07-goolf-1.4.10.eb index d17113cb06..ef1067a4f7 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.07-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.07-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.07-ictce-5.3.0.eb b/easybuild/easyconfigs/n/NASM/NASM-2.07-ictce-5.3.0.eb index 6c053969c2..09bfc070e6 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.07-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.07-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.07-ictce-5.5.0.eb b/easybuild/easyconfigs/n/NASM/NASM-2.07-ictce-5.5.0.eb index f361a2932f..2631c95531 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.07-ictce-5.5.0.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.07-ictce-5.5.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.07-intel-2014b.eb b/easybuild/easyconfigs/n/NASM/NASM-2.07-intel-2014b.eb index 777c4695fd..9995450154 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.07-intel-2014b.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.07-intel-2014b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.11.05-goolf-1.7.20.eb b/easybuild/easyconfigs/n/NASM/NASM-2.11.05-goolf-1.7.20.eb index 61250ef0ab..3f9dfdbbef 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.11.05-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.11.05-goolf-1.7.20.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.11.05-ictce-6.2.5.eb b/easybuild/easyconfigs/n/NASM/NASM-2.11.05-ictce-6.2.5.eb index d0c5c529db..73698fba89 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.11.05-ictce-6.2.5.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.11.05-ictce-6.2.5.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.11.05-intel-2014.06.eb b/easybuild/easyconfigs/n/NASM/NASM-2.11.05-intel-2014.06.eb index 8eacf467e7..cabd7636da 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.11.05-intel-2014.06.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.11.05-intel-2014.06.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.11.05-intel-2014b.eb b/easybuild/easyconfigs/n/NASM/NASM-2.11.05-intel-2014b.eb index 940cf3e83b..1dc98bc56e 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.11.05-intel-2014b.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.11.05-intel-2014b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.11.05-intel-2015a.eb b/easybuild/easyconfigs/n/NASM/NASM-2.11.05-intel-2015a.eb index 9bf8366459..470433544b 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.11.05-intel-2015a.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.11.05-intel-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.11.06-foss-2015a.eb b/easybuild/easyconfigs/n/NASM/NASM-2.11.06-foss-2015a.eb index a9ff827237..1040eaec79 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.11.06-foss-2015a.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.11.06-foss-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.11.06-goolf-1.5.14.eb b/easybuild/easyconfigs/n/NASM/NASM-2.11.06-goolf-1.5.14.eb index e4df9a5cd4..701ac12d5c 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.11.06-goolf-1.5.14.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.11.06-goolf-1.5.14.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.11.06-goolf-1.7.20.eb b/easybuild/easyconfigs/n/NASM/NASM-2.11.06-goolf-1.7.20.eb index 8ece8f5082..3cb349ff14 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.11.06-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.11.06-goolf-1.7.20.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.11.06-intel-2015a.eb b/easybuild/easyconfigs/n/NASM/NASM-2.11.06-intel-2015a.eb index 058a25ffb3..0742f88efd 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.11.06-intel-2015a.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.11.06-intel-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.11.06-intel-2015b.eb b/easybuild/easyconfigs/n/NASM/NASM-2.11.06-intel-2015b.eb index f174be96fd..98cd4d01ec 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.11.06-intel-2015b.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.11.06-intel-2015b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.11.08-foss-2015a.eb b/easybuild/easyconfigs/n/NASM/NASM-2.11.08-foss-2015a.eb index 54389e3415..4bec0e9960 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.11.08-foss-2015a.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.11.08-foss-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.11.08-foss-2015b.eb b/easybuild/easyconfigs/n/NASM/NASM-2.11.08-foss-2015b.eb index bcb04e7841..f467619905 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.11.08-foss-2015b.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.11.08-foss-2015b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.11.08-foss-2016a.eb b/easybuild/easyconfigs/n/NASM/NASM-2.11.08-foss-2016a.eb index 691495f52f..0067d98017 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.11.08-foss-2016a.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.11.08-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.11.08-foss-2016b.eb b/easybuild/easyconfigs/n/NASM/NASM-2.11.08-foss-2016b.eb index 72c77d6685..1930c1a1fc 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.11.08-foss-2016b.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.11.08-foss-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.11.08-gimkl-2.11.5.eb b/easybuild/easyconfigs/n/NASM/NASM-2.11.08-gimkl-2.11.5.eb index 60a507ddb8..ca8a738432 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.11.08-gimkl-2.11.5.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.11.08-gimkl-2.11.5.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.11.08-goolf-1.4.10.eb b/easybuild/easyconfigs/n/NASM/NASM-2.11.08-goolf-1.4.10.eb index 617fb03523..072b3e15a7 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.11.08-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.11.08-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.11.08-intel-2015a.eb b/easybuild/easyconfigs/n/NASM/NASM-2.11.08-intel-2015a.eb index 77ceaa2d9a..2730435062 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.11.08-intel-2015a.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.11.08-intel-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.11.08-intel-2015b.eb b/easybuild/easyconfigs/n/NASM/NASM-2.11.08-intel-2015b.eb index 92d511ac9c..742f32c7b6 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.11.08-intel-2015b.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.11.08-intel-2015b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.11.08-intel-2016a.eb b/easybuild/easyconfigs/n/NASM/NASM-2.11.08-intel-2016a.eb index 7fa10b2782..99068e7f7b 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.11.08-intel-2016a.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.11.08-intel-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.12.01-foss-2016a.eb b/easybuild/easyconfigs/n/NASM/NASM-2.12.01-foss-2016a.eb index 3097f4cb0e..727f9c3f6c 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.12.01-foss-2016a.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.12.01-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.12.01-intel-2016a.eb b/easybuild/easyconfigs/n/NASM/NASM-2.12.01-intel-2016a.eb index dc884fc260..f733c9124c 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.12.01-intel-2016a.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.12.01-intel-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.12.02-foss-2016a.eb b/easybuild/easyconfigs/n/NASM/NASM-2.12.02-foss-2016a.eb index 0ef2b03e67..0a75781a62 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.12.02-foss-2016a.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.12.02-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.12.02-foss-2016b.eb b/easybuild/easyconfigs/n/NASM/NASM-2.12.02-foss-2016b.eb index 1c877d7045..35000996fb 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.12.02-foss-2016b.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.12.02-foss-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.12.02-intel-2016b.eb b/easybuild/easyconfigs/n/NASM/NASM-2.12.02-intel-2016b.eb index daeffdca98..5428307bd7 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.12.02-intel-2016b.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.12.02-intel-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.12.02-intel-2017a.eb b/easybuild/easyconfigs/n/NASM/NASM-2.12.02-intel-2017a.eb index a4d8935beb..b15496c3c9 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.12.02-intel-2017a.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.12.02-intel-2017a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NCBI-Toolkit/NCBI-Toolkit-9.0.0-goolf-1.4.10.eb b/easybuild/easyconfigs/n/NCBI-Toolkit/NCBI-Toolkit-9.0.0-goolf-1.4.10.eb index b11e19a831..af111599e9 100644 --- a/easybuild/easyconfigs/n/NCBI-Toolkit/NCBI-Toolkit-9.0.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/n/NCBI-Toolkit/NCBI-Toolkit-9.0.0-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/NLopt/NLopt-2.4.2-goolf-1.4.10.eb b/easybuild/easyconfigs/n/NLopt/NLopt-2.4.2-goolf-1.4.10.eb index abf5bbc277..37e86398d4 100644 --- a/easybuild/easyconfigs/n/NLopt/NLopt-2.4.2-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/n/NLopt/NLopt-2.4.2-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/n/NLopt/NLopt-2.4.2-intel-2017a.eb b/easybuild/easyconfigs/n/NLopt/NLopt-2.4.2-intel-2017a.eb index 607bdc3f75..e7dbf65423 100644 --- a/easybuild/easyconfigs/n/NLopt/NLopt-2.4.2-intel-2017a.eb +++ b/easybuild/easyconfigs/n/NLopt/NLopt-2.4.2-intel-2017a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/n/nano/nano-2.2.6-goolf-1.4.10.eb b/easybuild/easyconfigs/n/nano/nano-2.2.6-goolf-1.4.10.eb index b4bf60ef3c..c8e5168447 100644 --- a/easybuild/easyconfigs/n/nano/nano-2.2.6-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/n/nano/nano-2.2.6-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/nano/nano-2.2.6-ictce-5.3.0.eb b/easybuild/easyconfigs/n/nano/nano-2.2.6-ictce-5.3.0.eb index 1ff272d5d5..efcd1039a6 100644 --- a/easybuild/easyconfigs/n/nano/nano-2.2.6-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/n/nano/nano-2.2.6-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/n/ncview/ncview-2.1.2-goolf-1.4.10.eb b/easybuild/easyconfigs/n/ncview/ncview-2.1.2-goolf-1.4.10.eb index 01beb09931..b07eebeedb 100644 --- a/easybuild/easyconfigs/n/ncview/ncview-2.1.2-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/n/ncview/ncview-2.1.2-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2014 The Cyprus Institute # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/n/ncview/ncview-2.1.2-ictce-5.3.0.eb b/easybuild/easyconfigs/n/ncview/ncview-2.1.2-ictce-5.3.0.eb index 26ed84e0ca..39826e3412 100644 --- a/easybuild/easyconfigs/n/ncview/ncview-2.1.2-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/n/ncview/ncview-2.1.2-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2014 The Cyprus Institute # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/n/ncview/ncview-2.1.7-intel-2016b.eb b/easybuild/easyconfigs/n/ncview/ncview-2.1.7-intel-2016b.eb index 5320b4aa4c..fc4eee291e 100644 --- a/easybuild/easyconfigs/n/ncview/ncview-2.1.7-intel-2016b.eb +++ b/easybuild/easyconfigs/n/ncview/ncview-2.1.7-intel-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2014 The Cyprus Institute # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/o/OCaml/OCaml-4.01.0-goolf-1.4.10.eb b/easybuild/easyconfigs/o/OCaml/OCaml-4.01.0-goolf-1.4.10.eb index 0a78e38ade..fcdbb10aad 100644 --- a/easybuild/easyconfigs/o/OCaml/OCaml-4.01.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/o/OCaml/OCaml-4.01.0-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/o/OCaml/OCaml-4.01.0-ictce-5.5.0.eb b/easybuild/easyconfigs/o/OCaml/OCaml-4.01.0-ictce-5.5.0.eb index eb591f01b3..c1e9a74c6f 100644 --- a/easybuild/easyconfigs/o/OCaml/OCaml-4.01.0-ictce-5.5.0.eb +++ b/easybuild/easyconfigs/o/OCaml/OCaml-4.01.0-ictce-5.5.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/o/OCaml/OCaml-4.02.3-foss-2015a.eb b/easybuild/easyconfigs/o/OCaml/OCaml-4.02.3-foss-2015a.eb index 12dba48bf0..a71841771b 100644 --- a/easybuild/easyconfigs/o/OCaml/OCaml-4.02.3-foss-2015a.eb +++ b/easybuild/easyconfigs/o/OCaml/OCaml-4.02.3-foss-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/o/OCaml/OCaml-4.02.3-foss-2016a.eb b/easybuild/easyconfigs/o/OCaml/OCaml-4.02.3-foss-2016a.eb index ee452fb08e..5a93a730dc 100644 --- a/easybuild/easyconfigs/o/OCaml/OCaml-4.02.3-foss-2016a.eb +++ b/easybuild/easyconfigs/o/OCaml/OCaml-4.02.3-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/o/OPARI2/OPARI2-1.1.1-goolf-1.5.14.eb b/easybuild/easyconfigs/o/OPARI2/OPARI2-1.1.1-goolf-1.5.14.eb index d50dab2154..cbd3a83974 100644 --- a/easybuild/easyconfigs/o/OPARI2/OPARI2-1.1.1-goolf-1.5.14.eb +++ b/easybuild/easyconfigs/o/OPARI2/OPARI2-1.1.1-goolf-1.5.14.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/o/OPARI2/OPARI2-1.1.2-foss-2015a.eb b/easybuild/easyconfigs/o/OPARI2/OPARI2-1.1.2-foss-2015a.eb index 6a2ab2df29..c6cc202fed 100644 --- a/easybuild/easyconfigs/o/OPARI2/OPARI2-1.1.2-foss-2015a.eb +++ b/easybuild/easyconfigs/o/OPARI2/OPARI2-1.1.2-foss-2015a.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/o/OPARI2/OPARI2-1.1.2-goolf-1.5.14.eb b/easybuild/easyconfigs/o/OPARI2/OPARI2-1.1.2-goolf-1.5.14.eb index 34e2fdbcea..c859d761df 100644 --- a/easybuild/easyconfigs/o/OPARI2/OPARI2-1.1.2-goolf-1.5.14.eb +++ b/easybuild/easyconfigs/o/OPARI2/OPARI2-1.1.2-goolf-1.5.14.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Authors:: Jordi Blasco # License:: New BSD # diff --git a/easybuild/easyconfigs/o/OPARI2/OPARI2-2.0-foss-2016a.eb b/easybuild/easyconfigs/o/OPARI2/OPARI2-2.0-foss-2016a.eb index 2f3c2cf421..4c1cdfb922 100644 --- a/easybuild/easyconfigs/o/OPARI2/OPARI2-2.0-foss-2016a.eb +++ b/easybuild/easyconfigs/o/OPARI2/OPARI2-2.0-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2016 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr diff --git a/easybuild/easyconfigs/o/OTF/OTF-1.12.4-goolf-1.5.14.eb b/easybuild/easyconfigs/o/OTF/OTF-1.12.4-goolf-1.5.14.eb index 831526692c..2b97f66bf4 100644 --- a/easybuild/easyconfigs/o/OTF/OTF-1.12.4-goolf-1.5.14.eb +++ b/easybuild/easyconfigs/o/OTF/OTF-1.12.4-goolf-1.5.14.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/o/OTF/OTF-1.12.4-ictce-5.3.0.eb b/easybuild/easyconfigs/o/OTF/OTF-1.12.4-ictce-5.3.0.eb index 3d6eb22e24..47ba7c137c 100644 --- a/easybuild/easyconfigs/o/OTF/OTF-1.12.4-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/o/OTF/OTF-1.12.4-ictce-5.3.0.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/o/OTF2/OTF2-1.2.1-goolf-1.5.14.eb b/easybuild/easyconfigs/o/OTF2/OTF2-1.2.1-goolf-1.5.14.eb index 60c9ce8691..6e57763759 100644 --- a/easybuild/easyconfigs/o/OTF2/OTF2-1.2.1-goolf-1.5.14.eb +++ b/easybuild/easyconfigs/o/OTF2/OTF2-1.2.1-goolf-1.5.14.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/o/OTF2/OTF2-1.2.1-ictce-5.3.0.eb b/easybuild/easyconfigs/o/OTF2/OTF2-1.2.1-ictce-5.3.0.eb index 341f324efb..b3e56a6986 100644 --- a/easybuild/easyconfigs/o/OTF2/OTF2-1.2.1-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/o/OTF2/OTF2-1.2.1-ictce-5.3.0.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/o/OTF2/OTF2-1.5.1-foss-2015a.eb b/easybuild/easyconfigs/o/OTF2/OTF2-1.5.1-foss-2015a.eb index 4f583c01b1..d76e3051fb 100644 --- a/easybuild/easyconfigs/o/OTF2/OTF2-1.5.1-foss-2015a.eb +++ b/easybuild/easyconfigs/o/OTF2/OTF2-1.5.1-foss-2015a.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/o/OTF2/OTF2-2.0-foss-2016a.eb b/easybuild/easyconfigs/o/OTF2/OTF2-2.0-foss-2016a.eb index 3b724d990f..2e24f54ef8 100644 --- a/easybuild/easyconfigs/o/OTF2/OTF2-2.0-foss-2016a.eb +++ b/easybuild/easyconfigs/o/OTF2/OTF2-2.0-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013-2016 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # Markus Geimer diff --git a/easybuild/easyconfigs/o/OTF2/OTF2-2.0-foss-2017a.eb b/easybuild/easyconfigs/o/OTF2/OTF2-2.0-foss-2017a.eb index d4318573b4..41a3d0f3c9 100644 --- a/easybuild/easyconfigs/o/OTF2/OTF2-2.0-foss-2017a.eb +++ b/easybuild/easyconfigs/o/OTF2/OTF2-2.0-foss-2017a.eb @@ -1,5 +1,5 @@ ## -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013-2016 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # Markus Geimer diff --git a/easybuild/easyconfigs/o/Oases/Oases-0.2.08-foss-2016b.eb b/easybuild/easyconfigs/o/Oases/Oases-0.2.08-foss-2016b.eb index 335f79d16b..7bcec339f4 100644 --- a/easybuild/easyconfigs/o/Oases/Oases-0.2.08-foss-2016b.eb +++ b/easybuild/easyconfigs/o/Oases/Oases-0.2.08-foss-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , Fotis Georgatos diff --git a/easybuild/easyconfigs/o/Oases/Oases-0.2.08-goolf-1.4.10.eb b/easybuild/easyconfigs/o/Oases/Oases-0.2.08-goolf-1.4.10.eb index d34174340c..d26e10aab3 100644 --- a/easybuild/easyconfigs/o/Oases/Oases-0.2.08-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/o/Oases/Oases-0.2.08-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , Fotis Georgatos diff --git a/easybuild/easyconfigs/o/Oases/Oases-0.2.08-ictce-5.3.0.eb b/easybuild/easyconfigs/o/Oases/Oases-0.2.08-ictce-5.3.0.eb index c408bf08bd..51d2029f8b 100644 --- a/easybuild/easyconfigs/o/Oases/Oases-0.2.08-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/o/Oases/Oases-0.2.08-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , Fotis Georgatos diff --git a/easybuild/easyconfigs/o/Oases/Oases-0.2.08-intel-2015a.eb b/easybuild/easyconfigs/o/Oases/Oases-0.2.08-intel-2015a.eb index ed69d393e3..fa31b8119c 100644 --- a/easybuild/easyconfigs/o/Oases/Oases-0.2.08-intel-2015a.eb +++ b/easybuild/easyconfigs/o/Oases/Oases-0.2.08-intel-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , Fotis Georgatos diff --git a/easybuild/easyconfigs/o/OpenMM/OpenMM-6.1-goolf-1.4.10-Python-2.7.5.eb b/easybuild/easyconfigs/o/OpenMM/OpenMM-6.1-goolf-1.4.10-Python-2.7.5.eb index 33c2f06dff..547084c491 100644 --- a/easybuild/easyconfigs/o/OpenMM/OpenMM-6.1-goolf-1.4.10-Python-2.7.5.eb +++ b/easybuild/easyconfigs/o/OpenMM/OpenMM-6.1-goolf-1.4.10-Python-2.7.5.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/o/OptiX/OptiX-3.8.0-GNU-4.9.3-2.25.eb b/easybuild/easyconfigs/o/OptiX/OptiX-3.8.0-GNU-4.9.3-2.25.eb index 69dec5c347..bb8c2ce071 100644 --- a/easybuild/easyconfigs/o/OptiX/OptiX-3.8.0-GNU-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/o/OptiX/OptiX-3.8.0-GNU-4.9.3-2.25.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Authors:: Stephane Thiell ## easyblock = 'Binary' diff --git a/easybuild/easyconfigs/o/OptiX/OptiX-3.9.0-GNU-4.9.3-2.25.eb b/easybuild/easyconfigs/o/OptiX/OptiX-3.9.0-GNU-4.9.3-2.25.eb index 7960265e87..28cec1fdb8 100644 --- a/easybuild/easyconfigs/o/OptiX/OptiX-3.9.0-GNU-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/o/OptiX/OptiX-3.9.0-GNU-4.9.3-2.25.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Authors:: Stephane Thiell ## easyblock = 'Binary' diff --git a/easybuild/easyconfigs/o/o2scl/o2scl-0.913-goolf-1.4.10.eb b/easybuild/easyconfigs/o/o2scl/o2scl-0.913-goolf-1.4.10.eb index 665ae52c04..ce8b6a310c 100644 --- a/easybuild/easyconfigs/o/o2scl/o2scl-0.913-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/o/o2scl/o2scl-0.913-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics (SIB) # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/p/PAML/PAML-4.7-goolf-1.4.10.eb b/easybuild/easyconfigs/p/PAML/PAML-4.7-goolf-1.4.10.eb index a3f69b41df..4ce9f6acc1 100644 --- a/easybuild/easyconfigs/p/PAML/PAML-4.7-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/p/PAML/PAML-4.7-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA # Authors:: George Tsouloupas , Fotis Georgatos , Kenneth Hoste (UGent) diff --git a/easybuild/easyconfigs/p/PAML/PAML-4.7-ictce-5.3.0.eb b/easybuild/easyconfigs/p/PAML/PAML-4.7-ictce-5.3.0.eb index 5d277564d7..663098d7ea 100644 --- a/easybuild/easyconfigs/p/PAML/PAML-4.7-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/p/PAML/PAML-4.7-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA # Authors:: George Tsouloupas , Fotis Georgatos , Kenneth Hoste (UGent) diff --git a/easybuild/easyconfigs/p/PAPI/PAPI-5.0.1-goolf-1.4.10.eb b/easybuild/easyconfigs/p/PAPI/PAPI-5.0.1-goolf-1.4.10.eb index 6ad4131d3d..abf2f2f348 100644 --- a/easybuild/easyconfigs/p/PAPI/PAPI-5.0.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/p/PAPI/PAPI-5.0.1-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/p/PAPI/PAPI-5.0.1-ictce-5.3.0.eb b/easybuild/easyconfigs/p/PAPI/PAPI-5.0.1-ictce-5.3.0.eb index 7dfa97e510..5fdc97ba25 100644 --- a/easybuild/easyconfigs/p/PAPI/PAPI-5.0.1-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/p/PAPI/PAPI-5.0.1-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/p/PAPI/PAPI-5.2.0-goolf-1.5.14.eb b/easybuild/easyconfigs/p/PAPI/PAPI-5.2.0-goolf-1.5.14.eb index d485c2eb57..5520734983 100644 --- a/easybuild/easyconfigs/p/PAPI/PAPI-5.2.0-goolf-1.5.14.eb +++ b/easybuild/easyconfigs/p/PAPI/PAPI-5.2.0-goolf-1.5.14.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Luxembourg Centre for Systems Biomedicine # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/p/PAPI/PAPI-5.2.0-ictce-5.3.0.eb b/easybuild/easyconfigs/p/PAPI/PAPI-5.2.0-ictce-5.3.0.eb index c548c0f167..beb87afa42 100644 --- a/easybuild/easyconfigs/p/PAPI/PAPI-5.2.0-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/p/PAPI/PAPI-5.2.0-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/p/PAPI/PAPI-5.4.0-foss-2015a.eb b/easybuild/easyconfigs/p/PAPI/PAPI-5.4.0-foss-2015a.eb index cbf18980bc..591c1a1cfb 100644 --- a/easybuild/easyconfigs/p/PAPI/PAPI-5.4.0-foss-2015a.eb +++ b/easybuild/easyconfigs/p/PAPI/PAPI-5.4.0-foss-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/p/PAPI/PAPI-5.4.1-foss-2015a.eb b/easybuild/easyconfigs/p/PAPI/PAPI-5.4.1-foss-2015a.eb index b5babf4529..aedb5208f2 100644 --- a/easybuild/easyconfigs/p/PAPI/PAPI-5.4.1-foss-2015a.eb +++ b/easybuild/easyconfigs/p/PAPI/PAPI-5.4.1-foss-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/p/PAPI/PAPI-5.4.3-foss-2016a.eb b/easybuild/easyconfigs/p/PAPI/PAPI-5.4.3-foss-2016a.eb index e76514b4cc..3aaed28371 100644 --- a/easybuild/easyconfigs/p/PAPI/PAPI-5.4.3-foss-2016a.eb +++ b/easybuild/easyconfigs/p/PAPI/PAPI-5.4.3-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/p/PBZIP2/PBZIP2-1.1.8-goolf-1.4.10.eb b/easybuild/easyconfigs/p/PBZIP2/PBZIP2-1.1.8-goolf-1.4.10.eb index e1ffffe615..b212b2e2ef 100644 --- a/easybuild/easyconfigs/p/PBZIP2/PBZIP2-1.1.8-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/p/PBZIP2/PBZIP2-1.1.8-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/p/PBZIP2/PBZIP2-1.1.8-ictce-6.2.5.eb b/easybuild/easyconfigs/p/PBZIP2/PBZIP2-1.1.8-ictce-6.2.5.eb index 795cc4f409..a0d4aaa3ee 100644 --- a/easybuild/easyconfigs/p/PBZIP2/PBZIP2-1.1.8-ictce-6.2.5.eb +++ b/easybuild/easyconfigs/p/PBZIP2/PBZIP2-1.1.8-ictce-6.2.5.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/p/PCC/PCC-20131024.eb b/easybuild/easyconfigs/p/PCC/PCC-20131024.eb index 4ba60f4784..ed87db5729 100644 --- a/easybuild/easyconfigs/p/PCC/PCC-20131024.eb +++ b/easybuild/easyconfigs/p/PCC/PCC-20131024.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/p/PDT/PDT-3.19-goolf-1.5.14.eb b/easybuild/easyconfigs/p/PDT/PDT-3.19-goolf-1.5.14.eb index 48f0570291..e3744fc95a 100644 --- a/easybuild/easyconfigs/p/PDT/PDT-3.19-goolf-1.5.14.eb +++ b/easybuild/easyconfigs/p/PDT/PDT-3.19-goolf-1.5.14.eb @@ -1,5 +1,5 @@ ## -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2015 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr diff --git a/easybuild/easyconfigs/p/PDT/PDT-3.19-ictce-5.3.0.eb b/easybuild/easyconfigs/p/PDT/PDT-3.19-ictce-5.3.0.eb index f50e7519a2..381266ea15 100644 --- a/easybuild/easyconfigs/p/PDT/PDT-3.19-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/p/PDT/PDT-3.19-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2015 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr diff --git a/easybuild/easyconfigs/p/PDT/PDT-3.20-foss-2015a.eb b/easybuild/easyconfigs/p/PDT/PDT-3.20-foss-2015a.eb index 4acb86b021..17487e1283 100644 --- a/easybuild/easyconfigs/p/PDT/PDT-3.20-foss-2015a.eb +++ b/easybuild/easyconfigs/p/PDT/PDT-3.20-foss-2015a.eb @@ -1,5 +1,5 @@ ## -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2015 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr diff --git a/easybuild/easyconfigs/p/PDT/PDT-3.20-goolf-1.5.14.eb b/easybuild/easyconfigs/p/PDT/PDT-3.20-goolf-1.5.14.eb index bb1e979e80..ca20f00b88 100644 --- a/easybuild/easyconfigs/p/PDT/PDT-3.20-goolf-1.5.14.eb +++ b/easybuild/easyconfigs/p/PDT/PDT-3.20-goolf-1.5.14.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Authors:: Jordi Blasco # License:: New BSD # diff --git a/easybuild/easyconfigs/p/PDT/PDT-3.22-foss-2016a.eb b/easybuild/easyconfigs/p/PDT/PDT-3.22-foss-2016a.eb index c1c3137a73..7f1635e8a8 100644 --- a/easybuild/easyconfigs/p/PDT/PDT-3.22-foss-2016a.eb +++ b/easybuild/easyconfigs/p/PDT/PDT-3.22-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2016 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr diff --git a/easybuild/easyconfigs/p/PEAR/PEAR-0.9.6-goolf-1.4.10.eb b/easybuild/easyconfigs/p/PEAR/PEAR-0.9.6-goolf-1.4.10.eb index 1c4f9ab85d..31449b54e7 100644 --- a/easybuild/easyconfigs/p/PEAR/PEAR-0.9.6-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/p/PEAR/PEAR-0.9.6-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/p/PEAR/PEAR-0.9.8-foss-2016b.eb b/easybuild/easyconfigs/p/PEAR/PEAR-0.9.8-foss-2016b.eb index 37c50aa1df..8aa84dce9f 100644 --- a/easybuild/easyconfigs/p/PEAR/PEAR-0.9.8-foss-2016b.eb +++ b/easybuild/easyconfigs/p/PEAR/PEAR-0.9.8-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild easyblock = 'ConfigureMake' diff --git a/easybuild/easyconfigs/p/PEAR/PEAR-0.9.8-intel-2016b.eb b/easybuild/easyconfigs/p/PEAR/PEAR-0.9.8-intel-2016b.eb index fef4a83c9e..3ec9dad849 100644 --- a/easybuild/easyconfigs/p/PEAR/PEAR-0.9.8-intel-2016b.eb +++ b/easybuild/easyconfigs/p/PEAR/PEAR-0.9.8-intel-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild easyblock = 'ConfigureMake' diff --git a/easybuild/easyconfigs/p/PGDSpider/PGDSpider-2.1.0.3-Java-1.7.0_80.eb b/easybuild/easyconfigs/p/PGDSpider/PGDSpider-2.1.0.3-Java-1.7.0_80.eb index 32e6adc9b7..6c18c7665d 100644 --- a/easybuild/easyconfigs/p/PGDSpider/PGDSpider-2.1.0.3-Java-1.7.0_80.eb +++ b/easybuild/easyconfigs/p/PGDSpider/PGDSpider-2.1.0.3-Java-1.7.0_80.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/p/PHASE/PHASE-2.1.1.eb b/easybuild/easyconfigs/p/PHASE/PHASE-2.1.1.eb index 9a71ee57a7..d018f814f2 100644 --- a/easybuild/easyconfigs/p/PHASE/PHASE-2.1.1.eb +++ b/easybuild/easyconfigs/p/PHASE/PHASE-2.1.1.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Ravi Tripathi # Email: ravi89@uab.edu diff --git a/easybuild/easyconfigs/p/PLINK/PLINK-1.07-foss-2015b.eb b/easybuild/easyconfigs/p/PLINK/PLINK-1.07-foss-2015b.eb index 3dbf1f6dcc..7d60edd787 100644 --- a/easybuild/easyconfigs/p/PLINK/PLINK-1.07-foss-2015b.eb +++ b/easybuild/easyconfigs/p/PLINK/PLINK-1.07-foss-2015b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/p/PLINK/PLINK-1.07-foss-2016a.eb b/easybuild/easyconfigs/p/PLINK/PLINK-1.07-foss-2016a.eb index 3a9a5a29e9..5b4efc33f6 100644 --- a/easybuild/easyconfigs/p/PLINK/PLINK-1.07-foss-2016a.eb +++ b/easybuild/easyconfigs/p/PLINK/PLINK-1.07-foss-2016a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/p/PLINK/PLINK-1.07-foss-2016b.eb b/easybuild/easyconfigs/p/PLINK/PLINK-1.07-foss-2016b.eb index 8d5a6d2eb6..26b293a777 100644 --- a/easybuild/easyconfigs/p/PLINK/PLINK-1.07-foss-2016b.eb +++ b/easybuild/easyconfigs/p/PLINK/PLINK-1.07-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/p/PLINK/PLINK-1.07-ictce-5.3.0.eb b/easybuild/easyconfigs/p/PLINK/PLINK-1.07-ictce-5.3.0.eb index 136c6e53e0..1c0a984949 100644 --- a/easybuild/easyconfigs/p/PLINK/PLINK-1.07-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/p/PLINK/PLINK-1.07-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Thekla Loizou , Andreas Panteli , diff --git a/easybuild/easyconfigs/p/PLINK/PLINK-1.07-ictce-6.2.5.eb b/easybuild/easyconfigs/p/PLINK/PLINK-1.07-ictce-6.2.5.eb index 0a3b48db5b..c6adbf0428 100644 --- a/easybuild/easyconfigs/p/PLINK/PLINK-1.07-ictce-6.2.5.eb +++ b/easybuild/easyconfigs/p/PLINK/PLINK-1.07-ictce-6.2.5.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/p/PLINKSEQ/PLINKSEQ-0.10-goolf-1.7.20.eb b/easybuild/easyconfigs/p/PLINKSEQ/PLINKSEQ-0.10-goolf-1.7.20.eb index 1ed4041bd8..de9f5cdd55 100644 --- a/easybuild/easyconfigs/p/PLINKSEQ/PLINKSEQ-0.10-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/p/PLINKSEQ/PLINKSEQ-0.10-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/p/POV-Ray/POV-Ray-3.7.0.0-intel-2016b.eb b/easybuild/easyconfigs/p/POV-Ray/POV-Ray-3.7.0.0-intel-2016b.eb index b01bff9fa6..95b77ff16a 100644 --- a/easybuild/easyconfigs/p/POV-Ray/POV-Ray-3.7.0.0-intel-2016b.eb +++ b/easybuild/easyconfigs/p/POV-Ray/POV-Ray-3.7.0.0-intel-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/p/PRACE/PRACE-20130605-goolf-1.4.10.eb b/easybuild/easyconfigs/p/PRACE/PRACE-20130605-goolf-1.4.10.eb index 1cdadae78c..ba3147aeda 100644 --- a/easybuild/easyconfigs/p/PRACE/PRACE-20130605-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/p/PRACE/PRACE-20130605-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/p/PRACE/PRACE-20130605-ictce-5.3.0.eb b/easybuild/easyconfigs/p/PRACE/PRACE-20130605-ictce-5.3.0.eb index 6807550e34..e1d9097357 100644 --- a/easybuild/easyconfigs/p/PRACE/PRACE-20130605-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/p/PRACE/PRACE-20130605-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/p/PRANK/PRANK-130820-goolf-1.4.10.eb b/easybuild/easyconfigs/p/PRANK/PRANK-130820-goolf-1.4.10.eb index 59d3a92f69..d91b5c16d2 100644 --- a/easybuild/easyconfigs/p/PRANK/PRANK-130820-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/p/PRANK/PRANK-130820-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/p/PRANK/PRANK-130820-ictce-5.3.0.eb b/easybuild/easyconfigs/p/PRANK/PRANK-130820-ictce-5.3.0.eb index cc4ff83fdd..e37d705eb5 100644 --- a/easybuild/easyconfigs/p/PRANK/PRANK-130820-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/p/PRANK/PRANK-130820-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/p/PRANK/PRANK-140110-goolf-1.4.10.eb b/easybuild/easyconfigs/p/PRANK/PRANK-140110-goolf-1.4.10.eb index 463e126a1a..e5306a0264 100644 --- a/easybuild/easyconfigs/p/PRANK/PRANK-140110-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/p/PRANK/PRANK-140110-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/p/PRINSEQ/PRINSEQ-0.20.4-foss-2015b-Perl-5.20.3.eb b/easybuild/easyconfigs/p/PRINSEQ/PRINSEQ-0.20.4-foss-2015b-Perl-5.20.3.eb index 0f000df55c..a8599a4532 100644 --- a/easybuild/easyconfigs/p/PRINSEQ/PRINSEQ-0.20.4-foss-2015b-Perl-5.20.3.eb +++ b/easybuild/easyconfigs/p/PRINSEQ/PRINSEQ-0.20.4-foss-2015b-Perl-5.20.3.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/p/PRINSEQ/PRINSEQ-0.20.4-goolf-1.4.10-Perl-5.16.3.eb b/easybuild/easyconfigs/p/PRINSEQ/PRINSEQ-0.20.4-goolf-1.4.10-Perl-5.16.3.eb index 8633986686..b72be2600b 100644 --- a/easybuild/easyconfigs/p/PRINSEQ/PRINSEQ-0.20.4-goolf-1.4.10-Perl-5.16.3.eb +++ b/easybuild/easyconfigs/p/PRINSEQ/PRINSEQ-0.20.4-goolf-1.4.10-Perl-5.16.3.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/p/PROJ/PROJ-4.8.0-foss-2015b.eb b/easybuild/easyconfigs/p/PROJ/PROJ-4.8.0-foss-2015b.eb index 30f8eb2395..00f55ae5a3 100644 --- a/easybuild/easyconfigs/p/PROJ/PROJ-4.8.0-foss-2015b.eb +++ b/easybuild/easyconfigs/p/PROJ/PROJ-4.8.0-foss-2015b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2014-2015 The Cyprus Institute # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/p/PROJ/PROJ-4.8.0-goolf-1.4.10.eb b/easybuild/easyconfigs/p/PROJ/PROJ-4.8.0-goolf-1.4.10.eb index 34a1760e0e..f7686d4769 100644 --- a/easybuild/easyconfigs/p/PROJ/PROJ-4.8.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/p/PROJ/PROJ-4.8.0-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2014-2015 The Cyprus Institute # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/p/PROJ/PROJ-4.8.0-ictce-5.3.0.eb b/easybuild/easyconfigs/p/PROJ/PROJ-4.8.0-ictce-5.3.0.eb index 968d0aa66a..76fc53fbf0 100644 --- a/easybuild/easyconfigs/p/PROJ/PROJ-4.8.0-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/p/PROJ/PROJ-4.8.0-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2014-2015 The Cyprus Institute # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/p/PROJ/PROJ-4.9.1-foss-2015a.eb b/easybuild/easyconfigs/p/PROJ/PROJ-4.9.1-foss-2015a.eb index 4c530e2669..200a9f51d1 100644 --- a/easybuild/easyconfigs/p/PROJ/PROJ-4.9.1-foss-2015a.eb +++ b/easybuild/easyconfigs/p/PROJ/PROJ-4.9.1-foss-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2014-2015 The Cyprus Institute # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/p/PROJ/PROJ-4.9.2-foss-2016a.eb b/easybuild/easyconfigs/p/PROJ/PROJ-4.9.2-foss-2016a.eb index 8073931ffc..3cf2db1934 100644 --- a/easybuild/easyconfigs/p/PROJ/PROJ-4.9.2-foss-2016a.eb +++ b/easybuild/easyconfigs/p/PROJ/PROJ-4.9.2-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2014-2015 The Cyprus Institute # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/p/PROJ/PROJ-4.9.2-foss-2016b.eb b/easybuild/easyconfigs/p/PROJ/PROJ-4.9.2-foss-2016b.eb index 324f2cd7f8..f00ad2c895 100644 --- a/easybuild/easyconfigs/p/PROJ/PROJ-4.9.2-foss-2016b.eb +++ b/easybuild/easyconfigs/p/PROJ/PROJ-4.9.2-foss-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2014-2015 The Cyprus Institute # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/p/PROJ/PROJ-4.9.2-intel-2016a.eb b/easybuild/easyconfigs/p/PROJ/PROJ-4.9.2-intel-2016a.eb index 67b8275d1e..6f79ab820c 100644 --- a/easybuild/easyconfigs/p/PROJ/PROJ-4.9.2-intel-2016a.eb +++ b/easybuild/easyconfigs/p/PROJ/PROJ-4.9.2-intel-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2014-2015 The Cyprus Institute # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/p/PROJ/PROJ-4.9.2-intel-2016b.eb b/easybuild/easyconfigs/p/PROJ/PROJ-4.9.2-intel-2016b.eb index bcb1e2a0d1..9de59c679b 100644 --- a/easybuild/easyconfigs/p/PROJ/PROJ-4.9.2-intel-2016b.eb +++ b/easybuild/easyconfigs/p/PROJ/PROJ-4.9.2-intel-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2014-2015 The Cyprus Institute # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/p/PROJ/PROJ-4.9.3-foss-2016b.eb b/easybuild/easyconfigs/p/PROJ/PROJ-4.9.3-foss-2016b.eb index 7b1bb021f3..f1ed8cc4b8 100644 --- a/easybuild/easyconfigs/p/PROJ/PROJ-4.9.3-foss-2016b.eb +++ b/easybuild/easyconfigs/p/PROJ/PROJ-4.9.3-foss-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2014-2015 The Cyprus Institute # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/p/PROJ/PROJ-4.9.3-intel-2016b.eb b/easybuild/easyconfigs/p/PROJ/PROJ-4.9.3-intel-2016b.eb index 0bd9d6514d..cfe024f452 100644 --- a/easybuild/easyconfigs/p/PROJ/PROJ-4.9.3-intel-2016b.eb +++ b/easybuild/easyconfigs/p/PROJ/PROJ-4.9.3-intel-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2014-2015 The Cyprus Institute # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/p/PROJ/PROJ-4.9.3-intel-2017a.eb b/easybuild/easyconfigs/p/PROJ/PROJ-4.9.3-intel-2017a.eb index 07a9a99e42..b01ce62b7f 100644 --- a/easybuild/easyconfigs/p/PROJ/PROJ-4.9.3-intel-2017a.eb +++ b/easybuild/easyconfigs/p/PROJ/PROJ-4.9.3-intel-2017a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2014-2015 The Cyprus Institute # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/p/Parallel-ForkManager/Parallel-ForkManager-1.06-goolf-1.4.10-Perl-5.16.3.eb b/easybuild/easyconfigs/p/Parallel-ForkManager/Parallel-ForkManager-1.06-goolf-1.4.10-Perl-5.16.3.eb index 973a23b9d2..6cdd113ef0 100644 --- a/easybuild/easyconfigs/p/Parallel-ForkManager/Parallel-ForkManager-1.06-goolf-1.4.10-Perl-5.16.3.eb +++ b/easybuild/easyconfigs/p/Parallel-ForkManager/Parallel-ForkManager-1.06-goolf-1.4.10-Perl-5.16.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli diff --git a/easybuild/easyconfigs/p/Paraver/Paraver-4.4.5-GCC-4.7.3.eb b/easybuild/easyconfigs/p/Paraver/Paraver-4.4.5-GCC-4.7.3.eb index aabbb0dc24..8a33b15619 100644 --- a/easybuild/easyconfigs/p/Paraver/Paraver-4.4.5-GCC-4.7.3.eb +++ b/easybuild/easyconfigs/p/Paraver/Paraver-4.4.5-GCC-4.7.3.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/p/Paraver/Paraver-4.5.6-foss-2015a.eb b/easybuild/easyconfigs/p/Paraver/Paraver-4.5.6-foss-2015a.eb index f5a5940d0d..6e4a28d4a2 100644 --- a/easybuild/easyconfigs/p/Paraver/Paraver-4.5.6-foss-2015a.eb +++ b/easybuild/easyconfigs/p/Paraver/Paraver-4.5.6-foss-2015a.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/p/PeakSeq/PeakSeq-1.3-goolf-1.4.10.eb b/easybuild/easyconfigs/p/PeakSeq/PeakSeq-1.3-goolf-1.4.10.eb index beddc1be80..cb8631f828 100644 --- a/easybuild/easyconfigs/p/PeakSeq/PeakSeq-1.3-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/p/PeakSeq/PeakSeq-1.3-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/p/PhyML/PhyML-20120412-goolf-1.4.10.eb b/easybuild/easyconfigs/p/PhyML/PhyML-20120412-goolf-1.4.10.eb index 2ee0e32243..dfae3001aa 100644 --- a/easybuild/easyconfigs/p/PhyML/PhyML-20120412-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/p/PhyML/PhyML-20120412-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/p/PhyML/PhyML-20131016-goolf-1.4.10devel.eb b/easybuild/easyconfigs/p/PhyML/PhyML-20131016-goolf-1.4.10devel.eb index 3c4e95c7ce..f0201e1312 100644 --- a/easybuild/easyconfigs/p/PhyML/PhyML-20131016-goolf-1.4.10devel.eb +++ b/easybuild/easyconfigs/p/PhyML/PhyML-20131016-goolf-1.4.10devel.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/p/Pindel/Pindel-0.2.5a7-goolf-1.4.10.eb b/easybuild/easyconfigs/p/Pindel/Pindel-0.2.5a7-goolf-1.4.10.eb index bca12c0034..a1bd0d68a7 100644 --- a/easybuild/easyconfigs/p/Pindel/Pindel-0.2.5a7-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/p/Pindel/Pindel-0.2.5a7-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/p/Pindel/Pindel-0.2.5b8-foss-2016b.eb b/easybuild/easyconfigs/p/Pindel/Pindel-0.2.5b8-foss-2016b.eb index 9f45199e95..7c9fc74d13 100644 --- a/easybuild/easyconfigs/p/Pindel/Pindel-0.2.5b8-foss-2016b.eb +++ b/easybuild/easyconfigs/p/Pindel/Pindel-0.2.5b8-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/p/Platanus/Platanus-1.2.4-goolf-1.7.20.eb b/easybuild/easyconfigs/p/Platanus/Platanus-1.2.4-goolf-1.7.20.eb index fb465f5c89..f30e2624cc 100644 --- a/easybuild/easyconfigs/p/Platanus/Platanus-1.2.4-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/p/Platanus/Platanus-1.2.4-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/p/Pmw/Pmw-1.3.3-goolf-1.4.10-Python-2.7.5.eb b/easybuild/easyconfigs/p/Pmw/Pmw-1.3.3-goolf-1.4.10-Python-2.7.5.eb index c8749eca4a..105ca94d20 100644 --- a/easybuild/easyconfigs/p/Pmw/Pmw-1.3.3-goolf-1.4.10-Python-2.7.5.eb +++ b/easybuild/easyconfigs/p/Pmw/Pmw-1.3.3-goolf-1.4.10-Python-2.7.5.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Adam Mazur # Research IT # Biozentrum, University of Basel diff --git a/easybuild/easyconfigs/p/PnMPI/PnMPI-1.2.0-goolf-1.5.14.eb b/easybuild/easyconfigs/p/PnMPI/PnMPI-1.2.0-goolf-1.5.14.eb index 30ff748dc8..008ed299aa 100644 --- a/easybuild/easyconfigs/p/PnMPI/PnMPI-1.2.0-goolf-1.5.14.eb +++ b/easybuild/easyconfigs/p/PnMPI/PnMPI-1.2.0-goolf-1.5.14.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/p/PyQt/PyQt-4.11.3-goolf-1.5.14-Python-2.7.9.eb b/easybuild/easyconfigs/p/PyQt/PyQt-4.11.3-goolf-1.5.14-Python-2.7.9.eb index 51aeabb7ca..36bbf7c9f6 100644 --- a/easybuild/easyconfigs/p/PyQt/PyQt-4.11.3-goolf-1.5.14-Python-2.7.9.eb +++ b/easybuild/easyconfigs/p/PyQt/PyQt-4.11.3-goolf-1.5.14-Python-2.7.9.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Bart Verleye # Center for eResearch, Auckland easyblock = 'ConfigureMakePythonPackage' diff --git a/easybuild/easyconfigs/p/PyQt/PyQt-4.11.3-intel-2015a-Python-2.7.9.eb b/easybuild/easyconfigs/p/PyQt/PyQt-4.11.3-intel-2015a-Python-2.7.9.eb index 328b12d5a9..af29a1b6dd 100644 --- a/easybuild/easyconfigs/p/PyQt/PyQt-4.11.3-intel-2015a-Python-2.7.9.eb +++ b/easybuild/easyconfigs/p/PyQt/PyQt-4.11.3-intel-2015a-Python-2.7.9.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Bart Verleye # Center for eResearch, Auckland easyblock = 'ConfigureMakePythonPackage' diff --git a/easybuild/easyconfigs/p/PyQt/PyQt-4.11.4-foss-2015a-Python-2.7.9.eb b/easybuild/easyconfigs/p/PyQt/PyQt-4.11.4-foss-2015a-Python-2.7.9.eb index 992e13df88..0bee14ad36 100644 --- a/easybuild/easyconfigs/p/PyQt/PyQt-4.11.4-foss-2015a-Python-2.7.9.eb +++ b/easybuild/easyconfigs/p/PyQt/PyQt-4.11.4-foss-2015a-Python-2.7.9.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Bart Verleye # Center for eResearch, Auckland easyblock = 'ConfigureMakePythonPackage' diff --git a/easybuild/easyconfigs/p/PyQt/PyQt-4.11.4-intel-2014b-Python-2.7.8.eb b/easybuild/easyconfigs/p/PyQt/PyQt-4.11.4-intel-2014b-Python-2.7.8.eb index 0d39a830f0..a32f597303 100644 --- a/easybuild/easyconfigs/p/PyQt/PyQt-4.11.4-intel-2014b-Python-2.7.8.eb +++ b/easybuild/easyconfigs/p/PyQt/PyQt-4.11.4-intel-2014b-Python-2.7.8.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Bart Verleye # Center for eResearch, Auckland easyblock = 'ConfigureMakePythonPackage' diff --git a/easybuild/easyconfigs/p/PyQt/PyQt-4.11.4-intel-2015a-Python-2.7.9.eb b/easybuild/easyconfigs/p/PyQt/PyQt-4.11.4-intel-2015a-Python-2.7.9.eb index f40c0f4c4b..aa50b0c60d 100644 --- a/easybuild/easyconfigs/p/PyQt/PyQt-4.11.4-intel-2015a-Python-2.7.9.eb +++ b/easybuild/easyconfigs/p/PyQt/PyQt-4.11.4-intel-2015a-Python-2.7.9.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Bart Verleye # Center for eResearch, Auckland easyblock = 'ConfigureMakePythonPackage' diff --git a/easybuild/easyconfigs/p/PyQt/PyQt-4.11.4-intel-2016a-Python-2.7.11.eb b/easybuild/easyconfigs/p/PyQt/PyQt-4.11.4-intel-2016a-Python-2.7.11.eb index a3811f7d21..afceaf85fc 100644 --- a/easybuild/easyconfigs/p/PyQt/PyQt-4.11.4-intel-2016a-Python-2.7.11.eb +++ b/easybuild/easyconfigs/p/PyQt/PyQt-4.11.4-intel-2016a-Python-2.7.11.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Bart Verleye # Center for eResearch, Auckland easyblock = 'ConfigureMakePythonPackage' diff --git a/easybuild/easyconfigs/p/PyQt/PyQt-4.11.4-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/p/PyQt/PyQt-4.11.4-intel-2016b-Python-2.7.12.eb index b495a5ba45..a3cbafa68a 100644 --- a/easybuild/easyconfigs/p/PyQt/PyQt-4.11.4-intel-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/p/PyQt/PyQt-4.11.4-intel-2016b-Python-2.7.12.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Bart Verleye # Center for eResearch, Auckland easyblock = 'ConfigureMakePythonPackage' diff --git a/easybuild/easyconfigs/p/PyQt/PyQt-4.12-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/p/PyQt/PyQt-4.12-foss-2016b-Python-2.7.12.eb index f8e50daad2..52a8b8d0db 100644 --- a/easybuild/easyconfigs/p/PyQt/PyQt-4.12-foss-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/p/PyQt/PyQt-4.12-foss-2016b-Python-2.7.12.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Bart Verleye # Center for eResearch, Auckland easyblock = 'ConfigureMakePythonPackage' diff --git a/easybuild/easyconfigs/p/PyQt/PyQt-4.12-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/p/PyQt/PyQt-4.12-intel-2016b-Python-2.7.12.eb index 8afd4b1225..95b12ce511 100644 --- a/easybuild/easyconfigs/p/PyQt/PyQt-4.12-intel-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/p/PyQt/PyQt-4.12-intel-2016b-Python-2.7.12.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Bart Verleye # Center for eResearch, Auckland easyblock = 'ConfigureMakePythonPackage' diff --git a/easybuild/easyconfigs/p/PyQt/PyQt-4.12-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/p/PyQt/PyQt-4.12-intel-2017a-Python-2.7.13.eb index d5c9f991a7..12cb80c0d5 100644 --- a/easybuild/easyconfigs/p/PyQt/PyQt-4.12-intel-2017a-Python-2.7.13.eb +++ b/easybuild/easyconfigs/p/PyQt/PyQt-4.12-intel-2017a-Python-2.7.13.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Bart Verleye # Center for eResearch, Auckland easyblock = 'ConfigureMakePythonPackage' diff --git a/easybuild/easyconfigs/p/Pysam/Pysam-0.10.0-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/p/Pysam/Pysam-0.10.0-intel-2016b-Python-2.7.12.eb index 624f14ed18..ef54c7fce2 100644 --- a/easybuild/easyconfigs/p/Pysam/Pysam-0.10.0-intel-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/p/Pysam/Pysam-0.10.0-intel-2016b-Python-2.7.12.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/p/Pysam/Pysam-0.9.0-goolf-1.7.20-Python-2.7.11.eb b/easybuild/easyconfigs/p/Pysam/Pysam-0.9.0-goolf-1.7.20-Python-2.7.11.eb index 160f3b3a15..829a039d16 100644 --- a/easybuild/easyconfigs/p/Pysam/Pysam-0.9.0-goolf-1.7.20-Python-2.7.11.eb +++ b/easybuild/easyconfigs/p/Pysam/Pysam-0.9.0-goolf-1.7.20-Python-2.7.11.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/p/Pysam/Pysam-0.9.1.4-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/p/Pysam/Pysam-0.9.1.4-foss-2016b-Python-2.7.12.eb index e283bd562a..93e0a90956 100644 --- a/easybuild/easyconfigs/p/Pysam/Pysam-0.9.1.4-foss-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/p/Pysam/Pysam-0.9.1.4-foss-2016b-Python-2.7.12.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/p/pBWA/pBWA-0.5.9_1.21009-goolf-1.4.10.eb b/easybuild/easyconfigs/p/pBWA/pBWA-0.5.9_1.21009-goolf-1.4.10.eb index f8e2358b4a..4538b1fdca 100644 --- a/easybuild/easyconfigs/p/pBWA/pBWA-0.5.9_1.21009-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/p/pBWA/pBWA-0.5.9_1.21009-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2014 Cyprus Institute # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/p/parallel/parallel-20130122-goolf-1.4.10.eb b/easybuild/easyconfigs/p/parallel/parallel-20130122-goolf-1.4.10.eb index 3810b2de94..3fc50c7310 100644 --- a/easybuild/easyconfigs/p/parallel/parallel-20130122-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/p/parallel/parallel-20130122-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/p/parallel/parallel-20130122-ictce-5.3.0.eb b/easybuild/easyconfigs/p/parallel/parallel-20130122-ictce-5.3.0.eb index fc4fbe41bc..62379f0f87 100644 --- a/easybuild/easyconfigs/p/parallel/parallel-20130122-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/p/parallel/parallel-20130122-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/p/perl-app-cpanminus/perl-app-cpanminus-1.7039.eb b/easybuild/easyconfigs/p/perl-app-cpanminus/perl-app-cpanminus-1.7039.eb index cc1d205d40..2b1fc2a612 100644 --- a/easybuild/easyconfigs/p/perl-app-cpanminus/perl-app-cpanminus-1.7039.eb +++ b/easybuild/easyconfigs/p/perl-app-cpanminus/perl-app-cpanminus-1.7039.eb @@ -1,5 +1,5 @@ ## -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2015 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr diff --git a/easybuild/easyconfigs/p/picard/picard-2.1.0.eb b/easybuild/easyconfigs/p/picard/picard-2.1.0.eb index 702287f8f6..9cc6b0c56a 100644 --- a/easybuild/easyconfigs/p/picard/picard-2.1.0.eb +++ b/easybuild/easyconfigs/p/picard/picard-2.1.0.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Adam Huffman # The Francis Crick Institute diff --git a/easybuild/easyconfigs/p/pigz/pigz-2.3.1-goolf-1.4.10.eb b/easybuild/easyconfigs/p/pigz/pigz-2.3.1-goolf-1.4.10.eb index 9f34b89624..513a7c2b79 100644 --- a/easybuild/easyconfigs/p/pigz/pigz-2.3.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/p/pigz/pigz-2.3.1-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/p/pigz/pigz-2.3.1-ictce-6.2.5.eb b/easybuild/easyconfigs/p/pigz/pigz-2.3.1-ictce-6.2.5.eb index e3e7f189b1..594f9b1a27 100644 --- a/easybuild/easyconfigs/p/pigz/pigz-2.3.1-ictce-6.2.5.eb +++ b/easybuild/easyconfigs/p/pigz/pigz-2.3.1-ictce-6.2.5.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/p/pigz/pigz-2.3.3-foss-2015b.eb b/easybuild/easyconfigs/p/pigz/pigz-2.3.3-foss-2015b.eb index a50f50774e..6bf9fd86a2 100644 --- a/easybuild/easyconfigs/p/pigz/pigz-2.3.3-foss-2015b.eb +++ b/easybuild/easyconfigs/p/pigz/pigz-2.3.3-foss-2015b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/p/pigz/pigz-2.3.3-foss-2016b.eb b/easybuild/easyconfigs/p/pigz/pigz-2.3.3-foss-2016b.eb index 8790ec7dca..0a2b15f59b 100755 --- a/easybuild/easyconfigs/p/pigz/pigz-2.3.3-foss-2016b.eb +++ b/easybuild/easyconfigs/p/pigz/pigz-2.3.3-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/q/QIIME/QIIME-1.9.1.eb b/easybuild/easyconfigs/q/QIIME/QIIME-1.9.1.eb index 4b9209b380..b1a1d1feb4 100644 --- a/easybuild/easyconfigs/q/QIIME/QIIME-1.9.1.eb +++ b/easybuild/easyconfigs/q/QIIME/QIIME-1.9.1.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/q/QuadProg++/QuadProg++-1.2.1-goolf-1.4.10.eb b/easybuild/easyconfigs/q/QuadProg++/QuadProg++-1.2.1-goolf-1.4.10.eb index 16a64ab3be..0a472e9d66 100644 --- a/easybuild/easyconfigs/q/QuadProg++/QuadProg++-1.2.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/q/QuadProg++/QuadProg++-1.2.1-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/q/QuadProg++/QuadProg++-1.2.1-ictce-6.2.5.eb b/easybuild/easyconfigs/q/QuadProg++/QuadProg++-1.2.1-ictce-6.2.5.eb index 8514e49d95..d677851e09 100644 --- a/easybuild/easyconfigs/q/QuadProg++/QuadProg++-1.2.1-ictce-6.2.5.eb +++ b/easybuild/easyconfigs/q/QuadProg++/QuadProg++-1.2.1-ictce-6.2.5.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/q/Quip/Quip-1.1.8-GCC-4.8.2.eb b/easybuild/easyconfigs/q/Quip/Quip-1.1.8-GCC-4.8.2.eb index e4973548b5..91fe68d23d 100644 --- a/easybuild/easyconfigs/q/Quip/Quip-1.1.8-GCC-4.8.2.eb +++ b/easybuild/easyconfigs/q/Quip/Quip-1.1.8-GCC-4.8.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2015 NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/q/qtop/qtop-53-1.eb b/easybuild/easyconfigs/q/qtop/qtop-53-1.eb index 1e12105e71..5c02ce39e5 100644 --- a/easybuild/easyconfigs/q/qtop/qtop-53-1.eb +++ b/easybuild/easyconfigs/q/qtop/qtop-53-1.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/r/RAxML/RAxML-8.1.1-goolf-1.4.10-mpi-avx.eb b/easybuild/easyconfigs/r/RAxML/RAxML-8.1.1-goolf-1.4.10-mpi-avx.eb index d7d22ad5ae..7f1a2331ac 100644 --- a/easybuild/easyconfigs/r/RAxML/RAxML-8.1.1-goolf-1.4.10-mpi-avx.eb +++ b/easybuild/easyconfigs/r/RAxML/RAxML-8.1.1-goolf-1.4.10-mpi-avx.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/r/RAxML/RAxML-8.1.1-goolf-1.4.10-mpi-sse3.eb b/easybuild/easyconfigs/r/RAxML/RAxML-8.1.1-goolf-1.4.10-mpi-sse3.eb index dd4462802c..80e5bb60d4 100644 --- a/easybuild/easyconfigs/r/RAxML/RAxML-8.1.1-goolf-1.4.10-mpi-sse3.eb +++ b/easybuild/easyconfigs/r/RAxML/RAxML-8.1.1-goolf-1.4.10-mpi-sse3.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/r/RAxML/RAxML-8.1.1-goolf-1.4.10-mt-avx.eb b/easybuild/easyconfigs/r/RAxML/RAxML-8.1.1-goolf-1.4.10-mt-avx.eb index d55bca8237..7542264fa7 100644 --- a/easybuild/easyconfigs/r/RAxML/RAxML-8.1.1-goolf-1.4.10-mt-avx.eb +++ b/easybuild/easyconfigs/r/RAxML/RAxML-8.1.1-goolf-1.4.10-mt-avx.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/r/RAxML/RAxML-8.1.1-goolf-1.4.10-mt-sse3.eb b/easybuild/easyconfigs/r/RAxML/RAxML-8.1.1-goolf-1.4.10-mt-sse3.eb index 859f2adbb7..eac6deabda 100644 --- a/easybuild/easyconfigs/r/RAxML/RAxML-8.1.1-goolf-1.4.10-mt-sse3.eb +++ b/easybuild/easyconfigs/r/RAxML/RAxML-8.1.1-goolf-1.4.10-mt-sse3.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/r/RCS/RCS-5.7-goolf-1.4.10.eb b/easybuild/easyconfigs/r/RCS/RCS-5.7-goolf-1.4.10.eb index 1fd62ac72d..525c7dcda5 100644 --- a/easybuild/easyconfigs/r/RCS/RCS-5.7-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/r/RCS/RCS-5.7-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/r/RCS/RCS-5.7-ictce-5.3.0.eb b/easybuild/easyconfigs/r/RCS/RCS-5.7-ictce-5.3.0.eb index ff4020095b..60eaccfc47 100644 --- a/easybuild/easyconfigs/r/RCS/RCS-5.7-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/r/RCS/RCS-5.7-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/r/RNAz/RNAz-2.1-foss-2016b.eb b/easybuild/easyconfigs/r/RNAz/RNAz-2.1-foss-2016b.eb index 4ff67a0efb..642eea5ef8 100644 --- a/easybuild/easyconfigs/r/RNAz/RNAz-2.1-foss-2016b.eb +++ b/easybuild/easyconfigs/r/RNAz/RNAz-2.1-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild easyblock = 'ConfigureMake' diff --git a/easybuild/easyconfigs/r/RNAz/RNAz-2.1-goolf-1.4.10.eb b/easybuild/easyconfigs/r/RNAz/RNAz-2.1-goolf-1.4.10.eb index 2155ac1e76..83c1690c1c 100644 --- a/easybuild/easyconfigs/r/RNAz/RNAz-2.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/r/RNAz/RNAz-2.1-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/r/RNAz/RNAz-2.1-ictce-5.3.0.eb b/easybuild/easyconfigs/r/RNAz/RNAz-2.1-ictce-5.3.0.eb index 03f3c66bab..23460531f8 100644 --- a/easybuild/easyconfigs/r/RNAz/RNAz-2.1-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/r/RNAz/RNAz-2.1-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/r/RSEQtools/RSEQtools-0.6-goolf-1.4.10.eb b/easybuild/easyconfigs/r/RSEQtools/RSEQtools-0.6-goolf-1.4.10.eb index d0bbd7da76..2500753cc5 100644 --- a/easybuild/easyconfigs/r/RSEQtools/RSEQtools-0.6-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/r/RSEQtools/RSEQtools-0.6-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/r/RSeQC/RSeQC-2.6.3-foss-2015b-Python-2.7.10-R-3.2.3.eb b/easybuild/easyconfigs/r/RSeQC/RSeQC-2.6.3-foss-2015b-Python-2.7.10-R-3.2.3.eb index d3a31d723c..2d60c20928 100644 --- a/easybuild/easyconfigs/r/RSeQC/RSeQC-2.6.3-foss-2015b-Python-2.7.10-R-3.2.3.eb +++ b/easybuild/easyconfigs/r/RSeQC/RSeQC-2.6.3-foss-2015b-Python-2.7.10-R-3.2.3.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Adam Huffman # The Francis Crick Institute diff --git a/easybuild/easyconfigs/r/RSeQC/RSeQC-2.6.4-foss-2016b-Python-2.7.12-R-3.3.1.eb b/easybuild/easyconfigs/r/RSeQC/RSeQC-2.6.4-foss-2016b-Python-2.7.12-R-3.3.1.eb index 8df3ba88af..0e7c072381 100644 --- a/easybuild/easyconfigs/r/RSeQC/RSeQC-2.6.4-foss-2016b-Python-2.7.12-R-3.3.1.eb +++ b/easybuild/easyconfigs/r/RSeQC/RSeQC-2.6.4-foss-2016b-Python-2.7.12-R-3.3.1.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Adam Huffman # The Francis Crick Institute diff --git a/easybuild/easyconfigs/r/Reads2snp/Reads2snp-2.0.eb b/easybuild/easyconfigs/r/Reads2snp/Reads2snp-2.0.eb index 462568a58d..99b121a0e8 100644 --- a/easybuild/easyconfigs/r/Reads2snp/Reads2snp-2.0.eb +++ b/easybuild/easyconfigs/r/Reads2snp/Reads2snp-2.0.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/r/rCUDA/rCUDA-4.0.1_linux_64_Ubuntu10.04.eb b/easybuild/easyconfigs/r/rCUDA/rCUDA-4.0.1_linux_64_Ubuntu10.04.eb index 764e0a5654..a2dd96fcb9 100644 --- a/easybuild/easyconfigs/r/rCUDA/rCUDA-4.0.1_linux_64_Ubuntu10.04.eb +++ b/easybuild/easyconfigs/r/rCUDA/rCUDA-4.0.1_linux_64_Ubuntu10.04.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/r/rCUDA/rCUDA-5.0_linux_64_scientificLinux6.eb b/easybuild/easyconfigs/r/rCUDA/rCUDA-5.0_linux_64_scientificLinux6.eb index 67667d2f43..0e88376e1b 100644 --- a/easybuild/easyconfigs/r/rCUDA/rCUDA-5.0_linux_64_scientificLinux6.eb +++ b/easybuild/easyconfigs/r/rCUDA/rCUDA-5.0_linux_64_scientificLinux6.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/r/rSeq/rSeq-0.2.0-goolf-1.4.10.eb b/easybuild/easyconfigs/r/rSeq/rSeq-0.2.0-goolf-1.4.10.eb index 515ad4d74a..de39a6a664 100644 --- a/easybuild/easyconfigs/r/rSeq/rSeq-0.2.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/r/rSeq/rSeq-0.2.0-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/r/rainbow/rainbow-2.0.4-goolf-1.4.10.eb b/easybuild/easyconfigs/r/rainbow/rainbow-2.0.4-goolf-1.4.10.eb index ebe8bfa5d5..cbe0f89b48 100644 --- a/easybuild/easyconfigs/r/rainbow/rainbow-2.0.4-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/r/rainbow/rainbow-2.0.4-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/r/rpmrebuild/rpmrebuild-2.11.eb b/easybuild/easyconfigs/r/rpmrebuild/rpmrebuild-2.11.eb index 5b2154b146..7752f26f31 100644 --- a/easybuild/easyconfigs/r/rpmrebuild/rpmrebuild-2.11.eb +++ b/easybuild/easyconfigs/r/rpmrebuild/rpmrebuild-2.11.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2016 Forschungszentrum Juelich GmbH # Authors:: Damian Alvarez diff --git a/easybuild/easyconfigs/s/SAGE/SAGE-6.3.eb b/easybuild/easyconfigs/s/SAGE/SAGE-6.3.eb index 3c539b01d1..e6e619d7ae 100644 --- a/easybuild/easyconfigs/s/SAGE/SAGE-6.3.eb +++ b/easybuild/easyconfigs/s/SAGE/SAGE-6.3.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Ravi Tripathi # Email: ravi89@uab.edu diff --git a/easybuild/easyconfigs/s/SAGE/SAGE-6.4.eb b/easybuild/easyconfigs/s/SAGE/SAGE-6.4.eb index f518617128..44c08dffd3 100644 --- a/easybuild/easyconfigs/s/SAGE/SAGE-6.4.eb +++ b/easybuild/easyconfigs/s/SAGE/SAGE-6.4.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Ravi Tripathi # Email: ravi89@uab.edu diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.18-goolf-1.4.10.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.18-goolf-1.4.10.eb index 073affc93b..41c9a41b52 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.18-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.18-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.18-ictce-5.3.0.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.18-ictce-5.3.0.eb index 5b8825becb..cb95f09db1 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.18-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.18-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.19-goolf-1.4.10.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.19-goolf-1.4.10.eb index e632ad1cd5..c3c62371e3 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.19-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.19-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.19-ictce-5.5.0.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.19-ictce-5.5.0.eb index d1a3148379..4feaa86295 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.19-ictce-5.5.0.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-0.1.19-ictce-5.5.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.1-foss-2014b.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.1-foss-2014b.eb index 37118ac1e1..fe530c9987 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.1-foss-2014b.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.1-foss-2014b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Robert Schmidt , Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.1-goolf-1.4.10.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.1-goolf-1.4.10.eb index ffeec869d8..6d55792df5 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.1-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.1-intel-2014b.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.1-intel-2014b.eb index f6766acbd2..143b4f0e11 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.1-intel-2014b.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.1-intel-2014b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.1-intel-2015a.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.1-intel-2015a.eb index 805874583a..ec9e8200a5 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.1-intel-2015a.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.1-intel-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.2-foss-2015a-HTSlib-1.2.1.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.2-foss-2015a-HTSlib-1.2.1.eb index 3835083700..e36e28d9bb 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.2-foss-2015a-HTSlib-1.2.1.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.2-foss-2015a-HTSlib-1.2.1.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Robert Schmidt , Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.2-foss-2015a.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.2-foss-2015a.eb index be9360b7e5..a99016b990 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.2-foss-2015a.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.2-foss-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Robert Schmidt , Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.2-foss-2015b.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.2-foss-2015b.eb index 598ba6e51e..e1dd81f160 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.2-foss-2015b.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.2-foss-2015b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Robert Schmidt , Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.2-goolf-1.4.10.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.2-goolf-1.4.10.eb index 97a147d8ec..b93365bdd7 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.2-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.2-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Robert Schmidt , Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.2-goolf-1.7.20.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.2-goolf-1.7.20.eb index e3ff7301d8..ce7c10f8f2 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.2-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.2-goolf-1.7.20.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Robert Schmidt , Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.2-intel-2015a-HTSlib-1.2.1.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.2-intel-2015a-HTSlib-1.2.1.eb index 2896876819..09d30b179c 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.2-intel-2015a-HTSlib-1.2.1.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.2-intel-2015a-HTSlib-1.2.1.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Robert Schmidt , Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.2-intel-2015b-HTSlib-1.2.1.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.2-intel-2015b-HTSlib-1.2.1.eb index 739c632246..303f3a583d 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.2-intel-2015b-HTSlib-1.2.1.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.2-intel-2015b-HTSlib-1.2.1.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Robert Schmidt , Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3-foss-2015b.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3-foss-2015b.eb index 4ff251eb73..63b113948c 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3-foss-2015b.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3-foss-2015b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Robert Schmidt , Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3-foss-2016a.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3-foss-2016a.eb index 96d3b95f0f..40b271c59e 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3-foss-2016a.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Robert Schmidt , Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3-intel-2016a.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3-intel-2016a.eb index d869d21007..20c0daa2e9 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3-intel-2016a.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3-intel-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Robert Schmidt , Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3.1-foss-2015b.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3.1-foss-2015b.eb index a7026c36d0..af67f0ad29 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3.1-foss-2015b.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3.1-foss-2015b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Robert Schmidt , Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3.1-foss-2016a.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3.1-foss-2016a.eb index 7fa65122da..1fcd04d5c5 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3.1-foss-2016a.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3.1-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Robert Schmidt , Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3.1-intel-2016a.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3.1-intel-2016a.eb index 91ca187c34..8a9d0ec272 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3.1-intel-2016a.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3.1-intel-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Robert Schmidt , Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3.1-intel-2016b-HTSlib-1.3.2.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3.1-intel-2016b-HTSlib-1.3.2.eb index cf342e2224..aaae3bc65c 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3.1-intel-2016b-HTSlib-1.3.2.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3.1-intel-2016b-HTSlib-1.3.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Robert Schmidt , Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3.1-intel-2016b.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3.1-intel-2016b.eb index ad73efb9d9..1d3b8759e6 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3.1-intel-2016b.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.3.1-intel-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Robert Schmidt , Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.4-foss-2016b.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.4-foss-2016b.eb index 340f9547b8..becb1e33df 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.4-foss-2016b.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.4-foss-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Robert Schmidt , Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.4-goolf-1.4.10.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.4-goolf-1.4.10.eb index f620000661..a590f0e5c5 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.4-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.4-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Robert Schmidt , Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.4-intel-2016b.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.4-intel-2016b.eb index 3167310f24..5fc351ad68 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.4-intel-2016b.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.4-intel-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Robert Schmidt , Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.4-intel-2017a.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.4-intel-2017a.eb index 86a737bc61..a9362a745f 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.4-intel-2017a.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.4-intel-2017a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Robert Schmidt , Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.4.1-intel-2017a.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.4.1-intel-2017a.eb index cd48ea8cde..1cb0955d19 100644 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.4.1-intel-2017a.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.4.1-intel-2017a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Robert Schmidt , Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.5-intel-2017a.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.5-intel-2017a.eb index 07e6c5020c..ae85c24427 100755 --- a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.5-intel-2017a.eb +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.5-intel-2017a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Robert Schmidt , Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SCALCE/SCALCE-2.7-GCC-4.8.2.eb b/easybuild/easyconfigs/s/SCALCE/SCALCE-2.7-GCC-4.8.2.eb index d732b448eb..ec8b73d725 100644 --- a/easybuild/easyconfigs/s/SCALCE/SCALCE-2.7-GCC-4.8.2.eb +++ b/easybuild/easyconfigs/s/SCALCE/SCALCE-2.7-GCC-4.8.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2015 NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SCANMS/SCANMS-2.02-goolf-1.4.10-Perl-5.16.3.eb b/easybuild/easyconfigs/s/SCANMS/SCANMS-2.02-goolf-1.4.10-Perl-5.16.3.eb index 88fe827b03..607082a502 100644 --- a/easybuild/easyconfigs/s/SCANMS/SCANMS-2.02-goolf-1.4.10-Perl-5.16.3.eb +++ b/easybuild/easyconfigs/s/SCANMS/SCANMS-2.02-goolf-1.4.10-Perl-5.16.3.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/s/SDCC/SDCC-3.3.0.eb b/easybuild/easyconfigs/s/SDCC/SDCC-3.3.0.eb index cd91fac4e4..1d6583cd4c 100644 --- a/easybuild/easyconfigs/s/SDCC/SDCC-3.3.0.eb +++ b/easybuild/easyconfigs/s/SDCC/SDCC-3.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SDL2/SDL2-2.0.4-intel-2016b.eb b/easybuild/easyconfigs/s/SDL2/SDL2-2.0.4-intel-2016b.eb index 9d089f04eb..e43bffbbb4 100644 --- a/easybuild/easyconfigs/s/SDL2/SDL2-2.0.4-intel-2016b.eb +++ b/easybuild/easyconfigs/s/SDL2/SDL2-2.0.4-intel-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SHAPEIT/SHAPEIT-2.r837.GLIBCv2.12.eb b/easybuild/easyconfigs/s/SHAPEIT/SHAPEIT-2.r837.GLIBCv2.12.eb index f2424bbea4..8b988dc0fd 100644 --- a/easybuild/easyconfigs/s/SHAPEIT/SHAPEIT-2.r837.GLIBCv2.12.eb +++ b/easybuild/easyconfigs/s/SHAPEIT/SHAPEIT-2.r837.GLIBCv2.12.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Ravi Tripathi # Email: ravi89@uab.edu diff --git a/easybuild/easyconfigs/s/SIBELia/SIBELia-3.0.4-goolf-1.4.10.eb b/easybuild/easyconfigs/s/SIBELia/SIBELia-3.0.4-goolf-1.4.10.eb index 5c52477972..08978cbb4b 100644 --- a/easybuild/easyconfigs/s/SIBELia/SIBELia-3.0.4-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/s/SIBELia/SIBELia-3.0.4-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/s/SIONlib/SIONlib-1.6.1-foss-2016a-tools.eb b/easybuild/easyconfigs/s/SIONlib/SIONlib-1.6.1-foss-2016a-tools.eb index e773779617..89441506e0 100644 --- a/easybuild/easyconfigs/s/SIONlib/SIONlib-1.6.1-foss-2016a-tools.eb +++ b/easybuild/easyconfigs/s/SIONlib/SIONlib-1.6.1-foss-2016a-tools.eb @@ -1,5 +1,5 @@ ## -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2016 Juelich Supercomputing Centre, Germany # Authors:: Markus Geimer diff --git a/easybuild/easyconfigs/s/SIONlib/SIONlib-1.6.1-foss-2016a.eb b/easybuild/easyconfigs/s/SIONlib/SIONlib-1.6.1-foss-2016a.eb index a093e042cb..ca3d9eb8ab 100644 --- a/easybuild/easyconfigs/s/SIONlib/SIONlib-1.6.1-foss-2016a.eb +++ b/easybuild/easyconfigs/s/SIONlib/SIONlib-1.6.1-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2016 Juelich Supercomputing Centre, Germany # Authors:: Markus Geimer diff --git a/easybuild/easyconfigs/s/SIONlib/SIONlib-1.7.1-foss-2017a-tools.eb b/easybuild/easyconfigs/s/SIONlib/SIONlib-1.7.1-foss-2017a-tools.eb index 1c00d4b38b..d9d11099a3 100644 --- a/easybuild/easyconfigs/s/SIONlib/SIONlib-1.7.1-foss-2017a-tools.eb +++ b/easybuild/easyconfigs/s/SIONlib/SIONlib-1.7.1-foss-2017a-tools.eb @@ -1,5 +1,5 @@ ## -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2016 Juelich Supercomputing Centre, Germany # Authors:: Markus Geimer diff --git a/easybuild/easyconfigs/s/SIONlib/SIONlib-1.7.1-foss-2017a.eb b/easybuild/easyconfigs/s/SIONlib/SIONlib-1.7.1-foss-2017a.eb index 8dd41bb2de..37b3f1f4e7 100644 --- a/easybuild/easyconfigs/s/SIONlib/SIONlib-1.7.1-foss-2017a.eb +++ b/easybuild/easyconfigs/s/SIONlib/SIONlib-1.7.1-foss-2017a.eb @@ -1,5 +1,5 @@ ## -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2016 Juelich Supercomputing Centre, Germany # Authors:: Markus Geimer diff --git a/easybuild/easyconfigs/s/SIP/SIP-4.16.4-goolf-1.5.14-Python-2.7.9.eb b/easybuild/easyconfigs/s/SIP/SIP-4.16.4-goolf-1.5.14-Python-2.7.9.eb index 49346a9d1c..9053298580 100644 --- a/easybuild/easyconfigs/s/SIP/SIP-4.16.4-goolf-1.5.14-Python-2.7.9.eb +++ b/easybuild/easyconfigs/s/SIP/SIP-4.16.4-goolf-1.5.14-Python-2.7.9.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Bart Verleye # Center for eResearch, Auckland easyblock = 'ConfigureMakePythonPackage' diff --git a/easybuild/easyconfigs/s/SIP/SIP-4.16.4-intel-2015a-Python-2.7.9.eb b/easybuild/easyconfigs/s/SIP/SIP-4.16.4-intel-2015a-Python-2.7.9.eb index e61810f5fd..c121f5bccb 100644 --- a/easybuild/easyconfigs/s/SIP/SIP-4.16.4-intel-2015a-Python-2.7.9.eb +++ b/easybuild/easyconfigs/s/SIP/SIP-4.16.4-intel-2015a-Python-2.7.9.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Bart Verleye # Center for eResearch, Auckland easyblock = 'ConfigureMakePythonPackage' diff --git a/easybuild/easyconfigs/s/SIP/SIP-4.16.8-foss-2015a-Python-2.7.9.eb b/easybuild/easyconfigs/s/SIP/SIP-4.16.8-foss-2015a-Python-2.7.9.eb index eed3ec9cee..472bc669ce 100644 --- a/easybuild/easyconfigs/s/SIP/SIP-4.16.8-foss-2015a-Python-2.7.9.eb +++ b/easybuild/easyconfigs/s/SIP/SIP-4.16.8-foss-2015a-Python-2.7.9.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Bart Verleye # Center for eResearch, Auckland easyblock = 'ConfigureMakePythonPackage' diff --git a/easybuild/easyconfigs/s/SIP/SIP-4.16.8-intel-2014b-Python-2.7.8.eb b/easybuild/easyconfigs/s/SIP/SIP-4.16.8-intel-2014b-Python-2.7.8.eb index 517317038b..4370af06f2 100644 --- a/easybuild/easyconfigs/s/SIP/SIP-4.16.8-intel-2014b-Python-2.7.8.eb +++ b/easybuild/easyconfigs/s/SIP/SIP-4.16.8-intel-2014b-Python-2.7.8.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Bart Verleye # Center for eResearch, Auckland easyblock = 'ConfigureMakePythonPackage' diff --git a/easybuild/easyconfigs/s/SIP/SIP-4.16.8-intel-2015a-Python-2.7.9.eb b/easybuild/easyconfigs/s/SIP/SIP-4.16.8-intel-2015a-Python-2.7.9.eb index b2e1479cba..fc5e6d4e1f 100644 --- a/easybuild/easyconfigs/s/SIP/SIP-4.16.8-intel-2015a-Python-2.7.9.eb +++ b/easybuild/easyconfigs/s/SIP/SIP-4.16.8-intel-2015a-Python-2.7.9.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Bart Verleye # Center for eResearch, Auckland easyblock = 'ConfigureMakePythonPackage' diff --git a/easybuild/easyconfigs/s/SIP/SIP-4.18-foss-2016a-Python-2.7.11.eb b/easybuild/easyconfigs/s/SIP/SIP-4.18-foss-2016a-Python-2.7.11.eb index 0ac8c1861d..8d523f3226 100644 --- a/easybuild/easyconfigs/s/SIP/SIP-4.18-foss-2016a-Python-2.7.11.eb +++ b/easybuild/easyconfigs/s/SIP/SIP-4.18-foss-2016a-Python-2.7.11.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Bart Verleye # Center for eResearch, Auckland easyblock = 'ConfigureMakePythonPackage' diff --git a/easybuild/easyconfigs/s/SIP/SIP-4.18-intel-2016a-Python-2.7.11.eb b/easybuild/easyconfigs/s/SIP/SIP-4.18-intel-2016a-Python-2.7.11.eb index b3dda16325..09c013815d 100644 --- a/easybuild/easyconfigs/s/SIP/SIP-4.18-intel-2016a-Python-2.7.11.eb +++ b/easybuild/easyconfigs/s/SIP/SIP-4.18-intel-2016a-Python-2.7.11.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Bart Verleye # Center for eResearch, Auckland easyblock = 'ConfigureMakePythonPackage' diff --git a/easybuild/easyconfigs/s/SIP/SIP-4.18.1-foss-2016a-Python-2.7.11.eb b/easybuild/easyconfigs/s/SIP/SIP-4.18.1-foss-2016a-Python-2.7.11.eb index dbc48b8044..a247773edd 100644 --- a/easybuild/easyconfigs/s/SIP/SIP-4.18.1-foss-2016a-Python-2.7.11.eb +++ b/easybuild/easyconfigs/s/SIP/SIP-4.18.1-foss-2016a-Python-2.7.11.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Bart Verleye # Center for eResearch, Auckland easyblock = 'ConfigureMakePythonPackage' diff --git a/easybuild/easyconfigs/s/SIP/SIP-4.18.1-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/s/SIP/SIP-4.18.1-intel-2016b-Python-2.7.12.eb index 57997a86bf..f0abfcf40e 100644 --- a/easybuild/easyconfigs/s/SIP/SIP-4.18.1-intel-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/s/SIP/SIP-4.18.1-intel-2016b-Python-2.7.12.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Bart Verleye # Center for eResearch, Auckland easyblock = 'ConfigureMakePythonPackage' diff --git a/easybuild/easyconfigs/s/SIP/SIP-4.19-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/s/SIP/SIP-4.19-foss-2016b-Python-2.7.12.eb index be020214d2..9f50c74569 100644 --- a/easybuild/easyconfigs/s/SIP/SIP-4.19-foss-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/s/SIP/SIP-4.19-foss-2016b-Python-2.7.12.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Bart Verleye # Center for eResearch, Auckland easyblock = 'ConfigureMakePythonPackage' diff --git a/easybuild/easyconfigs/s/SIP/SIP-4.19-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/s/SIP/SIP-4.19-intel-2016b-Python-2.7.12.eb index 9f5fa19c24..2e69e76a1a 100644 --- a/easybuild/easyconfigs/s/SIP/SIP-4.19-intel-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/s/SIP/SIP-4.19-intel-2016b-Python-2.7.12.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Bart Verleye # Center for eResearch, Auckland easyblock = 'ConfigureMakePythonPackage' diff --git a/easybuild/easyconfigs/s/SIP/SIP-4.19.2-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/s/SIP/SIP-4.19.2-intel-2017a-Python-2.7.13.eb index c113a20dd9..cea8cbea9c 100644 --- a/easybuild/easyconfigs/s/SIP/SIP-4.19.2-intel-2017a-Python-2.7.13.eb +++ b/easybuild/easyconfigs/s/SIP/SIP-4.19.2-intel-2017a-Python-2.7.13.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Bart Verleye # Center for eResearch, Auckland easyblock = 'ConfigureMakePythonPackage' diff --git a/easybuild/easyconfigs/s/SMALT/SMALT-0.7.5-goolf-1.4.10.eb b/easybuild/easyconfigs/s/SMALT/SMALT-0.7.5-goolf-1.4.10.eb index ed0395223c..07bc8cff7a 100644 --- a/easybuild/easyconfigs/s/SMALT/SMALT-0.7.5-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/s/SMALT/SMALT-0.7.5-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SMALT/SMALT-0.7.5-ictce-5.3.0.eb b/easybuild/easyconfigs/s/SMALT/SMALT-0.7.5-ictce-5.3.0.eb index 16d05cf341..7d14bea6a9 100644 --- a/easybuild/easyconfigs/s/SMALT/SMALT-0.7.5-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/s/SMALT/SMALT-0.7.5-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SOAPaligner/SOAPaligner-2.21_Linux-x86_64.eb b/easybuild/easyconfigs/s/SOAPaligner/SOAPaligner-2.21_Linux-x86_64.eb index 67f7cd27da..8734a7daed 100644 --- a/easybuild/easyconfigs/s/SOAPaligner/SOAPaligner-2.21_Linux-x86_64.eb +++ b/easybuild/easyconfigs/s/SOAPaligner/SOAPaligner-2.21_Linux-x86_64.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/s/SOAPdenovo/SOAPdenovo-1.05-goolf-1.4.10.eb b/easybuild/easyconfigs/s/SOAPdenovo/SOAPdenovo-1.05-goolf-1.4.10.eb index 05651770f2..f288d7f917 100644 --- a/easybuild/easyconfigs/s/SOAPdenovo/SOAPdenovo-1.05-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/s/SOAPdenovo/SOAPdenovo-1.05-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SOAPdenovo/SOAPdenovo-1.05-ictce-5.3.0.eb b/easybuild/easyconfigs/s/SOAPdenovo/SOAPdenovo-1.05-ictce-5.3.0.eb index 0ce4a98f03..762c7d68fd 100644 --- a/easybuild/easyconfigs/s/SOAPdenovo/SOAPdenovo-1.05-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/s/SOAPdenovo/SOAPdenovo-1.05-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SPAdes/SPAdes-3.0.0-goolf-1.4.10.eb b/easybuild/easyconfigs/s/SPAdes/SPAdes-3.0.0-goolf-1.4.10.eb index ab6bd52347..672b4b6174 100644 --- a/easybuild/easyconfigs/s/SPAdes/SPAdes-3.0.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/s/SPAdes/SPAdes-3.0.0-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/s/SPAdes/SPAdes-3.1.0-goolf-1.4.10.eb b/easybuild/easyconfigs/s/SPAdes/SPAdes-3.1.0-goolf-1.4.10.eb index 5eb12170f6..36652b20f0 100644 --- a/easybuild/easyconfigs/s/SPAdes/SPAdes-3.1.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/s/SPAdes/SPAdes-3.1.0-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/s/SPAdes/SPAdes-3.10.1-foss-2016b.eb b/easybuild/easyconfigs/s/SPAdes/SPAdes-3.10.1-foss-2016b.eb index 6e5c9aeb32..5d56e586a2 100644 --- a/easybuild/easyconfigs/s/SPAdes/SPAdes-3.10.1-foss-2016b.eb +++ b/easybuild/easyconfigs/s/SPAdes/SPAdes-3.10.1-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/s/SPAdes/SPAdes-3.6.2-goolf-1.4.10.eb b/easybuild/easyconfigs/s/SPAdes/SPAdes-3.6.2-goolf-1.4.10.eb index b8ae8d0ad8..50ca4cd509 100644 --- a/easybuild/easyconfigs/s/SPAdes/SPAdes-3.6.2-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/s/SPAdes/SPAdes-3.6.2-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/s/SPAdes/SPAdes-3.6.2-goolf-1.7.20.eb b/easybuild/easyconfigs/s/SPAdes/SPAdes-3.6.2-goolf-1.7.20.eb index df712d6830..46422756f7 100644 --- a/easybuild/easyconfigs/s/SPAdes/SPAdes-3.6.2-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/s/SPAdes/SPAdes-3.6.2-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/s/SPAdes/SPAdes-3.9.0-foss-2016a.eb b/easybuild/easyconfigs/s/SPAdes/SPAdes-3.9.0-foss-2016a.eb index af3845c60d..52377a3fe1 100644 --- a/easybuild/easyconfigs/s/SPAdes/SPAdes-3.9.0-foss-2016a.eb +++ b/easybuild/easyconfigs/s/SPAdes/SPAdes-3.9.0-foss-2016a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/s/SPAdes/SPAdes-3.9.0-foss-2016b.eb b/easybuild/easyconfigs/s/SPAdes/SPAdes-3.9.0-foss-2016b.eb index a92f27ffac..00831a4e1c 100644 --- a/easybuild/easyconfigs/s/SPAdes/SPAdes-3.9.0-foss-2016b.eb +++ b/easybuild/easyconfigs/s/SPAdes/SPAdes-3.9.0-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.10.0-foss-2015a.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.10.0-foss-2015a.eb index c435d47a74..17f00411a9 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.10.0-foss-2015a.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.10.0-foss-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-GCC-4.9.3-2.25.eb index 212dfd1d75..16c91c0d28 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-GCC-4.9.3-2.25.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-GCC-5.4.0-2.26.eb index c8632b48d5..1d32b0c2a3 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-GCC-5.4.0-2.26.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-GCCcore-6.3.0.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-GCCcore-6.3.0.eb index f7ba78e654..f9639f1cf8 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-GCCcore-6.3.0.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-GCCcore-6.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-foss-2016.04.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-foss-2016.04.eb index ee0989cdf4..e48edbbcf7 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-foss-2016.04.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-foss-2016.04.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-foss-2016a.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-foss-2016a.eb index ec5703f27d..2bfe96771a 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-foss-2016a.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-foss-2016b.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-foss-2016b.eb index 1c9912537c..c95b85d4e3 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-foss-2016b.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-foss-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-iccifort-2016.3.210-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-iccifort-2016.3.210-GCC-5.4.0-2.26.eb index de897a790e..6e1bb042c8 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-iccifort-2016.3.210-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-iccifort-2016.3.210-GCC-5.4.0-2.26.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-intel-2016b.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-intel-2016b.eb index e6b0322891..701c924942 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-intel-2016b.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.13.0-intel-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.14.1-GCCcore-4.9.3.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.14.1-GCCcore-4.9.3.eb index cb84023340..55a1ec7a89 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.14.1-GCCcore-4.9.3.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.14.1-GCCcore-4.9.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.17.0-GCCcore-6.3.0.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.17.0-GCCcore-6.3.0.eb index 41b5a58bd2..d5d4a80684 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.17.0-GCCcore-6.3.0.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.17.0-GCCcore-6.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.7.17-goolf-1.4.10.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.7.17-goolf-1.4.10.eb index e74d6f7a39..f3308cf41c 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.7.17-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.7.17-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.7.17-ictce-5.3.0.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.7.17-ictce-5.3.0.eb index 30d45082a1..e3447aee6b 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.7.17-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.7.17-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.1-goolf-1.4.10.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.1-goolf-1.4.10.eb index c08623a5a5..f65ec4dae6 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.1-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.1-ictce-5.3.0.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.1-ictce-5.3.0.eb index 05b5ca95c1..80c5606194 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.1-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.1-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-GCC-4.9.3-2.25.eb index 15a228e4cf..2a4b96094a 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-GCC-4.9.3-2.25.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-GNU-4.9.3-2.25.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-GNU-4.9.3-2.25.eb index 87526d7754..8ce08d273d 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-GNU-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-GNU-4.9.3-2.25.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-foss-2015a.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-foss-2015a.eb index 0e3d5b0943..9fe38bf12a 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-foss-2015a.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-foss-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-foss-2015b.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-foss-2015b.eb index 3cdb5e9a31..5a806bef03 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-foss-2015b.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-foss-2015b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-gimkl-2.11.5.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-gimkl-2.11.5.eb index c9bee3d1d5..0d4572d689 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-gimkl-2.11.5.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-gimkl-2.11.5.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-goolf-1.4.10.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-goolf-1.4.10.eb index 2b1f98a6ac..e01c868906 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-goolf-1.7.20.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-goolf-1.7.20.eb index 86716967ff..7fb046898e 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-goolf-1.7.20.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-intel-2015a.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-intel-2015a.eb index 70270519d3..8738842f40 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-intel-2015a.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-intel-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-intel-2015b.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-intel-2015b.eb index 5c38e72b1a..94e236ef73 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-intel-2015b.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.10.2-intel-2015b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.4.1-goolf-1.4.10.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.4.1-goolf-1.4.10.eb index 0a07713fbb..db742635b8 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.4.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.4.1-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Luxembourg Centre for Systems Biomedicine # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.5-goolf-1.4.10.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.5-goolf-1.4.10.eb index 72f8da9d34..6cd5fb9e4f 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.5-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.5-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.6-ictce-5.5.0.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.6-ictce-5.5.0.eb index ac855e7cba..883edbcbca 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.6-ictce-5.5.0.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.6-ictce-5.5.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.6-intel-2014b.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.6-intel-2014b.eb index f0ed15f86c..00aa9db433 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.6-intel-2014b.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.6-intel-2014b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-GCC-4.8.4.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-GCC-4.8.4.eb index 27cd84d7ec..77933d168b 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-GCC-4.8.4.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-GCC-4.8.4.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-GCC-4.9.2.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-GCC-4.9.2.eb index ed00f7b981..53c285b780 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-GCC-4.9.2.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-GCC-4.9.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-foss-2015.05.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-foss-2015.05.eb index 5e77859d07..bc6c9dd40e 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-foss-2015.05.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-foss-2015.05.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-foss-2015a.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-foss-2015a.eb index a8d05d1f18..2916ae6c7e 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-foss-2015a.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-foss-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-foss-2015b.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-foss-2015b.eb index b3cfb08afd..fb622bfe69 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-foss-2015b.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-foss-2015b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-gompi-1.5.16.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-gompi-1.5.16.eb index d4af19e4fa..55e1cd7d9f 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-gompi-1.5.16.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-gompi-1.5.16.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-goolf-1.5.14.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-goolf-1.5.14.eb index 763de183e3..31dbee8c48 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-goolf-1.5.14.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-goolf-1.5.14.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-goolf-1.5.16.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-goolf-1.5.16.eb index 6946daaee7..c93baeda44 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-goolf-1.5.16.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-goolf-1.5.16.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-goolf-1.7.20.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-goolf-1.7.20.eb index ee10abf948..53e7f6572d 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-goolf-1.7.20.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-intel-2015a.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-intel-2015a.eb index f5e96601f1..3dcf095ade 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-intel-2015a.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.8.1-intel-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.9-foss-2015a.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.9-foss-2015a.eb index 8c66a0ef4c..dd707477c9 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.8.9-foss-2015a.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.8.9-foss-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Luxembourg Centre for Systems Biomedicine # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-CrayGNU-2015.11.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-CrayGNU-2015.11.eb index 408f74829a..9084d936c8 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-CrayGNU-2015.11.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-CrayGNU-2015.11.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-CrayGNU-2016.03.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-CrayGNU-2016.03.eb index 5c92bc8136..2eb44c755d 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-CrayGNU-2016.03.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-CrayGNU-2016.03.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-GCC-4.9.3-2.25.eb index 5c86155323..bb425e87a7 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-GCC-4.9.3-2.25.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-foss-2016a.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-foss-2016a.eb index 8902612f46..f7d80fd057 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-foss-2016a.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-gimkl-2.11.5.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-gimkl-2.11.5.eb index 4b9cea2422..55a3d892fc 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-gimkl-2.11.5.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-gimkl-2.11.5.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-goolf-1.7.20.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-goolf-1.7.20.eb index d75861cbb6..b694c4fcaa 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-goolf-1.7.20.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-intel-2015b.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-intel-2015b.eb index 177a74a0fb..28138bf968 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-intel-2015b.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-intel-2015b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-intel-2016.02-GCC-4.9.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-intel-2016.02-GCC-4.9.eb index 885ab346a9..ecce43f756 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-intel-2016.02-GCC-4.9.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-intel-2016.02-GCC-4.9.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-intel-2016a.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-intel-2016a.eb index 46583c5246..21da189572 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-intel-2016a.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-intel-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-iomkl-2016.07.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-iomkl-2016.07.eb index c1a72bbbe4..fb1547876e 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-iomkl-2016.07.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-iomkl-2016.07.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-iomkl-2016.09-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-iomkl-2016.09-GCC-4.9.3-2.25.eb index 68f9f01974..3de2d7ff50 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-iomkl-2016.09-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.9.2-iomkl-2016.09-GCC-4.9.3-2.25.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-2.3.5-centos_linux64.eb b/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-2.3.5-centos_linux64.eb index fc325c12fd..cfbdcb45e7 100644 --- a/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-2.3.5-centos_linux64.eb +++ b/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-2.3.5-centos_linux64.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-2.5.4-1-centos_linux64.eb b/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-2.5.4-1-centos_linux64.eb index 54156d4303..263ce2d19f 100644 --- a/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-2.5.4-1-centos_linux64.eb +++ b/easybuild/easyconfigs/s/SRA-Toolkit/SRA-Toolkit-2.5.4-1-centos_linux64.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/s/SSAHA2/SSAHA2-2.5.5-i686.eb b/easybuild/easyconfigs/s/SSAHA2/SSAHA2-2.5.5-i686.eb index 0e8750aa56..c7d58c5217 100644 --- a/easybuild/easyconfigs/s/SSAHA2/SSAHA2-2.5.5-i686.eb +++ b/easybuild/easyconfigs/s/SSAHA2/SSAHA2-2.5.5-i686.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/s/SSAHA2/SSAHA2-2.5.5-x86_64.eb b/easybuild/easyconfigs/s/SSAHA2/SSAHA2-2.5.5-x86_64.eb index ea1f495c8a..24b10cedf9 100644 --- a/easybuild/easyconfigs/s/SSAHA2/SSAHA2-2.5.5-x86_64.eb +++ b/easybuild/easyconfigs/s/SSAHA2/SSAHA2-2.5.5-x86_64.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/s/STAR-Fusion/STAR-Fusion-0.6.0-goolf-1.4.10-Perl-5.16.3.eb b/easybuild/easyconfigs/s/STAR-Fusion/STAR-Fusion-0.6.0-goolf-1.4.10-Perl-5.16.3.eb index c87beb9409..4b19365503 100644 --- a/easybuild/easyconfigs/s/STAR-Fusion/STAR-Fusion-0.6.0-goolf-1.4.10-Perl-5.16.3.eb +++ b/easybuild/easyconfigs/s/STAR-Fusion/STAR-Fusion-0.6.0-goolf-1.4.10-Perl-5.16.3.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/s/STAR/STAR-2.3.0e-goolf-1.4.10.eb b/easybuild/easyconfigs/s/STAR/STAR-2.3.0e-goolf-1.4.10.eb index c819f307db..851afee495 100644 --- a/easybuild/easyconfigs/s/STAR/STAR-2.3.0e-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/s/STAR/STAR-2.3.0e-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/s/STAR/STAR-2.5.0a-GNU-4.9.3-2.25.eb b/easybuild/easyconfigs/s/STAR/STAR-2.5.0a-GNU-4.9.3-2.25.eb index 04188b3f1a..c464f7f180 100644 --- a/easybuild/easyconfigs/s/STAR/STAR-2.5.0a-GNU-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/s/STAR/STAR-2.5.0a-GNU-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/s/STAR/STAR-2.5.0a-goolf-1.4.10.eb b/easybuild/easyconfigs/s/STAR/STAR-2.5.0a-goolf-1.4.10.eb index 457ab933f7..3b0c1e3f28 100644 --- a/easybuild/easyconfigs/s/STAR/STAR-2.5.0a-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/s/STAR/STAR-2.5.0a-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/s/STAR/STAR-2.5.1b-foss-2015b.eb b/easybuild/easyconfigs/s/STAR/STAR-2.5.1b-foss-2015b.eb index b4f28e006e..ce729a34b0 100644 --- a/easybuild/easyconfigs/s/STAR/STAR-2.5.1b-foss-2015b.eb +++ b/easybuild/easyconfigs/s/STAR/STAR-2.5.1b-foss-2015b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/s/STAR/STAR-2.5.1b-goolf-1.4.10.eb b/easybuild/easyconfigs/s/STAR/STAR-2.5.1b-goolf-1.4.10.eb index acf5436cbe..6147b68e4b 100644 --- a/easybuild/easyconfigs/s/STAR/STAR-2.5.1b-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/s/STAR/STAR-2.5.1b-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/s/STAR/STAR-2.5.2a-foss-2016a.eb b/easybuild/easyconfigs/s/STAR/STAR-2.5.2a-foss-2016a.eb index 43cc47b2aa..47cc2f8fb8 100644 --- a/easybuild/easyconfigs/s/STAR/STAR-2.5.2a-foss-2016a.eb +++ b/easybuild/easyconfigs/s/STAR/STAR-2.5.2a-foss-2016a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/s/STAR/STAR-2.5.2a-goolf-1.7.20.eb b/easybuild/easyconfigs/s/STAR/STAR-2.5.2a-goolf-1.7.20.eb index d8c6f0be04..6655aaf699 100644 --- a/easybuild/easyconfigs/s/STAR/STAR-2.5.2a-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/s/STAR/STAR-2.5.2a-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/s/STAR/STAR-2.5.2b-intel-2016b.eb b/easybuild/easyconfigs/s/STAR/STAR-2.5.2b-intel-2016b.eb index 05c3e56c2f..fdff081070 100644 --- a/easybuild/easyconfigs/s/STAR/STAR-2.5.2b-intel-2016b.eb +++ b/easybuild/easyconfigs/s/STAR/STAR-2.5.2b-intel-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/s/STAR/STAR-2.5.3a-intel-2017a.eb b/easybuild/easyconfigs/s/STAR/STAR-2.5.3a-intel-2017a.eb index 7bb56d5efd..02ac65a9a0 100644 --- a/easybuild/easyconfigs/s/STAR/STAR-2.5.3a-intel-2017a.eb +++ b/easybuild/easyconfigs/s/STAR/STAR-2.5.3a-intel-2017a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/s/Sambamba/Sambamba-0.6.6.eb b/easybuild/easyconfigs/s/Sambamba/Sambamba-0.6.6.eb index 8b68d940d5..aaa111b447 100644 --- a/easybuild/easyconfigs/s/Sambamba/Sambamba-0.6.6.eb +++ b/easybuild/easyconfigs/s/Sambamba/Sambamba-0.6.6.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/s/Scalasca/Scalasca-2.2-foss-2015a.eb b/easybuild/easyconfigs/s/Scalasca/Scalasca-2.2-foss-2015a.eb index 55d127b2f7..9c891ad200 100644 --- a/easybuild/easyconfigs/s/Scalasca/Scalasca-2.2-foss-2015a.eb +++ b/easybuild/easyconfigs/s/Scalasca/Scalasca-2.2-foss-2015a.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/s/Scalasca/Scalasca-2.3-foss-2016a.eb b/easybuild/easyconfigs/s/Scalasca/Scalasca-2.3-foss-2016a.eb index 250c8ea829..f768f2c53c 100644 --- a/easybuild/easyconfigs/s/Scalasca/Scalasca-2.3-foss-2016a.eb +++ b/easybuild/easyconfigs/s/Scalasca/Scalasca-2.3-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013-2016 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # Markus Geimer diff --git a/easybuild/easyconfigs/s/Score-P/Score-P-1.2.1-goolf-1.5.14.eb b/easybuild/easyconfigs/s/Score-P/Score-P-1.2.1-goolf-1.5.14.eb index df0333c95e..26a76a0f44 100644 --- a/easybuild/easyconfigs/s/Score-P/Score-P-1.2.1-goolf-1.5.14.eb +++ b/easybuild/easyconfigs/s/Score-P/Score-P-1.2.1-goolf-1.5.14.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/s/Score-P/Score-P-1.2.3-goolf-1.5.14.eb b/easybuild/easyconfigs/s/Score-P/Score-P-1.2.3-goolf-1.5.14.eb index 137bacee9c..3f22891997 100644 --- a/easybuild/easyconfigs/s/Score-P/Score-P-1.2.3-goolf-1.5.14.eb +++ b/easybuild/easyconfigs/s/Score-P/Score-P-1.2.3-goolf-1.5.14.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Authors:: Jordi Blasco # License:: New BSD # diff --git a/easybuild/easyconfigs/s/Score-P/Score-P-1.4-foss-2015a.eb b/easybuild/easyconfigs/s/Score-P/Score-P-1.4-foss-2015a.eb index 91b0941367..c70a882623 100644 --- a/easybuild/easyconfigs/s/Score-P/Score-P-1.4-foss-2015a.eb +++ b/easybuild/easyconfigs/s/Score-P/Score-P-1.4-foss-2015a.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/s/Score-P/Score-P-2.0.1-foss-2016a.eb b/easybuild/easyconfigs/s/Score-P/Score-P-2.0.1-foss-2016a.eb index 5df9e5efff..65fe9f43f3 100644 --- a/easybuild/easyconfigs/s/Score-P/Score-P-2.0.1-foss-2016a.eb +++ b/easybuild/easyconfigs/s/Score-P/Score-P-2.0.1-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013-2016 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # Markus Geimer diff --git a/easybuild/easyconfigs/s/Seaborn/Seaborn-0.6.0-goolf-1.4.10-Python-2.7.5.eb b/easybuild/easyconfigs/s/Seaborn/Seaborn-0.6.0-goolf-1.4.10-Python-2.7.5.eb index 8a86868303..31c53447fc 100644 --- a/easybuild/easyconfigs/s/Seaborn/Seaborn-0.6.0-goolf-1.4.10-Python-2.7.5.eb +++ b/easybuild/easyconfigs/s/Seaborn/Seaborn-0.6.0-goolf-1.4.10-Python-2.7.5.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics (SIB) # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/s/Seaborn/Seaborn-0.6.0-intel-2015b-Python-2.7.10.eb b/easybuild/easyconfigs/s/Seaborn/Seaborn-0.6.0-intel-2015b-Python-2.7.10.eb index a2b58989a1..1cbfd0027a 100644 --- a/easybuild/easyconfigs/s/Seaborn/Seaborn-0.6.0-intel-2015b-Python-2.7.10.eb +++ b/easybuild/easyconfigs/s/Seaborn/Seaborn-0.6.0-intel-2015b-Python-2.7.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics (SIB) # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/s/Seaborn/Seaborn-0.7.1-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/s/Seaborn/Seaborn-0.7.1-intel-2016b-Python-2.7.12.eb index c0dc9e45f8..e80e2daca5 100644 --- a/easybuild/easyconfigs/s/Seaborn/Seaborn-0.7.1-intel-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/s/Seaborn/Seaborn-0.7.1-intel-2016b-Python-2.7.12.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics (SIB) # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/s/SelEstim/SelEstim-1.1.4-Linux-64bits.eb b/easybuild/easyconfigs/s/SelEstim/SelEstim-1.1.4-Linux-64bits.eb index 1b943d4062..a54e53ac82 100644 --- a/easybuild/easyconfigs/s/SelEstim/SelEstim-1.1.4-Linux-64bits.eb +++ b/easybuild/easyconfigs/s/SelEstim/SelEstim-1.1.4-Linux-64bits.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/s/SeqAn/SeqAn-2.3.2-foss-2016b.eb b/easybuild/easyconfigs/s/SeqAn/SeqAn-2.3.2-foss-2016b.eb index d894a7f03a..1d596bb25f 100644 --- a/easybuild/easyconfigs/s/SeqAn/SeqAn-2.3.2-foss-2016b.eb +++ b/easybuild/easyconfigs/s/SeqAn/SeqAn-2.3.2-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/s/SeqPrep/SeqPrep-1.2-goolf-1.7.20.eb b/easybuild/easyconfigs/s/SeqPrep/SeqPrep-1.2-goolf-1.7.20.eb index 86ba1ed78f..5baf4c3200 100644 --- a/easybuild/easyconfigs/s/SeqPrep/SeqPrep-1.2-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/s/SeqPrep/SeqPrep-1.2-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/s/Seqmagick/Seqmagick-0.6.1-foss-2016a-Python-2.7.11.eb b/easybuild/easyconfigs/s/Seqmagick/Seqmagick-0.6.1-foss-2016a-Python-2.7.11.eb index ae2145d3df..e171a32650 100644 --- a/easybuild/easyconfigs/s/Seqmagick/Seqmagick-0.6.1-foss-2016a-Python-2.7.11.eb +++ b/easybuild/easyconfigs/s/Seqmagick/Seqmagick-0.6.1-foss-2016a-Python-2.7.11.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2016 University of Geneva Switzerland # Authors:: Yann Sagon diff --git a/easybuild/easyconfigs/s/SoX/SoX-14.4.2-foss-2015a.eb b/easybuild/easyconfigs/s/SoX/SoX-14.4.2-foss-2015a.eb index a71ba0bca6..08b010527a 100644 --- a/easybuild/easyconfigs/s/SoX/SoX-14.4.2-foss-2015a.eb +++ b/easybuild/easyconfigs/s/SoX/SoX-14.4.2-foss-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Author: Stephane Thiell ### diff --git a/easybuild/easyconfigs/s/SolexaQA++/SolexaQA++-3.1.5-foss-2016b.eb b/easybuild/easyconfigs/s/SolexaQA++/SolexaQA++-3.1.5-foss-2016b.eb index bb975b50f8..ba655d3a43 100644 --- a/easybuild/easyconfigs/s/SolexaQA++/SolexaQA++-3.1.5-foss-2016b.eb +++ b/easybuild/easyconfigs/s/SolexaQA++/SolexaQA++-3.1.5-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Adam Huffman # The Francis Crick Institute easyblock = 'MakeCp' diff --git a/easybuild/easyconfigs/s/SortMeRNA/SortMeRNA-2.1-foss-2016a.eb b/easybuild/easyconfigs/s/SortMeRNA/SortMeRNA-2.1-foss-2016a.eb index 6af29bdb8b..4a5290e878 100644 --- a/easybuild/easyconfigs/s/SortMeRNA/SortMeRNA-2.1-foss-2016a.eb +++ b/easybuild/easyconfigs/s/SortMeRNA/SortMeRNA-2.1-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/s/Stow/Stow-1.3.3-goolf-1.4.10.eb b/easybuild/easyconfigs/s/Stow/Stow-1.3.3-goolf-1.4.10.eb index df639eb5dc..ab80ccc5bd 100644 --- a/easybuild/easyconfigs/s/Stow/Stow-1.3.3-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/s/Stow/Stow-1.3.3-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/Stow/Stow-1.3.3-ictce-5.3.0.eb b/easybuild/easyconfigs/s/Stow/Stow-1.3.3-ictce-5.3.0.eb index 43fedd4e90..4a0685460a 100644 --- a/easybuild/easyconfigs/s/Stow/Stow-1.3.3-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/s/Stow/Stow-1.3.3-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/s/StringTie/StringTie-1.2.2-goolf-1.4.10.eb b/easybuild/easyconfigs/s/StringTie/StringTie-1.2.2-goolf-1.4.10.eb index f2c6a5db74..0d9f6439b2 100644 --- a/easybuild/easyconfigs/s/StringTie/StringTie-1.2.2-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/s/StringTie/StringTie-1.2.2-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/s/StringTie/StringTie-1.3.0-intel-2016b.eb b/easybuild/easyconfigs/s/StringTie/StringTie-1.3.0-intel-2016b.eb index 69634c30e6..6f1084f664 100644 --- a/easybuild/easyconfigs/s/StringTie/StringTie-1.3.0-intel-2016b.eb +++ b/easybuild/easyconfigs/s/StringTie/StringTie-1.3.0-intel-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/s/StringTie/StringTie-1.3.3-intel-2017a.eb b/easybuild/easyconfigs/s/StringTie/StringTie-1.3.3-intel-2017a.eb index 2476496f2d..0d4e070e86 100644 --- a/easybuild/easyconfigs/s/StringTie/StringTie-1.3.3-intel-2017a.eb +++ b/easybuild/easyconfigs/s/StringTie/StringTie-1.3.3-intel-2017a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/s/StringTie/StringTie-1.3.3b-foss-2016b.eb b/easybuild/easyconfigs/s/StringTie/StringTie-1.3.3b-foss-2016b.eb index d1eb27f7fe..3924753a79 100644 --- a/easybuild/easyconfigs/s/StringTie/StringTie-1.3.3b-foss-2016b.eb +++ b/easybuild/easyconfigs/s/StringTie/StringTie-1.3.3b-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild easyblock = 'MakeCp' diff --git a/easybuild/easyconfigs/s/Subread/Subread-1.5.0-p1-foss-2015b.eb b/easybuild/easyconfigs/s/Subread/Subread-1.5.0-p1-foss-2015b.eb index 612c514399..ca748e8873 100644 --- a/easybuild/easyconfigs/s/Subread/Subread-1.5.0-p1-foss-2015b.eb +++ b/easybuild/easyconfigs/s/Subread/Subread-1.5.0-p1-foss-2015b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Adam Huffman # The Francis Crick Institute easyblock = 'MakeCp' diff --git a/easybuild/easyconfigs/s/Subread/Subread-1.5.0-p1-foss-2016a.eb b/easybuild/easyconfigs/s/Subread/Subread-1.5.0-p1-foss-2016a.eb index e525a015c8..3ea35d4e6e 100644 --- a/easybuild/easyconfigs/s/Subread/Subread-1.5.0-p1-foss-2016a.eb +++ b/easybuild/easyconfigs/s/Subread/Subread-1.5.0-p1-foss-2016a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Adam Huffman # The Francis Crick Institute easyblock = 'MakeCp' diff --git a/easybuild/easyconfigs/s/Subread/Subread-1.5.0-p1-foss-2016b.eb b/easybuild/easyconfigs/s/Subread/Subread-1.5.0-p1-foss-2016b.eb index ecdac2f7d2..baebc0d989 100644 --- a/easybuild/easyconfigs/s/Subread/Subread-1.5.0-p1-foss-2016b.eb +++ b/easybuild/easyconfigs/s/Subread/Subread-1.5.0-p1-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Adam Huffman # The Francis Crick Institute easyblock = 'MakeCp' diff --git a/easybuild/easyconfigs/s/samblaster/samblaster-0.1.24-goolf-1.7.20.eb b/easybuild/easyconfigs/s/samblaster/samblaster-0.1.24-goolf-1.7.20.eb index 5c35b43fcc..3f53f0997a 100644 --- a/easybuild/easyconfigs/s/samblaster/samblaster-0.1.24-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/s/samblaster/samblaster-0.1.24-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/s/segemehl/segemehl-0.1.7-goolf-1.4.10.eb b/easybuild/easyconfigs/s/segemehl/segemehl-0.1.7-goolf-1.4.10.eb index 0c7b7b159e..beef8b39ec 100644 --- a/easybuild/easyconfigs/s/segemehl/segemehl-0.1.7-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/s/segemehl/segemehl-0.1.7-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/s/segemehl/segemehl-0.2.0-foss-2016b.eb b/easybuild/easyconfigs/s/segemehl/segemehl-0.2.0-foss-2016b.eb index 3f36bab3c9..09a2f081e9 100644 --- a/easybuild/easyconfigs/s/segemehl/segemehl-0.2.0-foss-2016b.eb +++ b/easybuild/easyconfigs/s/segemehl/segemehl-0.2.0-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild easyblock = 'MakeCp' diff --git a/easybuild/easyconfigs/s/segemehl/segemehl-0.2.0-goolf-1.4.10.eb b/easybuild/easyconfigs/s/segemehl/segemehl-0.2.0-goolf-1.4.10.eb index a9245a0b76..beeb661537 100644 --- a/easybuild/easyconfigs/s/segemehl/segemehl-0.2.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/s/segemehl/segemehl-0.2.0-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/s/sickle/sickle-1.210-goolf-1.4.10-bab15f7.eb b/easybuild/easyconfigs/s/sickle/sickle-1.210-goolf-1.4.10-bab15f7.eb index a2500b9e04..bc93dbaa1d 100644 --- a/easybuild/easyconfigs/s/sickle/sickle-1.210-goolf-1.4.10-bab15f7.eb +++ b/easybuild/easyconfigs/s/sickle/sickle-1.210-goolf-1.4.10-bab15f7.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/s/skewer/skewer-0.2.2-goolf-1.7.20.eb b/easybuild/easyconfigs/s/skewer/skewer-0.2.2-goolf-1.7.20.eb index 89547eb928..51eeeb8491 100644 --- a/easybuild/easyconfigs/s/skewer/skewer-0.2.2-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/s/skewer/skewer-0.2.2-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/s/splitRef/splitRef-0.0.2.eb b/easybuild/easyconfigs/s/splitRef/splitRef-0.0.2.eb index 88fc3d4707..306703a33f 100644 --- a/easybuild/easyconfigs/s/splitRef/splitRef-0.0.2.eb +++ b/easybuild/easyconfigs/s/splitRef/splitRef-0.0.2.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/s/sratoolkit/sratoolkit-2.5.7.eb b/easybuild/easyconfigs/s/sratoolkit/sratoolkit-2.5.7.eb index b3d358e4a3..adcf73dd1b 100644 --- a/easybuild/easyconfigs/s/sratoolkit/sratoolkit-2.5.7.eb +++ b/easybuild/easyconfigs/s/sratoolkit/sratoolkit-2.5.7.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Author: Adam Huffman # adam.huffman@crick.ac.uk diff --git a/easybuild/easyconfigs/s/stress/stress-1.0.4-goolf-1.7.20.eb b/easybuild/easyconfigs/s/stress/stress-1.0.4-goolf-1.7.20.eb index e91ebd2437..004ae31693 100644 --- a/easybuild/easyconfigs/s/stress/stress-1.0.4-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/s/stress/stress-1.0.4-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/s/synchronicity/synchronicity-1.1.9.1-foss-2015b-R-3.2.3.eb b/easybuild/easyconfigs/s/synchronicity/synchronicity-1.1.9.1-foss-2015b-R-3.2.3.eb index f056af2b4f..56b9997a88 100644 --- a/easybuild/easyconfigs/s/synchronicity/synchronicity-1.1.9.1-foss-2015b-R-3.2.3.eb +++ b/easybuild/easyconfigs/s/synchronicity/synchronicity-1.1.9.1-foss-2015b-R-3.2.3.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Author: Adam Huffman # The Francis Crick Institute diff --git a/easybuild/easyconfigs/t/TAU/TAU-2.22.2-goolf-1.5.14.eb b/easybuild/easyconfigs/t/TAU/TAU-2.22.2-goolf-1.5.14.eb index 72a246892c..211ff82a35 100644 --- a/easybuild/easyconfigs/t/TAU/TAU-2.22.2-goolf-1.5.14.eb +++ b/easybuild/easyconfigs/t/TAU/TAU-2.22.2-goolf-1.5.14.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/t/TCC/TCC-0.9.26.eb b/easybuild/easyconfigs/t/TCC/TCC-0.9.26.eb index c502d5385e..e97300a69c 100644 --- a/easybuild/easyconfigs/t/TCC/TCC-0.9.26.eb +++ b/easybuild/easyconfigs/t/TCC/TCC-0.9.26.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/t/TREE-PUZZLE/TREE-PUZZLE-5.2-goolf-1.4.10.eb b/easybuild/easyconfigs/t/TREE-PUZZLE/TREE-PUZZLE-5.2-goolf-1.4.10.eb index c6409b2a07..3ffa16eea4 100644 --- a/easybuild/easyconfigs/t/TREE-PUZZLE/TREE-PUZZLE-5.2-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/t/TREE-PUZZLE/TREE-PUZZLE-5.2-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/t/Tar/Tar-1.26-goolf-1.4.10.eb b/easybuild/easyconfigs/t/Tar/Tar-1.26-goolf-1.4.10.eb index 69b3b4ca40..d39813bb2e 100644 --- a/easybuild/easyconfigs/t/Tar/Tar-1.26-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/t/Tar/Tar-1.26-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright (c) 2012-2013 Cyprus Institute / CaSToRC # Authors:: Thekla Loizou diff --git a/easybuild/easyconfigs/t/Tar/Tar-1.26-ictce-5.3.0.eb b/easybuild/easyconfigs/t/Tar/Tar-1.26-ictce-5.3.0.eb index 20133db903..7791f62bfc 100644 --- a/easybuild/easyconfigs/t/Tar/Tar-1.26-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/t/Tar/Tar-1.26-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild recipy as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild recipy as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright (c) 2012-2013 Cyprus Institute / CaSToRC # Author:: Thekla Loizou diff --git a/easybuild/easyconfigs/t/Tesla-Deployment-Kit/Tesla-Deployment-Kit-5.319.43.eb b/easybuild/easyconfigs/t/Tesla-Deployment-Kit/Tesla-Deployment-Kit-5.319.43.eb index af40f4958d..e759c8ef98 100644 --- a/easybuild/easyconfigs/t/Tesla-Deployment-Kit/Tesla-Deployment-Kit-5.319.43.eb +++ b/easybuild/easyconfigs/t/Tesla-Deployment-Kit/Tesla-Deployment-Kit-5.319.43.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/t/TopHat/TopHat-2.0.10-ictce-5.5.0.eb b/easybuild/easyconfigs/t/TopHat/TopHat-2.0.10-ictce-5.5.0.eb index 063b42af9e..febb5f6fbb 100644 --- a/easybuild/easyconfigs/t/TopHat/TopHat-2.0.10-ictce-5.5.0.eb +++ b/easybuild/easyconfigs/t/TopHat/TopHat-2.0.10-ictce-5.5.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos , Jens Timmerman diff --git a/easybuild/easyconfigs/t/TopHat/TopHat-2.0.13-goolf-1.7.20.eb b/easybuild/easyconfigs/t/TopHat/TopHat-2.0.13-goolf-1.7.20.eb index d99d70b100..43d3b55138 100644 --- a/easybuild/easyconfigs/t/TopHat/TopHat-2.0.13-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/t/TopHat/TopHat-2.0.13-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/t/TopHat/TopHat-2.0.14-goolf-1.7.20.eb b/easybuild/easyconfigs/t/TopHat/TopHat-2.0.14-goolf-1.7.20.eb index 6743572399..63c44a4d0f 100644 --- a/easybuild/easyconfigs/t/TopHat/TopHat-2.0.14-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/t/TopHat/TopHat-2.0.14-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/t/TopHat/TopHat-2.0.4-goolf-1.4.10.eb b/easybuild/easyconfigs/t/TopHat/TopHat-2.0.4-goolf-1.4.10.eb index 0136815261..22225c98c3 100644 --- a/easybuild/easyconfigs/t/TopHat/TopHat-2.0.4-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/t/TopHat/TopHat-2.0.4-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/t/TopHat/TopHat-2.0.8-goolf-1.4.10-biodeps-1.6-extended.eb b/easybuild/easyconfigs/t/TopHat/TopHat-2.0.8-goolf-1.4.10-biodeps-1.6-extended.eb index dff35b1d3f..c3104a01d2 100644 --- a/easybuild/easyconfigs/t/TopHat/TopHat-2.0.8-goolf-1.4.10-biodeps-1.6-extended.eb +++ b/easybuild/easyconfigs/t/TopHat/TopHat-2.0.8-goolf-1.4.10-biodeps-1.6-extended.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/t/TopHat/TopHat-2.0.8-ictce-5.3.0-biodeps-1.6-extended.eb b/easybuild/easyconfigs/t/TopHat/TopHat-2.0.8-ictce-5.3.0-biodeps-1.6-extended.eb index 5890c30330..30a6d4d9a9 100644 --- a/easybuild/easyconfigs/t/TopHat/TopHat-2.0.8-ictce-5.3.0-biodeps-1.6-extended.eb +++ b/easybuild/easyconfigs/t/TopHat/TopHat-2.0.8-ictce-5.3.0-biodeps-1.6-extended.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/t/TopHat/TopHat-2.0.8-ictce-5.3.0.eb b/easybuild/easyconfigs/t/TopHat/TopHat-2.0.8-ictce-5.3.0.eb index 60dbbd04a5..900fa70d9e 100644 --- a/easybuild/easyconfigs/t/TopHat/TopHat-2.0.8-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/t/TopHat/TopHat-2.0.8-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos , Jens Timmerman diff --git a/easybuild/easyconfigs/t/TopHat/TopHat-2.1.0-intel-2015b.eb b/easybuild/easyconfigs/t/TopHat/TopHat-2.1.0-intel-2015b.eb index f7aede356f..41077a3e98 100644 --- a/easybuild/easyconfigs/t/TopHat/TopHat-2.1.0-intel-2015b.eb +++ b/easybuild/easyconfigs/t/TopHat/TopHat-2.1.0-intel-2015b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/t/TopHat/TopHat-2.1.1-foss-2015b.eb b/easybuild/easyconfigs/t/TopHat/TopHat-2.1.1-foss-2015b.eb index 3bdcb05552..2dd3fe0d6e 100644 --- a/easybuild/easyconfigs/t/TopHat/TopHat-2.1.1-foss-2015b.eb +++ b/easybuild/easyconfigs/t/TopHat/TopHat-2.1.1-foss-2015b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/t/TopHat/TopHat-2.1.1-foss-2016a.eb b/easybuild/easyconfigs/t/TopHat/TopHat-2.1.1-foss-2016a.eb index bf3b1885b2..e3d8f194e2 100644 --- a/easybuild/easyconfigs/t/TopHat/TopHat-2.1.1-foss-2016a.eb +++ b/easybuild/easyconfigs/t/TopHat/TopHat-2.1.1-foss-2016a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/t/TopHat/TopHat-2.1.1-intel-2017a.eb b/easybuild/easyconfigs/t/TopHat/TopHat-2.1.1-intel-2017a.eb index f3be80ad62..f3a9590faf 100644 --- a/easybuild/easyconfigs/t/TopHat/TopHat-2.1.1-intel-2017a.eb +++ b/easybuild/easyconfigs/t/TopHat/TopHat-2.1.1-intel-2017a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/t/TotalView/TotalView-8.11.0-0-linux-x86-64.eb b/easybuild/easyconfigs/t/TotalView/TotalView-8.11.0-0-linux-x86-64.eb index edea937fc8..2994b54774 100644 --- a/easybuild/easyconfigs/t/TotalView/TotalView-8.11.0-0-linux-x86-64.eb +++ b/easybuild/easyconfigs/t/TotalView/TotalView-8.11.0-0-linux-x86-64.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/t/TotalView/TotalView-8.11.0-2-linux-x86-64.eb b/easybuild/easyconfigs/t/TotalView/TotalView-8.11.0-2-linux-x86-64.eb index 7af5c3b6cd..b17b02345e 100644 --- a/easybuild/easyconfigs/t/TotalView/TotalView-8.11.0-2-linux-x86-64.eb +++ b/easybuild/easyconfigs/t/TotalView/TotalView-8.11.0-2-linux-x86-64.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild recipy as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild recipy as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/t/TotalView/TotalView-8.12.0-0-linux-x86-64.eb b/easybuild/easyconfigs/t/TotalView/TotalView-8.12.0-0-linux-x86-64.eb index 69f8803b05..2a37a8ab13 100644 --- a/easybuild/easyconfigs/t/TotalView/TotalView-8.12.0-0-linux-x86-64.eb +++ b/easybuild/easyconfigs/t/TotalView/TotalView-8.12.0-0-linux-x86-64.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild recipy as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild recipy as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/t/Trimmomatic/Trimmomatic-0.32-Java-1.7.0_80.eb b/easybuild/easyconfigs/t/Trimmomatic/Trimmomatic-0.32-Java-1.7.0_80.eb index 091f914cb3..bcb8cdfed4 100644 --- a/easybuild/easyconfigs/t/Trimmomatic/Trimmomatic-0.32-Java-1.7.0_80.eb +++ b/easybuild/easyconfigs/t/Trimmomatic/Trimmomatic-0.32-Java-1.7.0_80.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/t/Trinity/Trinity-2.0.4-goolf-1.4.10.eb b/easybuild/easyconfigs/t/Trinity/Trinity-2.0.4-goolf-1.4.10.eb index 1f448f04b9..821333d6ef 100644 --- a/easybuild/easyconfigs/t/Trinity/Trinity-2.0.4-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/t/Trinity/Trinity-2.0.4-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/t/Trinity/Trinity-2.0.6-goolf-1.4.10.eb b/easybuild/easyconfigs/t/Trinity/Trinity-2.0.6-goolf-1.4.10.eb index 30e64b353f..014e8ca411 100644 --- a/easybuild/easyconfigs/t/Trinity/Trinity-2.0.6-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/t/Trinity/Trinity-2.0.6-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/t/Trinity/Trinity-2.2.0-foss-2016a.eb b/easybuild/easyconfigs/t/Trinity/Trinity-2.2.0-foss-2016a.eb index 181142b3db..b4e2affc99 100644 --- a/easybuild/easyconfigs/t/Trinity/Trinity-2.2.0-foss-2016a.eb +++ b/easybuild/easyconfigs/t/Trinity/Trinity-2.2.0-foss-2016a.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/t/tabix/tabix-0.2.6-goolf-1.4.10.eb b/easybuild/easyconfigs/t/tabix/tabix-0.2.6-goolf-1.4.10.eb index e138adfe4c..6169c8b9f9 100644 --- a/easybuild/easyconfigs/t/tabix/tabix-0.2.6-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/t/tabix/tabix-0.2.6-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/t/tabix/tabix-0.2.6-intel-2014b.eb b/easybuild/easyconfigs/t/tabix/tabix-0.2.6-intel-2014b.eb index af291cd25c..beb5e691d0 100644 --- a/easybuild/easyconfigs/t/tabix/tabix-0.2.6-intel-2014b.eb +++ b/easybuild/easyconfigs/t/tabix/tabix-0.2.6-intel-2014b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/t/tabix/tabix-0.2.6-intel-2016b.eb b/easybuild/easyconfigs/t/tabix/tabix-0.2.6-intel-2016b.eb index ef8197538d..6524a38488 100644 --- a/easybuild/easyconfigs/t/tabix/tabix-0.2.6-intel-2016b.eb +++ b/easybuild/easyconfigs/t/tabix/tabix-0.2.6-intel-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-CrayGNU-2015.06.eb b/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-CrayGNU-2015.06.eb index bf01430fff..09047308c7 100644 --- a/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-CrayGNU-2015.06.eb +++ b/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-CrayGNU-2015.06.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Computer Science and Communications Research Unit # Authors:: Valentin Plugaru diff --git a/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-CrayGNU-2015.11.eb b/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-CrayGNU-2015.11.eb index 57a30b1d87..b79551e930 100644 --- a/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-CrayGNU-2015.11.eb +++ b/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-CrayGNU-2015.11.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Computer Science and Communications Research Unit # Authors:: Valentin Plugaru diff --git a/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-CrayIntel-2015.11.eb b/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-CrayIntel-2015.11.eb index 558feb7579..79fccb1726 100644 --- a/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-CrayIntel-2015.11.eb +++ b/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-CrayIntel-2015.11.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Computer Science and Communications Research Unit # Authors:: Valentin Plugaru diff --git a/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-foss-2015a.eb b/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-foss-2015a.eb index 4b5f7237ff..20e7328d6b 100644 --- a/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-foss-2015a.eb +++ b/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-foss-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Computer Science and Communications Research Unit # Authors:: Valentin Plugaru diff --git a/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-goolf-1.4.10.eb b/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-goolf-1.4.10.eb index a414135707..a3d8189e6b 100644 --- a/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Computer Science and Communications Research Unit # Authors:: Valentin Plugaru diff --git a/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-goolf-1.5.14.eb b/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-goolf-1.5.14.eb index 5e7647f183..2997563ac9 100644 --- a/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-goolf-1.5.14.eb +++ b/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-goolf-1.5.14.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Computer Science and Communications Research Unit # Authors:: Valentin Plugaru diff --git a/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-ictce-5.3.0.eb b/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-ictce-5.3.0.eb index 432a9ad37d..7adcf86b00 100644 --- a/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Computer Science and Communications Research Unit # Authors:: Valentin Plugaru diff --git a/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-intel-2014b.eb b/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-intel-2014b.eb index 648d6836c1..4cfdeaa84c 100644 --- a/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-intel-2014b.eb +++ b/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-intel-2014b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Computer Science and Communications Research Unit # Authors:: Valentin Plugaru diff --git a/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-intel-2015a.eb b/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-intel-2015a.eb index 747d099188..ba0c2dc9f5 100644 --- a/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-intel-2015a.eb +++ b/easybuild/easyconfigs/t/tcsh/tcsh-6.18.01-intel-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Computer Science and Communications Research Unit # Authors:: Valentin Plugaru diff --git a/easybuild/easyconfigs/t/tcsh/tcsh-6.19.00-intel-2015a.eb b/easybuild/easyconfigs/t/tcsh/tcsh-6.19.00-intel-2015a.eb index ef7cef982f..a1e7c5f53c 100644 --- a/easybuild/easyconfigs/t/tcsh/tcsh-6.19.00-intel-2015a.eb +++ b/easybuild/easyconfigs/t/tcsh/tcsh-6.19.00-intel-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Computer Science and Communications Research Unit # Authors:: Valentin Plugaru diff --git a/easybuild/easyconfigs/t/tcsh/tcsh-6.19.00-intel-2016a.eb b/easybuild/easyconfigs/t/tcsh/tcsh-6.19.00-intel-2016a.eb index 4a02bab4b4..3f9f04e15c 100644 --- a/easybuild/easyconfigs/t/tcsh/tcsh-6.19.00-intel-2016a.eb +++ b/easybuild/easyconfigs/t/tcsh/tcsh-6.19.00-intel-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Computer Science and Communications Research Unit # Authors:: Valentin Plugaru diff --git a/easybuild/easyconfigs/t/tcsh/tcsh-6.20.00-GCCcore-5.4.0.eb b/easybuild/easyconfigs/t/tcsh/tcsh-6.20.00-GCCcore-5.4.0.eb index 1413bb1d34..7522e28d25 100644 --- a/easybuild/easyconfigs/t/tcsh/tcsh-6.20.00-GCCcore-5.4.0.eb +++ b/easybuild/easyconfigs/t/tcsh/tcsh-6.20.00-GCCcore-5.4.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg/Computer Science and Communications Research Unit # Authors:: Valentin Plugaru diff --git a/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.1.24-goolf-1.4.10.eb b/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.1.24-goolf-1.4.10.eb index 72d80a88dd..2ab471b817 100644 --- a/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.1.24-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.1.24-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg, Ghent University # Authors:: Fotis Georgatos , Kenneth Hoste (Ghent University) diff --git a/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.1.24-ictce-5.2.0.eb b/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.1.24-ictce-5.2.0.eb index 6769cda969..638cd3928b 100644 --- a/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.1.24-ictce-5.2.0.eb +++ b/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.1.24-ictce-5.2.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg, Ghent University # Authors:: Fotis Georgatos , Kenneth Hoste (Ghent University) diff --git a/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.1.24-ictce-5.3.0.eb b/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.1.24-ictce-5.3.0.eb index 13138db3b0..bec670c6aa 100644 --- a/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.1.24-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.1.24-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg, Ghent University # Authors:: Fotis Georgatos , Kenneth Hoste (Ghent University) diff --git a/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.1.24-ictce-5.4.0.eb b/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.1.24-ictce-5.4.0.eb index 39dc1241a0..6aff879dc7 100644 --- a/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.1.24-ictce-5.4.0.eb +++ b/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.1.24-ictce-5.4.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg, Ghent University # Authors:: Fotis Georgatos , Kenneth Hoste (Ghent University) diff --git a/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.1.24-intel-2014b.eb b/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.1.24-intel-2014b.eb index e773e384b2..432d91c019 100644 --- a/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.1.24-intel-2014b.eb +++ b/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.1.24-intel-2014b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg, Ghent University # Authors:: Fotis Georgatos , Kenneth Hoste (Ghent University) diff --git a/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.2.19-intel-2015a.eb b/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.2.19-intel-2015a.eb index 964a50f27f..4cb77bfe4a 100644 --- a/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.2.19-intel-2015a.eb +++ b/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.2.19-intel-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg, Ghent University # Authors:: Fotis Georgatos , Kenneth Hoste (Ghent University) diff --git a/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.2.19-intel-2015b.eb b/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.2.19-intel-2015b.eb index efdb4ae86f..b02471d463 100644 --- a/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.2.19-intel-2015b.eb +++ b/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.2.19-intel-2015b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg, Ghent University # Authors:: Fotis Georgatos , Kenneth Hoste (Ghent University) diff --git a/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.2.20-foss-2016a.eb b/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.2.20-foss-2016a.eb index a1f9ee01f4..72be70a029 100644 --- a/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.2.20-foss-2016a.eb +++ b/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.2.20-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg, Ghent University # Authors:: Fotis Georgatos , Kenneth Hoste (Ghent University) diff --git a/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.2.20-intel-2016b.eb b/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.2.20-intel-2016b.eb index ae9bb8dae3..318c851243 100644 --- a/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.2.20-intel-2016b.eb +++ b/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.2.20-intel-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg, Ghent University # Authors:: Fotis Georgatos , Kenneth Hoste (Ghent University) diff --git a/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.2.24-intel-2017a.eb b/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.2.24-intel-2017a.eb index 0e89a4b4d6..70717c12c1 100644 --- a/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.2.24-intel-2017a.eb +++ b/easybuild/easyconfigs/u/UDUNITS/UDUNITS-2.2.24-intel-2017a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 University of Luxembourg, Ghent University # Authors:: Fotis Georgatos , Kenneth Hoste (Ghent University) diff --git a/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.11-goolf-1.4.10-Perl-5.16.3.eb b/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.11-goolf-1.4.10-Perl-5.16.3.eb index 47c30351f2..fbb9094225 100644 --- a/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.11-goolf-1.4.10-Perl-5.16.3.eb +++ b/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.11-goolf-1.4.10-Perl-5.16.3.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.11-ictce-5.5.0-Perl-5.16.3.eb b/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.11-ictce-5.5.0-Perl-5.16.3.eb index 1350a7b674..d9afc1fbcd 100644 --- a/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.11-ictce-5.5.0-Perl-5.16.3.eb +++ b/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.11-ictce-5.5.0-Perl-5.16.3.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.12-goolf-1.4.10-Perl-5.16.3.eb b/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.12-goolf-1.4.10-Perl-5.16.3.eb index 26093f8c38..9ba6154d14 100644 --- a/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.12-goolf-1.4.10-Perl-5.16.3.eb +++ b/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.12-goolf-1.4.10-Perl-5.16.3.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.14-foss-2015b-Perl-5.20.3.eb b/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.14-foss-2015b-Perl-5.20.3.eb index 9d1e642f25..c64bd42cd9 100644 --- a/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.14-foss-2015b-Perl-5.20.3.eb +++ b/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.14-foss-2015b-Perl-5.20.3.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.14-foss-2016a-Perl-5.22.1.eb b/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.14-foss-2016a-Perl-5.22.1.eb index c7db740277..a5698a5603 100644 --- a/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.14-foss-2016a-Perl-5.22.1.eb +++ b/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.14-foss-2016a-Perl-5.22.1.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.14-goolf-1.4.10-Perl-5.16.3.eb b/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.14-goolf-1.4.10-Perl-5.16.3.eb index 1213968867..46e460924a 100644 --- a/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.14-goolf-1.4.10-Perl-5.16.3.eb +++ b/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.14-goolf-1.4.10-Perl-5.16.3.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.14-goolf-1.7.20-Perl-5.22.2.eb b/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.14-goolf-1.7.20-Perl-5.22.2.eb index 0a12c2e817..d984b53e5f 100644 --- a/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.14-goolf-1.7.20-Perl-5.22.2.eb +++ b/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.14-goolf-1.7.20-Perl-5.22.2.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.14-intel-2016a-Perl-5.22.1.eb b/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.14-intel-2016a-Perl-5.22.1.eb index 9f1d001bfa..08f1cb8b26 100644 --- a/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.14-intel-2016a-Perl-5.22.1.eb +++ b/easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.14-intel-2016a-Perl-5.22.1.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/v/VEGAS/VEGAS-0.8.27.eb b/easybuild/easyconfigs/v/VEGAS/VEGAS-0.8.27.eb index 367fff5696..ecaa08a980 100644 --- a/easybuild/easyconfigs/v/VEGAS/VEGAS-0.8.27.eb +++ b/easybuild/easyconfigs/v/VEGAS/VEGAS-0.8.27.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Ravi Tripathi # Email: ravi89@uab.edu diff --git a/easybuild/easyconfigs/v/VMD/VMD-1.9.3-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/v/VMD/VMD-1.9.3-intel-2016b-Python-2.7.12.eb index 54be12bcef..2f45c3f95b 100644 --- a/easybuild/easyconfigs/v/VMD/VMD-1.9.3-intel-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/v/VMD/VMD-1.9.3-intel-2016b-Python-2.7.12.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Authors:: Stephane Thiell ## name = 'VMD' diff --git a/easybuild/easyconfigs/v/VTK/VTK-5.10.1-goolf-1.4.10.eb b/easybuild/easyconfigs/v/VTK/VTK-5.10.1-goolf-1.4.10.eb index 8849734f1b..93686e2ec1 100644 --- a/easybuild/easyconfigs/v/VTK/VTK-5.10.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/v/VTK/VTK-5.10.1-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/v/VTK/VTK-5.10.1-ictce-5.3.0.eb b/easybuild/easyconfigs/v/VTK/VTK-5.10.1-ictce-5.3.0.eb index 45d8b25c17..9bb845d1ba 100644 --- a/easybuild/easyconfigs/v/VTK/VTK-5.10.1-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/v/VTK/VTK-5.10.1-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/v/VTK/VTK-6.3.0-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/v/VTK/VTK-6.3.0-foss-2016b-Python-2.7.12.eb index 71edba0d68..053267f953 100644 --- a/easybuild/easyconfigs/v/VTK/VTK-6.3.0-foss-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/v/VTK/VTK-6.3.0-foss-2016b-Python-2.7.12.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/v/VTK/VTK-6.3.0-intel-2015b-Python-2.7.11.eb b/easybuild/easyconfigs/v/VTK/VTK-6.3.0-intel-2015b-Python-2.7.11.eb index 94b031902b..4bb971d12b 100644 --- a/easybuild/easyconfigs/v/VTK/VTK-6.3.0-intel-2015b-Python-2.7.11.eb +++ b/easybuild/easyconfigs/v/VTK/VTK-6.3.0-intel-2015b-Python-2.7.11.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/v/VTK/VTK-6.3.0-intel-2016a-Python-2.7.11.eb b/easybuild/easyconfigs/v/VTK/VTK-6.3.0-intel-2016a-Python-2.7.11.eb index e549b2e963..8128b35ee7 100644 --- a/easybuild/easyconfigs/v/VTK/VTK-6.3.0-intel-2016a-Python-2.7.11.eb +++ b/easybuild/easyconfigs/v/VTK/VTK-6.3.0-intel-2016a-Python-2.7.11.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/v/VTK/VTK-6.3.0-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/v/VTK/VTK-6.3.0-intel-2016b-Python-2.7.12.eb index d63c30f413..164e61a3e9 100644 --- a/easybuild/easyconfigs/v/VTK/VTK-6.3.0-intel-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/v/VTK/VTK-6.3.0-intel-2016b-Python-2.7.12.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/v/VTK/VTK-7.0.0-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/v/VTK/VTK-7.0.0-intel-2016b-Python-2.7.12.eb index ce85c69cbd..ed12cc491a 100644 --- a/easybuild/easyconfigs/v/VTK/VTK-7.0.0-intel-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/v/VTK/VTK-7.0.0-intel-2016b-Python-2.7.12.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/v/VTK/VTK-7.1.0-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/v/VTK/VTK-7.1.0-intel-2016b-Python-2.7.12.eb index ff2f4a0f63..748919048a 100644 --- a/easybuild/easyconfigs/v/VTK/VTK-7.1.0-intel-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/v/VTK/VTK-7.1.0-intel-2016b-Python-2.7.12.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/v/VTK/VTK-7.1.1-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/v/VTK/VTK-7.1.1-intel-2017a-Python-2.7.13.eb index e0221778a4..dffb09bfb6 100644 --- a/easybuild/easyconfigs/v/VTK/VTK-7.1.1-intel-2017a-Python-2.7.13.eb +++ b/easybuild/easyconfigs/v/VTK/VTK-7.1.1-intel-2017a-Python-2.7.13.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/v/Valgrind/Valgrind-3.8.1-goolf-1.4.10.eb b/easybuild/easyconfigs/v/Valgrind/Valgrind-3.8.1-goolf-1.4.10.eb index 577f4846d8..f191980d63 100644 --- a/easybuild/easyconfigs/v/Valgrind/Valgrind-3.8.1-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/v/Valgrind/Valgrind-3.8.1-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/v/Vampir/Vampir-8.4.1-demo.eb b/easybuild/easyconfigs/v/Vampir/Vampir-8.4.1-demo.eb index 85c8901493..920b6b2d14 100644 --- a/easybuild/easyconfigs/v/Vampir/Vampir-8.4.1-demo.eb +++ b/easybuild/easyconfigs/v/Vampir/Vampir-8.4.1-demo.eb @@ -1,5 +1,5 @@ ## -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2015 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr diff --git a/easybuild/easyconfigs/v/Vampir/Vampir-8.4.1.eb b/easybuild/easyconfigs/v/Vampir/Vampir-8.4.1.eb index a25a9d20e8..d365513d88 100644 --- a/easybuild/easyconfigs/v/Vampir/Vampir-8.4.1.eb +++ b/easybuild/easyconfigs/v/Vampir/Vampir-8.4.1.eb @@ -1,5 +1,5 @@ ## -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2015 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr diff --git a/easybuild/easyconfigs/v/VampirServer/VampirServer-8.4.1-gompi-2015a.eb b/easybuild/easyconfigs/v/VampirServer/VampirServer-8.4.1-gompi-2015a.eb index 6a97299365..17cc603f5a 100644 --- a/easybuild/easyconfigs/v/VampirServer/VampirServer-8.4.1-gompi-2015a.eb +++ b/easybuild/easyconfigs/v/VampirServer/VampirServer-8.4.1-gompi-2015a.eb @@ -1,5 +1,5 @@ ## -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013-2015 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr diff --git a/easybuild/easyconfigs/v/VampirTrace/VampirTrace-5.14.4-goolf-1.5.14.eb b/easybuild/easyconfigs/v/VampirTrace/VampirTrace-5.14.4-goolf-1.5.14.eb index 8c1fc2104f..55d368233c 100644 --- a/easybuild/easyconfigs/v/VampirTrace/VampirTrace-5.14.4-goolf-1.5.14.eb +++ b/easybuild/easyconfigs/v/VampirTrace/VampirTrace-5.14.4-goolf-1.5.14.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/v/VarScan/VarScan-2.3.6-Java-1.7.0_80.eb b/easybuild/easyconfigs/v/VarScan/VarScan-2.3.6-Java-1.7.0_80.eb index 88844689a5..afd1980045 100644 --- a/easybuild/easyconfigs/v/VarScan/VarScan-2.3.6-Java-1.7.0_80.eb +++ b/easybuild/easyconfigs/v/VarScan/VarScan-2.3.6-Java-1.7.0_80.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Adam Huffman # The Francis Crick Institute diff --git a/easybuild/easyconfigs/v/VarScan/VarScan-2.4.1-Java-1.7.0_80.eb b/easybuild/easyconfigs/v/VarScan/VarScan-2.4.1-Java-1.7.0_80.eb index dd6c6f31b0..b1573bf27c 100644 --- a/easybuild/easyconfigs/v/VarScan/VarScan-2.4.1-Java-1.7.0_80.eb +++ b/easybuild/easyconfigs/v/VarScan/VarScan-2.4.1-Java-1.7.0_80.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Adam Huffman, based on initial work by Jordi Blasco # The Francis Crick Institute diff --git a/easybuild/easyconfigs/v/Velvet/Velvet-1.2.07-goolf-1.4.10.eb b/easybuild/easyconfigs/v/Velvet/Velvet-1.2.07-goolf-1.4.10.eb index 8e5bf1c81c..1a83b16bd6 100644 --- a/easybuild/easyconfigs/v/Velvet/Velvet-1.2.07-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/v/Velvet/Velvet-1.2.07-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/v/Velvet/Velvet-1.2.07-ictce-5.3.0.eb b/easybuild/easyconfigs/v/Velvet/Velvet-1.2.07-ictce-5.3.0.eb index 7fff5ef5b5..fab2964040 100644 --- a/easybuild/easyconfigs/v/Velvet/Velvet-1.2.07-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/v/Velvet/Velvet-1.2.07-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/v/Velvet/Velvet-1.2.09-goolf-1.4.10.eb b/easybuild/easyconfigs/v/Velvet/Velvet-1.2.09-goolf-1.4.10.eb index e2ba08da33..310c71d1cf 100644 --- a/easybuild/easyconfigs/v/Velvet/Velvet-1.2.09-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/v/Velvet/Velvet-1.2.09-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Thekla Loizou , Andreas Panteli diff --git a/easybuild/easyconfigs/v/Velvet/Velvet-1.2.09-ictce-5.3.0.eb b/easybuild/easyconfigs/v/Velvet/Velvet-1.2.09-ictce-5.3.0.eb index 24b79e8841..df2799a1c3 100644 --- a/easybuild/easyconfigs/v/Velvet/Velvet-1.2.09-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/v/Velvet/Velvet-1.2.09-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Thekla Loizou , Andreas Panteli diff --git a/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-goolf-1.4.10-mt-kmer_31.eb b/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-goolf-1.4.10-mt-kmer_31.eb index 7c27a7683f..99932f6b56 100644 --- a/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-goolf-1.4.10-mt-kmer_31.eb +++ b/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-goolf-1.4.10-mt-kmer_31.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Thekla Loizou , Andreas Panteli diff --git a/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-goolf-1.4.10-mt-kmer_57.eb b/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-goolf-1.4.10-mt-kmer_57.eb index 8457ee4903..41695b9d6e 100644 --- a/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-goolf-1.4.10-mt-kmer_57.eb +++ b/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-goolf-1.4.10-mt-kmer_57.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Thekla Loizou , Andreas Panteli diff --git a/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-goolf-1.4.10-mt-kmer_63.eb b/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-goolf-1.4.10-mt-kmer_63.eb index ad56fb1790..e2cb044179 100644 --- a/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-goolf-1.4.10-mt-kmer_63.eb +++ b/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-goolf-1.4.10-mt-kmer_63.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Thekla Loizou , Andreas Panteli diff --git a/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-intel-2015b-mt-kmer_100-Perl-5.20.3.eb b/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-intel-2015b-mt-kmer_100-Perl-5.20.3.eb index d05f4f9c7a..0c9debe597 100644 --- a/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-intel-2015b-mt-kmer_100-Perl-5.20.3.eb +++ b/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-intel-2015b-mt-kmer_100-Perl-5.20.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA, 2012-2013 The Cyprus Institute # Authors:: Cedric Laczny , Fotis Georgatos , diff --git a/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-intel-2015b-mt-kmer_100.eb b/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-intel-2015b-mt-kmer_100.eb index 52c0ab85db..7fc70475a3 100644 --- a/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-intel-2015b-mt-kmer_100.eb +++ b/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-intel-2015b-mt-kmer_100.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA, 2012-2013 The Cyprus Institute # Authors:: Cedric Laczny , Fotis Georgatos , diff --git a/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-intel-2015b-mt-kmer_31-Perl-5.20.3.eb b/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-intel-2015b-mt-kmer_31-Perl-5.20.3.eb index fe2df81ad0..8ee19aee56 100644 --- a/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-intel-2015b-mt-kmer_31-Perl-5.20.3.eb +++ b/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-intel-2015b-mt-kmer_31-Perl-5.20.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA, 2012-2013 The Cyprus Institute # Authors:: Cedric Laczny , Fotis Georgatos , diff --git a/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-intel-2015b-mt-kmer_31.eb b/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-intel-2015b-mt-kmer_31.eb index c23584dddd..fe1e76769e 100644 --- a/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-intel-2015b-mt-kmer_31.eb +++ b/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-intel-2015b-mt-kmer_31.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA, 2012-2013 The Cyprus Institute # Authors:: Cedric Laczny , Fotis Georgatos , diff --git a/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-intel-2017a-mt-kmer_37.eb b/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-intel-2017a-mt-kmer_37.eb index 19b58c6e52..8e2cfba9b5 100644 --- a/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-intel-2017a-mt-kmer_37.eb +++ b/easybuild/easyconfigs/v/Velvet/Velvet-1.2.10-intel-2017a-mt-kmer_37.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA, 2012-2013 The Cyprus Institute # Authors:: Cedric Laczny , Fotis Georgatos , diff --git a/easybuild/easyconfigs/v/ViennaRNA/ViennaRNA-2.0.7-goolf-1.4.10.eb b/easybuild/easyconfigs/v/ViennaRNA/ViennaRNA-2.0.7-goolf-1.4.10.eb index 45a8cbb1a5..924f3ce2cc 100644 --- a/easybuild/easyconfigs/v/ViennaRNA/ViennaRNA-2.0.7-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/v/ViennaRNA/ViennaRNA-2.0.7-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/v/ViennaRNA/ViennaRNA-2.0.7-ictce-5.3.0.eb b/easybuild/easyconfigs/v/ViennaRNA/ViennaRNA-2.0.7-ictce-5.3.0.eb index fafae9335e..cf8e038130 100644 --- a/easybuild/easyconfigs/v/ViennaRNA/ViennaRNA-2.0.7-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/v/ViennaRNA/ViennaRNA-2.0.7-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/v/ViennaRNA/ViennaRNA-2.1.6-ictce-5.5.0.eb b/easybuild/easyconfigs/v/ViennaRNA/ViennaRNA-2.1.6-ictce-5.5.0.eb index 29c51c1030..b1d2ca1c12 100644 --- a/easybuild/easyconfigs/v/ViennaRNA/ViennaRNA-2.1.6-ictce-5.5.0.eb +++ b/easybuild/easyconfigs/v/ViennaRNA/ViennaRNA-2.1.6-ictce-5.5.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/v/ViennaRNA/ViennaRNA-2.2.3-intel-2016b.eb b/easybuild/easyconfigs/v/ViennaRNA/ViennaRNA-2.2.3-intel-2016b.eb index 3214395e25..dc5c973772 100644 --- a/easybuild/easyconfigs/v/ViennaRNA/ViennaRNA-2.2.3-intel-2016b.eb +++ b/easybuild/easyconfigs/v/ViennaRNA/ViennaRNA-2.2.3-intel-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/v/ViennaRNA/ViennaRNA-2.3.4-foss-2016b.eb b/easybuild/easyconfigs/v/ViennaRNA/ViennaRNA-2.3.4-foss-2016b.eb index ec625ff6c6..4f26e4b2b5 100644 --- a/easybuild/easyconfigs/v/ViennaRNA/ViennaRNA-2.3.4-foss-2016b.eb +++ b/easybuild/easyconfigs/v/ViennaRNA/ViennaRNA-2.3.4-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild easyblock = 'ConfigureMake' diff --git a/easybuild/easyconfigs/v/ViennaRNA/ViennaRNA-2.3.5-intel-2017a.eb b/easybuild/easyconfigs/v/ViennaRNA/ViennaRNA-2.3.5-intel-2017a.eb index fc2a6f62b8..1232bbbdcc 100644 --- a/easybuild/easyconfigs/v/ViennaRNA/ViennaRNA-2.3.5-intel-2017a.eb +++ b/easybuild/easyconfigs/v/ViennaRNA/ViennaRNA-2.3.5-intel-2017a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/v/Vim/Vim-7.4-goolf-1.4.10.eb b/easybuild/easyconfigs/v/Vim/Vim-7.4-goolf-1.4.10.eb index 824152274f..9e67a4c535 100644 --- a/easybuild/easyconfigs/v/Vim/Vim-7.4-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/v/Vim/Vim-7.4-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/v/Vim/Vim-8.0-foss-2016a-Python-2.7.11.eb b/easybuild/easyconfigs/v/Vim/Vim-8.0-foss-2016a-Python-2.7.11.eb index 674a6d44d5..f0f30967f2 100644 --- a/easybuild/easyconfigs/v/Vim/Vim-8.0-foss-2016a-Python-2.7.11.eb +++ b/easybuild/easyconfigs/v/Vim/Vim-8.0-foss-2016a-Python-2.7.11.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/v/Viper/Viper-1.0.0-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/v/Viper/Viper-1.0.0-goolf-1.4.10-Python-2.7.3.eb index 120e8225ae..51976a2e40 100644 --- a/easybuild/easyconfigs/v/Viper/Viper-1.0.0-goolf-1.4.10-Python-2.7.3.eb +++ b/easybuild/easyconfigs/v/Viper/Viper-1.0.0-goolf-1.4.10-Python-2.7.3.eb @@ -22,7 +22,7 @@ versionsuffix = "-%s-%s" % (python, pythonversion) dependencies = [(python, pythonversion)] # hack, 'import viper' fails because VTK and numpy dependencies are missing -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/100 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/100 options = {'modulename': 'os'} sanity_check_paths = { diff --git a/easybuild/easyconfigs/v/Viper/Viper-1.0.0-ictce-5.3.0-Python-2.7.3.eb b/easybuild/easyconfigs/v/Viper/Viper-1.0.0-ictce-5.3.0-Python-2.7.3.eb index 5c807c96fb..5d302a4553 100644 --- a/easybuild/easyconfigs/v/Viper/Viper-1.0.0-ictce-5.3.0-Python-2.7.3.eb +++ b/easybuild/easyconfigs/v/Viper/Viper-1.0.0-ictce-5.3.0-Python-2.7.3.eb @@ -23,7 +23,7 @@ versionsuffix = "-%s-%s" % (python, pythonversion) dependencies = [(python, pythonversion)] # hack, 'import viper' fails because VTK and numpy dependencies are missing -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/100 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/100 options = {'modulename': 'os'} sanity_check_paths = { diff --git a/easybuild/easyconfigs/v/vsc-mympirun/vsc-mympirun-3.2.1.eb b/easybuild/easyconfigs/v/vsc-mympirun/vsc-mympirun-3.2.1.eb index 368c166390..1243b5ec82 100644 --- a/easybuild/easyconfigs/v/vsc-mympirun/vsc-mympirun-3.2.1.eb +++ b/easybuild/easyconfigs/v/vsc-mympirun/vsc-mympirun-3.2.1.eb @@ -3,7 +3,7 @@ easyblock = 'VersionIndependentPythonPackage' name = 'vsc-mympirun' version = '3.2.1' -homepage = 'http://github.com/hpcugent/vsc-mympirun/' +homepage = 'https://github.com/hpcugent/vsc-mympirun/' description = """VSC-tools is a set of Python libraries and scripts that are commonly used within HPC-UGent.""" # we build this to work with every python version diff --git a/easybuild/easyconfigs/v/vt/vt-0.577-goolf-1.7.20.eb b/easybuild/easyconfigs/v/vt/vt-0.577-goolf-1.7.20.eb index f8de4a4721..9bf6597cd2 100644 --- a/easybuild/easyconfigs/v/vt/vt-0.577-goolf-1.7.20.eb +++ b/easybuild/easyconfigs/v/vt/vt-0.577-goolf-1.7.20.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/w/WEKA/WEKA-3.6.12-Java-1.7.0_80.eb b/easybuild/easyconfigs/w/WEKA/WEKA-3.6.12-Java-1.7.0_80.eb index c6a5e3fa14..94ae40e0cd 100644 --- a/easybuild/easyconfigs/w/WEKA/WEKA-3.6.12-Java-1.7.0_80.eb +++ b/easybuild/easyconfigs/w/WEKA/WEKA-3.6.12-Java-1.7.0_80.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/w/WEKA/WEKA-3.7.0-Java-1.7.0_80.eb b/easybuild/easyconfigs/w/WEKA/WEKA-3.7.0-Java-1.7.0_80.eb index 96ac9d6530..a06d973254 100644 --- a/easybuild/easyconfigs/w/WEKA/WEKA-3.7.0-Java-1.7.0_80.eb +++ b/easybuild/easyconfigs/w/WEKA/WEKA-3.7.0-Java-1.7.0_80.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/w/WHAM/WHAM-2.0.9-goolf-1.4.10.eb b/easybuild/easyconfigs/w/WHAM/WHAM-2.0.9-goolf-1.4.10.eb index e27e4f7760..e4cd7e32e8 100644 --- a/easybuild/easyconfigs/w/WHAM/WHAM-2.0.9-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/w/WHAM/WHAM-2.0.9-goolf-1.4.10.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/w/WHAM/WHAM-2.0.9-ictce-6.2.5.eb b/easybuild/easyconfigs/w/WHAM/WHAM-2.0.9-ictce-6.2.5.eb index cb26524e7f..e26d3170c2 100644 --- a/easybuild/easyconfigs/w/WHAM/WHAM-2.0.9-ictce-6.2.5.eb +++ b/easybuild/easyconfigs/w/WHAM/WHAM-2.0.9-ictce-6.2.5.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel diff --git a/easybuild/easyconfigs/w/wiki2beamer/wiki2beamer-0.9.5-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/w/wiki2beamer/wiki2beamer-0.9.5-goolf-1.4.10-Python-2.7.3.eb index 71553532b1..fe7a81ee6d 100644 --- a/easybuild/easyconfigs/w/wiki2beamer/wiki2beamer-0.9.5-goolf-1.4.10-Python-2.7.3.eb +++ b/easybuild/easyconfigs/w/wiki2beamer/wiki2beamer-0.9.5-goolf-1.4.10-Python-2.7.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/w/wiki2beamer/wiki2beamer-0.9.5-ictce-5.3.0-Python-2.7.3.eb b/easybuild/easyconfigs/w/wiki2beamer/wiki2beamer-0.9.5-ictce-5.3.0-Python-2.7.3.eb index b2e2623f1f..e5c33bcbbd 100644 --- a/easybuild/easyconfigs/w/wiki2beamer/wiki2beamer-0.9.5-ictce-5.3.0-Python-2.7.3.eb +++ b/easybuild/easyconfigs/w/wiki2beamer/wiki2beamer-0.9.5-ictce-5.3.0-Python-2.7.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Cedric Laczny , Fotis Georgatos diff --git a/easybuild/easyconfigs/w/wkhtmltopdf/wkhtmltopdf-0.12.3-Linux-x86_64.eb b/easybuild/easyconfigs/w/wkhtmltopdf/wkhtmltopdf-0.12.3-Linux-x86_64.eb index b0bb280f07..dfff31c3a7 100644 --- a/easybuild/easyconfigs/w/wkhtmltopdf/wkhtmltopdf-0.12.3-Linux-x86_64.eb +++ b/easybuild/easyconfigs/w/wkhtmltopdf/wkhtmltopdf-0.12.3-Linux-x86_64.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics diff --git a/easybuild/easyconfigs/w/wxPropertyGrid/wxPropertyGrid-1.4.15-GCC-4.7.3.eb b/easybuild/easyconfigs/w/wxPropertyGrid/wxPropertyGrid-1.4.15-GCC-4.7.3.eb index 93c328cff6..ff437b5dba 100644 --- a/easybuild/easyconfigs/w/wxPropertyGrid/wxPropertyGrid-1.4.15-GCC-4.7.3.eb +++ b/easybuild/easyconfigs/w/wxPropertyGrid/wxPropertyGrid-1.4.15-GCC-4.7.3.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/w/wxPropertyGrid/wxPropertyGrid-1.4.15-GCC-4.9.2.eb b/easybuild/easyconfigs/w/wxPropertyGrid/wxPropertyGrid-1.4.15-GCC-4.9.2.eb index ccad95cd1d..7f314736fb 100644 --- a/easybuild/easyconfigs/w/wxPropertyGrid/wxPropertyGrid-1.4.15-GCC-4.9.2.eb +++ b/easybuild/easyconfigs/w/wxPropertyGrid/wxPropertyGrid-1.4.15-GCC-4.9.2.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see https://github.com/hpcugent/easybuild +# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild # Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany # Authors:: Bernd Mohr # License:: New BSD diff --git a/easybuild/easyconfigs/x/XZ/XZ-5.2.2_compat-libs.patch b/easybuild/easyconfigs/x/XZ/XZ-5.2.2_compat-libs.patch index 3090e4e0ea..03b241cdc6 100644 --- a/easybuild/easyconfigs/x/XZ/XZ-5.2.2_compat-libs.patch +++ b/easybuild/easyconfigs/x/XZ/XZ-5.2.2_compat-libs.patch @@ -1,5 +1,5 @@ include two 5.1.2aplha symbols that were included in XZ 5.1.2alpha which are required by the 'rpm' command on CentOS 7.x -see also https://github.com/hpcugent/easybuild-easyconfigs/issues/4036 +see also https://github.com/easybuilders/easybuild-easyconfigs/issues/4036 original patch: xz-5.2.2-compat-libs.patch, cfr. https://git.centos.org/patch/rpms!xz.git/3f035cee1da9f864609885e5ef2a1be77cd37eee --- src/liblzma/liblzma.map.orig 2015-09-29 12:57:36.000000000 +0200 diff --git a/easybuild/easyconfigs/y/YAML-Syck/YAML-Syck-1.27-goolf-1.4.10-Perl-5.16.3.eb b/easybuild/easyconfigs/y/YAML-Syck/YAML-Syck-1.27-goolf-1.4.10-Perl-5.16.3.eb index 8cae54960c..634b4f040d 100644 --- a/easybuild/easyconfigs/y/YAML-Syck/YAML-Syck-1.27-goolf-1.4.10-Perl-5.16.3.eb +++ b/easybuild/easyconfigs/y/YAML-Syck/YAML-Syck-1.27-goolf-1.4.10-Perl-5.16.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013 Uni.Lu/LCSB # Authors:: Nils Christian diff --git a/easybuild/easyconfigs/y/YAML-Syck/YAML-Syck-1.27-ictce-5.3.0-Perl-5.16.3.eb b/easybuild/easyconfigs/y/YAML-Syck/YAML-Syck-1.27-ictce-5.3.0-Perl-5.16.3.eb index 19442cc19e..a9b0150761 100644 --- a/easybuild/easyconfigs/y/YAML-Syck/YAML-Syck-1.27-ictce-5.3.0-Perl-5.16.3.eb +++ b/easybuild/easyconfigs/y/YAML-Syck/YAML-Syck-1.27-ictce-5.3.0-Perl-5.16.3.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2013 Uni.Lu/LCSB # Authors:: Nils Christian diff --git a/easybuild/easyconfigs/y/Yasm/Yasm-1.2.0-goolf-1.4.10.eb b/easybuild/easyconfigs/y/Yasm/Yasm-1.2.0-goolf-1.4.10.eb index 6ed4579c34..4a89685079 100644 --- a/easybuild/easyconfigs/y/Yasm/Yasm-1.2.0-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/y/Yasm/Yasm-1.2.0-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/y/Yasm/Yasm-1.2.0-ictce-5.3.0.eb b/easybuild/easyconfigs/y/Yasm/Yasm-1.2.0-ictce-5.3.0.eb index a98dbc5915..a67685c36b 100644 --- a/easybuild/easyconfigs/y/Yasm/Yasm-1.2.0-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/y/Yasm/Yasm-1.2.0-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-foss-2015a.eb b/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-foss-2015a.eb index 90c83cfb4e..83c2304c3f 100644 --- a/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-foss-2015a.eb +++ b/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-foss-2015a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-foss-2016a.eb b/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-foss-2016a.eb index fd9ab5e210..5d91905b00 100644 --- a/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-foss-2016a.eb +++ b/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-foss-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-foss-2016b.eb b/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-foss-2016b.eb index d40e39150a..2b3b53fc13 100644 --- a/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-foss-2016b.eb +++ b/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-foss-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-foss-2017a.eb b/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-foss-2017a.eb index bae739cbfa..884d55d98d 100644 --- a/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-foss-2017a.eb +++ b/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-foss-2017a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-gimkl-2.11.5.eb b/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-gimkl-2.11.5.eb index b2b7c412d9..54da1bfc1c 100644 --- a/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-gimkl-2.11.5.eb +++ b/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-gimkl-2.11.5.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-gimkl-2017a.eb b/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-gimkl-2017a.eb index 78f408a971..190f07dd2b 100644 --- a/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-gimkl-2017a.eb +++ b/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-gimkl-2017a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-intel-2015b.eb b/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-intel-2015b.eb index af77be599d..053cfe39f7 100644 --- a/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-intel-2015b.eb +++ b/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-intel-2015b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-intel-2016a.eb b/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-intel-2016a.eb index b5dae68924..31172f8c40 100644 --- a/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-intel-2016a.eb +++ b/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-intel-2016a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-intel-2016b.eb b/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-intel-2016b.eb index bd4bc5d66f..a838254d15 100644 --- a/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-intel-2016b.eb +++ b/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-intel-2016b.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-intel-2017a.eb b/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-intel-2017a.eb index f0db7e8256..89a5a1ab38 100644 --- a/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-intel-2017a.eb +++ b/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-intel-2017a.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/z/ZPAQ/ZPAQ-7.00-GCC-4.8.2.eb b/easybuild/easyconfigs/z/ZPAQ/ZPAQ-7.00-GCC-4.8.2.eb index 6b82f0fc24..66f5997d8e 100644 --- a/easybuild/easyconfigs/z/ZPAQ/ZPAQ-7.00-GCC-4.8.2.eb +++ b/easybuild/easyconfigs/z/ZPAQ/ZPAQ-7.00-GCC-4.8.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2015 NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/z/zsync/zsync-0.6.2-goolf-1.4.10.eb b/easybuild/easyconfigs/z/zsync/zsync-0.6.2-goolf-1.4.10.eb index d756317c6c..aeebd7e248 100644 --- a/easybuild/easyconfigs/z/zsync/zsync-0.6.2-goolf-1.4.10.eb +++ b/easybuild/easyconfigs/z/zsync/zsync-0.6.2-goolf-1.4.10.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/easybuild/easyconfigs/z/zsync/zsync-0.6.2-ictce-5.3.0.eb b/easybuild/easyconfigs/z/zsync/zsync-0.6.2-ictce-5.3.0.eb index 960ac2460a..f13e061e4e 100644 --- a/easybuild/easyconfigs/z/zsync/zsync-0.6.2-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/z/zsync/zsync-0.6.2-ictce-5.3.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos diff --git a/setup.py b/setup.py index 6a0698539f..af2eb6baaf 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ # Flemish Research Foundation (FWO) (http://www.fwo.be/en) # and the Department of Economy, Science and Innovation (EWI) (http://www.ewi-vlaanderen.be/en). # -# http://github.com/hpcugent/easybuild +# https://github.com/easybuilders/easybuild # # EasyBuild is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -109,7 +109,7 @@ that specify the build parameters for software packages (version, compiler toolc versions, etc.).""", license = "GPLv2", keywords = "software build building installation installing compilation HPC scientific", - url = "http://hpcugent.github.com/easybuild", + url = "http://easybuilders.github.io/easybuild/", data_files = get_data_files(), long_description = read("README.rst"), classifiers = [ diff --git a/test/__init__.py b/test/__init__.py index e44e0c6e58..4c16c11e57 100644 --- a/test/__init__.py +++ b/test/__init__.py @@ -8,7 +8,7 @@ # Flemish Research Foundation (FWO) (http://www.fwo.be/en) # and the Department of Economy, Science and Innovation (EWI) (http://www.ewi-vlaanderen.be/en). # -# http://github.com/hpcugent/easybuild +# https://github.com/easybuilders/easybuild # # EasyBuild is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/test/easyconfigs/easyconfigs.py b/test/easyconfigs/easyconfigs.py index 993e9395ba..6e9ae84a7b 100644 --- a/test/easyconfigs/easyconfigs.py +++ b/test/easyconfigs/easyconfigs.py @@ -8,7 +8,7 @@ # Flemish Research Foundation (FWO) (http://www.fwo.be/en) # and the Department of Economy, Science and Innovation (EWI) (http://www.ewi-vlaanderen.be/en). # -# http://github.com/hpcugent/easybuild +# https://github.com/easybuilders/easybuild # # EasyBuild is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/test/easyconfigs/styletests.py b/test/easyconfigs/styletests.py index 2ea259071e..7baae28007 100644 --- a/test/easyconfigs/styletests.py +++ b/test/easyconfigs/styletests.py @@ -8,7 +8,7 @@ # the Hercules foundation (http://www.herculesstichting.be/in_English) # and the Department of Economy, Science and Innovation (EWI) (http://www.ewi-vlaanderen.be/en). # -# http://github.com/hpcugent/easybuild +# https://github.com/easybuilders/easybuild # # EasyBuild is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/test/easyconfigs/suite.py b/test/easyconfigs/suite.py index 56d7f05b41..a8806bf1ae 100644 --- a/test/easyconfigs/suite.py +++ b/test/easyconfigs/suite.py @@ -9,7 +9,7 @@ # Flemish Research Foundation (FWO) (http://www.fwo.be/en) # and the Department of Economy, Science and Innovation (EWI) (http://www.ewi-vlaanderen.be/en). # -# http://github.com/hpcugent/easybuild +# https://github.com/easybuilders/easybuild # # EasyBuild is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by -- GitLab From 016235a044cf8a0fb906ad27bfe398d2bf69b33d Mon Sep 17 00:00:00 2001 From: zao Date: Wed, 5 Jul 2017 19:02:50 +0200 Subject: [PATCH 335/608] Credit upstream, use %(version)s format --- easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0-fix-ubsan.patch | 3 +++ easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0.eb | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0-fix-ubsan.patch b/easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0-fix-ubsan.patch index 8b5e6acbfb..494ae7c00e 100644 --- a/easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0-fix-ubsan.patch +++ b/easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0-fix-ubsan.patch @@ -1,3 +1,6 @@ +# GCC 7 errors on comparing a pointer and an integer, code means to test +# first byte. This is fixed in 6.4.0 and onward by SVN revision 239971. +# Upstream credit: Kirill Yukhin diff -ru gcc-6.3.0-orig/gcc/ubsan.c gcc-6.3.0/gcc/ubsan.c --- gcc-6.3.0-orig/gcc/ubsan.c 2016-12-07 23:39:29.000000000 +0100 +++ gcc-6.3.0/gcc/ubsan.c 2017-07-05 08:57:03.297566616 +0200 diff --git a/easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0.eb b/easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0.eb index b95420541e..7c5c5cfbf2 100644 --- a/easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0.eb +++ b/easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0.eb @@ -37,7 +37,7 @@ builddependencies = [ patches = [ ('mpfr-%s-allpatches-20161215.patch' % mpfr_version, '../mpfr-%s' % mpfr_version), 'GCCcore-6.2.0-fix-find-isl.patch', - 'GCCcore-6.3.0-fix-ubsan.patch', + 'GCCcore-%(version)s-fix-ubsan.patch', ] checksums = [ -- GitLab From 588b5b4167171cc967bd9299600b007c07b999d3 Mon Sep 17 00:00:00 2001 From: zao Date: Wed, 5 Jul 2017 20:34:07 +0200 Subject: [PATCH 336/608] Generalize ubsan patch for earlier 6.x releases --- easybuild/easyconfigs/g/GCCcore/GCCcore-6.1.0.eb | 1 + easybuild/easyconfigs/g/GCCcore/GCCcore-6.2.0.eb | 1 + easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0.eb | 2 +- ...CCcore-6.3.0-fix-ubsan.patch => GCCcore-6.x-fix-ubsan.patch} | 1 + 4 files changed, 4 insertions(+), 1 deletion(-) rename easybuild/easyconfigs/g/GCCcore/{GCCcore-6.3.0-fix-ubsan.patch => GCCcore-6.x-fix-ubsan.patch} (97%) diff --git a/easybuild/easyconfigs/g/GCCcore/GCCcore-6.1.0.eb b/easybuild/easyconfigs/g/GCCcore/GCCcore-6.1.0.eb index b3173aaf56..0423a2a006 100644 --- a/easybuild/easyconfigs/g/GCCcore/GCCcore-6.1.0.eb +++ b/easybuild/easyconfigs/g/GCCcore/GCCcore-6.1.0.eb @@ -38,6 +38,7 @@ builddependencies = [ patches = [ ('mpfr-%s-allpatches-20160804.patch' % mpfr_version, '../mpfr-%s' % mpfr_version), ('%s-%s_fix-find-isl.patch' % (name, version)), + 'GCCcore-6.x-fix-ubsan.patch', ] checksums = [ diff --git a/easybuild/easyconfigs/g/GCCcore/GCCcore-6.2.0.eb b/easybuild/easyconfigs/g/GCCcore/GCCcore-6.2.0.eb index 8bf2b22931..2ac9bf8b09 100644 --- a/easybuild/easyconfigs/g/GCCcore/GCCcore-6.2.0.eb +++ b/easybuild/easyconfigs/g/GCCcore/GCCcore-6.2.0.eb @@ -37,6 +37,7 @@ builddependencies = [ patches = [ ('mpfr-%s-allpatches-20160804.patch' % mpfr_version, '../mpfr-%s' % mpfr_version), '%(name)s-%(version)s-fix-find-isl.patch', + 'GCCcore-6.x-fix-ubsan.patch', ] checksums = [ diff --git a/easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0.eb b/easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0.eb index 7c5c5cfbf2..96befaf7f0 100644 --- a/easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0.eb +++ b/easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0.eb @@ -37,7 +37,7 @@ builddependencies = [ patches = [ ('mpfr-%s-allpatches-20161215.patch' % mpfr_version, '../mpfr-%s' % mpfr_version), 'GCCcore-6.2.0-fix-find-isl.patch', - 'GCCcore-%(version)s-fix-ubsan.patch', + 'GCCcore-6.x-fix-ubsan.patch', ] checksums = [ diff --git a/easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0-fix-ubsan.patch b/easybuild/easyconfigs/g/GCCcore/GCCcore-6.x-fix-ubsan.patch similarity index 97% rename from easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0-fix-ubsan.patch rename to easybuild/easyconfigs/g/GCCcore/GCCcore-6.x-fix-ubsan.patch index 494ae7c00e..1c8e22152a 100644 --- a/easybuild/easyconfigs/g/GCCcore/GCCcore-6.3.0-fix-ubsan.patch +++ b/easybuild/easyconfigs/g/GCCcore/GCCcore-6.x-fix-ubsan.patch @@ -1,5 +1,6 @@ # GCC 7 errors on comparing a pointer and an integer, code means to test # first byte. This is fixed in 6.4.0 and onward by SVN revision 239971. +# Affects 6.1-6.3. # Upstream credit: Kirill Yukhin diff -ru gcc-6.3.0-orig/gcc/ubsan.c gcc-6.3.0/gcc/ubsan.c --- gcc-6.3.0-orig/gcc/ubsan.c 2016-12-07 23:39:29.000000000 +0100 -- GitLab From 6c51593a0c5e2a2f21afdb672b185c0a337eec27 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 5 Jul 2017 21:30:22 +0200 Subject: [PATCH 337/608] add SHA256 checksum in binutils-2.28-GCCcore-6.4.0.eb --- easybuild/easyconfigs/b/binutils/binutils-2.28-GCCcore-6.4.0.eb | 1 + 1 file changed, 1 insertion(+) diff --git a/easybuild/easyconfigs/b/binutils/binutils-2.28-GCCcore-6.4.0.eb b/easybuild/easyconfigs/b/binutils/binutils-2.28-GCCcore-6.4.0.eb index b22b7d16ba..b6486c7dfb 100644 --- a/easybuild/easyconfigs/b/binutils/binutils-2.28-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/b/binutils/binutils-2.28-GCCcore-6.4.0.eb @@ -8,6 +8,7 @@ toolchain = {'name': 'GCCcore', 'version': '6.4.0'} sources = [SOURCE_TAR_GZ] source_urls = [GNU_SOURCE] +checksums = ['cd717966fc761d840d451dbd58d44e1e5b92949d2073d75b73fccb476d772fcf'] builddependencies = [ ('flex', '2.6.4'), -- GitLab From ddec90ce3c0d1175651948bcd4aeed77b26edf2f Mon Sep 17 00:00:00 2001 From: "Nathan S. Watson-Haigh" Date: Thu, 6 Jul 2017 11:35:25 +0930 Subject: [PATCH 338/608] Added easyconfig for ngmlr-0.2.6-foss-2015b --- .../n/ngmlr/ngmlr-0.2.6-foss-2015b.eb | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 easybuild/easyconfigs/n/ngmlr/ngmlr-0.2.6-foss-2015b.eb diff --git a/easybuild/easyconfigs/n/ngmlr/ngmlr-0.2.6-foss-2015b.eb b/easybuild/easyconfigs/n/ngmlr/ngmlr-0.2.6-foss-2015b.eb new file mode 100644 index 0000000000..a5b9e6ff70 --- /dev/null +++ b/easybuild/easyconfigs/n/ngmlr/ngmlr-0.2.6-foss-2015b.eb @@ -0,0 +1,26 @@ +easyblock = 'CMakeMake' + +name = 'ngmlr' +version = '0.2.6' + +homepage = 'https://github.com/philres/ngmlr' +description = """Ngmlr is a long-read mapper designed to align PacBilo or Oxford Nanopore to a + reference genome with a focus on reads that span structural variations.""" + +toolchain = {'name': 'foss', 'version': '2015b'} + +sources = ['v%(version)s.tar.gz'] +source_urls = ['https://github.com/philres/ngmlr/archive'] + +builddependencies = [('CMake', '3.4.1')] + +dependencies = [ + ('zlib', '1.2.8'), +] + +sanity_check_paths = { + 'files': ['bin/ngmlr'], + 'dirs': [''] +} + +moduleclass = 'bio' -- GitLab From b7e29f64c2f8e97990239584aaee5887910ccdae Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 6 Jul 2017 08:34:49 +0200 Subject: [PATCH 339/608] replace wiki link with readthedocs link --- RELEASE_NOTES | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 1dcd904d75..904813d080 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -749,7 +749,7 @@ feature + bugfix release Xmipp (#1489) - added easyconfigs for new (Cray-specific) toolchains (#1538): CrayGNU, CrayIntel, CrayCCE - initially supported software (using CrayGNU toolchains): CP2K, GROMACS, HPL, Python + numpy/scipy, WRF (#1558) - - see also https://github.com/easybuilders/easybuild/wiki/EasyBuild-on-Cray + - see also http://easybuild.readthedocs.io/en/latest/Cray-support.html - added new easyconfigs for existing toolchains: goolf/1.5.16, intel/2014.06 - added additional easyconfigs for various supported software packages: version updates, different toolchains, ... including GCC v5.1.0, OpenFOAM v2.3.1, R v3.1.3 and v3.2.0, PETSc/SLEPc v3.5.3, WIEN2k v14.1 -- GitLab From aff9c11faf9f40979971076197f79b1ad23b72c7 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 6 Jul 2017 08:51:20 +0200 Subject: [PATCH 340/608] consistently use https:// for EasyBuild website URL --- README.rst | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.0.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.0.1.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.0.2.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.1.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.10.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.11.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.11.1.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.12.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.12.1.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.13.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.14.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.15.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.15.1.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.15.2.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.16.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.16.1.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.16.2.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.2.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.3.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.4.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.5.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.6.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.7.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.8.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.8.1.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.8.2.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.9.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.0.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.1.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.1.1.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.2.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.3.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.4.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.5.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.6.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.7.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.8.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.8.1.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.8.2.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.9.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.0.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.0.1.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.0.2.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.1.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.1.1.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.1.2.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.2.0.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.2.1.eb | 2 +- easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.3.0.eb | 2 +- easybuild/easyconfigs/i/icc/icc-2016.0.109-GCC-4.9.3-2.25.eb | 2 +- easybuild/easyconfigs/i/icc/icc-2016.0.109.eb | 2 +- easybuild/easyconfigs/i/icc/icc-2016.1.150-GCC-4.9.3-2.25.eb | 2 +- easybuild/easyconfigs/i/icc/icc-2016.2.181-GCC-4.9.3-2.25.eb | 2 +- easybuild/easyconfigs/i/icc/icc-2016.2.181-GCC-5.3.0-2.26.eb | 2 +- easybuild/easyconfigs/i/icc/icc-2016.3.210-GCC-4.9.3-2.25.eb | 2 +- easybuild/easyconfigs/i/icc/icc-2016.3.210-GCC-5.3.0-2.26.eb | 2 +- easybuild/easyconfigs/i/icc/icc-2016.3.210-GCC-5.4.0-2.26.eb | 2 +- easybuild/easyconfigs/i/icc/icc-2017.0.098-GCC-5.4.0-2.26.eb | 2 +- easybuild/easyconfigs/i/icc/icc-2017.1.132-GCC-5.4.0-2.26.eb | 2 +- easybuild/easyconfigs/i/icc/icc-2017.1.132-GCC-6.3.0-2.27.eb | 2 +- easybuild/easyconfigs/i/icc/icc-2017.2.174-GCC-6.3.0-2.27.eb | 2 +- .../i/iccifort/iccifort-2016.0.109-GCC-4.9.3-2.25.eb | 2 +- easybuild/easyconfigs/i/iccifort/iccifort-2016.0.109.eb | 2 +- .../i/iccifort/iccifort-2016.1.150-GCC-4.9.3-2.25.eb | 2 +- .../i/iccifort/iccifort-2016.2.181-GCC-4.9.3-2.25.eb | 2 +- .../i/iccifort/iccifort-2016.2.181-GCC-5.3.0-2.26.eb | 2 +- .../i/iccifort/iccifort-2016.3.210-GCC-4.9.3-2.25.eb | 2 +- .../i/iccifort/iccifort-2016.3.210-GCC-5.3.0-2.26.eb | 2 +- .../i/iccifort/iccifort-2016.3.210-GCC-5.4.0-2.26.eb | 2 +- .../i/iccifort/iccifort-2017.0.098-GCC-5.4.0-2.26.eb | 2 +- .../i/iccifort/iccifort-2017.1.132-GCC-5.4.0-2.26.eb | 2 +- .../i/iccifort/iccifort-2017.1.132-GCC-6.3.0-2.27.eb | 2 +- .../i/iccifort/iccifort-2017.2.174-GCC-6.3.0-2.27.eb | 2 +- .../easyconfigs/i/ifort/ifort-2016.0.109-GCC-4.9.3-2.25.eb | 2 +- easybuild/easyconfigs/i/ifort/ifort-2016.0.109.eb | 2 +- .../easyconfigs/i/ifort/ifort-2016.1.150-GCC-4.9.3-2.25.eb | 2 +- .../easyconfigs/i/ifort/ifort-2016.2.181-GCC-4.9.3-2.25.eb | 2 +- .../easyconfigs/i/ifort/ifort-2016.2.181-GCC-5.3.0-2.26.eb | 2 +- .../easyconfigs/i/ifort/ifort-2016.3.210-GCC-4.9.3-2.25.eb | 2 +- .../easyconfigs/i/ifort/ifort-2016.3.210-GCC-5.3.0-2.26.eb | 2 +- .../easyconfigs/i/ifort/ifort-2016.3.210-GCC-5.4.0-2.26.eb | 2 +- .../easyconfigs/i/ifort/ifort-2017.0.098-GCC-5.4.0-2.26.eb | 2 +- .../easyconfigs/i/ifort/ifort-2017.1.132-GCC-5.4.0-2.26.eb | 2 +- .../easyconfigs/i/ifort/ifort-2017.1.132-GCC-6.3.0-2.27.eb | 2 +- .../easyconfigs/i/ifort/ifort-2017.2.174-GCC-6.3.0-2.27.eb | 2 +- easybuild/easyconfigs/i/iimpi/iimpi-2016.00-GCC-4.9.3-2.25.eb | 2 +- easybuild/easyconfigs/i/iimpi/iimpi-2016.01-GCC-4.9.3-2.25.eb | 2 +- easybuild/easyconfigs/i/iimpi/iimpi-2016.02-GCC-4.9.3-2.25.eb | 2 +- easybuild/easyconfigs/i/iimpi/iimpi-2016.02-GCC-5.3.0-2.26.eb | 2 +- easybuild/easyconfigs/i/iimpi/iimpi-2016.03-GCC-4.9.3-2.25.eb | 2 +- easybuild/easyconfigs/i/iimpi/iimpi-2016.03-GCC-5.3.0-2.26.eb | 2 +- easybuild/easyconfigs/i/iimpi/iimpi-2016.03-GCC-5.4.0-2.26.eb | 2 +- easybuild/easyconfigs/i/iimpi/iimpi-2016b.eb | 2 +- easybuild/easyconfigs/i/iimpi/iimpi-2017.00-GCC-5.4.0-2.26.eb | 2 +- easybuild/easyconfigs/i/iimpi/iimpi-2017.01-GCC-5.4.0-2.26.eb | 2 +- easybuild/easyconfigs/i/iimpi/iimpi-2017.02-GCC-6.3.0-2.27.eb | 2 +- easybuild/easyconfigs/i/iimpi/iimpi-2017a.eb | 2 +- easybuild/easyconfigs/i/iimpic/iimpic-2016.10.eb | 2 +- .../i/imkl/imkl-11.3.0.109-iimpi-2016.00-GCC-4.9.3-2.25.eb | 2 +- .../i/imkl/imkl-11.3.1.150-iimpi-2016.01-GCC-4.9.3-2.25.eb | 2 +- .../i/imkl/imkl-11.3.2.181-iimpi-2016.02-GCC-4.9.3-2.25.eb | 2 +- .../i/imkl/imkl-11.3.2.181-iimpi-2016.02-GCC-5.3.0-2.26.eb | 2 +- easybuild/easyconfigs/i/imkl/imkl-11.3.2.181-pompi-2016.03.eb | 2 +- .../i/imkl/imkl-11.3.3.210-iimpi-2016.03-GCC-4.9.3-2.25.eb | 2 +- .../i/imkl/imkl-11.3.3.210-iimpi-2016.03-GCC-5.3.0-2.26.eb | 2 +- .../i/imkl/imkl-11.3.3.210-iimpi-2016.03-GCC-5.4.0-2.26.eb | 2 +- easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016b.eb | 2 +- easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpic-2016.10.eb | 2 +- easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-pompi-2016.04.eb | 2 +- easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-pompi-2016.09.eb | 2 +- .../i/imkl/imkl-2017.0.098-iimpi-2017.00-GCC-5.4.0-2.26.eb | 2 +- .../i/imkl/imkl-2017.1.132-iimpi-2017.01-GCC-5.4.0-2.26.eb | 2 +- easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iimpi-2017a.eb | 2 +- easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iompi-2017.01.eb | 2 +- easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iompi-2017a.eb | 2 +- .../i/imkl/imkl-2017.2.174-iimpi-2017.02-GCC-6.3.0-2.27.eb | 2 +- .../impi/impi-2017.0.098-iccifort-2017.0.098-GCC-5.4.0-2.26.eb | 2 +- .../impi/impi-2017.1.132-iccifort-2017.1.132-GCC-5.4.0-2.26.eb | 2 +- .../impi/impi-2017.1.132-iccifort-2017.1.132-GCC-6.3.0-2.27.eb | 2 +- .../impi/impi-2017.2.174-iccifort-2017.2.174-GCC-6.3.0-2.27.eb | 2 +- .../i/impi/impi-5.1.1.109-iccifort-2016.0.109-GCC-4.9.3-2.25.eb | 2 +- .../i/impi/impi-5.1.2.150-iccifort-2016.1.150-GCC-4.9.3-2.25.eb | 2 +- .../i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-4.9.3-2.25.eb | 2 +- .../i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-5.3.0-2.26.eb | 2 +- .../i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-4.9.3-2.25.eb | 2 +- .../i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.3.0-2.26.eb | 2 +- .../i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.4.0-2.26.eb | 2 +- .../easyconfigs/i/impi/impi-5.1.3.181-iccifortcuda-2016.10.eb | 2 +- easybuild/easyconfigs/i/intel/intel-2016.00.eb | 2 +- easybuild/easyconfigs/i/intel/intel-2016.01.eb | 2 +- easybuild/easyconfigs/i/iompi/iompi-2017.01.eb | 2 +- easybuild/easyconfigs/i/iompi/iompi-2017a.eb | 2 +- setup.py | 2 +- 134 files changed, 134 insertions(+), 134 deletions(-) diff --git a/README.rst b/README.rst index ff6d26a0ab..be42964380 100644 --- a/README.rst +++ b/README.rst @@ -1,4 +1,4 @@ -.. image:: http://easybuilders.github.io/easybuild/images/easybuild_logo_small.png +.. image:: https://easybuilders.github.io/easybuild/images/easybuild_logo_small.png :align: center `EasyBuild `_ is a software build diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.0.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.0.0.eb index 819bcfdba2..9b67e77290 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.0.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.0.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.0.0' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.0.1.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.0.1.eb index c22351c6de..f6e48794a2 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.0.1.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.0.1.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.0.1' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.0.2.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.0.2.eb index 10e52177b1..f65e4d33b7 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.0.2.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.0.2.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.0.2' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.1.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.1.0.eb index b86dfbf810..b404084816 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.1.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.1.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.1.0' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.10.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.10.0.eb index a6804f4f58..6d0b6bbd58 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.10.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.10.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.10.0' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.11.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.11.0.eb index 23833e2836..09d7412e21 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.11.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.11.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.11.0' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.11.1.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.11.1.eb index 47f1a751e4..3e0b477551 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.11.1.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.11.1.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.11.1' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.12.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.12.0.eb index e4a27cb487..fda0eaa230 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.12.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.12.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.12.0' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.12.1.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.12.1.eb index eb82e53707..e8bc170959 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.12.1.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.12.1.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.12.1' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.13.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.13.0.eb index 5455bc671c..148881ec17 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.13.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.13.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.13.0' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.14.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.14.0.eb index bf7bef23ba..a573ff7efb 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.14.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.14.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.14.0' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.15.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.15.0.eb index bc94abbd43..017904a16a 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.15.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.15.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = "1.15.0" -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.15.1.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.15.1.eb index 567d84626d..4b605cc474 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.15.1.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.15.1.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = "1.15.1" -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.15.2.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.15.2.eb index dc940ff5f3..71ca7c902d 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.15.2.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.15.2.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = "1.15.2" -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.16.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.16.0.eb index 07b994c134..d694c3a975 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.16.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.16.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = "1.16.0" -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.16.1.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.16.1.eb index 063c0cae95..777f78e3ad 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.16.1.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.16.1.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = "1.16.1" -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.16.2.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.16.2.eb index ca54ce2b48..5c38c0a983 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.16.2.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.16.2.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = "1.16.2" -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.2.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.2.0.eb index 5ab2ef518b..ee0fb34daf 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.2.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.2.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.2.0' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.3.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.3.0.eb index 74208a9b9f..0249a90b8d 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.3.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.3.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.3.0' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.4.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.4.0.eb index cf1ab671cb..58e8279a68 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.4.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.4.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.4.0' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.5.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.5.0.eb index 395394e677..1b589199e1 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.5.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.5.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.5.0' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.6.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.6.0.eb index 673b37a447..95539b250f 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.6.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.6.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.6.0' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.7.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.7.0.eb index d63e41ec85..3caeb8de82 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.7.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.7.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.7.0' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.8.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.8.0.eb index f5a9269b1f..63848ea26b 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.8.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.8.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.8.0' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.8.1.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.8.1.eb index e18328251e..a99feae3bc 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.8.1.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.8.1.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.8.1' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.8.2.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.8.2.eb index 76df856dd7..f835d8df77 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.8.2.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.8.2.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.8.2' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.9.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.9.0.eb index d2e8a2944e..74d11b79a1 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.9.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-1.9.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '1.9.0' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.0.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.0.0.eb index 24720fca1c..2fb2c7bbce 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.0.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.0.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = "2.0.0" -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.1.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.1.0.eb index 4a7b7be82f..b20ff4070b 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.1.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.1.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '2.1.0' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.1.1.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.1.1.eb index 84afda8b48..1f6796bb5a 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.1.1.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.1.1.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '2.1.1' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.2.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.2.0.eb index ce7e5bf141..e49097cb3f 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.2.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.2.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '2.2.0' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.3.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.3.0.eb index 31548a1769..3e1199f516 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.3.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.3.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '2.3.0' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.4.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.4.0.eb index d7fe564a73..0f1a2dfaa8 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.4.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.4.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '2.4.0' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.5.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.5.0.eb index 89f2840b11..d04e3a4e31 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.5.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.5.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '2.5.0' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.6.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.6.0.eb index 5d5435bb7f..c7485aea5f 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.6.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.6.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '2.6.0' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.7.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.7.0.eb index b09425b770..fcefd77778 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.7.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.7.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '2.7.0' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.8.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.8.0.eb index 2e50e9c4e7..ee8f725ccc 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.8.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.8.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '2.8.0' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.8.1.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.8.1.eb index d8d510a78c..5785d7ac7a 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.8.1.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.8.1.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '2.8.1' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.8.2.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.8.2.eb index 2c33962b07..ef3430f3de 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.8.2.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.8.2.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '2.8.2' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.9.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.9.0.eb index 7ab918d84c..1660b8e4a1 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.9.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-2.9.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '2.9.0' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.0.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.0.0.eb index c9a8f9fb2a..70b18de510 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.0.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.0.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '3.0.0' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.0.1.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.0.1.eb index 7fcaac8436..f26a42f001 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.0.1.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.0.1.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '3.0.1' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.0.2.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.0.2.eb index ab22452b62..f26040b3c7 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.0.2.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.0.2.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '3.0.2' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.1.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.1.0.eb index 7961017185..e385b6fbbe 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.1.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.1.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '3.1.0' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.1.1.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.1.1.eb index bb9b2572df..94e497613d 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.1.1.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.1.1.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '3.1.1' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.1.2.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.1.2.eb index 7bf19cc08b..ce2ab0cb59 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.1.2.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.1.2.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '3.1.2' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.2.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.2.0.eb index 97d13804f9..3ee48d069a 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.2.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.2.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '3.2.0' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.2.1.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.2.1.eb index ee42c1d6b9..176c9217f3 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.2.1.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.2.1.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '3.2.1' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.3.0.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.3.0.eb index 5d4ea9ca97..5f1753bce3 100644 --- a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.3.0.eb +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.3.0.eb @@ -3,7 +3,7 @@ easyblock = 'EB_EasyBuildMeta' name = 'EasyBuild' version = '3.3.0' -homepage = 'http://easybuilders.github.io/easybuild' +homepage = 'https://easybuilders.github.io/easybuild' description = """EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.""" diff --git a/easybuild/easyconfigs/i/icc/icc-2016.0.109-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/icc/icc-2016.0.109-GCC-4.9.3-2.25.eb index 96e09e4442..3fe029f3bd 100644 --- a/easybuild/easyconfigs/i/icc/icc-2016.0.109-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/icc/icc-2016.0.109-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'icc' version = '2016.0.109' diff --git a/easybuild/easyconfigs/i/icc/icc-2016.0.109.eb b/easybuild/easyconfigs/i/icc/icc-2016.0.109.eb index 6f3261b9b3..5ca90df672 100644 --- a/easybuild/easyconfigs/i/icc/icc-2016.0.109.eb +++ b/easybuild/easyconfigs/i/icc/icc-2016.0.109.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'icc' version = '2016.0.109' diff --git a/easybuild/easyconfigs/i/icc/icc-2016.1.150-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/icc/icc-2016.1.150-GCC-4.9.3-2.25.eb index 64e0d33ac6..acee6423cd 100644 --- a/easybuild/easyconfigs/i/icc/icc-2016.1.150-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/icc/icc-2016.1.150-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'icc' version = '2016.1.150' diff --git a/easybuild/easyconfigs/i/icc/icc-2016.2.181-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/icc/icc-2016.2.181-GCC-4.9.3-2.25.eb index 721567e03f..c51aeed69f 100644 --- a/easybuild/easyconfigs/i/icc/icc-2016.2.181-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/icc/icc-2016.2.181-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'icc' version = '2016.2.181' diff --git a/easybuild/easyconfigs/i/icc/icc-2016.2.181-GCC-5.3.0-2.26.eb b/easybuild/easyconfigs/i/icc/icc-2016.2.181-GCC-5.3.0-2.26.eb index 0cbfad31f7..9efd4f304a 100644 --- a/easybuild/easyconfigs/i/icc/icc-2016.2.181-GCC-5.3.0-2.26.eb +++ b/easybuild/easyconfigs/i/icc/icc-2016.2.181-GCC-5.3.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'icc' version = '2016.2.181' diff --git a/easybuild/easyconfigs/i/icc/icc-2016.3.210-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/icc/icc-2016.3.210-GCC-4.9.3-2.25.eb index 2895d405cf..c834d93024 100644 --- a/easybuild/easyconfigs/i/icc/icc-2016.3.210-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/icc/icc-2016.3.210-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'icc' version = '2016.3.210' diff --git a/easybuild/easyconfigs/i/icc/icc-2016.3.210-GCC-5.3.0-2.26.eb b/easybuild/easyconfigs/i/icc/icc-2016.3.210-GCC-5.3.0-2.26.eb index 15866eea89..100faf7343 100644 --- a/easybuild/easyconfigs/i/icc/icc-2016.3.210-GCC-5.3.0-2.26.eb +++ b/easybuild/easyconfigs/i/icc/icc-2016.3.210-GCC-5.3.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'icc' version = '2016.3.210' diff --git a/easybuild/easyconfigs/i/icc/icc-2016.3.210-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/icc/icc-2016.3.210-GCC-5.4.0-2.26.eb index dc7b23e0a2..0e2464f373 100644 --- a/easybuild/easyconfigs/i/icc/icc-2016.3.210-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/icc/icc-2016.3.210-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'icc' version = '2016.3.210' diff --git a/easybuild/easyconfigs/i/icc/icc-2017.0.098-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/icc/icc-2017.0.098-GCC-5.4.0-2.26.eb index 06ec2ed952..41ed689a72 100644 --- a/easybuild/easyconfigs/i/icc/icc-2017.0.098-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/icc/icc-2017.0.098-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'icc' version = '2017.0.098' diff --git a/easybuild/easyconfigs/i/icc/icc-2017.1.132-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/icc/icc-2017.1.132-GCC-5.4.0-2.26.eb index 126b6eb3e0..77118ae45d 100644 --- a/easybuild/easyconfigs/i/icc/icc-2017.1.132-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/icc/icc-2017.1.132-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'icc' version = '2017.1.132' diff --git a/easybuild/easyconfigs/i/icc/icc-2017.1.132-GCC-6.3.0-2.27.eb b/easybuild/easyconfigs/i/icc/icc-2017.1.132-GCC-6.3.0-2.27.eb index bada3a0811..362d477441 100644 --- a/easybuild/easyconfigs/i/icc/icc-2017.1.132-GCC-6.3.0-2.27.eb +++ b/easybuild/easyconfigs/i/icc/icc-2017.1.132-GCC-6.3.0-2.27.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'icc' version = '2017.1.132' diff --git a/easybuild/easyconfigs/i/icc/icc-2017.2.174-GCC-6.3.0-2.27.eb b/easybuild/easyconfigs/i/icc/icc-2017.2.174-GCC-6.3.0-2.27.eb index 6d8d739d3b..55411b8971 100644 --- a/easybuild/easyconfigs/i/icc/icc-2017.2.174-GCC-6.3.0-2.27.eb +++ b/easybuild/easyconfigs/i/icc/icc-2017.2.174-GCC-6.3.0-2.27.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'icc' version = '2017.2.174' diff --git a/easybuild/easyconfigs/i/iccifort/iccifort-2016.0.109-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/iccifort/iccifort-2016.0.109-GCC-4.9.3-2.25.eb index 4af351f8fe..fe66dc2742 100644 --- a/easybuild/easyconfigs/i/iccifort/iccifort-2016.0.109-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/iccifort/iccifort-2016.0.109-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iccifort' diff --git a/easybuild/easyconfigs/i/iccifort/iccifort-2016.0.109.eb b/easybuild/easyconfigs/i/iccifort/iccifort-2016.0.109.eb index 6753c1145f..4bb42ab041 100644 --- a/easybuild/easyconfigs/i/iccifort/iccifort-2016.0.109.eb +++ b/easybuild/easyconfigs/i/iccifort/iccifort-2016.0.109.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iccifort' diff --git a/easybuild/easyconfigs/i/iccifort/iccifort-2016.1.150-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/iccifort/iccifort-2016.1.150-GCC-4.9.3-2.25.eb index 923d9700ec..cc24a9ab54 100644 --- a/easybuild/easyconfigs/i/iccifort/iccifort-2016.1.150-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/iccifort/iccifort-2016.1.150-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iccifort' diff --git a/easybuild/easyconfigs/i/iccifort/iccifort-2016.2.181-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/iccifort/iccifort-2016.2.181-GCC-4.9.3-2.25.eb index b3ced2b66f..297fe04854 100644 --- a/easybuild/easyconfigs/i/iccifort/iccifort-2016.2.181-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/iccifort/iccifort-2016.2.181-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iccifort' diff --git a/easybuild/easyconfigs/i/iccifort/iccifort-2016.2.181-GCC-5.3.0-2.26.eb b/easybuild/easyconfigs/i/iccifort/iccifort-2016.2.181-GCC-5.3.0-2.26.eb index f7d7ee5159..f2c485ee20 100644 --- a/easybuild/easyconfigs/i/iccifort/iccifort-2016.2.181-GCC-5.3.0-2.26.eb +++ b/easybuild/easyconfigs/i/iccifort/iccifort-2016.2.181-GCC-5.3.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iccifort' diff --git a/easybuild/easyconfigs/i/iccifort/iccifort-2016.3.210-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/iccifort/iccifort-2016.3.210-GCC-4.9.3-2.25.eb index fcdd6710aa..3683fdab6e 100644 --- a/easybuild/easyconfigs/i/iccifort/iccifort-2016.3.210-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/iccifort/iccifort-2016.3.210-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iccifort' diff --git a/easybuild/easyconfigs/i/iccifort/iccifort-2016.3.210-GCC-5.3.0-2.26.eb b/easybuild/easyconfigs/i/iccifort/iccifort-2016.3.210-GCC-5.3.0-2.26.eb index d7cafce265..0401f8025e 100644 --- a/easybuild/easyconfigs/i/iccifort/iccifort-2016.3.210-GCC-5.3.0-2.26.eb +++ b/easybuild/easyconfigs/i/iccifort/iccifort-2016.3.210-GCC-5.3.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iccifort' diff --git a/easybuild/easyconfigs/i/iccifort/iccifort-2016.3.210-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/iccifort/iccifort-2016.3.210-GCC-5.4.0-2.26.eb index 41183af553..fdf3a88aa5 100644 --- a/easybuild/easyconfigs/i/iccifort/iccifort-2016.3.210-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/iccifort/iccifort-2016.3.210-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iccifort' diff --git a/easybuild/easyconfigs/i/iccifort/iccifort-2017.0.098-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/iccifort/iccifort-2017.0.098-GCC-5.4.0-2.26.eb index e047e9f7b3..a77c406ff7 100644 --- a/easybuild/easyconfigs/i/iccifort/iccifort-2017.0.098-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/iccifort/iccifort-2017.0.098-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iccifort' diff --git a/easybuild/easyconfigs/i/iccifort/iccifort-2017.1.132-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/iccifort/iccifort-2017.1.132-GCC-5.4.0-2.26.eb index de0d741a72..3fc87e0a0a 100644 --- a/easybuild/easyconfigs/i/iccifort/iccifort-2017.1.132-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/iccifort/iccifort-2017.1.132-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iccifort' diff --git a/easybuild/easyconfigs/i/iccifort/iccifort-2017.1.132-GCC-6.3.0-2.27.eb b/easybuild/easyconfigs/i/iccifort/iccifort-2017.1.132-GCC-6.3.0-2.27.eb index 3ec7427089..d4e78567c7 100644 --- a/easybuild/easyconfigs/i/iccifort/iccifort-2017.1.132-GCC-6.3.0-2.27.eb +++ b/easybuild/easyconfigs/i/iccifort/iccifort-2017.1.132-GCC-6.3.0-2.27.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iccifort' diff --git a/easybuild/easyconfigs/i/iccifort/iccifort-2017.2.174-GCC-6.3.0-2.27.eb b/easybuild/easyconfigs/i/iccifort/iccifort-2017.2.174-GCC-6.3.0-2.27.eb index 87ed0a937d..577b228300 100644 --- a/easybuild/easyconfigs/i/iccifort/iccifort-2017.2.174-GCC-6.3.0-2.27.eb +++ b/easybuild/easyconfigs/i/iccifort/iccifort-2017.2.174-GCC-6.3.0-2.27.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = 'Toolchain' name = 'iccifort' diff --git a/easybuild/easyconfigs/i/ifort/ifort-2016.0.109-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/ifort/ifort-2016.0.109-GCC-4.9.3-2.25.eb index 255161f320..aabb1cd11e 100644 --- a/easybuild/easyconfigs/i/ifort/ifort-2016.0.109-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/ifort/ifort-2016.0.109-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'ifort' version = '2016.0.109' diff --git a/easybuild/easyconfigs/i/ifort/ifort-2016.0.109.eb b/easybuild/easyconfigs/i/ifort/ifort-2016.0.109.eb index 479cec077d..d138aad0c3 100644 --- a/easybuild/easyconfigs/i/ifort/ifort-2016.0.109.eb +++ b/easybuild/easyconfigs/i/ifort/ifort-2016.0.109.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'ifort' version = '2016.0.109' diff --git a/easybuild/easyconfigs/i/ifort/ifort-2016.1.150-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/ifort/ifort-2016.1.150-GCC-4.9.3-2.25.eb index a01ea21032..9b68272441 100644 --- a/easybuild/easyconfigs/i/ifort/ifort-2016.1.150-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/ifort/ifort-2016.1.150-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'ifort' version = '2016.1.150' diff --git a/easybuild/easyconfigs/i/ifort/ifort-2016.2.181-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/ifort/ifort-2016.2.181-GCC-4.9.3-2.25.eb index 4a5a9da050..ece99a7387 100644 --- a/easybuild/easyconfigs/i/ifort/ifort-2016.2.181-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/ifort/ifort-2016.2.181-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'ifort' version = '2016.2.181' diff --git a/easybuild/easyconfigs/i/ifort/ifort-2016.2.181-GCC-5.3.0-2.26.eb b/easybuild/easyconfigs/i/ifort/ifort-2016.2.181-GCC-5.3.0-2.26.eb index 61a7a9cb99..5bba923e8f 100644 --- a/easybuild/easyconfigs/i/ifort/ifort-2016.2.181-GCC-5.3.0-2.26.eb +++ b/easybuild/easyconfigs/i/ifort/ifort-2016.2.181-GCC-5.3.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'ifort' version = '2016.2.181' diff --git a/easybuild/easyconfigs/i/ifort/ifort-2016.3.210-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/ifort/ifort-2016.3.210-GCC-4.9.3-2.25.eb index 67930d3ffb..856da5d488 100644 --- a/easybuild/easyconfigs/i/ifort/ifort-2016.3.210-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/ifort/ifort-2016.3.210-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'ifort' version = '2016.3.210' diff --git a/easybuild/easyconfigs/i/ifort/ifort-2016.3.210-GCC-5.3.0-2.26.eb b/easybuild/easyconfigs/i/ifort/ifort-2016.3.210-GCC-5.3.0-2.26.eb index 189b6b9916..1204efb964 100644 --- a/easybuild/easyconfigs/i/ifort/ifort-2016.3.210-GCC-5.3.0-2.26.eb +++ b/easybuild/easyconfigs/i/ifort/ifort-2016.3.210-GCC-5.3.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'ifort' version = '2016.3.210' diff --git a/easybuild/easyconfigs/i/ifort/ifort-2016.3.210-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/ifort/ifort-2016.3.210-GCC-5.4.0-2.26.eb index bbc290ac69..52c45d2af4 100644 --- a/easybuild/easyconfigs/i/ifort/ifort-2016.3.210-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/ifort/ifort-2016.3.210-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'ifort' version = '2016.3.210' diff --git a/easybuild/easyconfigs/i/ifort/ifort-2017.0.098-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/ifort/ifort-2017.0.098-GCC-5.4.0-2.26.eb index 994e8bb45e..b49a02c89a 100644 --- a/easybuild/easyconfigs/i/ifort/ifort-2017.0.098-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/ifort/ifort-2017.0.098-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'ifort' version = '2017.0.098' diff --git a/easybuild/easyconfigs/i/ifort/ifort-2017.1.132-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/ifort/ifort-2017.1.132-GCC-5.4.0-2.26.eb index d03607c38d..8f58c81952 100644 --- a/easybuild/easyconfigs/i/ifort/ifort-2017.1.132-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/ifort/ifort-2017.1.132-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'ifort' version = '2017.1.132' diff --git a/easybuild/easyconfigs/i/ifort/ifort-2017.1.132-GCC-6.3.0-2.27.eb b/easybuild/easyconfigs/i/ifort/ifort-2017.1.132-GCC-6.3.0-2.27.eb index 11f2e31d72..215324831e 100644 --- a/easybuild/easyconfigs/i/ifort/ifort-2017.1.132-GCC-6.3.0-2.27.eb +++ b/easybuild/easyconfigs/i/ifort/ifort-2017.1.132-GCC-6.3.0-2.27.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'ifort' version = '2017.1.132' diff --git a/easybuild/easyconfigs/i/ifort/ifort-2017.2.174-GCC-6.3.0-2.27.eb b/easybuild/easyconfigs/i/ifort/ifort-2017.2.174-GCC-6.3.0-2.27.eb index 7d3dc3b6f7..1d5cac3fad 100644 --- a/easybuild/easyconfigs/i/ifort/ifort-2017.2.174-GCC-6.3.0-2.27.eb +++ b/easybuild/easyconfigs/i/ifort/ifort-2017.2.174-GCC-6.3.0-2.27.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'ifort' version = '2017.2.174' diff --git a/easybuild/easyconfigs/i/iimpi/iimpi-2016.00-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/iimpi/iimpi-2016.00-GCC-4.9.3-2.25.eb index 57a86a76d8..44c8e6ecaa 100644 --- a/easybuild/easyconfigs/i/iimpi/iimpi-2016.00-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/iimpi/iimpi-2016.00-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iimpi' diff --git a/easybuild/easyconfigs/i/iimpi/iimpi-2016.01-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/iimpi/iimpi-2016.01-GCC-4.9.3-2.25.eb index 8e46199a8e..476d9acb2b 100644 --- a/easybuild/easyconfigs/i/iimpi/iimpi-2016.01-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/iimpi/iimpi-2016.01-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iimpi' diff --git a/easybuild/easyconfigs/i/iimpi/iimpi-2016.02-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/iimpi/iimpi-2016.02-GCC-4.9.3-2.25.eb index 3c4734b17b..7878168e2e 100644 --- a/easybuild/easyconfigs/i/iimpi/iimpi-2016.02-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/iimpi/iimpi-2016.02-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iimpi' diff --git a/easybuild/easyconfigs/i/iimpi/iimpi-2016.02-GCC-5.3.0-2.26.eb b/easybuild/easyconfigs/i/iimpi/iimpi-2016.02-GCC-5.3.0-2.26.eb index 9c1506b2e4..9510f7e46a 100644 --- a/easybuild/easyconfigs/i/iimpi/iimpi-2016.02-GCC-5.3.0-2.26.eb +++ b/easybuild/easyconfigs/i/iimpi/iimpi-2016.02-GCC-5.3.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iimpi' diff --git a/easybuild/easyconfigs/i/iimpi/iimpi-2016.03-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/iimpi/iimpi-2016.03-GCC-4.9.3-2.25.eb index e3b3a17989..08b9b3f507 100644 --- a/easybuild/easyconfigs/i/iimpi/iimpi-2016.03-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/iimpi/iimpi-2016.03-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iimpi' diff --git a/easybuild/easyconfigs/i/iimpi/iimpi-2016.03-GCC-5.3.0-2.26.eb b/easybuild/easyconfigs/i/iimpi/iimpi-2016.03-GCC-5.3.0-2.26.eb index 2b5ee4fd1b..a8596d5825 100644 --- a/easybuild/easyconfigs/i/iimpi/iimpi-2016.03-GCC-5.3.0-2.26.eb +++ b/easybuild/easyconfigs/i/iimpi/iimpi-2016.03-GCC-5.3.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iimpi' diff --git a/easybuild/easyconfigs/i/iimpi/iimpi-2016.03-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/iimpi/iimpi-2016.03-GCC-5.4.0-2.26.eb index 3fa553dc7b..7ac8a1f5c1 100644 --- a/easybuild/easyconfigs/i/iimpi/iimpi-2016.03-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/iimpi/iimpi-2016.03-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iimpi' diff --git a/easybuild/easyconfigs/i/iimpi/iimpi-2016b.eb b/easybuild/easyconfigs/i/iimpi/iimpi-2016b.eb index 5db059f41d..4df51c9895 100644 --- a/easybuild/easyconfigs/i/iimpi/iimpi-2016b.eb +++ b/easybuild/easyconfigs/i/iimpi/iimpi-2016b.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iimpi' diff --git a/easybuild/easyconfigs/i/iimpi/iimpi-2017.00-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/iimpi/iimpi-2017.00-GCC-5.4.0-2.26.eb index d6118a326e..843a2fdb37 100644 --- a/easybuild/easyconfigs/i/iimpi/iimpi-2017.00-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/iimpi/iimpi-2017.00-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iimpi' diff --git a/easybuild/easyconfigs/i/iimpi/iimpi-2017.01-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/iimpi/iimpi-2017.01-GCC-5.4.0-2.26.eb index 1807df2103..cfdd91b0bf 100644 --- a/easybuild/easyconfigs/i/iimpi/iimpi-2017.01-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/iimpi/iimpi-2017.01-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iimpi' diff --git a/easybuild/easyconfigs/i/iimpi/iimpi-2017.02-GCC-6.3.0-2.27.eb b/easybuild/easyconfigs/i/iimpi/iimpi-2017.02-GCC-6.3.0-2.27.eb index 96132c62bd..65c861bb3f 100644 --- a/easybuild/easyconfigs/i/iimpi/iimpi-2017.02-GCC-6.3.0-2.27.eb +++ b/easybuild/easyconfigs/i/iimpi/iimpi-2017.02-GCC-6.3.0-2.27.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iimpi' diff --git a/easybuild/easyconfigs/i/iimpi/iimpi-2017a.eb b/easybuild/easyconfigs/i/iimpi/iimpi-2017a.eb index daa347a40e..14c6d0426d 100644 --- a/easybuild/easyconfigs/i/iimpi/iimpi-2017a.eb +++ b/easybuild/easyconfigs/i/iimpi/iimpi-2017a.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iimpi' diff --git a/easybuild/easyconfigs/i/iimpic/iimpic-2016.10.eb b/easybuild/easyconfigs/i/iimpic/iimpic-2016.10.eb index b1196702a9..568c34ad3f 100644 --- a/easybuild/easyconfigs/i/iimpic/iimpic-2016.10.eb +++ b/easybuild/easyconfigs/i/iimpic/iimpic-2016.10.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iimpic' diff --git a/easybuild/easyconfigs/i/imkl/imkl-11.3.0.109-iimpi-2016.00-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/imkl/imkl-11.3.0.109-iimpi-2016.00-GCC-4.9.3-2.25.eb index c67f0e36d5..d58ab5dfd6 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-11.3.0.109-iimpi-2016.00-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-11.3.0.109-iimpi-2016.00-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'imkl' version = '11.3.0.109' diff --git a/easybuild/easyconfigs/i/imkl/imkl-11.3.1.150-iimpi-2016.01-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/imkl/imkl-11.3.1.150-iimpi-2016.01-GCC-4.9.3-2.25.eb index 5f46cfbdc5..440d1741c0 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-11.3.1.150-iimpi-2016.01-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-11.3.1.150-iimpi-2016.01-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'imkl' version = '11.3.1.150' diff --git a/easybuild/easyconfigs/i/imkl/imkl-11.3.2.181-iimpi-2016.02-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/imkl/imkl-11.3.2.181-iimpi-2016.02-GCC-4.9.3-2.25.eb index 41939dc99b..ecf070b29c 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-11.3.2.181-iimpi-2016.02-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-11.3.2.181-iimpi-2016.02-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'imkl' version = '11.3.2.181' diff --git a/easybuild/easyconfigs/i/imkl/imkl-11.3.2.181-iimpi-2016.02-GCC-5.3.0-2.26.eb b/easybuild/easyconfigs/i/imkl/imkl-11.3.2.181-iimpi-2016.02-GCC-5.3.0-2.26.eb index 9ec0acc472..49091028d6 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-11.3.2.181-iimpi-2016.02-GCC-5.3.0-2.26.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-11.3.2.181-iimpi-2016.02-GCC-5.3.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'imkl' version = '11.3.2.181' diff --git a/easybuild/easyconfigs/i/imkl/imkl-11.3.2.181-pompi-2016.03.eb b/easybuild/easyconfigs/i/imkl/imkl-11.3.2.181-pompi-2016.03.eb index f85a4efd37..d468fef58a 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-11.3.2.181-pompi-2016.03.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-11.3.2.181-pompi-2016.03.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'imkl' version = '11.3.2.181' diff --git a/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016.03-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016.03-GCC-4.9.3-2.25.eb index 710968ace7..229575d9aa 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016.03-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016.03-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'imkl' version = '11.3.3.210' diff --git a/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016.03-GCC-5.3.0-2.26.eb b/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016.03-GCC-5.3.0-2.26.eb index 8418178c3b..5cf1169219 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016.03-GCC-5.3.0-2.26.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016.03-GCC-5.3.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'imkl' version = '11.3.3.210' diff --git a/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016.03-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016.03-GCC-5.4.0-2.26.eb index bf72302fc9..59e82c5910 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016.03-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016.03-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'imkl' version = '11.3.3.210' diff --git a/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016b.eb b/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016b.eb index c3af772fef..71ce462a11 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016b.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpi-2016b.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'imkl' version = '11.3.3.210' diff --git a/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpic-2016.10.eb b/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpic-2016.10.eb index d5a808222b..78c54328f4 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpic-2016.10.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-iimpic-2016.10.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'imkl' version = '11.3.3.210' diff --git a/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-pompi-2016.04.eb b/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-pompi-2016.04.eb index a138ed11d0..c5041e44d7 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-pompi-2016.04.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-pompi-2016.04.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'imkl' version = '11.3.3.210' diff --git a/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-pompi-2016.09.eb b/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-pompi-2016.09.eb index 5981bc06f0..76e951f9af 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-pompi-2016.09.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-11.3.3.210-pompi-2016.09.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'imkl' version = '11.3.3.210' diff --git a/easybuild/easyconfigs/i/imkl/imkl-2017.0.098-iimpi-2017.00-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/imkl/imkl-2017.0.098-iimpi-2017.00-GCC-5.4.0-2.26.eb index 2ec64feae2..5fdaf87f4c 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-2017.0.098-iimpi-2017.00-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-2017.0.098-iimpi-2017.00-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'imkl' version = '2017.0.098' diff --git a/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iimpi-2017.01-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iimpi-2017.01-GCC-5.4.0-2.26.eb index 105db4b7f3..8f2a455c2d 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iimpi-2017.01-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iimpi-2017.01-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'imkl' version = '2017.1.132' diff --git a/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iimpi-2017a.eb b/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iimpi-2017a.eb index bbf353b48c..1b5c22920c 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iimpi-2017a.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iimpi-2017a.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'imkl' version = '2017.1.132' diff --git a/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iompi-2017.01.eb b/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iompi-2017.01.eb index dc78fc3b80..470e9458e0 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iompi-2017.01.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iompi-2017.01.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'imkl' version = '2017.1.132' diff --git a/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iompi-2017a.eb b/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iompi-2017a.eb index 324695a571..a6925bd1bb 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iompi-2017a.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-2017.1.132-iompi-2017a.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'imkl' version = '2017.1.132' diff --git a/easybuild/easyconfigs/i/imkl/imkl-2017.2.174-iimpi-2017.02-GCC-6.3.0-2.27.eb b/easybuild/easyconfigs/i/imkl/imkl-2017.2.174-iimpi-2017.02-GCC-6.3.0-2.27.eb index 5c4c02adc2..96112a1923 100644 --- a/easybuild/easyconfigs/i/imkl/imkl-2017.2.174-iimpi-2017.02-GCC-6.3.0-2.27.eb +++ b/easybuild/easyconfigs/i/imkl/imkl-2017.2.174-iimpi-2017.02-GCC-6.3.0-2.27.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'imkl' version = '2017.2.174' diff --git a/easybuild/easyconfigs/i/impi/impi-2017.0.098-iccifort-2017.0.098-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/impi/impi-2017.0.098-iccifort-2017.0.098-GCC-5.4.0-2.26.eb index 35a62bb371..39fce39091 100644 --- a/easybuild/easyconfigs/i/impi/impi-2017.0.098-iccifort-2017.0.098-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/impi/impi-2017.0.098-iccifort-2017.0.098-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'impi' version = '2017.0.098' diff --git a/easybuild/easyconfigs/i/impi/impi-2017.1.132-iccifort-2017.1.132-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/impi/impi-2017.1.132-iccifort-2017.1.132-GCC-5.4.0-2.26.eb index 7c55fcf3e3..a8fce42a53 100644 --- a/easybuild/easyconfigs/i/impi/impi-2017.1.132-iccifort-2017.1.132-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/impi/impi-2017.1.132-iccifort-2017.1.132-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'impi' version = '2017.1.132' diff --git a/easybuild/easyconfigs/i/impi/impi-2017.1.132-iccifort-2017.1.132-GCC-6.3.0-2.27.eb b/easybuild/easyconfigs/i/impi/impi-2017.1.132-iccifort-2017.1.132-GCC-6.3.0-2.27.eb index 4222d6a26a..9f5485d56c 100644 --- a/easybuild/easyconfigs/i/impi/impi-2017.1.132-iccifort-2017.1.132-GCC-6.3.0-2.27.eb +++ b/easybuild/easyconfigs/i/impi/impi-2017.1.132-iccifort-2017.1.132-GCC-6.3.0-2.27.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'impi' version = '2017.1.132' diff --git a/easybuild/easyconfigs/i/impi/impi-2017.2.174-iccifort-2017.2.174-GCC-6.3.0-2.27.eb b/easybuild/easyconfigs/i/impi/impi-2017.2.174-iccifort-2017.2.174-GCC-6.3.0-2.27.eb index fbace1b7ac..fc92127950 100644 --- a/easybuild/easyconfigs/i/impi/impi-2017.2.174-iccifort-2017.2.174-GCC-6.3.0-2.27.eb +++ b/easybuild/easyconfigs/i/impi/impi-2017.2.174-iccifort-2017.2.174-GCC-6.3.0-2.27.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'impi' version = '2017.2.174' diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.1.109-iccifort-2016.0.109-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/impi/impi-5.1.1.109-iccifort-2016.0.109-GCC-4.9.3-2.25.eb index 72c0998995..d09b33f679 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.1.109-iccifort-2016.0.109-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.1.109-iccifort-2016.0.109-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'impi' version = '5.1.1.109' diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.2.150-iccifort-2016.1.150-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/impi/impi-5.1.2.150-iccifort-2016.1.150-GCC-4.9.3-2.25.eb index eddf864db7..137847dcf7 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.2.150-iccifort-2016.1.150-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.2.150-iccifort-2016.1.150-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'impi' version = '5.1.2.150' diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-4.9.3-2.25.eb index b779e3185b..08aa97c8f6 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'impi' version = '5.1.3.181' diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-5.3.0-2.26.eb b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-5.3.0-2.26.eb index b05f10add0..a1e94bdfa1 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-5.3.0-2.26.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.2.181-GCC-5.3.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'impi' version = '5.1.3.181' diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-4.9.3-2.25.eb index a8d2a5e21e..3d597f449e 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-4.9.3-2.25.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'impi' version = '5.1.3.181' diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.3.0-2.26.eb b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.3.0-2.26.eb index 2886d91689..121e9258f2 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.3.0-2.26.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.3.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'impi' version = '5.1.3.181' diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.4.0-2.26.eb index da9923db0a..e74cd02b1b 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifort-2016.3.210-GCC-5.4.0-2.26.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'impi' version = '5.1.3.181' diff --git a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifortcuda-2016.10.eb b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifortcuda-2016.10.eb index 2da07ac2d4..f3e312361a 100644 --- a/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifortcuda-2016.10.eb +++ b/easybuild/easyconfigs/i/impi/impi-5.1.3.181-iccifortcuda-2016.10.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ name = 'impi' version = '5.1.3.181' diff --git a/easybuild/easyconfigs/i/intel/intel-2016.00.eb b/easybuild/easyconfigs/i/intel/intel-2016.00.eb index f4149f4027..5010692164 100644 --- a/easybuild/easyconfigs/i/intel/intel-2016.00.eb +++ b/easybuild/easyconfigs/i/intel/intel-2016.00.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'intel' diff --git a/easybuild/easyconfigs/i/intel/intel-2016.01.eb b/easybuild/easyconfigs/i/intel/intel-2016.01.eb index 1f12eaea94..bbcac55ebc 100644 --- a/easybuild/easyconfigs/i/intel/intel-2016.01.eb +++ b/easybuild/easyconfigs/i/intel/intel-2016.01.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'intel' diff --git a/easybuild/easyconfigs/i/iompi/iompi-2017.01.eb b/easybuild/easyconfigs/i/iompi/iompi-2017.01.eb index b648d9709a..cf97e1f426 100644 --- a/easybuild/easyconfigs/i/iompi/iompi-2017.01.eb +++ b/easybuild/easyconfigs/i/iompi/iompi-2017.01.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iompi' diff --git a/easybuild/easyconfigs/i/iompi/iompi-2017a.eb b/easybuild/easyconfigs/i/iompi/iompi-2017a.eb index c74e1212e9..f5e1679c27 100644 --- a/easybuild/easyconfigs/i/iompi/iompi-2017a.eb +++ b/easybuild/easyconfigs/i/iompi/iompi-2017a.eb @@ -1,4 +1,4 @@ -# This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild/ +# This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/ easyblock = "Toolchain" name = 'iompi' diff --git a/setup.py b/setup.py index af2eb6baaf..2ea811fb80 100644 --- a/setup.py +++ b/setup.py @@ -109,7 +109,7 @@ that specify the build parameters for software packages (version, compiler toolc versions, etc.).""", license = "GPLv2", keywords = "software build building installation installing compilation HPC scientific", - url = "http://easybuilders.github.io/easybuild/", + url = "https://easybuilders.github.io/easybuild/", data_files = get_data_files(), long_description = read("README.rst"), classifiers = [ -- GitLab From 24d6f4422383581d26a3d4c05fde35089356040f Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 6 Jul 2017 09:14:33 +0200 Subject: [PATCH 341/608] remove reference to 'hpcugent' in M4 easyconfig --- easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-6.4.0.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-6.4.0.eb b/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-6.4.0.eb index 2a832cbb83..2aef3d06c6 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-6.4.0.eb @@ -18,7 +18,7 @@ checksums = ['ab2633921a5cd38e48797bf5521ad259bdc4b979078034a3b790d7fec5493fab'] builddependencies = [('binutils', '2.28', '', True)] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, -# see https://github.com/hpcugent/easybuild-easyconfigs/issues/529 +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { -- GitLab From 64d67db1ecd019e8c6de4d68c90d257949cb76f1 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 6 Jul 2017 09:14:46 +0200 Subject: [PATCH 342/608] check for old GitHUb EasyBuild URLs in easyconfig tests --- test/easyconfigs/easyconfigs.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/easyconfigs/easyconfigs.py b/test/easyconfigs/easyconfigs.py index 6e9ae84a7b..2dac08069f 100644 --- a/test/easyconfigs/easyconfigs.py +++ b/test/easyconfigs/easyconfigs.py @@ -240,6 +240,15 @@ def template_easyconfig_test(self, spec): error_msg = "Found use of '$root', not compatible with modules in Lua syntax, use '%%(installdir)s' instead: %s" self.assertFalse(res, error_msg % res) + # make sure old GitHub urls for EasyBuild that include 'hpcugent' are no longer used + old_urls = [ + 'github.com/hpcugent/easybuild', + 'hpcugent.github.com/easybuild', + 'hpcugent.github.io/easybuild', + ] + for old_url in old_urls: + self.assertFalse(old_url in ec.rawtxt, "Old URL '%s' not found in %s" % (old_url, spec)) + # make sure all patch files are available specdir = os.path.dirname(spec) specfn = os.path.basename(spec) -- GitLab From 5070365c634903f95e91f1367a7dd6cf00ac2c38 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 6 Jul 2017 10:51:08 +0200 Subject: [PATCH 343/608] adding easyconfigs: yaff-1.1.3-intel-2017a-Python-2.7.13.eb --- .../yaff-1.1.3-intel-2017a-Python-2.7.13.eb | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 easybuild/easyconfigs/y/yaff/yaff-1.1.3-intel-2017a-Python-2.7.13.eb diff --git a/easybuild/easyconfigs/y/yaff/yaff-1.1.3-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/y/yaff/yaff-1.1.3-intel-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..16b4d6c331 --- /dev/null +++ b/easybuild/easyconfigs/y/yaff/yaff-1.1.3-intel-2017a-Python-2.7.13.eb @@ -0,0 +1,31 @@ +easyblock = 'PythonPackage' + +name = 'yaff' +version = '1.1.3' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://molmod.github.io/yaff/' +description = """Yaff stands for 'Yet another force field'. It is a pythonic force-field code.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['https://github.com/molmod/yaff/releases/download/%(version)s'] +sources = [SOURCE_TAR_GZ] +checksums = ['1e4ce10c19ed4338cb8ddee63beecadee4ecefcf1c12be90312ce29a6cbae116'] + +dependencies = [ + ('Python', '2.7.13'), + ('h5py', '2.7.0', versionsuffix), + ('molmod', '1.1', '-Python-%(pyver)s'), +] + +options = {'modulename': name} +runtest = "export MATPLOTLIBRC=$PWD; echo 'backend: agg' > $MATPLOTLIBRC/matplotlibrc; " +runtest += "python setup.py build_ext -i; nosetests -v" + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages/%(name)s'], +} + +moduleclass = 'chem' -- GitLab From 0363b0fcf8b4fa4981b0d272c3a031f64c280518 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 6 Jul 2017 12:43:32 +0200 Subject: [PATCH 344/608] adding easyconfigs: geopy-1.11.0-intel-2017a.eb --- .../g/geopy/geopy-1.11.0-intel-2017a.eb | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 easybuild/easyconfigs/g/geopy/geopy-1.11.0-intel-2017a.eb diff --git a/easybuild/easyconfigs/g/geopy/geopy-1.11.0-intel-2017a.eb b/easybuild/easyconfigs/g/geopy/geopy-1.11.0-intel-2017a.eb new file mode 100644 index 0000000000..d8e1943c56 --- /dev/null +++ b/easybuild/easyconfigs/g/geopy/geopy-1.11.0-intel-2017a.eb @@ -0,0 +1,21 @@ +easyblock = 'PythonPackage' + +name = 'geopy' +version = '1.11.0' + +homepage = 'https://github.com/geopy/geopy' +description = "geopy is a Python 2 and 3 client for several popular geocoding web services." + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [PYPI_SOURCE] +sources = [SOURCE_TAR_GZ] + +dependencies = [('Python', '3.6.1')] + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages'], +} + +moduleclass = 'lib' -- GitLab From a8411994093907b47826e22dcf1235a029b04099 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 6 Jul 2017 13:02:56 +0200 Subject: [PATCH 345/608] add missing versionsuffix to geopy easyconfig --- ...0-intel-2017a.eb => geopy-1.11.0-intel-2017a-Python-3.6.1.eb} | 1 + 1 file changed, 1 insertion(+) rename easybuild/easyconfigs/g/geopy/{geopy-1.11.0-intel-2017a.eb => geopy-1.11.0-intel-2017a-Python-3.6.1.eb} (92%) diff --git a/easybuild/easyconfigs/g/geopy/geopy-1.11.0-intel-2017a.eb b/easybuild/easyconfigs/g/geopy/geopy-1.11.0-intel-2017a-Python-3.6.1.eb similarity index 92% rename from easybuild/easyconfigs/g/geopy/geopy-1.11.0-intel-2017a.eb rename to easybuild/easyconfigs/g/geopy/geopy-1.11.0-intel-2017a-Python-3.6.1.eb index d8e1943c56..4b03e02aee 100644 --- a/easybuild/easyconfigs/g/geopy/geopy-1.11.0-intel-2017a.eb +++ b/easybuild/easyconfigs/g/geopy/geopy-1.11.0-intel-2017a-Python-3.6.1.eb @@ -2,6 +2,7 @@ easyblock = 'PythonPackage' name = 'geopy' version = '1.11.0' +versionsuffix = '-Python-%(pyver)s' homepage = 'https://github.com/geopy/geopy' description = "geopy is a Python 2 and 3 client for several popular geocoding web services." -- GitLab From a94c3c6691da037d785341e19c5377e077b362b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Thu, 6 Jul 2017 13:33:24 +0200 Subject: [PATCH 346/608] Update EasyBuild URL --- easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.2.6-foss-2016b.eb | 2 +- .../s/Salmon/Salmon-0.8.2-foss-2016b-Python-2.7.12.eb | 2 +- easybuild/easyconfigs/t/tbb/tbb-2017_U5-foss-2016b.eb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.2.6-foss-2016b.eb b/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.2.6-foss-2016b.eb index ff9fe9e8d2..d5a896eea2 100644 --- a/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.2.6-foss-2016b.eb +++ b/easybuild/easyconfigs/j/Jellyfish/Jellyfish-2.2.6-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild easyblock = 'ConfigureMake' diff --git a/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2-foss-2016b-Python-2.7.12.eb index a171f04582..1ef3760d15 100644 --- a/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2-foss-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/s/Salmon/Salmon-0.8.2-foss-2016b-Python-2.7.12.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild easyblock = 'CMakeMake' diff --git a/easybuild/easyconfigs/t/tbb/tbb-2017_U5-foss-2016b.eb b/easybuild/easyconfigs/t/tbb/tbb-2017_U5-foss-2016b.eb index 17d6caf922..c187512784 100644 --- a/easybuild/easyconfigs/t/tbb/tbb-2017_U5-foss-2016b.eb +++ b/easybuild/easyconfigs/t/tbb/tbb-2017_U5-foss-2016b.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild name = 'tbb' version = '2017_U5' -- GitLab From 070007f419368b29cbbeec96ab8549b4f0629b1e Mon Sep 17 00:00:00 2001 From: Shahzeb Siddiqui Date: Thu, 6 Jul 2017 15:49:43 -0400 Subject: [PATCH 347/608] adding Bowtiew with GCCcore 5.4.0 --- .../b/Bowtie/Bowtie-1.1.2-GCCcore-5.4.0.eb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 easybuild/easyconfigs/b/Bowtie/Bowtie-1.1.2-GCCcore-5.4.0.eb diff --git a/easybuild/easyconfigs/b/Bowtie/Bowtie-1.1.2-GCCcore-5.4.0.eb b/easybuild/easyconfigs/b/Bowtie/Bowtie-1.1.2-GCCcore-5.4.0.eb new file mode 100644 index 0000000000..f12c5655a0 --- /dev/null +++ b/easybuild/easyconfigs/b/Bowtie/Bowtie-1.1.2-GCCcore-5.4.0.eb @@ -0,0 +1,18 @@ +# Modified from existing version by: +# Robert Schmidt +# Ottawa Hospital Research Institute - Bioinformatics Team +name = 'Bowtie' +version = '1.1.2' + +homepage = 'http://bowtie-bio.sourceforge.net/index.shtml' +description = """Bowtie is an ultrafast, memory-efficient short read aligner. +It aligns short DNA sequences (reads) to the human genome. +""" + +toolchain = {'name': 'GCCcore', 'version': '5.4.0'} +toolchainopts = {'pic': True} + +sources = ['%(namelower)s-%(version)s-src.zip'] +source_urls = ['http://download.sourceforge.net/bowtie-bio/'] + +moduleclass = 'bio' -- GitLab From d02a28e898c32b15e69f03e684ccd17f6c1c5c0e Mon Sep 17 00:00:00 2001 From: Shahzeb Siddiqui Date: Thu, 6 Jul 2017 15:53:16 -0400 Subject: [PATCH 348/608] adding BWA for GCCcore 5.4.0 --- .../b/BWA/BWA-0.7.15-GCCcore-5.4.0.eb | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 easybuild/easyconfigs/b/BWA/BWA-0.7.15-GCCcore-5.4.0.eb diff --git a/easybuild/easyconfigs/b/BWA/BWA-0.7.15-GCCcore-5.4.0.eb b/easybuild/easyconfigs/b/BWA/BWA-0.7.15-GCCcore-5.4.0.eb new file mode 100644 index 0000000000..ffaa2a351d --- /dev/null +++ b/easybuild/easyconfigs/b/BWA/BWA-0.7.15-GCCcore-5.4.0.eb @@ -0,0 +1,26 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# +# Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA +# Authors:: George Tsouloupas , Fotis Georgatos +# License:: MIT/GPL +# $Id$ +# +# This work implements a part of the HPCBIOS project and is a component of the policy: +# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html +## + +name = 'BWA' +version = '0.7.15' + +homepage = 'http://bio-bwa.sourceforge.net/' +description = """Burrows-Wheeler Aligner (BWA) is an efficient program that aligns + relatively short nucleotide sequences against a long reference sequence such as the human genome.""" + +toolchain = {'name': 'GCCcore', 'version': '5.4.0'} +toolchainopts = {'optarch': True, 'pic': True} + +sources = [SOURCELOWER_TAR_BZ2] +source_urls = [('http://sourceforge.net/projects/bio-bwa/files/', 'download')] + +moduleclass = 'bio' -- GitLab From f64b4029c4d5f9271c40c771c690b86a6ec64857 Mon Sep 17 00:00:00 2001 From: Shahzeb Siddiqui Date: Thu, 6 Jul 2017 16:40:25 -0400 Subject: [PATCH 349/608] making changes requested in PR https://github.com/easybuilders/easybuild-easyconfigs/pull/4822 --- easybuild/easyconfigs/b/BWA/BWA-0.7.15-GCCcore-5.4.0.eb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/easybuild/easyconfigs/b/BWA/BWA-0.7.15-GCCcore-5.4.0.eb b/easybuild/easyconfigs/b/BWA/BWA-0.7.15-GCCcore-5.4.0.eb index ffaa2a351d..726ee69664 100644 --- a/easybuild/easyconfigs/b/BWA/BWA-0.7.15-GCCcore-5.4.0.eb +++ b/easybuild/easyconfigs/b/BWA/BWA-0.7.15-GCCcore-5.4.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA # Authors:: George Tsouloupas , Fotis Georgatos @@ -18,9 +18,9 @@ description = """Burrows-Wheeler Aligner (BWA) is an efficient program that alig relatively short nucleotide sequences against a long reference sequence such as the human genome.""" toolchain = {'name': 'GCCcore', 'version': '5.4.0'} -toolchainopts = {'optarch': True, 'pic': True} +toolchainopts = {'pic': True} -sources = [SOURCELOWER_TAR_BZ2] -source_urls = [('http://sourceforge.net/projects/bio-bwa/files/', 'download')] +sources = ['v%(version)s.tar.gz'] +source_urls = ['https://github.com/lh3/%(name)s/archive/'] moduleclass = 'bio' -- GitLab From 09f8c3ed6e282441d5177ee82c7770add890a395 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Fri, 7 Jul 2017 09:08:57 +0200 Subject: [PATCH 350/608] Add Boost 1.54.0 for foss-2016b --- .../Boost-1.54.0-foss-2016b-Python-2.7.12.eb | 31 +++++++++++++++++++ .../b/Boost/Boost-1.54.0_fix-allocator.patch | 13 ++++++++ .../Boost-1.54.0_fix-int64_t-support.patch | 16 ++++++++++ ...oost-1.54.0_fix-make_tuple-namespace.patch | 22 +++++++++++++ 4 files changed, 82 insertions(+) create mode 100644 easybuild/easyconfigs/b/Boost/Boost-1.54.0-foss-2016b-Python-2.7.12.eb create mode 100644 easybuild/easyconfigs/b/Boost/Boost-1.54.0_fix-allocator.patch create mode 100644 easybuild/easyconfigs/b/Boost/Boost-1.54.0_fix-int64_t-support.patch create mode 100644 easybuild/easyconfigs/b/Boost/Boost-1.54.0_fix-make_tuple-namespace.patch diff --git a/easybuild/easyconfigs/b/Boost/Boost-1.54.0-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/b/Boost/Boost-1.54.0-foss-2016b-Python-2.7.12.eb new file mode 100644 index 0000000000..f2dba0b8a4 --- /dev/null +++ b/easybuild/easyconfigs/b/Boost/Boost-1.54.0-foss-2016b-Python-2.7.12.eb @@ -0,0 +1,31 @@ +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild + +name = 'Boost' +version = '1.54.0' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://www.boost.org/' +description = "Boost provides free peer-reviewed portable C++ source libraries." + +toolchain = {'name': 'foss', 'version': '2016b'} +toolchainopts = {'usempi': True, 'pic': True, 'cstd': 'c++0x'} + +sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))] +source_urls = ['https://sourceforge.net/projects/%(namelower)s/files/%(namelower)s/%(version)s'] + +patches = [ + '%(name)s-%(version)s_fix-allocator.patch', + '%(name)s-%(version)s_fix-int64_t-support.patch', + '%(name)s-%(version)s_fix-make_tuple-namespace.patch', +] + +dependencies = [ + ('bzip2', '1.0.6'), + ('zlib', '1.2.8'), + ('Python', '2.7.12'), +] + +# also build boost_mpi +boost_mpi = True + +moduleclass = 'devel' diff --git a/easybuild/easyconfigs/b/Boost/Boost-1.54.0_fix-allocator.patch b/easybuild/easyconfigs/b/Boost/Boost-1.54.0_fix-allocator.patch new file mode 100644 index 0000000000..d8417cd358 --- /dev/null +++ b/easybuild/easyconfigs/b/Boost/Boost-1.54.0_fix-allocator.patch @@ -0,0 +1,13 @@ +* fix build error: No best alternative for libs/coroutine/build/allocator_sources +author: Paul Jähne +--- libs/coroutine/build/Jamfile.v2 ++++ libs/coroutine/build/Jamfile.v2 +@@ -40,7 +40,7 @@ + : detail/standard_stack_allocator_posix.cpp + ; + +-explicit yield_sources ; ++explicit allocator_sources ; + + lib boost_coroutine + : allocator_sources diff --git a/easybuild/easyconfigs/b/Boost/Boost-1.54.0_fix-int64_t-support.patch b/easybuild/easyconfigs/b/Boost/Boost-1.54.0_fix-int64_t-support.patch new file mode 100644 index 0000000000..3f717263bf --- /dev/null +++ b/easybuild/easyconfigs/b/Boost/Boost-1.54.0_fix-int64_t-support.patch @@ -0,0 +1,16 @@ +* fix build error: int64_t support +author: Paul Jähne +--- boost/cstdint.hpp ++++ boost/cstdint.hpp +@@ -41,7 +41,10 @@ + // so we disable use of stdint.h when GLIBC does not define __GLIBC_HAVE_LONG_LONG. + // See https://svn.boost.org/trac/boost/ticket/3548 and http://sources.redhat.com/bugzilla/show_bug.cgi?id=10990 + // +-#if defined(BOOST_HAS_STDINT_H) && (!defined(__GLIBC__) || defined(__GLIBC_HAVE_LONG_LONG)) ++#if defined(BOOST_HAS_STDINT_H) \ ++ && (!defined(__GLIBC__) \ ++ || defined(__GLIBC_HAVE_LONG_LONG) \ ++ || (defined(__GLIBC__) && ((__GLIBC__ > 2) || ((__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 17))))) + + // The following #include is an implementation artifact; not part of interface. + # ifdef __hpux diff --git a/easybuild/easyconfigs/b/Boost/Boost-1.54.0_fix-make_tuple-namespace.patch b/easybuild/easyconfigs/b/Boost/Boost-1.54.0_fix-make_tuple-namespace.patch new file mode 100644 index 0000000000..42226a8183 --- /dev/null +++ b/easybuild/easyconfigs/b/Boost/Boost-1.54.0_fix-make_tuple-namespace.patch @@ -0,0 +1,22 @@ +* fix build error: could not convert 'std::make_tuple(_Elements&& ...) +author: Paul Jähne +--- libs/mpi/src/python/py_nonblocking.cpp ++++ libs/mpi/src/python/py_nonblocking.cpp +@@ -118,7 +118,7 @@ + pair result = + wait_any(requests.begin(), requests.end()); + +- return make_tuple( ++ return boost::python::make_tuple( + result.second->get_value_or_none(), + result.first, + distance(requests.begin(), result.second)); +@@ -134,7 +134,7 @@ + test_any(requests.begin(), requests.end()); + + if (result) +- return make_tuple( ++ return boost::python::make_tuple( + result->second->get_value_or_none(), + result->first, + distance(requests.begin(), result->second)); -- GitLab From 39932ee7b377ebe2d3a0ba170a0368a00de0d57b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Fri, 7 Jul 2017 09:20:36 +0200 Subject: [PATCH 351/608] Add Sailfish for foss-2016b with dependencies --- .../g/g2log/g2log-1.0-foss-2016b.eb | 33 ++++++++++ ...ailfish-0.10.1-foss-2016b-Python-2.7.12.eb | 40 ++++++++++++ ...lfish-0.10.1_skip-included-Jellyfish.patch | 64 +++++++++++++++++++ 3 files changed, 137 insertions(+) create mode 100644 easybuild/easyconfigs/g/g2log/g2log-1.0-foss-2016b.eb create mode 100644 easybuild/easyconfigs/s/Sailfish/Sailfish-0.10.1-foss-2016b-Python-2.7.12.eb create mode 100644 easybuild/easyconfigs/s/Sailfish/Sailfish-0.10.1_skip-included-Jellyfish.patch diff --git a/easybuild/easyconfigs/g/g2log/g2log-1.0-foss-2016b.eb b/easybuild/easyconfigs/g/g2log/g2log-1.0-foss-2016b.eb new file mode 100644 index 0000000000..d656235b6c --- /dev/null +++ b/easybuild/easyconfigs/g/g2log/g2log-1.0-foss-2016b.eb @@ -0,0 +1,33 @@ +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild + +easyblock = 'CMakeMake' + +name = 'g2log' +version = '1.0' + +homepage = 'https://sites.google.com/site/kjellhedstrom2//g2log-efficient-background-io-processign-with-c11' +description = """g2log, efficient asynchronous logger using C++11""" + +toolchain = {'name': 'foss', 'version': '2016b'} + +source_urls = ['https://bitbucket.org/KjellKod/g2log/get/'] +sources = ['version-%(version)s.tar.gz'] + +checksums = ['2cd2d9cfa0cf71c80a546cde1a25f19f6b7fddf610f7cbb30a67bb81dadb7026'] + +preconfigopts = 'unzip ../3rdParty/gtest/gtest-1.6.0__stripped.zip -d ../3rdParty/gtest/ &&' +preinstallopts = 'mkdir %(installdir)s/lib && cp lib*.a %(installdir)s/lib ||' + +builddependencies = [ + ('CMake', '3.7.2'), +] + +start_dir = 'g2log' +parallel = 1 + +sanity_check_paths = { + 'files': ['lib/liblib_g2logger.a', 'lib/liblib_activeobject.a'], + 'dirs': [], +} + +moduleclass = 'devel' diff --git a/easybuild/easyconfigs/s/Sailfish/Sailfish-0.10.1-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/s/Sailfish/Sailfish-0.10.1-foss-2016b-Python-2.7.12.eb new file mode 100644 index 0000000000..0b7cab53e1 --- /dev/null +++ b/easybuild/easyconfigs/s/Sailfish/Sailfish-0.10.1-foss-2016b-Python-2.7.12.eb @@ -0,0 +1,40 @@ +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild + +easyblock = 'CMakeMake' + +name = 'Sailfish' +version = '0.10.1' +versionsuffix = '-Python-2.7.12' + +homepage = 'http://www.cs.cmu.edu/~ckingsf/software/%(namelower)s/' +description = """Sailfish is a software tool that implements a novel, alignment-free algorithm for the estimation of + isoform abundances directly from a set of reference sequences and RNA-seq reads. """ + +toolchain = {'name': 'foss', 'version': '2016b'} +toolchainopts = {'pic': True} + +source_urls = ['https://github.com/kingsfordgroup/%(namelower)s/archive/'] +sources = ['v%(version)s.tar.gz'] + +checksums = ['a0d6d944382f2e07ffbfd0371132588e2f22bb846ecfc3d3435ff3d81b30d6c6'] + +patches = ['%(name)s-%(version)s_skip-included-Jellyfish.patch'] + +builddependencies = [('CMake', '3.7.2')] + +dependencies = [ + ('Boost', '1.63.0', versionsuffix), + ('tbb', '2017_U5'), + ('Jellyfish', '2.2.6'), + ('g2log', '1.0'), +] + +sanity_check_paths = { + 'files': ['bin/%(namelower)s'], + 'dirs': [] +} + +# build fails otherwise +parallel = 1 + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/s/Sailfish/Sailfish-0.10.1_skip-included-Jellyfish.patch b/easybuild/easyconfigs/s/Sailfish/Sailfish-0.10.1_skip-included-Jellyfish.patch new file mode 100644 index 0000000000..6f8d75e098 --- /dev/null +++ b/easybuild/easyconfigs/s/Sailfish/Sailfish-0.10.1_skip-included-Jellyfish.patch @@ -0,0 +1,64 @@ +* skip downloading and building of Jellyfish, since it's provided via EasyBuild already +* don't hardcode $CMAKE_CXX_FLAGS +author: Paul Jähne +--- CMakeLists.txt ++++ CMakeLists.txt +@@ -25,7 +25,7 @@ + + ## Set the standard required compile flags + # Nov 18th --- removed -DHAVE_CONFIG_H +-set (CMAKE_CXX_FLAGS "-pthread -funroll-loops -fPIC -fomit-frame-pointer -Ofast -DHAVE_ANSI_TERM -DHAVE_SSTREAM -DRAPMAP_SALMON_SUPPORT -Wall -std=c++11 -Wreturn-type -Werror=return-type") ++set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -L$ENV{EBROOTJELLYFISH}/lib -ljellyfish-2.0 -pthread -DHAVE_ANSI_TERM -DHAVE_SSTREAM -DRAPMAP_SALMON_SUPPORT -Wall -std=c++11 -Wreturn-type -Werror=return-type") + + ## + # OSX is strange (some might say, stupid in this regard). Deal with it's quirkines here. +@@ -287,23 +287,6 @@ + set(SUFFARRAY_INCLUDE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/external/install/include) + + +-message("Build system will fetch and build Jellyfish") +-message("==================================================================") +-ExternalProject_Add(libjellyfish +- DOWNLOAD_DIR ${CMAKE_CURRENT_SOURCE_DIR}/external +- DOWNLOAD_COMMAND curl -k -L https://github.com/gmarcais/Jellyfish/releases/download/v2.2.3/jellyfish-2.2.3.tar.gz -o jellyfish-2.2.3.tgz && +- rm -fr jellyfish-2.2.3 && +- tar -xzvf jellyfish-2.2.3.tgz +- SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/external/jellyfish-2.2.3 +- INSTALL_DIR ${CMAKE_CURRENT_SOURCE_DIR}/external/install +- CONFIGURE_COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/external/jellyfish-2.2.3/configure --prefix= CC=${CMAKE_C_COMPILER} CXX=${CMAKE_CXX_COMPILER} CXXFLAGS=${JELLYFISH_CXX_FLAGS} +- BUILD_COMMAND ${MAKE} CC=${CMAKE_C_COMPILER} CXX=${CMAKE_CXX_COMPILER} CXXFLAGS=${JELLYFISH_CXX_FLAGS} +- BUILD_IN_SOURCE 1 +- INSTALL_COMMAND make install && +- cp config.h /include/jellyfish-2.2.3/jellyfish/ && +- cp config.h /include/ +-) +- + find_package(TBB) + ## + # +--- src/CMakeLists.txt ++++ src/CMakeLists.txt +@@ -43,7 +43,6 @@ + ${GAT_SOURCE_DIR}/external/cereal/include + ${GAT_SOURCE_DIR}/external/install/include + ${GAT_SOURCE_DIR}/external/install/include/rapmap +-${GAT_SOURCE_DIR}/external/install/include/jellyfish-2.2.3 + ${ZLIB_INCLUDE_DIR} + ${TBB_INCLUDE_DIRS} + ${Boost_INCLUDE_DIRS} +@@ -97,7 +96,6 @@ + ${ZLIB_LIBRARY} + ${SUFFARRAY_LIB} + ${SUFFARRAY64_LIB} +- ${GAT_SOURCE_DIR}/external/install/lib/libjellyfish-2.0.a + m + ${TBB_LIBRARIES} + ${LIBSAILFISH_LINKER_FLAGS} +@@ -115,7 +113,6 @@ + ${ZLIB_LIBRARY} + ${SUFFARRAY_LIB} + ${SUFFARRAY64_LIB} +- ${GAT_SOURCE_DIR}/external/install/lib/libjellyfish-2.0.a + m + ${TBB_LIBRARIES} + ${LIBSAILFISH_LINKER_FLAGS} -- GitLab From 364705bb737cb8efecb12254ddb8328f74da3b3d Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Fri, 7 Jul 2017 15:40:19 +0200 Subject: [PATCH 352/608] add Rtsne as extension to R 3.4.0 --- .../r/R/R-3.4.0-intel-2017a-X11-20170314.eb | 1 + .../r/R/Rtsne-0.13_icpc-wd308.patch | 20 +++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 easybuild/easyconfigs/r/R/Rtsne-0.13_icpc-wd308.patch diff --git a/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb b/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb index 5616a94b6a..78bdaaa928 100644 --- a/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb +++ b/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb @@ -527,6 +527,7 @@ exts_list = [ ('glmmML', '1.0.2', ext_options), ('ucminf', '1.1-4', ext_options), ('ordinal', '2015.6-28', ext_options), + ('Rtsne', '0.13', dict(ext_options.items() + [('patches', ['Rtsne-0.13_icpc-wd308.patch'])])), ] moduleclass = 'lang' diff --git a/easybuild/easyconfigs/r/R/Rtsne-0.13_icpc-wd308.patch b/easybuild/easyconfigs/r/R/Rtsne-0.13_icpc-wd308.patch new file mode 100644 index 0000000000..f1c22fbba2 --- /dev/null +++ b/easybuild/easyconfigs/r/R/Rtsne-0.13_icpc-wd308.patch @@ -0,0 +1,20 @@ +--- Rtsne.orig/src/Makevars 2017-04-14 17:51:58.000000000 +0200 ++++ Rtsne/src/Makevars 2017-07-07 15:29:41.426358000 +0200 +@@ -25,4 +25,5 @@ + ## done by a number of packages, but recommended only for more advanced users + ## comfortable with autoconf and its related tools. + +- ++# disable Intel C++ compiler (icpc) warning/error #308, to avoid 'member "std::complex::_M_value" is inaccessible' ++PKG_CXXFLAGS = -wd308 +--- Rtsne.orig/MD5 2017-04-14 18:38:37.000000000 +0200 ++++ Rtsne/MD5 2017-07-07 15:29:58.247065000 +0200 +@@ -6,7 +6,7 @@ + 7af8fde3597798501e00bdc337d8f03e *README.md + 42ae2f3c4872e03c5e401d949a86cad9 *inst/CITATION + 065bed604fc3d4be094fea9fbf7f162e *man/Rtsne.Rd +-fcd429500be5e9251157f001145e8a8b *src/Makevars ++5ed55ce6fb49190f62c48ff8ce8705a1 *src/Makevars + e9a378d06e68a325926bf92e779f280e *src/Makevars.win + 5d991038a3c68e7232302c837179c26d *src/RcppExports.cpp + 3740407bdc49d16ee9a7a8d5ee96a327 *src/Rtsne.cpp -- GitLab From aa4b988517a8c6f143af91b990c1cc3a0c85a567 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Fri, 7 Jul 2017 15:42:58 +0200 Subject: [PATCH 353/608] adding easyconfigs: Seurat-1.4.0-intel-2017a-R-3.4.0.eb --- .../Seurat-1.4.0-intel-2017a-R-3.4.0.eb | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 easybuild/easyconfigs/s/Seurat/Seurat-1.4.0-intel-2017a-R-3.4.0.eb diff --git a/easybuild/easyconfigs/s/Seurat/Seurat-1.4.0-intel-2017a-R-3.4.0.eb b/easybuild/easyconfigs/s/Seurat/Seurat-1.4.0-intel-2017a-R-3.4.0.eb new file mode 100644 index 0000000000..7db49d1db5 --- /dev/null +++ b/easybuild/easyconfigs/s/Seurat/Seurat-1.4.0-intel-2017a-R-3.4.0.eb @@ -0,0 +1,22 @@ +easyblock = 'RPackage' + +name = 'Seurat' +version = '1.4.0' +versionsuffix = '-R-%(rver)s' + +homepage = 'http://satijalab.org/seurat' +description = "Seurat is an R package designed for QC, analysis, and exploration of single cell RNA-seq data." + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['https://github.com/satijalab/seurat/releases/download/v%(version_major_minor)s.0/'] +sources = ['%(name)s_%(version)s.tgz'] + +dependencies = [('R', '3.4.0', '-X11-20170314')] + +sanity_check_paths = { + 'files': [], + 'dirs': [name], +} + +moduleclass = 'bio' -- GitLab From 86575128430ae51b7d7d79940826d9937455e220 Mon Sep 17 00:00:00 2001 From: jrbosch Date: Fri, 7 Jul 2017 10:40:02 -0400 Subject: [PATCH 354/608] use the new URL in the header - https://github.com/easybuilders/easybuild --- .../b/Biopython/Biopython-1.68-foss-2016b-Python-3.5.2.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/b/Biopython/Biopython-1.68-foss-2016b-Python-3.5.2.eb b/easybuild/easyconfigs/b/Biopython/Biopython-1.68-foss-2016b-Python-3.5.2.eb index 82e737e6cf..dc0119ae93 100644 --- a/easybuild/easyconfigs/b/Biopython/Biopython-1.68-foss-2016b-Python-3.5.2.eb +++ b/easybuild/easyconfigs/b/Biopython/Biopython-1.68-foss-2016b-Python-3.5.2.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , Thekla Loizou , -- GitLab From 028cae5ca68d431ccf9482757d3a208613f3b74e Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Fri, 7 Jul 2017 16:50:50 +0200 Subject: [PATCH 355/608] add comments to patch for Rtsne --- easybuild/easyconfigs/r/R/Rtsne-0.13_icpc-wd308.patch | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/r/R/Rtsne-0.13_icpc-wd308.patch b/easybuild/easyconfigs/r/R/Rtsne-0.13_icpc-wd308.patch index f1c22fbba2..6c76f3883e 100644 --- a/easybuild/easyconfigs/r/R/Rtsne-0.13_icpc-wd308.patch +++ b/easybuild/easyconfigs/r/R/Rtsne-0.13_icpc-wd308.patch @@ -1,4 +1,6 @@ ---- Rtsne.orig/src/Makevars 2017-04-14 17:51:58.000000000 +0200 +add -wd308 compiler option to avoid compiler warning #308 being treated as an error +author: Kenneth Hoste (HPC-UGent) +-- Rtsne.orig/src/Makevars 2017-04-14 17:51:58.000000000 +0200 +++ Rtsne/src/Makevars 2017-07-07 15:29:41.426358000 +0200 @@ -25,4 +25,5 @@ ## done by a number of packages, but recommended only for more advanced users -- GitLab From 5062b06e6694b73d1609e4f8af885a9bf2217718 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Fri, 7 Jul 2017 14:51:17 -0500 Subject: [PATCH 356/608] adding easyconfigs: GCC-6.4.0-2.28.eb --- .../b/Bison/Bison-3.0.4-GCCcore-6.4.0.eb | 13 ++++---- easybuild/easyconfigs/b/Bison/Bison-3.0.4.eb | 19 ++++++++---- .../b/binutils/binutils-2.28-GCCcore-6.4.0.eb | 8 +++-- .../easyconfigs/b/binutils/binutils-2.28.eb | 8 +++-- .../f/flex/flex-2.6.4-GCCcore-6.4.0.eb | 16 ++++++---- easybuild/easyconfigs/f/flex/flex-2.6.4.eb | 30 +++++++++++++++++++ easybuild/easyconfigs/g/GCC/GCC-6.4.0-2.28.eb | 14 ++++++--- .../easyconfigs/g/GCCcore/GCCcore-6.4.0.eb | 18 ++++++----- .../help2man/help2man-1.47.4-GCCcore-6.4.0.eb | 8 +++-- .../easyconfigs/h/help2man/help2man-1.47.4.eb | 9 ++++-- .../m/M4/M4-1.4.18-GCCcore-6.4.0.eb | 20 ++++++++----- easybuild/easyconfigs/m/M4/M4-1.4.18.eb | 17 ++++++----- .../z/zlib/zlib-1.2.11-GCCcore-6.4.0.eb | 20 ++++++++----- easybuild/easyconfigs/z/zlib/zlib-1.2.11.eb | 18 +++++++---- 14 files changed, 156 insertions(+), 62 deletions(-) create mode 100644 easybuild/easyconfigs/f/flex/flex-2.6.4.eb diff --git a/easybuild/easyconfigs/b/Bison/Bison-3.0.4-GCCcore-6.4.0.eb b/easybuild/easyconfigs/b/Bison/Bison-3.0.4-GCCcore-6.4.0.eb index 2623578bc5..8a3bfe8164 100644 --- a/easybuild/easyconfigs/b/Bison/Bison-3.0.4-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/b/Bison/Bison-3.0.4-GCCcore-6.4.0.eb @@ -4,13 +4,17 @@ name = 'Bison' version = '3.0.4' homepage = 'http://www.gnu.org/software/bison' -description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar - into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables.""" + +description = """ + Bison is a general-purpose parser generator that converts an annotated + context-free grammar into a deterministic LR or generalized LR (GLR) parser + employing LALR(1) parser tables. +""" toolchain = {'name': 'GCCcore', 'version': '6.4.0'} -sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] +sources = [SOURCELOWER_TAR_GZ] checksums = ['b67fd2daae7a64b5ba862c66c07c1addb9e6b1b05c5f2049392cfd8a2172952e'] builddependencies = [ @@ -19,10 +23,9 @@ builddependencies = [ ('binutils', '2.28', '', True), ] - sanity_check_paths = { + 'dirs': ['bin', 'lib'], 'files': ['bin/%s' % x for x in ['bison', 'yacc']] + ['lib/liby.a'], - 'dirs': [], } moduleclass = 'lang' diff --git a/easybuild/easyconfigs/b/Bison/Bison-3.0.4.eb b/easybuild/easyconfigs/b/Bison/Bison-3.0.4.eb index 7828372bd5..ea20c01d4d 100644 --- a/easybuild/easyconfigs/b/Bison/Bison-3.0.4.eb +++ b/easybuild/easyconfigs/b/Bison/Bison-3.0.4.eb @@ -4,19 +4,26 @@ name = 'Bison' version = '3.0.4' homepage = 'http://www.gnu.org/software/bison' -description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar -into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables.""" + +description = """ + Bison is a general-purpose parser generator that converts an annotated + context-free grammar into a deterministic LR or generalized LR (GLR) parser + employing LALR(1) parser tables. +""" toolchain = {'name': 'dummy', 'version': ''} -sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['b67fd2daae7a64b5ba862c66c07c1addb9e6b1b05c5f2049392cfd8a2172952e'] -builddependencies = [('M4', '1.4.17')] +builddependencies = [ + ('M4', '1.4.18'), +] sanity_check_paths = { - 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"], - 'dirs': [], + 'dirs': ['bin', 'lib'], + 'files': ['bin/%s' % x for x in ['bison', 'yacc']] + ['lib/liby.a'], } moduleclass = 'lang' diff --git a/easybuild/easyconfigs/b/binutils/binutils-2.28-GCCcore-6.4.0.eb b/easybuild/easyconfigs/b/binutils/binutils-2.28-GCCcore-6.4.0.eb index b6486c7dfb..cb761e0729 100644 --- a/easybuild/easyconfigs/b/binutils/binutils-2.28-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/b/binutils/binutils-2.28-GCCcore-6.4.0.eb @@ -1,13 +1,16 @@ +easyblock = 'EB_binutils' + name = 'binutils' version = '2.28' homepage = 'http://directory.fsf.org/project/binutils/' + description = "binutils: GNU binary utilities" toolchain = {'name': 'GCCcore', 'version': '6.4.0'} -sources = [SOURCE_TAR_GZ] source_urls = [GNU_SOURCE] +sources = [SOURCE_TAR_GZ] checksums = ['cd717966fc761d840d451dbd58d44e1e5b92949d2073d75b73fccb476d772fcf'] builddependencies = [ @@ -15,7 +18,8 @@ builddependencies = [ ('Bison', '3.0.4'), # zlib required, but being linked in statically, so not a runtime dep ('zlib', '1.2.11'), - # use same binutils version that was used when building GCC toolchain, to 'bootstrap' this binutils + # use same binutils version that was used when building GCC toolchain, + # to 'bootstrap' this binutils ('binutils', version, '', True) ] diff --git a/easybuild/easyconfigs/b/binutils/binutils-2.28.eb b/easybuild/easyconfigs/b/binutils/binutils-2.28.eb index 7681d5cc1f..a3ca8d487e 100644 --- a/easybuild/easyconfigs/b/binutils/binutils-2.28.eb +++ b/easybuild/easyconfigs/b/binutils/binutils-2.28.eb @@ -1,16 +1,20 @@ +easyblock = 'EB_binutils' + name = 'binutils' version = '2.28' homepage = 'http://directory.fsf.org/project/binutils/' + description = "binutils: GNU binary utilities" toolchain = {'name': 'dummy', 'version': ''} -sources = [SOURCE_TAR_GZ] source_urls = [GNU_SOURCE] +sources = [SOURCE_TAR_GZ] +checksums = ['cd717966fc761d840d451dbd58d44e1e5b92949d2073d75b73fccb476d772fcf'] builddependencies = [ - ('flex', '2.6.3'), + ('flex', '2.6.4'), ('Bison', '3.0.4'), # zlib required, but being linked in statically, so not a runtime dep ('zlib', '1.2.11'), diff --git a/easybuild/easyconfigs/f/flex/flex-2.6.4-GCCcore-6.4.0.eb b/easybuild/easyconfigs/f/flex/flex-2.6.4-GCCcore-6.4.0.eb index 55845823d8..37b5152374 100644 --- a/easybuild/easyconfigs/f/flex/flex-2.6.4-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/f/flex/flex-2.6.4-GCCcore-6.4.0.eb @@ -2,18 +2,20 @@ name = 'flex' version = '2.6.4' homepage = 'http://flex.sourceforge.net/' -description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner, - sometimes called a tokenizer, is a program which recognizes lexical patterns in text.""" + +description = """ + Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner, + sometimes called a tokenizer, is a program which recognizes lexical patterns + in text. +""" toolchain = {'name': 'GCCcore', 'version': '6.4.0'} toolchainopts = {'pic': True} -sources = [SOURCELOWER_TAR_GZ] source_urls = ['https://github.com/westes/flex/releases/download/v%(version)s/'] - +sources = [SOURCELOWER_TAR_GZ] checksums = ['e87aae032bf07c26f85ac0ed3250998c37621d95f8bd748b31f15b33c45ee995'] -dependencies = [('M4', '1.4.18')] builddependencies = [ ('Bison', '3.0.4'), ('help2man', '1.47.4'), @@ -21,4 +23,8 @@ builddependencies = [ ('binutils', '2.28', '', True), ] +dependencies = [ + ('M4', '1.4.18'), +] + moduleclass = 'lang' diff --git a/easybuild/easyconfigs/f/flex/flex-2.6.4.eb b/easybuild/easyconfigs/f/flex/flex-2.6.4.eb new file mode 100644 index 0000000000..d85380798d --- /dev/null +++ b/easybuild/easyconfigs/f/flex/flex-2.6.4.eb @@ -0,0 +1,30 @@ +easyblock = 'EB_flex' + +name = 'flex' +version = '2.6.4' + +homepage = 'http://flex.sourceforge.net/' + +description = """ + Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner, + sometimes called a tokenizer, is a program which recognizes lexical patterns + in text. +""" + +toolchain = {'name': 'dummy', 'version': ''} +toolchainopts = {'pic': True} + +source_urls = ['https://github.com/westes/flex/releases/download/v%(version)s/'] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['e87aae032bf07c26f85ac0ed3250998c37621d95f8bd748b31f15b33c45ee995'] + +builddependencies = [ + ('Bison', '3.0.4'), + ('help2man', '1.47.4'), +] + +dependencies = [ + ('M4', '1.4.18'), +] + +moduleclass = 'lang' diff --git a/easybuild/easyconfigs/g/GCC/GCC-6.4.0-2.28.eb b/easybuild/easyconfigs/g/GCC/GCC-6.4.0-2.28.eb index 6d830c0286..f5f6e4e49d 100644 --- a/easybuild/easyconfigs/g/GCC/GCC-6.4.0-2.28.eb +++ b/easybuild/easyconfigs/g/GCC/GCC-6.4.0-2.28.eb @@ -7,19 +7,25 @@ binutilsver = '2.28' versionsuffix = '-%s' % binutilsver homepage = 'http://gcc.gnu.org/' -description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, - as well as libraries for these languages (libstdc++, libgcj,...).""" + +description = """ + The GNU Compiler Collection includes front ends for C, C++, Objective-C, + Fortran, Java, and Ada, as well as libraries for these languages (libstdc++, + libgcj,...). [NOTE: This module does not include Objective-C, Java or Ada] +""" toolchain = {'name': 'dummy', 'version': ''} dependencies = [ ('GCCcore', version), - # binutils built on top of GCCcore, which was built on top of (dummy-built) binutils + # binutils built on top of GCCcore, which was built + # on top of (dummy-built) binutils ('binutils', binutilsver, '', ('GCCcore', version)), ] altroot = 'GCCcore' altversion = 'GCCcore' -# this bundle serves as a compiler-only toolchain, so it should be marked as compiler (important for HMNS) +# this bundle serves as a compiler-only toolchain, +# so it should be marked as compiler (important for HMNS) moduleclass = 'compiler' diff --git a/easybuild/easyconfigs/g/GCCcore/GCCcore-6.4.0.eb b/easybuild/easyconfigs/g/GCCcore/GCCcore-6.4.0.eb index 8c17a18894..37077d5dbf 100644 --- a/easybuild/easyconfigs/g/GCCcore/GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/g/GCCcore/GCCcore-6.4.0.eb @@ -4,8 +4,12 @@ name = 'GCCcore' version = '6.4.0' homepage = 'http://gcc.gnu.org/' -description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, - as well as libraries for these languages (libstdc++, libgcj,...).""" + +description = """ + The GNU Compiler Collection includes front ends for C, C++, Objective-C, + Fortran, Java, and Ada, as well as libraries for these languages (libstdc++, + libgcj,...). [NOTE: This module does not include Objective-C, Java or Ada] +""" toolchain = {'name': 'dummy', 'version': ''} @@ -40,11 +44,11 @@ patches = [ ] checksums = [ - '4715f02413f8a91d02d967521c084990c99ce1a671b8a450a80fbd4245f4b728', # gcc-6.4.0.tar.gz - '5275bb04f4863a13516b2f39392ac5e272f5e1bb8057b18aec1c9b79d73d8fb2', # gmp-6.1.2.tar.bz2 - 'ca498c1c7a74dd37a576f353312d1e68d490978de4395fa28f1cbd46a364e658', # mpfr-3.1.5.tar.gz - '617decc6ea09889fb08ede330917a00b16809b8db88c29c31bfbb49cbf88ecc3', # mpc-1.0.3.tar.gz - '412538bb65c799ac98e17e8cfcdacbb257a57362acfaaff254b0fcae970126d2', # isl-0.16.1.tar.bz2 + '4715f02413f8a91d02d967521c084990c99ce1a671b8a450a80fbd4245f4b728', # gcc-6.4.0.tar.gz + '5275bb04f4863a13516b2f39392ac5e272f5e1bb8057b18aec1c9b79d73d8fb2', # gmp-6.1.2.tar.bz2 + 'ca498c1c7a74dd37a576f353312d1e68d490978de4395fa28f1cbd46a364e658', # mpfr-3.1.5.tar.gz + '617decc6ea09889fb08ede330917a00b16809b8db88c29c31bfbb49cbf88ecc3', # mpc-1.0.3.tar.gz + '412538bb65c799ac98e17e8cfcdacbb257a57362acfaaff254b0fcae970126d2', # isl-0.16.1.tar.bz2 '137108952139486755e8c1bee30314ffa9233cc05cddfd848aa85503a6fea9d7', # mpfr-3.1.5-allpatches-20170606.patch '5ad909606d17d851c6ad629b4fddb6c1621844218b8d139fed18c502a7696c68', # GCCcore-6.2.0-fix-find-isl.patch ] diff --git a/easybuild/easyconfigs/h/help2man/help2man-1.47.4-GCCcore-6.4.0.eb b/easybuild/easyconfigs/h/help2man/help2man-1.47.4-GCCcore-6.4.0.eb index 192cdb14fe..2993c21bd9 100644 --- a/easybuild/easyconfigs/h/help2man/help2man-1.47.4-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/h/help2man/help2man-1.47.4-GCCcore-6.4.0.eb @@ -4,7 +4,11 @@ name = 'help2man' version = '1.47.4' homepage = 'https://www.gnu.org/software/help2man/' -description = """help2man produces simple manual pages from the '--help' and '--version' output of other commands.""" + +description = """ + help2man produces simple manual pages from the '--help' and '--version' + output of other commands. +""" toolchain = {'name': 'GCCcore', 'version': '6.4.0'} @@ -18,8 +22,8 @@ builddependencies = [ ] sanity_check_paths = { + 'dirs': ['bin'], 'files': ['bin/help2man'], - 'dirs': [], } moduleclass = 'tools' diff --git a/easybuild/easyconfigs/h/help2man/help2man-1.47.4.eb b/easybuild/easyconfigs/h/help2man/help2man-1.47.4.eb index 292de661e9..a06e019c8b 100644 --- a/easybuild/easyconfigs/h/help2man/help2man-1.47.4.eb +++ b/easybuild/easyconfigs/h/help2man/help2man-1.47.4.eb @@ -4,16 +4,21 @@ name = 'help2man' version = '1.47.4' homepage = 'https://www.gnu.org/software/help2man/' -description = """help2man produces simple manual pages from the '--help' and '--version' output of other commands.""" + +description = """ + help2man produces simple manual pages from the '--help' and '--version' + output of other commands. +""" toolchain = {'name': 'dummy', 'version': ''} source_urls = [GNU_SOURCE] sources = [SOURCE_TAR_XZ] +checksums = ['d4ecf697d13f14dd1a78c5995f06459bff706fd1ce593d1c02d81667c0207753'] sanity_check_paths = { + 'dirs': ['bin'], 'files': ['bin/help2man'], - 'dirs': [], } moduleclass = 'tools' diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-6.4.0.eb b/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-6.4.0.eb index 2aef3d06c6..0aaa327fd6 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-6.4.0.eb @@ -4,26 +4,32 @@ name = 'M4' version = '1.4.18' homepage = 'http://www.gnu.org/software/m4/m4.html' -description = """GNU M4 is an implementation of the traditional Unix macro processor. It is mostly SVR4 compatible - although it has some extensions (for example, handling more than 9 positional parameters to macros). - GNU M4 also has built-in functions for including files, running shell commands, doing arithmetic, etc.""" + +description = """ + GNU M4 is an implementation of the traditional Unix macro processor. It is + mostly SVR4 compatible although it has some extensions (for example, handling + more than 9 positional parameters to macros). GNU M4 also has built-in + functions for including files, running shell commands, doing arithmetic, etc. +""" toolchain = {'name': 'GCCcore', 'version': '6.4.0'} -sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] +sources = [SOURCELOWER_TAR_GZ] checksums = ['ab2633921a5cd38e48797bf5521ad259bdc4b979078034a3b790d7fec5493fab'] # use same binutils version that was used when building GCC toolchain -builddependencies = [('binutils', '2.28', '', True)] +builddependencies = [ + ('binutils', '2.28', '', True), +] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, # see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { - 'files': ["bin/m4"], - 'dirs': [], + 'dirs': ['bin'], + 'files': ['bin/m4'], } moduleclass = 'devel' diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.18.eb b/easybuild/easyconfigs/m/M4/M4-1.4.18.eb index bce719edb0..5d4ba8a946 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.18.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.18.eb @@ -4,24 +4,27 @@ name = 'M4' version = '1.4.18' homepage = 'http://www.gnu.org/software/m4/m4.html' -description = """GNU M4 is an implementation of the traditional Unix macro processor. - It is mostly SVR4 compatible although it has some extensions - (for example, handling more than 9 positional parameters to macros). - GNU M4 also has built-in functions for including files, running shell commands, doing arithmetic, etc. + +description = """ + GNU M4 is an implementation of the traditional Unix macro processor. It is + mostly SVR4 compatible although it has some extensions (for example, handling + more than 9 positional parameters to macros). GNU M4 also has built-in + functions for including files, running shell commands, doing arithmetic, etc. """ toolchain = {'name': 'dummy', 'version': 'dummy'} -sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['ab2633921a5cd38e48797bf5521ad259bdc4b979078034a3b790d7fec5493fab'] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, # see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { - 'files': ["bin/m4"], - 'dirs': [], + 'dirs': ['bin'], + 'files': ['bin/m4'], } moduleclass = 'devel' diff --git a/easybuild/easyconfigs/z/zlib/zlib-1.2.11-GCCcore-6.4.0.eb b/easybuild/easyconfigs/z/zlib/zlib-1.2.11-GCCcore-6.4.0.eb index a520a02364..dfe62b551a 100644 --- a/easybuild/easyconfigs/z/zlib/zlib-1.2.11-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/z/zlib/zlib-1.2.11-GCCcore-6.4.0.eb @@ -4,23 +4,29 @@ name = 'zlib' version = '1.2.11' homepage = 'http://www.zlib.net/' -description = """zlib is designed to be a free, general-purpose, legally unencumbered -- that is, - not covered by any patents -- lossless data-compression library for use on virtually any - computer hardware and operating system.""" + +description = """ + zlib is designed to be a free, general-purpose, legally unencumbered -- that + is, not covered by any patents -- lossless data-compression library for use + on virtually any computer hardware and operating system. +""" toolchain = {'name': 'GCCcore', 'version': '6.4.0'} toolchainopts = {'pic': True} -source_urls = ['http://zlib.net/fossils'] +source_urls = ['http://zlib.net/fossils/'] sources = [SOURCELOWER_TAR_GZ] checksums = ['c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1'] # use same binutils version that was used when building GCC toolchain -builddependencies = [('binutils', '2.28', '', True)] +builddependencies = [ + ('binutils', '2.28', '', True), +] sanity_check_paths = { - 'files': ['include/zconf.h', 'include/zlib.h', 'lib/libz.a', 'lib/libz.%s' % SHLIB_EXT], - 'dirs': [], + 'dirs': ['include', 'lib'], + 'files': ['include/zconf.h', 'include/zlib.h', 'lib/libz.a', + 'lib/libz.%s' % SHLIB_EXT], } moduleclass = 'lib' diff --git a/easybuild/easyconfigs/z/zlib/zlib-1.2.11.eb b/easybuild/easyconfigs/z/zlib/zlib-1.2.11.eb index b74939ef09..b582c747ed 100644 --- a/easybuild/easyconfigs/z/zlib/zlib-1.2.11.eb +++ b/easybuild/easyconfigs/z/zlib/zlib-1.2.11.eb @@ -4,23 +4,29 @@ name = 'zlib' version = '1.2.11' homepage = 'http://www.zlib.net/' -description = """zlib is designed to be a free, general-purpose, legally unencumbered -- that is, - not covered by any patents -- lossless data-compression library for use on virtually any - computer hardware and operating system.""" + +description = """ + zlib is designed to be a free, general-purpose, legally unencumbered -- that + is, not covered by any patents -- lossless data-compression library for use + on virtually any computer hardware and operating system. +""" toolchain = {'name': 'dummy', 'version': 'dummy'} toolchainopts = {'pic': True} source_urls = ['http://zlib.net/fossils/'] sources = [SOURCELOWER_TAR_GZ] +checksums = ['c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1'] # need to take care of $CFLAGS ourselves with dummy toolchain -# we need to add -fPIC, but should also include -O* option to avoid compiling with -O0 (default for GCC) +# we need to add -fPIC, but should also include -O* option to avoid +# compiling with -O0 (default for GCC) buildopts = 'CFLAGS="-O2 -fPIC"' sanity_check_paths = { - 'files': ['include/zconf.h', 'include/zlib.h', 'lib/libz.a', 'lib/libz.%s' % SHLIB_EXT], - 'dirs': [], + 'dirs': ['include', 'lib'], + 'files': ['include/zconf.h', 'include/zlib.h', 'lib/libz.a', + 'lib/libz.%s' % SHLIB_EXT], } moduleclass = 'lib' -- GitLab From e450ad265a7d5c46daf2780b7c049695a1b99b3e Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sat, 8 Jul 2017 10:49:07 -0500 Subject: [PATCH 357/608] bowing to authority and will ask the whys later --- .../b/Bison/Bison-3.0.4-GCCcore-6.4.0.eb | 2 +- easybuild/easyconfigs/b/Bison/Bison-3.0.4.eb | 4 ++-- .../easyconfigs/b/binutils/binutils-2.28.eb | 2 +- easybuild/easyconfigs/f/flex/flex-2.6.3.eb | 17 +++++++++++++---- .../h/help2man/help2man-1.47.4-GCCcore-6.4.0.eb | 2 +- .../easyconfigs/h/help2man/help2man-1.47.4.eb | 2 +- easybuild/easyconfigs/m/M4/M4-1.4.17.eb | 15 +++++++++------ .../easyconfigs/m/M4/M4-1.4.18-GCCcore-6.4.0.eb | 2 +- easybuild/easyconfigs/m/M4/M4-1.4.18.eb | 2 +- .../z/zlib/zlib-1.2.11-GCCcore-6.4.0.eb | 2 +- easybuild/easyconfigs/z/zlib/zlib-1.2.11.eb | 2 +- 11 files changed, 32 insertions(+), 20 deletions(-) diff --git a/easybuild/easyconfigs/b/Bison/Bison-3.0.4-GCCcore-6.4.0.eb b/easybuild/easyconfigs/b/Bison/Bison-3.0.4-GCCcore-6.4.0.eb index 8a3bfe8164..00833a66e3 100644 --- a/easybuild/easyconfigs/b/Bison/Bison-3.0.4-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/b/Bison/Bison-3.0.4-GCCcore-6.4.0.eb @@ -24,8 +24,8 @@ builddependencies = [ ] sanity_check_paths = { - 'dirs': ['bin', 'lib'], 'files': ['bin/%s' % x for x in ['bison', 'yacc']] + ['lib/liby.a'], + 'dirs': [], } moduleclass = 'lang' diff --git a/easybuild/easyconfigs/b/Bison/Bison-3.0.4.eb b/easybuild/easyconfigs/b/Bison/Bison-3.0.4.eb index ea20c01d4d..fc43bdc45f 100644 --- a/easybuild/easyconfigs/b/Bison/Bison-3.0.4.eb +++ b/easybuild/easyconfigs/b/Bison/Bison-3.0.4.eb @@ -18,12 +18,12 @@ sources = [SOURCELOWER_TAR_GZ] checksums = ['b67fd2daae7a64b5ba862c66c07c1addb9e6b1b05c5f2049392cfd8a2172952e'] builddependencies = [ - ('M4', '1.4.18'), + ('M4', '1.4.17'), ] sanity_check_paths = { - 'dirs': ['bin', 'lib'], 'files': ['bin/%s' % x for x in ['bison', 'yacc']] + ['lib/liby.a'], + 'dirs': [], } moduleclass = 'lang' diff --git a/easybuild/easyconfigs/b/binutils/binutils-2.28.eb b/easybuild/easyconfigs/b/binutils/binutils-2.28.eb index a3ca8d487e..873588d2d7 100644 --- a/easybuild/easyconfigs/b/binutils/binutils-2.28.eb +++ b/easybuild/easyconfigs/b/binutils/binutils-2.28.eb @@ -14,7 +14,7 @@ sources = [SOURCE_TAR_GZ] checksums = ['cd717966fc761d840d451dbd58d44e1e5b92949d2073d75b73fccb476d772fcf'] builddependencies = [ - ('flex', '2.6.4'), + ('flex', '2.6.3'), ('Bison', '3.0.4'), # zlib required, but being linked in statically, so not a runtime dep ('zlib', '1.2.11'), diff --git a/easybuild/easyconfigs/f/flex/flex-2.6.3.eb b/easybuild/easyconfigs/f/flex/flex-2.6.3.eb index 568be27f41..9161055702 100644 --- a/easybuild/easyconfigs/f/flex/flex-2.6.3.eb +++ b/easybuild/easyconfigs/f/flex/flex-2.6.3.eb @@ -1,22 +1,31 @@ +easyblock = 'EB_flex' + name = 'flex' version = '2.6.3' homepage = 'http://flex.sourceforge.net/' -description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner, - sometimes called a tokenizer, is a program which recognizes lexical patterns in text.""" + +description = """ + Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner, + sometimes called a tokenizer, is a program which recognizes lexical patterns + in text. +""" toolchain = {'name': 'dummy', 'version': ''} toolchainopts = {'pic': True} -sources = [SOURCELOWER_TAR_GZ] source_urls = ['https://github.com/westes/flex/releases/download/v%(version)s/'] +sources = [SOURCELOWER_TAR_GZ] checksums = ['a5f65570cd9107ec8a8ec88f17b31bb1'] -dependencies = [('M4', '1.4.18')] builddependencies = [ ('Bison', '3.0.4'), ('help2man', '1.47.4'), ] +dependencies = [ + ('M4', '1.4.18'), +] + moduleclass = 'lang' diff --git a/easybuild/easyconfigs/h/help2man/help2man-1.47.4-GCCcore-6.4.0.eb b/easybuild/easyconfigs/h/help2man/help2man-1.47.4-GCCcore-6.4.0.eb index 2993c21bd9..c354ad3369 100644 --- a/easybuild/easyconfigs/h/help2man/help2man-1.47.4-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/h/help2man/help2man-1.47.4-GCCcore-6.4.0.eb @@ -22,8 +22,8 @@ builddependencies = [ ] sanity_check_paths = { - 'dirs': ['bin'], 'files': ['bin/help2man'], + 'dirs': [], } moduleclass = 'tools' diff --git a/easybuild/easyconfigs/h/help2man/help2man-1.47.4.eb b/easybuild/easyconfigs/h/help2man/help2man-1.47.4.eb index a06e019c8b..9dded57c01 100644 --- a/easybuild/easyconfigs/h/help2man/help2man-1.47.4.eb +++ b/easybuild/easyconfigs/h/help2man/help2man-1.47.4.eb @@ -17,8 +17,8 @@ sources = [SOURCE_TAR_XZ] checksums = ['d4ecf697d13f14dd1a78c5995f06459bff706fd1ce593d1c02d81667c0207753'] sanity_check_paths = { - 'dirs': ['bin'], 'files': ['bin/help2man'], + 'dirs': [], } moduleclass = 'tools' diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.17.eb b/easybuild/easyconfigs/m/M4/M4-1.4.17.eb index 92afdc0086..0ac466ffad 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.17.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.17.eb @@ -4,23 +4,26 @@ name = 'M4' version = '1.4.17' homepage = 'http://www.gnu.org/software/m4/m4.html' -description = """GNU M4 is an implementation of the traditional Unix macro processor. - It is mostly SVR4 compatible although it has some extensions - (for example, handling more than 9 positional parameters to macros). - GNU M4 also has built-in functions for including files, running shell commands, doing arithmetic, etc. + +description = """ + GNU M4 is an implementation of the traditional Unix macro processor. It is + mostly SVR4 compatible although it has some extensions (for example, handling + more than 9 positional parameters to macros). GNU M4 also has built-in + functions for including files, running shell commands, doing arithmetic, etc. """ toolchain = {'name': 'dummy', 'version': 'dummy'} -sources = [SOURCELOWER_TAR_GZ] source_urls = [GNU_SOURCE] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['3ce725133ee552b8b4baca7837fb772940b25e81b2a9dc92537aeaf733538c9e'] # '-fgnu89-inline' is required to avoid linking errors with older glibc's, # see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { - 'files': ["bin/m4"], + 'files': ['bin/m4'], 'dirs': [], } diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-6.4.0.eb b/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-6.4.0.eb index 0aaa327fd6..a71de342f1 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-6.4.0.eb @@ -28,8 +28,8 @@ builddependencies = [ configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { - 'dirs': ['bin'], 'files': ['bin/m4'], + 'dirs': [], } moduleclass = 'devel' diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.18.eb b/easybuild/easyconfigs/m/M4/M4-1.4.18.eb index 5d4ba8a946..ac19a0bf0a 100644 --- a/easybuild/easyconfigs/m/M4/M4-1.4.18.eb +++ b/easybuild/easyconfigs/m/M4/M4-1.4.18.eb @@ -23,8 +23,8 @@ checksums = ['ab2633921a5cd38e48797bf5521ad259bdc4b979078034a3b790d7fec5493fab'] configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" sanity_check_paths = { - 'dirs': ['bin'], 'files': ['bin/m4'], + 'dirs': [], } moduleclass = 'devel' diff --git a/easybuild/easyconfigs/z/zlib/zlib-1.2.11-GCCcore-6.4.0.eb b/easybuild/easyconfigs/z/zlib/zlib-1.2.11-GCCcore-6.4.0.eb index dfe62b551a..acbff073f4 100644 --- a/easybuild/easyconfigs/z/zlib/zlib-1.2.11-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/z/zlib/zlib-1.2.11-GCCcore-6.4.0.eb @@ -24,9 +24,9 @@ builddependencies = [ ] sanity_check_paths = { - 'dirs': ['include', 'lib'], 'files': ['include/zconf.h', 'include/zlib.h', 'lib/libz.a', 'lib/libz.%s' % SHLIB_EXT], + 'dirs': [], } moduleclass = 'lib' diff --git a/easybuild/easyconfigs/z/zlib/zlib-1.2.11.eb b/easybuild/easyconfigs/z/zlib/zlib-1.2.11.eb index b582c747ed..d8f38e9cad 100644 --- a/easybuild/easyconfigs/z/zlib/zlib-1.2.11.eb +++ b/easybuild/easyconfigs/z/zlib/zlib-1.2.11.eb @@ -24,9 +24,9 @@ checksums = ['c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1'] buildopts = 'CFLAGS="-O2 -fPIC"' sanity_check_paths = { - 'dirs': ['include', 'lib'], 'files': ['include/zconf.h', 'include/zlib.h', 'lib/libz.a', 'lib/libz.%s' % SHLIB_EXT], + 'dirs': [], } moduleclass = 'lib' -- GitLab From ce776755097cde226b848c01874e180eda20183b Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Sat, 8 Jul 2017 19:23:56 +0200 Subject: [PATCH 358/608] fix reference to github.com/hpcugent in GROMACS easyconfig --- .../easyconfigs/g/GROMACS/GROMACS-2016.3-goolfc-2017.01.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-goolfc-2017.01.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-goolfc-2017.01.eb index 24d9e0afe2..070615703c 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-goolfc-2017.01.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-goolfc-2017.01.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2012-2016 University of Luxembourg / LCSB, Cyprus Institute / CaSToRC, # Ghent University / The Francis Crick Institute -- GitLab From 953a508d0f013c50dc8b9eebcadcfa0e65fcab95 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Sat, 8 Jul 2017 19:44:44 +0200 Subject: [PATCH 359/608] notify EasyBuild maintainers of failing tests --- .travis.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.travis.yml b/.travis.yml index cab5b8a8be..d0416aad91 100644 --- a/.travis.yml +++ b/.travis.yml @@ -49,3 +49,11 @@ script: - cd $HOME - export PYTHONPATH=$TRAVIS_BUILD_DIR - python -O -m test.easyconfigs.suite +# EasyBuild maintainers should get notified when tests in master/develop fail; +# no notifications are sent for pull requests +notifications: + email: + recipients: + - easybuild-maintainers@lists.ugent.be + on_success: change + on_failure: always -- GitLab From 6348765f06cc4e0199fe66cb609ecdda63ccb226 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sun, 9 Jul 2017 05:17:30 -0500 Subject: [PATCH 360/608] EBv2.0 didn't go far enough on explict easyblocks :) --- easybuild/easyconfigs/b/binutils/binutils-2.28-GCCcore-6.4.0.eb | 2 -- easybuild/easyconfigs/b/binutils/binutils-2.28.eb | 2 -- easybuild/easyconfigs/f/flex/flex-2.6.4.eb | 2 -- 3 files changed, 6 deletions(-) diff --git a/easybuild/easyconfigs/b/binutils/binutils-2.28-GCCcore-6.4.0.eb b/easybuild/easyconfigs/b/binutils/binutils-2.28-GCCcore-6.4.0.eb index cb761e0729..4281a9f323 100644 --- a/easybuild/easyconfigs/b/binutils/binutils-2.28-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/b/binutils/binutils-2.28-GCCcore-6.4.0.eb @@ -1,5 +1,3 @@ -easyblock = 'EB_binutils' - name = 'binutils' version = '2.28' diff --git a/easybuild/easyconfigs/b/binutils/binutils-2.28.eb b/easybuild/easyconfigs/b/binutils/binutils-2.28.eb index 873588d2d7..a50c4f25ca 100644 --- a/easybuild/easyconfigs/b/binutils/binutils-2.28.eb +++ b/easybuild/easyconfigs/b/binutils/binutils-2.28.eb @@ -1,5 +1,3 @@ -easyblock = 'EB_binutils' - name = 'binutils' version = '2.28' diff --git a/easybuild/easyconfigs/f/flex/flex-2.6.4.eb b/easybuild/easyconfigs/f/flex/flex-2.6.4.eb index d85380798d..7ef4743c46 100644 --- a/easybuild/easyconfigs/f/flex/flex-2.6.4.eb +++ b/easybuild/easyconfigs/f/flex/flex-2.6.4.eb @@ -1,5 +1,3 @@ -easyblock = 'EB_flex' - name = 'flex' version = '2.6.4' -- GitLab From 4b9b3864ad8a5ca4555d59e423019165aad94c98 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sun, 9 Jul 2017 05:36:26 -0500 Subject: [PATCH 361/608] missed one --- easybuild/easyconfigs/f/flex/flex-2.6.3.eb | 2 -- 1 file changed, 2 deletions(-) diff --git a/easybuild/easyconfigs/f/flex/flex-2.6.3.eb b/easybuild/easyconfigs/f/flex/flex-2.6.3.eb index 9161055702..f920a0f965 100644 --- a/easybuild/easyconfigs/f/flex/flex-2.6.3.eb +++ b/easybuild/easyconfigs/f/flex/flex-2.6.3.eb @@ -1,5 +1,3 @@ -easyblock = 'EB_flex' - name = 'flex' version = '2.6.3' -- GitLab From f9ee63dd1023732f31de530aef9cea79496677cb Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Sun, 9 Jul 2017 19:01:46 +0200 Subject: [PATCH 362/608] Revert "notify EasyBuild maintainers of failing tests" This reverts commit 953a508d0f013c50dc8b9eebcadcfa0e65fcab95. --- .travis.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index d0416aad91..cab5b8a8be 100644 --- a/.travis.yml +++ b/.travis.yml @@ -49,11 +49,3 @@ script: - cd $HOME - export PYTHONPATH=$TRAVIS_BUILD_DIR - python -O -m test.easyconfigs.suite -# EasyBuild maintainers should get notified when tests in master/develop fail; -# no notifications are sent for pull requests -notifications: - email: - recipients: - - easybuild-maintainers@lists.ugent.be - on_success: change - on_failure: always -- GitLab From 7a71cee4fa329d1504b027bd441d30828e551959 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sun, 9 Jul 2017 16:28:03 -0500 Subject: [PATCH 363/608] adding easyconfigs: libsigsegv-2.11-GCC-6.4.0-2.28.eb, libsigsegv-2.11-GCCcore-6.4.0.eb --- .../libsigsegv-2.11-GCC-6.4.0-2.28.eb | 24 ++++++++++++++++ .../libsigsegv-2.11-GCCcore-6.4.0.eb | 28 +++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 easybuild/easyconfigs/l/libsigsegv/libsigsegv-2.11-GCC-6.4.0-2.28.eb create mode 100644 easybuild/easyconfigs/l/libsigsegv/libsigsegv-2.11-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/l/libsigsegv/libsigsegv-2.11-GCC-6.4.0-2.28.eb b/easybuild/easyconfigs/l/libsigsegv/libsigsegv-2.11-GCC-6.4.0-2.28.eb new file mode 100644 index 0000000000..dfc2614481 --- /dev/null +++ b/easybuild/easyconfigs/l/libsigsegv/libsigsegv-2.11-GCC-6.4.0-2.28.eb @@ -0,0 +1,24 @@ +# Authors:: Jack Perdue - TAMU HPRC - http://hprc.tamu.edu + +easyblock = 'ConfigureMake' + +name = 'libsigsegv' +version = '2.11' + +homepage = 'https://www.gnu.org/software/libsigsegv/' + +description = """ + GNU libsigsegv is a library for handling page faults in user mode. +""" + +toolchain = {'name': 'GCC', 'version': '6.4.0-2.28'} + +source_urls = [GNU_SOURCE] +sources = [SOURCELOWER_TAR_GZ] + +sanity_check_paths = { + 'dirs': ['include', 'lib'], + 'files': ['include/sigsegv.h', 'lib/libsigsegv.a', 'lib/libsigsegv.la'], +} + +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/l/libsigsegv/libsigsegv-2.11-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/libsigsegv/libsigsegv-2.11-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..cdeb207cc1 --- /dev/null +++ b/easybuild/easyconfigs/l/libsigsegv/libsigsegv-2.11-GCCcore-6.4.0.eb @@ -0,0 +1,28 @@ +# Authors:: Jack Perdue - TAMU HPRC - http://hprc.tamu.edu + +easyblock = 'ConfigureMake' + +name = 'libsigsegv' +version = '2.11' + +homepage = 'https://www.gnu.org/software/libsigsegv/' + +description = """ + GNU libsigsegv is a library for handling page faults in user mode. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = [GNU_SOURCE] +sources = [SOURCELOWER_TAR_GZ] + +builddependencies = [ + ('binutils', '2.28'), +] + +sanity_check_paths = { + 'dirs': ['include', 'lib'], + 'files': ['include/sigsegv.h', 'lib/libsigsegv.a', 'lib/libsigsegv.la'], +} + +moduleclass = 'lib' -- GitLab From bfc7a51f6291e138bf7f0e9c711b1201e1c5a74e Mon Sep 17 00:00:00 2001 From: Pablo Escobar Date: Mon, 10 Jul 2017 00:03:05 +0200 Subject: [PATCH 364/608] added easyconfig for miniconda --- .../easyconfigs/m/Miniconda/Miniconda-4.3.21.eb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 easybuild/easyconfigs/m/Miniconda/Miniconda-4.3.21.eb diff --git a/easybuild/easyconfigs/m/Miniconda/Miniconda-4.3.21.eb b/easybuild/easyconfigs/m/Miniconda/Miniconda-4.3.21.eb new file mode 100644 index 0000000000..a5ae211a5c --- /dev/null +++ b/easybuild/easyconfigs/m/Miniconda/Miniconda-4.3.21.eb @@ -0,0 +1,17 @@ +easyblock = 'EB_Anaconda' + +name = 'Miniconda2' +version = '4.3.21' + +homepage = 'https://www.continuum.io/anaconda-overview' +description = """Built to complement the rich, open source Python community, +the Anaconda platform provides an enterprise-ready data analytics platform +that empowers companies to adopt a modern open data science analytics architecture. +""" + +toolchain = {'name': 'dummy', 'version': 'dummy'} + +source_urls = ['https://repo.continuum.io/miniconda/'] +sources = ['%(name)s-%(version)s-Linux-x86_64.sh'] + +moduleclass = 'lang' -- GitLab From 17ea4f57e70ff40e221a71fd094d6ce2bd0c4dab Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sun, 9 Jul 2017 17:04:23 -0500 Subject: [PATCH 365/608] alter sanity_check_paths to match the sanity standards of EB (which may or may not be entirely sane) --- .../easyconfigs/l/libsigsegv/libsigsegv-2.11-GCC-6.4.0-2.28.eb | 2 +- .../easyconfigs/l/libsigsegv/libsigsegv-2.11-GCCcore-6.4.0.eb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/l/libsigsegv/libsigsegv-2.11-GCC-6.4.0-2.28.eb b/easybuild/easyconfigs/l/libsigsegv/libsigsegv-2.11-GCC-6.4.0-2.28.eb index dfc2614481..716653df4c 100644 --- a/easybuild/easyconfigs/l/libsigsegv/libsigsegv-2.11-GCC-6.4.0-2.28.eb +++ b/easybuild/easyconfigs/l/libsigsegv/libsigsegv-2.11-GCC-6.4.0-2.28.eb @@ -17,8 +17,8 @@ source_urls = [GNU_SOURCE] sources = [SOURCELOWER_TAR_GZ] sanity_check_paths = { - 'dirs': ['include', 'lib'], 'files': ['include/sigsegv.h', 'lib/libsigsegv.a', 'lib/libsigsegv.la'], + 'dirs': [], } moduleclass = 'lib' diff --git a/easybuild/easyconfigs/l/libsigsegv/libsigsegv-2.11-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/libsigsegv/libsigsegv-2.11-GCCcore-6.4.0.eb index cdeb207cc1..519b35b032 100644 --- a/easybuild/easyconfigs/l/libsigsegv/libsigsegv-2.11-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/l/libsigsegv/libsigsegv-2.11-GCCcore-6.4.0.eb @@ -21,8 +21,8 @@ builddependencies = [ ] sanity_check_paths = { - 'dirs': ['include', 'lib'], 'files': ['include/sigsegv.h', 'lib/libsigsegv.a', 'lib/libsigsegv.la'], + 'dirs': [], } moduleclass = 'lib' -- GitLab From 4208b46a31a003336870a20378e1d9d683c58508 Mon Sep 17 00:00:00 2001 From: Pablo Escobar Date: Mon, 10 Jul 2017 00:09:26 +0200 Subject: [PATCH 366/608] added miniconda easyconfig --- .../easyconfigs/m/Miniconda/Miniconda-4.3.21.eb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 easybuild/easyconfigs/m/Miniconda/Miniconda-4.3.21.eb diff --git a/easybuild/easyconfigs/m/Miniconda/Miniconda-4.3.21.eb b/easybuild/easyconfigs/m/Miniconda/Miniconda-4.3.21.eb new file mode 100644 index 0000000000..a5ae211a5c --- /dev/null +++ b/easybuild/easyconfigs/m/Miniconda/Miniconda-4.3.21.eb @@ -0,0 +1,17 @@ +easyblock = 'EB_Anaconda' + +name = 'Miniconda2' +version = '4.3.21' + +homepage = 'https://www.continuum.io/anaconda-overview' +description = """Built to complement the rich, open source Python community, +the Anaconda platform provides an enterprise-ready data analytics platform +that empowers companies to adopt a modern open data science analytics architecture. +""" + +toolchain = {'name': 'dummy', 'version': 'dummy'} + +source_urls = ['https://repo.continuum.io/miniconda/'] +sources = ['%(name)s-%(version)s-Linux-x86_64.sh'] + +moduleclass = 'lang' -- GitLab From a845d52a42c29d6f32c8f3d18b57f2ced7fae8e4 Mon Sep 17 00:00:00 2001 From: Miguel Dias Costa Date: Mon, 10 Jul 2017 14:35:38 +0800 Subject: [PATCH 367/608] prepare release notes for eb331 --- RELEASE_NOTES | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 904813d080..ef2fd1b52d 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -6,6 +6,29 @@ These release notes can also be consulted at http://easybuild.readthedocs.org/en The latest version of easybuild-easyconfig provides 7,247 easyconfig files, for 1,256 different software packages, 25 different (compiler) toolchains, 13 software bundles and 1 meta-package. +v3.3.1 (July 12th 2017) +----------------------- + +bugfix/update release +- added example easyconfig files for 5 new software packages: + - FastME (#4811), geopy (#4821), ngmlr (#4818), OpenCoarrays (#4799), Seurat (#4832) +- added additional easyconfigs for various supported software packages, including: + - ABAQUS 2017, ASE 3.13.0, BWA 0.7.15, Biopython 1.68, Bison 3.0.4, Bison 3.0.4, Boost 1.54.0, Boost 1.58.0, Bowtie 1.1.2, binutils 2.28, Circos 0.69, DB 6.2.32, Doxygen 1.8.13, FFmpeg 3.2.4, FLUENT 18.1.eb, flex 2.6.3, flex 2.6.4, fontconfig 2.12.1, freetype 2.7.1, GCC 6.4.0, GCCcore 6.4.0.eb, GROMACS 2016.3, g2log 1.0, git 2.13.1, HDF5 1.8.18, help2man 1.47.4, help2man 1.47.4, Jellyfish 2.2.6, Keras 2.0.5, kallisto 0.43.1, LibTIFF 4.0.8, libxslt 1.1.29, likwid 4.2.0, likwid 4.2.0, M4 1.4.18, matplotlib 2.0.2, molmod 1.1, NCBI Toolkit, numpy 1.13.0, PCRE 8.40, Pillow 4.1.1, pigz 2.3.3, pkg config, Sailfish 0.10.1, Salmon 0.8.2, Szip 2.1, scikit learn, skewer 0.2.2, Tensorflow 1.2.0, tbb 2017_U5, vsc install, vsc mympirun, X11 20170129, x264 20170406, Yasm 1.3.0, yaff 1.1.2, yaff 1.1.3, zlib 1.2.11 +- minor enhancements, including: + - add SVG and Statistics::Basic to recent Perl versions (#4796) + - remove buildopts from HDF5 easyconfigs, taken care of by updated HDF5 easyblock now (#4779) + - include joblib as extension in recent Python easyconfigs (#4805) + - changed moduleclass in mpi4py to better reflect what it is and to not confuse HMNS (#4807) + - get rid of references to 'hpcugent' organisation after move to github.com/easybuilders (#4815) + - add Rtsne as extension to R 3.4.0 (#4831) + - fix reference to github.com/hpcugent in GROMACS easyconfig (#4837) +- various bug fixes, including: + - use PYPI_SOURCE as source URL in Tensorflow easyconfigs (#4786) + - fix homepage for skewer (#4791) + - sync/fix source_urls & homepage in HDF5 easyconfig (#4800) + - fix ubsan error blocking build of GCCcore 6.1.0, 6.2.0, 6.3.0 with system GCC 7.1 (#4813) + + v3.3.0 (June 26th 2017) ----------------------- -- GitLab From 2d3d85367eb920e815580d9bc3471faa843ddd75 Mon Sep 17 00:00:00 2001 From: Adam Huffman Date: Mon, 10 Jul 2017 18:26:39 +0100 Subject: [PATCH 368/608] adding easyconfigs: VERSE-0.1.5-foss-2016b.eb --- .../v/VERSE/VERSE-0.1.5-foss-2016b.eb | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100755 easybuild/easyconfigs/v/VERSE/VERSE-0.1.5-foss-2016b.eb diff --git a/easybuild/easyconfigs/v/VERSE/VERSE-0.1.5-foss-2016b.eb b/easybuild/easyconfigs/v/VERSE/VERSE-0.1.5-foss-2016b.eb new file mode 100755 index 0000000000..3b817ea0e5 --- /dev/null +++ b/easybuild/easyconfigs/v/VERSE/VERSE-0.1.5-foss-2016b.eb @@ -0,0 +1,29 @@ +# This file is an EasyBuild reciPY, as per https://github.com/easybuilders/easybuild +# Adam Huffman +# The Francis Crick Institute +easyblock = 'MakeCp' + +name = 'VERSE' +version = '0.1.5' + +homepage = 'https://github.com/qinzhu/VERSE' +description = """A versatile and efficient RNA-Seq read counting tool""" + +toolchain = {'name': 'foss', 'version': '2016b'} + +# No proper release tarballs +sources = ['master.zip'] +source_urls = ['https://github.com/qinzhu/VERSE/archive'] + +buildopts = ' -f Makefile.Linux' + +start_dir = 'src' + +files_to_copy = [(['%(namelower)s'], 'bin'), 'LICENSE', 'readme.txt', 'update_log.txt', '%(namelower)s_manual.html', 'testdata' ] + +sanity_check_paths = { + 'files': ['bin/%(namelower)s', 'readme.txt'], + 'dirs': ['testdata'] +} + +moduleclass = 'bio' -- GitLab From 87b0b30ed563af0f87fff02e0f4dff831967325a Mon Sep 17 00:00:00 2001 From: Adam Huffman Date: Mon, 10 Jul 2017 19:07:29 +0100 Subject: [PATCH 369/608] Fix PEP8 errors --- easybuild/easyconfigs/v/VERSE/VERSE-0.1.5-foss-2016b.eb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/v/VERSE/VERSE-0.1.5-foss-2016b.eb b/easybuild/easyconfigs/v/VERSE/VERSE-0.1.5-foss-2016b.eb index 3b817ea0e5..fdecec7eee 100755 --- a/easybuild/easyconfigs/v/VERSE/VERSE-0.1.5-foss-2016b.eb +++ b/easybuild/easyconfigs/v/VERSE/VERSE-0.1.5-foss-2016b.eb @@ -19,7 +19,8 @@ buildopts = ' -f Makefile.Linux' start_dir = 'src' -files_to_copy = [(['%(namelower)s'], 'bin'), 'LICENSE', 'readme.txt', 'update_log.txt', '%(namelower)s_manual.html', 'testdata' ] +files_to_copy = [(['%(namelower)s'], 'bin'), 'LICENSE', 'readme.txt', 'update_log.txt', + '%(namelower)s_manual.html', 'testdata'] sanity_check_paths = { 'files': ['bin/%(namelower)s', 'readme.txt'], -- GitLab From 3cc0f5cc9a301affc02ec7bef261fd459f4fd502 Mon Sep 17 00:00:00 2001 From: Pablo Escobar Date: Mon, 10 Jul 2017 20:31:56 +0200 Subject: [PATCH 370/608] renamed miniconda2 easyconfig --- .../Miniconda-4.3.21.eb => Miniconda2/Miniconda2-4.3.21.eb} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename easybuild/easyconfigs/m/{Miniconda/Miniconda-4.3.21.eb => Miniconda2/Miniconda2-4.3.21.eb} (100%) diff --git a/easybuild/easyconfigs/m/Miniconda/Miniconda-4.3.21.eb b/easybuild/easyconfigs/m/Miniconda2/Miniconda2-4.3.21.eb similarity index 100% rename from easybuild/easyconfigs/m/Miniconda/Miniconda-4.3.21.eb rename to easybuild/easyconfigs/m/Miniconda2/Miniconda2-4.3.21.eb -- GitLab From 29836ba5d091e5ede388c15ba0c1b1a7de11b1a7 Mon Sep 17 00:00:00 2001 From: Pablo Escobar Date: Mon, 10 Jul 2017 20:34:31 +0200 Subject: [PATCH 371/608] removed miniconda easyconfig with wrong name --- .../easyconfigs/m/Miniconda/Miniconda-4.3.21.eb | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 easybuild/easyconfigs/m/Miniconda/Miniconda-4.3.21.eb diff --git a/easybuild/easyconfigs/m/Miniconda/Miniconda-4.3.21.eb b/easybuild/easyconfigs/m/Miniconda/Miniconda-4.3.21.eb deleted file mode 100644 index a5ae211a5c..0000000000 --- a/easybuild/easyconfigs/m/Miniconda/Miniconda-4.3.21.eb +++ /dev/null @@ -1,17 +0,0 @@ -easyblock = 'EB_Anaconda' - -name = 'Miniconda2' -version = '4.3.21' - -homepage = 'https://www.continuum.io/anaconda-overview' -description = """Built to complement the rich, open source Python community, -the Anaconda platform provides an enterprise-ready data analytics platform -that empowers companies to adopt a modern open data science analytics architecture. -""" - -toolchain = {'name': 'dummy', 'version': 'dummy'} - -source_urls = ['https://repo.continuum.io/miniconda/'] -sources = ['%(name)s-%(version)s-Linux-x86_64.sh'] - -moduleclass = 'lang' -- GitLab From 9bfcb388b655a8973de34a2f66eb01a16fca55a9 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 10 Jul 2017 21:26:21 +0200 Subject: [PATCH 372/608] minor cleanup in EasyBuild v3.3.1 release notes + include #4841 --- RELEASE_NOTES | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/RELEASE_NOTES b/RELEASE_NOTES index ef2fd1b52d..e766c8da3c 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -3,25 +3,24 @@ For more detailed information, please see the git log. These release notes can also be consulted at http://easybuild.readthedocs.org/en/latest/Release_notes.html. -The latest version of easybuild-easyconfig provides 7,247 easyconfig files, for 1,256 different software packages, +The latest version of easybuild-easyconfig provides 7,313 easyconfig files, for 1,262 different software packages, 25 different (compiler) toolchains, 13 software bundles and 1 meta-package. v3.3.1 (July 12th 2017) ----------------------- bugfix/update release -- added example easyconfig files for 5 new software packages: - - FastME (#4811), geopy (#4821), ngmlr (#4818), OpenCoarrays (#4799), Seurat (#4832) +- added example easyconfig files for 6 new software packages: + - FastME (#4811), geopy (#4821), Miniconda2 (#4841), ngmlr (#4818), OpenCoarrays (#4799), Seurat (#4832) - added additional easyconfigs for various supported software packages, including: - - ABAQUS 2017, ASE 3.13.0, BWA 0.7.15, Biopython 1.68, Bison 3.0.4, Bison 3.0.4, Boost 1.54.0, Boost 1.58.0, Bowtie 1.1.2, binutils 2.28, Circos 0.69, DB 6.2.32, Doxygen 1.8.13, FFmpeg 3.2.4, FLUENT 18.1.eb, flex 2.6.3, flex 2.6.4, fontconfig 2.12.1, freetype 2.7.1, GCC 6.4.0, GCCcore 6.4.0.eb, GROMACS 2016.3, g2log 1.0, git 2.13.1, HDF5 1.8.18, help2man 1.47.4, help2man 1.47.4, Jellyfish 2.2.6, Keras 2.0.5, kallisto 0.43.1, LibTIFF 4.0.8, libxslt 1.1.29, likwid 4.2.0, likwid 4.2.0, M4 1.4.18, matplotlib 2.0.2, molmod 1.1, NCBI Toolkit, numpy 1.13.0, PCRE 8.40, Pillow 4.1.1, pigz 2.3.3, pkg config, Sailfish 0.10.1, Salmon 0.8.2, Szip 2.1, scikit learn, skewer 0.2.2, Tensorflow 1.2.0, tbb 2017_U5, vsc install, vsc mympirun, X11 20170129, x264 20170406, Yasm 1.3.0, yaff 1.1.2, yaff 1.1.3, zlib 1.2.11 + - ABAQUS 2017, GCC(core) 6.4.0, Keras 2.0.5, NCBI-Toolkit 18.0.0, numpy 1.13.0, Tensorflow 1.2.0 - minor enhancements, including: - add SVG and Statistics::Basic to recent Perl versions (#4796) - remove buildopts from HDF5 easyconfigs, taken care of by updated HDF5 easyblock now (#4779) - include joblib as extension in recent Python easyconfigs (#4805) - changed moduleclass in mpi4py to better reflect what it is and to not confuse HMNS (#4807) - - get rid of references to 'hpcugent' organisation after move to github.com/easybuilders (#4815) + - get rid of references to 'hpcugent' organisation after move to github.com/easybuilders (#4815, #4837) - add Rtsne as extension to R 3.4.0 (#4831) - - fix reference to github.com/hpcugent in GROMACS easyconfig (#4837) - various bug fixes, including: - use PYPI_SOURCE as source URL in Tensorflow easyconfigs (#4786) - fix homepage for skewer (#4791) -- GitLab From 78ed6a695d355f7dd58fe091bfcf9cdc5b6141d3 Mon Sep 17 00:00:00 2001 From: Adam Huffman Date: Tue, 11 Jul 2017 07:14:15 +0100 Subject: [PATCH 373/608] Use new source file renaming --- easybuild/easyconfigs/v/VERSE/VERSE-0.1.5-foss-2016b.eb | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/v/VERSE/VERSE-0.1.5-foss-2016b.eb b/easybuild/easyconfigs/v/VERSE/VERSE-0.1.5-foss-2016b.eb index fdecec7eee..87ff075002 100755 --- a/easybuild/easyconfigs/v/VERSE/VERSE-0.1.5-foss-2016b.eb +++ b/easybuild/easyconfigs/v/VERSE/VERSE-0.1.5-foss-2016b.eb @@ -11,8 +11,11 @@ description = """A versatile and efficient RNA-Seq read counting tool""" toolchain = {'name': 'foss', 'version': '2016b'} -# No proper release tarballs -sources = ['master.zip'] +sources = [{ + 'filename': '%(name)s-%(version)s.zip', + 'download_filename': 'master.zip', # No proper release tarballs +}] + source_urls = ['https://github.com/qinzhu/VERSE/archive'] buildopts = ' -f Makefile.Linux' -- GitLab From 366b862195676cc04ba10a87acd0ff1da78de2f3 Mon Sep 17 00:00:00 2001 From: Adam Huffman Date: Tue, 11 Jul 2017 07:47:22 +0100 Subject: [PATCH 374/608] adding easyconfigs: picard-2.6.0-Java-1.8.0_131.eb, picard-2.10.0-Java-1.8.0_131.eb --- .../p/picard/picard-2.10.0-Java-1.8.0_131.eb | 38 +++++++++++++++++++ .../p/picard/picard-2.6.0-Java-1.8.0_131.eb | 37 ++++++++++++++++++ 2 files changed, 75 insertions(+) create mode 100755 easybuild/easyconfigs/p/picard/picard-2.10.0-Java-1.8.0_131.eb create mode 100755 easybuild/easyconfigs/p/picard/picard-2.6.0-Java-1.8.0_131.eb diff --git a/easybuild/easyconfigs/p/picard/picard-2.10.0-Java-1.8.0_131.eb b/easybuild/easyconfigs/p/picard/picard-2.10.0-Java-1.8.0_131.eb new file mode 100755 index 0000000000..170d1a3b37 --- /dev/null +++ b/easybuild/easyconfigs/p/picard/picard-2.10.0-Java-1.8.0_131.eb @@ -0,0 +1,38 @@ +## +# 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:: MIT +# +# 2.10.0: +# Adam Huffman +# The Francis Crick Institute +# +## + +easyblock = 'JAR' + +name = 'picard' +version = '2.10.0' +versionsuffix = '-Java-%(javaver)s' + +homepage = 'http://sourceforge.net/projects/picard' +description = """A set of tools (in Java) for working with next generation sequencing data in the BAM format.""" + +toolchain = {'name': 'dummy', 'version': 'dummy'} + +source_urls = ['https://github.com/broadinstitute/picard/releases/download/%(version)s'] +sources = ['%(name)s.jar'] + +dependencies = [('Java', '1.8.0_131')] + +sanity_check_paths = { + 'files': ['picard.jar'], + 'dirs': [], +} + +modloadmsg = "To execute picard run: java -jar $EBROOTPICARD/%(name)s.jar" + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/p/picard/picard-2.6.0-Java-1.8.0_131.eb b/easybuild/easyconfigs/p/picard/picard-2.6.0-Java-1.8.0_131.eb new file mode 100755 index 0000000000..281b0c7c59 --- /dev/null +++ b/easybuild/easyconfigs/p/picard/picard-2.6.0-Java-1.8.0_131.eb @@ -0,0 +1,37 @@ +## +# 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:: MIT +# +# 2.6.0: +# Adam Huffman +# The Francis Crick Institute +## + +easyblock = 'JAR' + +name = 'picard' +version = '2.6.0' +versionsuffix = '-Java-%(javaver)s' + +homepage = 'http://sourceforge.net/projects/picard' +description = """A set of tools (in Java) for working with next generation sequencing data in the BAM format.""" + +toolchain = {'name': 'dummy', 'version': 'dummy'} + +source_urls = ['https://github.com/broadinstitute/picard/releases/download/%(version)s'] +sources = ['%(name)s.jar'] + +dependencies = [('Java', '1.8.0_131')] + +sanity_check_paths = { + 'files': ['picard.jar'], + 'dirs': [], +} + +modloadmsg = "To execute picard run: java -jar $EBROOTPICARD/%(name)s.jar" + +moduleclass = 'bio' -- GitLab From 83cd7fdd0a059db8e4cdea873ca5d9c80e8d20d9 Mon Sep 17 00:00:00 2001 From: Adam Huffman Date: Tue, 11 Jul 2017 07:49:45 +0100 Subject: [PATCH 375/608] Another PEP8-compliance fix --- easybuild/easyconfigs/v/VERSE/VERSE-0.1.5-foss-2016b.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/v/VERSE/VERSE-0.1.5-foss-2016b.eb b/easybuild/easyconfigs/v/VERSE/VERSE-0.1.5-foss-2016b.eb index 87ff075002..6ef907ef1e 100755 --- a/easybuild/easyconfigs/v/VERSE/VERSE-0.1.5-foss-2016b.eb +++ b/easybuild/easyconfigs/v/VERSE/VERSE-0.1.5-foss-2016b.eb @@ -13,7 +13,7 @@ toolchain = {'name': 'foss', 'version': '2016b'} sources = [{ 'filename': '%(name)s-%(version)s.zip', - 'download_filename': 'master.zip', # No proper release tarballs + 'download_filename': 'master.zip', # No proper release tarballs }] source_urls = ['https://github.com/qinzhu/VERSE/archive'] -- GitLab From e60d49ca3987eed4bb64b123f80b2ab5742dd59d Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 11 Jul 2017 07:43:50 -0500 Subject: [PATCH 376/608] adding easyconfigs: libpng-1.6.30-GCCcore-6.4.0.eb --- .../l/libpng/libpng-1.6.30-GCCcore-6.4.0.eb | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 easybuild/easyconfigs/l/libpng/libpng-1.6.30-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/l/libpng/libpng-1.6.30-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/libpng/libpng-1.6.30-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..6dc219faec --- /dev/null +++ b/easybuild/easyconfigs/l/libpng/libpng-1.6.30-GCCcore-6.4.0.eb @@ -0,0 +1,34 @@ +easyblock = 'ConfigureMake' + +name = 'libpng' +version = '1.6.30' + +homepage = 'http://www.libpng.org/pub/png/libpng.html' + +description = "libpng is the official PNG reference library" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = [SOURCEFORGE_SOURCE] +sources = [SOURCELOWER_TAR_GZ] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('zlib', '1.2.11'), +] + +majminver = ''.join(version.split('.')[:2]) + +sanity_check_paths = { + 'files': ['include/pngconf.h', 'include/png.h', 'include/pnglibconf.h', + 'lib/libpng.a', 'lib/libpng.%s' % SHLIB_EXT, + 'lib/libpng%s.a' % majminver, + 'lib/libpng%s.%s' % (majminver, SHLIB_EXT)], + 'dirs': ['bin', 'include/libpng%s' % majminver, 'share/man'], +} + +moduleclass = 'lib' -- GitLab From 5e90010e50d437f233423b51301f745c334d4c05 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 11 Jul 2017 07:48:20 -0500 Subject: [PATCH 377/608] adding easyconfigs: bzip2-1.0.6-GCCcore-6.4.0.eb --- .../b/bzip2/bzip2-1.0.6-GCCcore-6.4.0.eb | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 easybuild/easyconfigs/b/bzip2/bzip2-1.0.6-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/b/bzip2/bzip2-1.0.6-GCCcore-6.4.0.eb b/easybuild/easyconfigs/b/bzip2/bzip2-1.0.6-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..37301419e8 --- /dev/null +++ b/easybuild/easyconfigs/b/bzip2/bzip2-1.0.6-GCCcore-6.4.0.eb @@ -0,0 +1,23 @@ +name = 'bzip2' +version = '1.0.6' + +homepage = 'http://www.bzip.org/' + +description = """ + bzip2 is a freely available, patent free, high-quality data compressor. It + typically compresses files to within 10% to 15% of the best available + techniques (the PPM family of statistical compressors), whilst being around + twice as fast at compression and six times faster at decompression. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = ['http://www.bzip.org/%(version)s'] +sources = [SOURCE_TAR_GZ] + +builddependencies = [ + ('binutils', '2.28'), +] + +moduleclass = 'tools' -- GitLab From 3a808479c0d17fcab5b3177a4d6af23f21871522 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 11 Jul 2017 08:22:04 -0500 Subject: [PATCH 378/608] adding easyconfigs: NASM-2.13.01-GCCcore-6.4.0.eb --- .../n/NASM/NASM-2.13.01-GCCcore-6.4.0.eb | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 easybuild/easyconfigs/n/NASM/NASM-2.13.01-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.13.01-GCCcore-6.4.0.eb b/easybuild/easyconfigs/n/NASM/NASM-2.13.01-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..cbacaeb62b --- /dev/null +++ b/easybuild/easyconfigs/n/NASM/NASM-2.13.01-GCCcore-6.4.0.eb @@ -0,0 +1,37 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# +# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA +# Authors:: Fotis Georgatos +# License:: MIT/GPL +# $Id$ +# +# This work implements a part of the HPCBIOS project and is a component of the policy: +# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-90.html +## + +easyblock = 'ConfigureMake' + +name = 'NASM' +version = '2.13.01' + +homepage = 'http://www.nasm.us/' + +description = """NASM: General-purpose x86 assembler""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = ['http://www.nasm.us/pub/nasm/releasebuilds/%(version)s'] +sources = [SOURCELOWER_TAR_BZ2] + +builddependencies = [ + ('binutils', '2.28'), +] + +sanity_check_paths = { + 'files': ['bin/nasm'], + 'dirs': [], +} + +moduleclass = 'lang' -- GitLab From 46c4d09406a8917b77a4f961249daf08e4259bb8 Mon Sep 17 00:00:00 2001 From: Maxime Boissonneault Date: Tue, 11 Jul 2017 13:29:10 +0000 Subject: [PATCH 379/608] added easyconfig for Armadillo 7.950.1 --- ...dillo-7.950.1-intel-2016b-Python-2.7.12.eb | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 easybuild/easyconfigs/a/Armadillo/Armadillo-7.950.1-intel-2016b-Python-2.7.12.eb diff --git a/easybuild/easyconfigs/a/Armadillo/Armadillo-7.950.1-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/a/Armadillo/Armadillo-7.950.1-intel-2016b-Python-2.7.12.eb new file mode 100644 index 0000000000..ca56813122 --- /dev/null +++ b/easybuild/easyconfigs/a/Armadillo/Armadillo-7.950.1-intel-2016b-Python-2.7.12.eb @@ -0,0 +1,23 @@ +name = 'Armadillo' +version = '7.950.1' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://arma.sourceforge.net/' +description = """Armadillo is an open-source C++ linear algebra library (matrix maths) aiming towards + a good balance between speed and ease of use. Integer, floating point and complex numbers are supported, + as well as a subset of trigonometric and statistics functions.""" + +toolchain = {'name': 'intel', 'version': '2016b'} + +sources = [SOURCELOWER_TAR_XZ] +source_urls = ['http://sourceforge.net/projects/arma/files'] + +dependencies = [ + ('Boost', '1.63.0', versionsuffix), + ('arpack-ng', '3.4.0'), + ('Python', '2.7.12'), +] + +builddependencies = [('CMake', '3.7.2')] + +moduleclass = 'numlib' -- GitLab From aaa1e4096193c5d6668ab36b55d0b1f7b4572f05 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 11 Jul 2017 08:31:28 -0500 Subject: [PATCH 380/608] adding easyconfigs: libffcall-1.13-GCCcore-6.4.0.eb --- .../libffcall/libffcall-1.13-GCCcore-6.4.0.eb | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 easybuild/easyconfigs/l/libffcall/libffcall-1.13-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/l/libffcall/libffcall-1.13-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/libffcall/libffcall-1.13-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..703f985fd0 --- /dev/null +++ b/easybuild/easyconfigs/l/libffcall/libffcall-1.13-GCCcore-6.4.0.eb @@ -0,0 +1,34 @@ +# Authors:: Jack Perdue - TAMU HPRC - http://hprc.tamu.edu + +easyblock = 'ConfigureMake' + +name = 'libffcall' +version = '1.13' + +homepage = 'https://www.gnu.org/software/libffcall/' + +description = """ + GNU Libffcall is a collection of four libraries which can be used to build + foreign function call interfaces in embedded interpreters +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = [GNU_SOURCE] +sources = [SOURCE_TAR_GZ] + +builddependencies = [ + ('binutils', '2.28'), +] + +sanity_check_paths = { + 'files': ['include/avcall.h', 'include/callback.h', 'include/trampoline.h', + 'include/vacall.h', 'lib/libavcall.a', 'lib/libcallback.a', + 'lib/libtrampoline.a', 'lib/libvacall.a'], + 'dirs': [], +} + +parallel = 1 + +moduleclass = 'lib' -- GitLab From cd73627e185e1aec1edbb1986f6dd7d86f92b11f Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 11 Jul 2017 08:34:11 -0500 Subject: [PATCH 381/608] adding easyconfigs: muParser-2.2.5-GCCcore-6.4.0.eb --- .../muParser/muParser-2.2.5-GCCcore-6.4.0.eb | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 easybuild/easyconfigs/m/muParser/muParser-2.2.5-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/m/muParser/muParser-2.2.5-GCCcore-6.4.0.eb b/easybuild/easyconfigs/m/muParser/muParser-2.2.5-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..754dbd44a4 --- /dev/null +++ b/easybuild/easyconfigs/m/muParser/muParser-2.2.5-GCCcore-6.4.0.eb @@ -0,0 +1,34 @@ +# Author:: Jack Perdue - TAMU HPRC - http://hprc.tamu.edu + +easyblock = 'ConfigureMake' + +name = 'muParser' +version = '2.2.5' + +homepage = 'http://beltoforion.de/article.php?a=muparser' + +description = """ + muParser is an extensible high performance math expression parser library + written in C++. It works by transforming a mathematical expression into + bytecode and precalculating constant parts of the expression. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +# https://github.com/beltoforion/muparser/archive/v2.2.5.tar.gz +source_urls = ['https://github.com/beltoforion/muparser/archive/'] +sources = [SOURCELOWER_TAR_GZ] + +builddependencies = [ + ('binutils', '2.28'), +] + +sanity_check_paths = { + 'files': ['include/muParser.h', 'lib/libmuparser.so'], + 'dirs': [], +} + +parallel = 1 + +moduleclass = 'math' -- GitLab From 073e3eddd651925b53c7ab6408bdd7d7b2b91a8d Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 11 Jul 2017 08:36:47 -0500 Subject: [PATCH 382/608] adding easyconfigs: ncompress-4.2.4.4-GCCcore-6.4.0.eb --- .../ncompress-4.2.4.4-GCCcore-6.4.0.eb | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 easybuild/easyconfigs/n/ncompress/ncompress-4.2.4.4-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/n/ncompress/ncompress-4.2.4.4-GCCcore-6.4.0.eb b/easybuild/easyconfigs/n/ncompress/ncompress-4.2.4.4-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..a000487503 --- /dev/null +++ b/easybuild/easyconfigs/n/ncompress/ncompress-4.2.4.4-GCCcore-6.4.0.eb @@ -0,0 +1,40 @@ +# Authors:: Jack Perdue - TAMU HPRC - http://hprc.tamu.edu + +easyblock = 'ConfigureMake' + +name = 'ncompress' +version = '4.2.4.4' + +homepage = 'http://ncompress.sourceforge.net/' + +description = """ + Compress is a fast, simple LZW file compressor. Compress does not have the + highest compression rate, but it is one of the fastest programs to compress + data. Compress is the defacto standard in the UNIX community for compressing + files. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +# https://github.com/vapier/ncompress/archive/v4.2.4.4.tar.gz +source_urls = ['https://github.com/vapier/ncompress/archive/'] +sources = ['%(name)s-%(version)s.tar.gz'] + +builddependencies = [ + ('binutils', '2.28'), +] + +skipsteps = ['configure'] + +installopts = """\ + DESTDIR=%(installdir)s\ + BINDIR=/bin\ + MANDIR=/man/man1\ +""" + +sanity_check_paths = { + 'files': ['bin/compress', 'man/man1/compress.1'], + 'dirs': [] +} + +moduleclass = 'tools' -- GitLab From fc97836f7b8459c9671013836940d6a2954b61d5 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 11 Jul 2017 08:56:10 -0500 Subject: [PATCH 383/608] adding easyconfigs: Szip-2.1.1-GCCcore-6.4.0.eb --- .../s/Szip/Szip-2.1.1-GCCcore-6.4.0.eb | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 easybuild/easyconfigs/s/Szip/Szip-2.1.1-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/s/Szip/Szip-2.1.1-GCCcore-6.4.0.eb b/easybuild/easyconfigs/s/Szip/Szip-2.1.1-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..8df5fac01e --- /dev/null +++ b/easybuild/easyconfigs/s/Szip/Szip-2.1.1-GCCcore-6.4.0.eb @@ -0,0 +1,30 @@ +easyblock = 'ConfigureMake' + +name = 'Szip' +version = '2.1.1' + +homepage = 'http://www.hdfgroup.org/doc_resource/SZIP/' + +description = """ + Szip compression software, providing lossless compression of scientific data +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = ['http://www.hdfgroup.org/ftp/lib-external/szip/%(version)s/src'] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['897dda94e1d4bf88c91adeaad88c07b468b18eaf2d6125c47acac57e540904a9'] + +builddependencies = [ + ('binutils', '2.28'), +] + +sanity_check_paths = { + 'files': ["lib/libsz.a", "lib/libsz.%s" % SHLIB_EXT] + + ["include/%s" % x for x in + ["ricehdf.h", "szip_adpt.h", "szlib.h"]], + 'dirs': [], +} + +moduleclass = 'tools' -- GitLab From a3f7cbfe1588fc83d5c81f8a5f9ca3d070a20b59 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 11 Jul 2017 09:19:49 -0500 Subject: [PATCH 384/608] adding easyconfigs: Yasm-1.3.0-GCCcore-6.4.0.eb --- .../y/Yasm/Yasm-1.3.0-GCCcore-6.4.0.eb | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-GCCcore-6.4.0.eb b/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..53ab4485ce --- /dev/null +++ b/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-GCCcore-6.4.0.eb @@ -0,0 +1,39 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# +# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA +# Authors:: Fotis Georgatos +# License:: MIT/GPL +# $Id$ +# +# This work implements a part of the HPCBIOS project and is a component of +# the policy: # http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-90.html +## + +easyblock = 'ConfigureMake' + +name = 'Yasm' +version = '1.3.0' + +homepage = 'http://www.tortall.net/projects/yasm/' + +description = """ + Yasm: Complete rewrite of the NASM assembler with BSD license +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = ['http://www.tortall.net/projects/yasm/releases/'] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['3dce6601b495f5b3d45b59f7d2492a340ee7e84b5beca17e48f862502bd5603f'] + +builddependencies = [ + ('binutils', '2.28'), +] + +sanity_check_paths = { + 'files': ['bin/yasm'], + 'dirs': [], +} + +moduleclass = 'lang' -- GitLab From 3f5989b58bb78f9c77780e824c08a14e337c239c Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 11 Jul 2017 09:34:11 -0500 Subject: [PATCH 385/608] adding easyconfigs: PAPI-5.5.1-GCCcore-6.4.0.eb --- .../p/PAPI/PAPI-5.5.1-GCCcore-6.4.0.eb | 55 +++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 easybuild/easyconfigs/p/PAPI/PAPI-5.5.1-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/p/PAPI/PAPI-5.5.1-GCCcore-6.4.0.eb b/easybuild/easyconfigs/p/PAPI/PAPI-5.5.1-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..af271fc244 --- /dev/null +++ b/easybuild/easyconfigs/p/PAPI/PAPI-5.5.1-GCCcore-6.4.0.eb @@ -0,0 +1,55 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# +# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA +# Authors:: Fotis Georgatos +# License:: MIT/GPL +# $Id$ +# +# This work implements a part of the HPCBIOS project and is a component of the policy: +# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_07-02.html +## + +easyblock = 'ConfigureMake' + +name = 'PAPI' +version = '5.5.1' + +homepage = 'http://icl.cs.utk.edu/projects/papi/' + +description = """ + PAPI provides the tool designer and application engineer with a consistent + interface and methodology for use of the performance counter hardware found + in most major microprocessors. PAPI enables software engineers to see, in near + real time, the relation between software performance and processor events. + In addition Component PAPI provides access to a collection of components + that expose performance measurement opportunites across the hardware and + software stack. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = ['http://icl.cs.utk.edu/projects/papi/downloads/'] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['49dc2c2323f6164c4a7e81b799ed690ee73158671205e71501f849391dd2c2d4'] + +builddependencies = [ + ('binutils', '2.28'), +] + +start_dir = 'src' + +parallel = 1 + +runtest = 'fulltest' + +sanity_check_paths = { + 'files': ["bin/papi_%s" % x + for x in ["avail", "clockres", "command_line", "component_avail", + "cost", "decode", "error_codes", "event_chooser", + "mem_info", "multiplex_cost", "native_avail", + "version", "xml_event_info"]], + 'dirs': [], +} + +moduleclass = 'perf' -- GitLab From bb27b5a3e822fdec0721b82bd4737390d7b32e42 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 11 Jul 2017 09:40:56 -0500 Subject: [PATCH 386/608] adding easyconfigs: Mesquite-2.3.0-GCCcore-6.4.0.eb --- .../m/Mesquite/Mesquite-2.3.0-GCCcore-6.4.0.eb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 easybuild/easyconfigs/m/Mesquite/Mesquite-2.3.0-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/m/Mesquite/Mesquite-2.3.0-GCCcore-6.4.0.eb b/easybuild/easyconfigs/m/Mesquite/Mesquite-2.3.0-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..f3e3eb3a99 --- /dev/null +++ b/easybuild/easyconfigs/m/Mesquite/Mesquite-2.3.0-GCCcore-6.4.0.eb @@ -0,0 +1,16 @@ +easyblock = 'ConfigureMake' + +name = 'Mesquite' +version = '2.3.0' + +homepage = 'https://software.sandia.gov/mesquite/' + +description = """Mesh-Quality Improvement Library""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = ['https://software.sandia.gov/mesquite/'] +sources = [SOURCELOWER_TAR_GZ] + +moduleclass = 'math' -- GitLab From 8f152b333af45d8cdd4ca52905e0fa23eec4b6ee Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 11 Jul 2017 09:52:06 -0500 Subject: [PATCH 387/608] adding easyconfigs: ncurses-6.0-GCCcore-6.4.0.eb --- .../n/ncurses/ncurses-6.0-GCCcore-6.4.0.eb | 47 +++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 easybuild/easyconfigs/n/ncurses/ncurses-6.0-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/n/ncurses/ncurses-6.0-GCCcore-6.4.0.eb b/easybuild/easyconfigs/n/ncurses/ncurses-6.0-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..c4eefc78a1 --- /dev/null +++ b/easybuild/easyconfigs/n/ncurses/ncurses-6.0-GCCcore-6.4.0.eb @@ -0,0 +1,47 @@ +easyblock = 'ConfigureMake' + +name = 'ncurses' +version = '6.0' + +homepage = 'http://www.gnu.org/software/ncurses/' + +description = """ + The Ncurses (new curses) library is a free software emulation of curses in + System V Release 4.0, and more. It uses Terminfo format, supports pads and + color and multiple highlights and forms characters and function-key mapping, + and has all the other SYSV-curses enhancements over BSD Curses. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = [GNU_SOURCE] +sources = [SOURCE_TAR_GZ] + +patches = ['ncurses-%(version)s_gcc-5.patch'] + +builddependencies = [ + ('binutils', '2.28'), +] + +configopts = [ + # default build + '--with-shared --enable-overwrite', + # the UTF-8 enabled version (ncursesw) + '--with-shared --enable-overwrite --enable-ext-colors --enable-widec --includedir=%(installdir)s/include/ncursesw/' +] + +libs = ["form", "menu", "ncurses", "panel"] +sanity_check_paths = { + 'files': ['bin/%s' % x for x in ["captoinfo", "clear", "infocmp", + "infotocap", + "ncurses%(version_major)s-config", + "reset", "tabs", "tic", "toe", "tput", + "tset"]] + + ['lib/lib%s%s.a' % (x, y) for x in libs for y in ['', '_g', 'w', 'w_g']] + + ['lib/lib%s%s.%s' % (x, y, SHLIB_EXT) for x in libs for y in ['', 'w']] + + ['lib/libncurses++%s.a' % x for x in ['', 'w']], + 'dirs': ['include', 'include/ncursesw'], +} + +moduleclass = 'devel' -- GitLab From 55fc01112c068288dd96838d05f814c184407745 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 11 Jul 2017 10:58:56 -0500 Subject: [PATCH 388/608] adding easyconfigs: LibUUID-1.0.3-GCCcore-6.4.0.eb --- .../l/LibUUID/LibUUID-1.0.3-GCCcore-6.4.0.eb | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 easybuild/easyconfigs/l/LibUUID/LibUUID-1.0.3-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/l/LibUUID/LibUUID-1.0.3-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/LibUUID/LibUUID-1.0.3-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..9ba6bc305a --- /dev/null +++ b/easybuild/easyconfigs/l/LibUUID/LibUUID-1.0.3-GCCcore-6.4.0.eb @@ -0,0 +1,26 @@ +easyblock = 'ConfigureMake' + +name = 'LibUUID' +version = '1.0.3' + +homepage = 'http://sourceforge.net/projects/libuuid/' + +description = """Portable uuid C library""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = [SOURCEFORGE_SOURCE] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['46af3275291091009ad7f1b899de3d0cea0252737550e7919d17237997db5644'] + +builddependencies = [ + ('binutils', '2.28'), +] + +sanity_check_paths = { + 'files': ['include/uuid/uuid.h', 'lib/libuuid.a', + 'lib/libuuid.%s' % SHLIB_EXT], + 'dirs': [], +} + +moduleclass = 'lib' -- GitLab From b6268ae8e8f642023981351a9d5da2f629f5e75d Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 11 Jul 2017 11:07:35 -0500 Subject: [PATCH 389/608] adding easyconfigs: libtool-2.4.6-GCCcore-6.4.0.eb --- .../l/libtool/libtool-2.4.6-GCCcore-6.4.0.eb | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 easybuild/easyconfigs/l/libtool/libtool-2.4.6-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/l/libtool/libtool-2.4.6-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/libtool/libtool-2.4.6-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..2f6e8100a5 --- /dev/null +++ b/easybuild/easyconfigs/l/libtool/libtool-2.4.6-GCCcore-6.4.0.eb @@ -0,0 +1,26 @@ +easyblock = 'ConfigureMake' + +name = 'libtool' +version = '2.4.6' + +homepage = 'http://www.gnu.org/software/libtool' + +description = """ + GNU libtool is a generic library support script. Libtool hides the complexity + of using shared libraries behind a consistent, portable interface. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = [GNU_SOURCE] +sources = [SOURCELOWER_TAR_GZ] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('M4', '1.4.18'), +] + +moduleclass = 'lib' -- GitLab From 5accbaa8a2259be104cb9497c3b3838f0abf27f2 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 11 Jul 2017 11:20:14 -0500 Subject: [PATCH 390/608] adding easyconfigs: expat-2.2.1-GCCcore-6.4.0.eb --- .../e/expat/expat-2.2.1-GCCcore-6.4.0.eb | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 easybuild/easyconfigs/e/expat/expat-2.2.1-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/e/expat/expat-2.2.1-GCCcore-6.4.0.eb b/easybuild/easyconfigs/e/expat/expat-2.2.1-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..87f8150c28 --- /dev/null +++ b/easybuild/easyconfigs/e/expat/expat-2.2.1-GCCcore-6.4.0.eb @@ -0,0 +1,25 @@ +easyblock = 'ConfigureMake' + +name = 'expat' +version = '2.2.1' + +homepage = 'http://expat.sourceforge.net/' + +description = """ + Expat is an XML parser library written in C. It is a stream-oriented parser + in which an application registers handlers for things the parser might find + in the XML document (like start tags) +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = [SOURCEFORGE_SOURCE] +sources = [SOURCELOWER_TAR_BZ2] +checksums = ['1868cadae4c82a018e361e2b2091de103cd820aaacb0d6cfa49bd2cd83978885'] + +builddependencies = [ + ('binutils', '2.28'), +] + +moduleclass = 'tools' -- GitLab From d8a7b01534d97da3a402edd8b1770c54bc10344f Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 11 Jul 2017 11:26:55 -0500 Subject: [PATCH 391/608] adding easyconfigs: gzip-1.8-GCCcore-6.4.0.eb --- .../g/gzip/gzip-1.8-GCCcore-6.4.0.eb | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 easybuild/easyconfigs/g/gzip/gzip-1.8-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/g/gzip/gzip-1.8-GCCcore-6.4.0.eb b/easybuild/easyconfigs/g/gzip/gzip-1.8-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..fc8158dc1a --- /dev/null +++ b/easybuild/easyconfigs/g/gzip/gzip-1.8-GCCcore-6.4.0.eb @@ -0,0 +1,25 @@ +easyblock = 'ConfigureMake' + +name = 'gzip' +version = '1.8' + +homepage = 'http://www.gnu.org/software/gzip/' + +description = """ + gzip (GNU zip) is a popular data compression program as + a replacement for compress +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = [GNU_SOURCE] +sources = [SOURCE_TAR_GZ] + +sanity_check_paths = { + 'files': ["bin/gunzip", "bin/gzip", "bin/uncompress"], + 'dirs': [], +} + +sanity_check_commands = [True, ('gzip', '--version')] + +moduleclass = 'tools' -- GitLab From 7c6ea8e8415790bcaea6a254d1b307ac121233fa Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 11 Jul 2017 12:06:41 -0500 Subject: [PATCH 392/608] adding easyconfigs: libspatialindex-1.8.5-GCCcore-6.4.0.eb --- .../libspatialindex-1.8.5-GCCcore-6.4.0.eb | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 easybuild/easyconfigs/l/libspatialindex/libspatialindex-1.8.5-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/l/libspatialindex/libspatialindex-1.8.5-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/libspatialindex/libspatialindex-1.8.5-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..127c1cea1b --- /dev/null +++ b/easybuild/easyconfigs/l/libspatialindex/libspatialindex-1.8.5-GCCcore-6.4.0.eb @@ -0,0 +1,28 @@ +easyblock = 'ConfigureMake' + +name = 'libspatialindex' +version = '1.8.5' + +homepage = 'http://libspatialindex.github.io' + +description = """ + C++ implementation of R*-tree, an MVR-tree and a TPR-tree with C API +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = ['http://download.osgeo.org/libspatialindex/'] +sources = ['spatialindex-src-%(version)s.tar.gz'] +checksums = ['7caa46a2cb9b40960f7bc82c3de60fa14f8f3e000b02561b36cbf2cfe6a9bfef'] + +builddependencies = [ + ('binutils', '2.28'), +] + +sanity_check_paths = { + 'files': ['lib/libspatialindex.a', 'lib/libspatialindex.%s' % SHLIB_EXT], + 'dirs': ['include/spatialindex'], +} + +moduleclass = 'lib' -- GitLab From 0ba557815ac618e6ac298b05b2f055a11db78c90 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 11 Jul 2017 12:23:26 -0500 Subject: [PATCH 393/608] adding easyconfigs: DB-6.2.32-GCCcore-6.4.0.eb --- .../d/DB/DB-6.2.32-GCCcore-6.4.0.eb | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 easybuild/easyconfigs/d/DB/DB-6.2.32-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/d/DB/DB-6.2.32-GCCcore-6.4.0.eb b/easybuild/easyconfigs/d/DB/DB-6.2.32-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..076d25e019 --- /dev/null +++ b/easybuild/easyconfigs/d/DB/DB-6.2.32-GCCcore-6.4.0.eb @@ -0,0 +1,26 @@ +name = 'DB' +version = '6.2.32' + +homepage = 'http://www.oracle.com/technetwork/products/berkeleydb' + +description = """ + Berkeley DB enables the development of custom data management solutions, + without the overhead traditionally associated with such custom projects. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +# download via http://www.oracle.com/technetwork/products/berkeleydb/downloads/, requires registration +sources = [SOURCELOWER_TAR_GZ] +checksums = ['a9c5e2b004a5777aa03510cfe5cd766a4a3b777713406b02809c17c8e0e7a8fb'] + +builddependencies = [ + ('binutils', '2.28'), +] + +sanity_check_paths = { + 'files': ["include/db.h"], + 'dirs': [], +} + +moduleclass = 'tools' -- GitLab From 7ea16f5cb288d60db25eaa6b8d28f10ea6044216 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 11 Jul 2017 12:38:32 -0500 Subject: [PATCH 394/608] adding easyconfigs: libsodium-1.0.12-GCCcore-6.4.0.eb --- .../libsodium-1.0.12-GCCcore-6.4.0.eb | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 easybuild/easyconfigs/l/libsodium/libsodium-1.0.12-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/l/libsodium/libsodium-1.0.12-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/libsodium/libsodium-1.0.12-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..927f15bb68 --- /dev/null +++ b/easybuild/easyconfigs/l/libsodium/libsodium-1.0.12-GCCcore-6.4.0.eb @@ -0,0 +1,29 @@ +easyblock = 'ConfigureMake' + +name = 'libsodium' +version = '1.0.12' + +homepage = 'http://doc.libsodium.org/' + +description = """ + Sodium is a modern, easy-to-use software library for encryption, decryption, + signatures, password hashing and more. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = ['https://download.libsodium.org/libsodium/releases/'] +sources = [SOURCE_TAR_GZ] +checksums = ['b8648f1bb3a54b0251cf4ffa4f0d76ded13977d4fa7517d988f4c902dd8e2f95'] + +builddependencies = [ + ('binutils', '2.28'), +] + +sanity_check_paths = { + 'files': ['include/sodium.h', 'lib/libsodium.so', 'lib/libsodium.a'], + 'dirs': ['include/sodium', 'lib/pkgconfig'], +} + +moduleclass = 'lib' -- GitLab From 37572be522de100feaf2d3ea1c4540839b511e64 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 11 Jul 2017 12:51:11 -0500 Subject: [PATCH 395/608] adding easyconfigs: GSL-2.4-GCCcore-6.4.0.eb --- .../g/GSL/GSL-2.4-GCCcore-6.4.0.eb | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 easybuild/easyconfigs/g/GSL/GSL-2.4-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/g/GSL/GSL-2.4-GCCcore-6.4.0.eb b/easybuild/easyconfigs/g/GSL/GSL-2.4-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..4ea2f3d1a3 --- /dev/null +++ b/easybuild/easyconfigs/g/GSL/GSL-2.4-GCCcore-6.4.0.eb @@ -0,0 +1,24 @@ +easyblock = 'ConfigureMake' + +name = 'GSL' +version = '2.4' + +homepage = 'http://www.gnu.org/software/gsl/' + +description = """ + The GNU Scientific Library (GSL) is a numerical library for C and C++ + programmers. The library provides a wide range of mathematical routines + such as random number generators, special functions and least-squares fitting. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'unroll': True, 'pic': True} + +source_urls = [GNU_SOURCE] +sources = [SOURCELOWER_TAR_GZ] + +builddependencies = [ + ('binutils', '2.28'), +] + +moduleclass = 'numlib' -- GitLab From 4bbb276adc2e4cf86ae6400165dde5b08591d787 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 11 Jul 2017 13:04:18 -0500 Subject: [PATCH 396/608] adding easyconfigs: Autoconf-2.69-GCCcore-6.4.0.eb --- .../a/Autoconf/Autoconf-2.69-GCCcore-6.4.0.eb | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 easybuild/easyconfigs/a/Autoconf/Autoconf-2.69-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/a/Autoconf/Autoconf-2.69-GCCcore-6.4.0.eb b/easybuild/easyconfigs/a/Autoconf/Autoconf-2.69-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..6574fccdb0 --- /dev/null +++ b/easybuild/easyconfigs/a/Autoconf/Autoconf-2.69-GCCcore-6.4.0.eb @@ -0,0 +1,37 @@ +easyblock = 'ConfigureMake' + +name = 'Autoconf' +version = '2.69' + +homepage = 'http://www.gnu.org/software/autoconf/' + +description = """ + Autoconf is an extensible package of M4 macros that produce shell scripts + to automatically configure software source code packages. These scripts can + adapt the packages to many kinds of UNIX-like systems without manual user + intervention. Autoconf creates a configuration script for a package from a + template file that lists the operating system features that the package can + use, in the form of M4 macro calls. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = [GNU_SOURCE] +sources = [SOURCELOWER_TAR_GZ] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('M4', '1.4.18'), +] + +sanity_check_paths = { + 'files': ["bin/%s" % x + for x in ["autoconf", "autoheader", "autom4te", "autoreconf", + "autoscan", "autoupdate", "ifnames"]], + 'dirs': [], +} + +moduleclass = 'devel' -- GitLab From 188586bb59e096d70b4ebd5d1af9953b28b3d285 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 11 Jul 2017 15:01:26 -0500 Subject: [PATCH 397/608] adding easyconfigs: pixman-0.34.0-GCCcore-6.4.0.eb --- .../p/pixman/pixman-0.34.0-GCCcore-6.4.0.eb | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 easybuild/easyconfigs/p/pixman/pixman-0.34.0-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/p/pixman/pixman-0.34.0-GCCcore-6.4.0.eb b/easybuild/easyconfigs/p/pixman/pixman-0.34.0-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..5f58c9f25c --- /dev/null +++ b/easybuild/easyconfigs/p/pixman/pixman-0.34.0-GCCcore-6.4.0.eb @@ -0,0 +1,28 @@ +easyblock = 'ConfigureMake' + +name = "pixman" +version = '0.34.0' + +homepage = 'http://www.pixman.org/' + +description = """ + Pixman is a low-level software library for pixel manipulation, providing + features such as image compositing and trapezoid rasterization. Important + users of pixman are the cairo graphics library and the X server. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = ['http://cairographics.org/releases/'] +sources = [SOURCE_TAR_GZ] + +builddependencies = [ + ('binutils', '2.28'), +] + +sanity_check_paths = { + 'files': ['lib/libpixman-1.%s' % SHLIB_EXT], + 'dirs': [] +} + +moduleclass = 'vis' -- GitLab From 6cf827bacd4ec898d8b2743ec19f623e3e1848a3 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 11 Jul 2017 15:13:14 -0500 Subject: [PATCH 398/608] adding easyconfigs: byacc-20170709-GCCcore-6.4.0.eb --- .../b/byacc/byacc-20170709-GCCcore-6.4.0.eb | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 easybuild/easyconfigs/b/byacc/byacc-20170709-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/b/byacc/byacc-20170709-GCCcore-6.4.0.eb b/easybuild/easyconfigs/b/byacc/byacc-20170709-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..64ac3adea0 --- /dev/null +++ b/easybuild/easyconfigs/b/byacc/byacc-20170709-GCCcore-6.4.0.eb @@ -0,0 +1,29 @@ +easyblock = 'ConfigureMake' + +name = 'byacc' +version = '20170709' + +homepage = 'http://invisible-island.net/byacc/byacc.html' + +description = """ + Berkeley Yacc (byacc) is generally conceded to be the best yacc variant + available. In contrast to bison, it is written to avoid dependencies + upon a particular compiler. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = ['ftp://invisible-island.net/byacc'] +sources = [SOURCELOWER_TGZ] +checksums = ['27cf801985dc6082b8732522588a7b64377dd3df841d584ba6150bc86d78d9eb'] + +builddependencies = [ + ('binutils', '2.28'), +] + +sanity_check_paths = { + 'files': ["bin/yacc"], + 'dirs': [] +} + +moduleclass = 'lang' -- GitLab From 8f8ffe4780cb744445ba2ba888633d3e6cb55912 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 11 Jul 2017 15:44:49 -0500 Subject: [PATCH 399/608] adding easyconfigs: libpthread-stubs-0.4-GCCcore-6.4.0.eb --- .../libpthread-stubs-0.4-GCCcore-6.4.0.eb | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 easybuild/easyconfigs/l/libpthread-stubs/libpthread-stubs-0.4-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/l/libpthread-stubs/libpthread-stubs-0.4-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/libpthread-stubs/libpthread-stubs-0.4-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..f65b67ddd6 --- /dev/null +++ b/easybuild/easyconfigs/l/libpthread-stubs/libpthread-stubs-0.4-GCCcore-6.4.0.eb @@ -0,0 +1,29 @@ +easyblock = 'ConfigureMake' + +name = 'libpthread-stubs' +version = '0.4' + +homepage = 'http://xcb.freedesktop.org/' + +description = """ + The X protocol C-language Binding (XCB) is a replacement for Xlib featuring + a small footprint, latency hiding, direct access to the protocol, improved + threading support, and extensibility. +""" + +source_urls = ['http://xcb.freedesktop.org/dist/'] +sources = [SOURCELOWER_TAR_GZ] + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +builddependencies = [ + ('binutils','2.28'), +] + +sanity_check_paths = { + 'files': ['lib/pkgconfig/pthread-stubs.pc'], + 'dirs': [], +} + +moduleclass = 'lib' -- GitLab From e1dab4351bcf8ad75383439ada951bc392c0a81d Mon Sep 17 00:00:00 2001 From: Adam Huffman Date: Tue, 11 Jul 2017 22:39:26 +0100 Subject: [PATCH 400/608] Update to new upstream release and add checksum --- .../p/picard/picard-2.10.1-Java-1.8.0_131.eb | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100755 easybuild/easyconfigs/p/picard/picard-2.10.1-Java-1.8.0_131.eb diff --git a/easybuild/easyconfigs/p/picard/picard-2.10.1-Java-1.8.0_131.eb b/easybuild/easyconfigs/p/picard/picard-2.10.1-Java-1.8.0_131.eb new file mode 100755 index 0000000000..3495cd4e50 --- /dev/null +++ b/easybuild/easyconfigs/p/picard/picard-2.10.1-Java-1.8.0_131.eb @@ -0,0 +1,40 @@ +## +# 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:: MIT +# +# 2.10.1: +# Adam Huffman +# The Francis Crick Institute +# +## + +easyblock = 'JAR' + +name = 'picard' +version = '2.10.1' +versionsuffix = '-Java-%(javaver)s' + +homepage = 'http://sourceforge.net/projects/picard' +description = """A set of tools (in Java) for working with next generation sequencing data in the BAM format.""" + +toolchain = {'name': 'dummy', 'version': 'dummy'} + +source_urls = ['https://github.com/broadinstitute/picard/releases/download/%(version)s'] +sources = ['%(name)s.jar'] + +dependencies = [('Java', '1.8.0_131')] + +checksums = [('sha256', 'e256d5e43656b7d8be454201a7056dce543fe9cbeb30329a0d8c22d28e655775')] + +sanity_check_paths = { + 'files': ['picard.jar'], + 'dirs': [], +} + +modloadmsg = "To execute picard run: java -jar $EBROOTPICARD/%(name)s.jar" + +moduleclass = 'bio' -- GitLab From 4b7723372aa2d45bd891f8e2faed54b2a2a44362 Mon Sep 17 00:00:00 2001 From: Adam Huffman Date: Tue, 11 Jul 2017 22:41:12 +0100 Subject: [PATCH 401/608] Add checksum --- easybuild/easyconfigs/p/picard/picard-2.6.0-Java-1.8.0_131.eb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/easybuild/easyconfigs/p/picard/picard-2.6.0-Java-1.8.0_131.eb b/easybuild/easyconfigs/p/picard/picard-2.6.0-Java-1.8.0_131.eb index 281b0c7c59..a7676529fe 100755 --- a/easybuild/easyconfigs/p/picard/picard-2.6.0-Java-1.8.0_131.eb +++ b/easybuild/easyconfigs/p/picard/picard-2.6.0-Java-1.8.0_131.eb @@ -27,6 +27,8 @@ sources = ['%(name)s.jar'] dependencies = [('Java', '1.8.0_131')] +checksums = [('sha256', '671d9e86e6bf0c28ee007aea55d07e2456ae3a57016491b50aab0fd2fd0e493b')] + sanity_check_paths = { 'files': ['picard.jar'], 'dirs': [], -- GitLab From d239678acd341d12ef9780007d7273d6fd89c874 Mon Sep 17 00:00:00 2001 From: Adam Huffman Date: Tue, 11 Jul 2017 23:03:45 +0100 Subject: [PATCH 402/608] Move checksum --- .../easyconfigs/p/picard/picard-2.10.1-Java-1.8.0_131.eb | 4 ++-- easybuild/easyconfigs/p/picard/picard-2.6.0-Java-1.8.0_131.eb | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/easybuild/easyconfigs/p/picard/picard-2.10.1-Java-1.8.0_131.eb b/easybuild/easyconfigs/p/picard/picard-2.10.1-Java-1.8.0_131.eb index 3495cd4e50..e69580f5e4 100755 --- a/easybuild/easyconfigs/p/picard/picard-2.10.1-Java-1.8.0_131.eb +++ b/easybuild/easyconfigs/p/picard/picard-2.10.1-Java-1.8.0_131.eb @@ -26,10 +26,10 @@ toolchain = {'name': 'dummy', 'version': 'dummy'} source_urls = ['https://github.com/broadinstitute/picard/releases/download/%(version)s'] sources = ['%(name)s.jar'] -dependencies = [('Java', '1.8.0_131')] - checksums = [('sha256', 'e256d5e43656b7d8be454201a7056dce543fe9cbeb30329a0d8c22d28e655775')] +dependencies = [('Java', '1.8.0_131')] + sanity_check_paths = { 'files': ['picard.jar'], 'dirs': [], diff --git a/easybuild/easyconfigs/p/picard/picard-2.6.0-Java-1.8.0_131.eb b/easybuild/easyconfigs/p/picard/picard-2.6.0-Java-1.8.0_131.eb index a7676529fe..674512ad38 100755 --- a/easybuild/easyconfigs/p/picard/picard-2.6.0-Java-1.8.0_131.eb +++ b/easybuild/easyconfigs/p/picard/picard-2.6.0-Java-1.8.0_131.eb @@ -25,10 +25,10 @@ toolchain = {'name': 'dummy', 'version': 'dummy'} source_urls = ['https://github.com/broadinstitute/picard/releases/download/%(version)s'] sources = ['%(name)s.jar'] -dependencies = [('Java', '1.8.0_131')] - checksums = [('sha256', '671d9e86e6bf0c28ee007aea55d07e2456ae3a57016491b50aab0fd2fd0e493b')] +dependencies = [('Java', '1.8.0_131')] + sanity_check_paths = { 'files': ['picard.jar'], 'dirs': [], -- GitLab From fecac8b65510995ed52737dc0c2c0176476f322a Mon Sep 17 00:00:00 2001 From: Adam Huffman Date: Tue, 11 Jul 2017 23:15:23 +0100 Subject: [PATCH 403/608] Remove obsolete 2.10.0 --- .../p/picard/picard-2.10.0-Java-1.8.0_131.eb | 38 ------------------- 1 file changed, 38 deletions(-) delete mode 100755 easybuild/easyconfigs/p/picard/picard-2.10.0-Java-1.8.0_131.eb diff --git a/easybuild/easyconfigs/p/picard/picard-2.10.0-Java-1.8.0_131.eb b/easybuild/easyconfigs/p/picard/picard-2.10.0-Java-1.8.0_131.eb deleted file mode 100755 index 170d1a3b37..0000000000 --- a/easybuild/easyconfigs/p/picard/picard-2.10.0-Java-1.8.0_131.eb +++ /dev/null @@ -1,38 +0,0 @@ -## -# 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:: MIT -# -# 2.10.0: -# Adam Huffman -# The Francis Crick Institute -# -## - -easyblock = 'JAR' - -name = 'picard' -version = '2.10.0' -versionsuffix = '-Java-%(javaver)s' - -homepage = 'http://sourceforge.net/projects/picard' -description = """A set of tools (in Java) for working with next generation sequencing data in the BAM format.""" - -toolchain = {'name': 'dummy', 'version': 'dummy'} - -source_urls = ['https://github.com/broadinstitute/picard/releases/download/%(version)s'] -sources = ['%(name)s.jar'] - -dependencies = [('Java', '1.8.0_131')] - -sanity_check_paths = { - 'files': ['picard.jar'], - 'dirs': [], -} - -modloadmsg = "To execute picard run: java -jar $EBROOTPICARD/%(name)s.jar" - -moduleclass = 'bio' -- GitLab From 2b094023d93f00574d96d9510acb47608bd983b7 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 12 Jul 2017 07:34:59 +0200 Subject: [PATCH 404/608] bump version to 3.3.1 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2ea811fb80..8b55846bb7 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ from distutils import log # recent setuptools versions will *TRANSFORM* something like 'X.Y.Zdev' into 'X.Y.Z.dev0', with a warning like # UserWarning: Normalizing '2.4.0dev' to '2.4.0.dev0' # This causes problems further up the dependency chain... -VERSION = '3.3.1.dev0' +VERSION = '3.3.1' API_VERSION = VERSION.split('.')[0] EB_VERSION = '.'.join(VERSION.split('.')[0:2]) -- GitLab From df48ba2c1ea46aad632f7067bd3d47b18162ba35 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 12 Jul 2017 11:14:16 +0200 Subject: [PATCH 405/608] adding easyconfigs: cadaver-0.23.3-intel-2017a.eb --- .../c/cadaver/cadaver-0.23.3-intel-2017a.eb | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 easybuild/easyconfigs/c/cadaver/cadaver-0.23.3-intel-2017a.eb diff --git a/easybuild/easyconfigs/c/cadaver/cadaver-0.23.3-intel-2017a.eb b/easybuild/easyconfigs/c/cadaver/cadaver-0.23.3-intel-2017a.eb new file mode 100644 index 0000000000..0d2c3a61b1 --- /dev/null +++ b/easybuild/easyconfigs/c/cadaver/cadaver-0.23.3-intel-2017a.eb @@ -0,0 +1,19 @@ +easyblock = 'ConfigureMake' + +name = 'cadaver' +version = '0.23.3' + +homepage = 'http://www.webdav.org/cadaver/' +description = "cadaver is a command-line WebDAV client for Unix." + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['http://www.webdav.org/cadaver/'] +sources = [SOURCE_TAR_GZ] + +sanity_check_paths = { + 'files': ['bin/cadaver'], + 'dirs': ['share/man'], +} + +moduleclass = 'tools' -- GitLab From e711a75ad462f1bbfbd5d1adb7c0fd8dfca98250 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 12 Jul 2017 11:48:37 +0200 Subject: [PATCH 406/608] bump version to 3.4.0.dev0 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8b55846bb7..2d468796a8 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ from distutils import log # recent setuptools versions will *TRANSFORM* something like 'X.Y.Zdev' into 'X.Y.Z.dev0', with a warning like # UserWarning: Normalizing '2.4.0dev' to '2.4.0.dev0' # This causes problems further up the dependency chain... -VERSION = '3.3.1' +VERSION = '3.4.0.dev0' API_VERSION = VERSION.split('.')[0] EB_VERSION = '.'.join(VERSION.split('.')[0:2]) -- GitLab From 599c37fec698a971c7996f79c65b0d138e671436 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 12 Jul 2017 13:42:56 +0200 Subject: [PATCH 407/608] adding easyconfigs: EasyBuild-3.3.1.eb --- .../e/EasyBuild/EasyBuild-3.3.1.eb | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.3.1.eb diff --git a/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.3.1.eb b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.3.1.eb new file mode 100644 index 0000000000..38ca592d16 --- /dev/null +++ b/easybuild/easyconfigs/e/EasyBuild/EasyBuild-3.3.1.eb @@ -0,0 +1,38 @@ +easyblock = 'EB_EasyBuildMeta' + +name = 'EasyBuild' +version = '3.3.1' + +homepage = 'https://easybuilders.github.io/easybuild' +description = """EasyBuild is a software build and installation framework + written in Python that allows you to install software in a structured, + repeatable and robust way.""" + +toolchain = {'name': 'dummy', 'version': 'dummy'} + +source_urls = [ + # vsc-install + 'https://pypi.python.org/packages/82/ec/19d85d2bb91b562195d00db9ac82d7529904e7eabc0597720966bf74714f/', + # vsc-base + 'https://pypi.python.org/packages/f7/66/1ff7ecc4a93ba37e063f5bfbe395e95a547b1dec73b017c2724f4475a958/', + # easybuild-framework + 'https://pypi.python.org/packages/5b/1e/26bcb7c4407a68b22bd545014bf5536c4f3c4b196bc0467b008d848008da', + # easybuild-easyblocks + 'https://pypi.python.org/packages/7c/03/0ca88b299508689eea650652f5188f9f03d8fc3001670ad37885e71b6e4f', + # easybuild-easyconfigs + 'https://pypi.python.org/packages/57/d0/d5683dbb6aca7dfd2f39f38be9f11252177012ef894dfdf2b19e70eddf44', +] +# order matters a lot, to avoid having dependencies auto-resolved (--no-deps easy_install option doesn't work?) +sources = [ + 'vsc-install-0.10.26.tar.gz', + 'vsc-base-2.5.8.tar.gz', + 'easybuild-framework-%(version)s.tar.gz', + 'easybuild-easyblocks-%(version)s.tar.gz', + 'easybuild-easyconfigs-%(version)s.tar.gz', +] + +# EasyBuild is a (set of) Python packages, so it depends on Python +# usually, we want to use the system Python, so no actual Python dependency is listed +allow_system_deps = [('Python', SYS_PYTHON_VERSION)] + +moduleclass = 'tools' -- GitLab From 875c1ba5366326e387cf54f6c77ec96d93942e3b Mon Sep 17 00:00:00 2001 From: Adam Huffman Date: Wed, 12 Jul 2017 12:53:37 +0100 Subject: [PATCH 408/608] adding easyconfigs: cadaver-0.23.3-intel-2017a.eb --- easybuild/easyconfigs/c/cadaver/cadaver-0.23.3-intel-2017a.eb | 2 ++ 1 file changed, 2 insertions(+) mode change 100644 => 100755 easybuild/easyconfigs/c/cadaver/cadaver-0.23.3-intel-2017a.eb diff --git a/easybuild/easyconfigs/c/cadaver/cadaver-0.23.3-intel-2017a.eb b/easybuild/easyconfigs/c/cadaver/cadaver-0.23.3-intel-2017a.eb old mode 100644 new mode 100755 index 0d2c3a61b1..860d309726 --- a/easybuild/easyconfigs/c/cadaver/cadaver-0.23.3-intel-2017a.eb +++ b/easybuild/easyconfigs/c/cadaver/cadaver-0.23.3-intel-2017a.eb @@ -11,6 +11,8 @@ toolchain = {'name': 'intel', 'version': '2017a'} source_urls = ['http://www.webdav.org/cadaver/'] sources = [SOURCE_TAR_GZ] +checksums = ['fd4ce68a3230ba459a92bcb747fc6afa91e46d803c1d5ffe964b661793c13fca'] + sanity_check_paths = { 'files': ['bin/cadaver'], 'dirs': ['share/man'], -- GitLab From 46f7cd85922fb164216b84d8115c8fcad6660cef Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Wed, 12 Jul 2017 08:31:54 -0500 Subject: [PATCH 409/608] add checksum --- easybuild/easyconfigs/b/bzip2/bzip2-1.0.6-GCCcore-6.4.0.eb | 1 + 1 file changed, 1 insertion(+) diff --git a/easybuild/easyconfigs/b/bzip2/bzip2-1.0.6-GCCcore-6.4.0.eb b/easybuild/easyconfigs/b/bzip2/bzip2-1.0.6-GCCcore-6.4.0.eb index 37301419e8..e4b34a6f11 100644 --- a/easybuild/easyconfigs/b/bzip2/bzip2-1.0.6-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/b/bzip2/bzip2-1.0.6-GCCcore-6.4.0.eb @@ -12,6 +12,7 @@ description = """ toolchain = {'name': 'GCCcore', 'version': '6.4.0'} toolchainopts = {'pic': True} +checksums = ['a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd'] source_urls = ['http://www.bzip.org/%(version)s'] sources = [SOURCE_TAR_GZ] -- GitLab From 689e8f8ffef0dad21b24ae37b1579021ccd4eb2f Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Wed, 12 Jul 2017 08:40:25 -0500 Subject: [PATCH 410/608] edits and add checksum --- easybuild/easyconfigs/n/NASM/NASM-2.13.01-GCCcore-6.4.0.eb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/n/NASM/NASM-2.13.01-GCCcore-6.4.0.eb b/easybuild/easyconfigs/n/NASM/NASM-2.13.01-GCCcore-6.4.0.eb index cbacaeb62b..a992c888d4 100644 --- a/easybuild/easyconfigs/n/NASM/NASM-2.13.01-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/n/NASM/NASM-2.13.01-GCCcore-6.4.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos @@ -20,10 +20,10 @@ homepage = 'http://www.nasm.us/' description = """NASM: General-purpose x86 assembler""" toolchain = {'name': 'GCCcore', 'version': '6.4.0'} -toolchainopts = {'pic': True} source_urls = ['http://www.nasm.us/pub/nasm/releasebuilds/%(version)s'] sources = [SOURCELOWER_TAR_BZ2] +checksums = ['08f97baf0a7f892128c6413cfa93b69dc5825fbbd06c70928aea028835d198fa'] builddependencies = [ ('binutils', '2.28'), -- GitLab From fc9c539ca126e84f40090aacb5af08b7b426d4c1 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Wed, 12 Jul 2017 08:47:23 -0500 Subject: [PATCH 411/608] add checksum --- .../easyconfigs/l/libffcall/libffcall-1.13-GCCcore-6.4.0.eb | 1 + 1 file changed, 1 insertion(+) diff --git a/easybuild/easyconfigs/l/libffcall/libffcall-1.13-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/libffcall/libffcall-1.13-GCCcore-6.4.0.eb index 703f985fd0..336a7eca3d 100644 --- a/easybuild/easyconfigs/l/libffcall/libffcall-1.13-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/l/libffcall/libffcall-1.13-GCCcore-6.4.0.eb @@ -17,6 +17,7 @@ toolchainopts = {'pic': True} source_urls = [GNU_SOURCE] sources = [SOURCE_TAR_GZ] +checksums = ['1707ce707dbbf57f1bbe9aa56929c0da866046b0d5a26eb0d96d9f0bb29bbce7'] builddependencies = [ ('binutils', '2.28'), -- GitLab From 9c79e99bf7928d6f9c786e9f09fcabdda70306f4 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Wed, 12 Jul 2017 09:22:20 -0500 Subject: [PATCH 412/608] edits and add checksum --- .../m/muParser/muParser-2.2.5-GCCcore-6.4.0.eb | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/easybuild/easyconfigs/m/muParser/muParser-2.2.5-GCCcore-6.4.0.eb b/easybuild/easyconfigs/m/muParser/muParser-2.2.5-GCCcore-6.4.0.eb index 754dbd44a4..915de6c6ce 100644 --- a/easybuild/easyconfigs/m/muParser/muParser-2.2.5-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/m/muParser/muParser-2.2.5-GCCcore-6.4.0.eb @@ -1,5 +1,3 @@ -# Author:: Jack Perdue - TAMU HPRC - http://hprc.tamu.edu - easyblock = 'ConfigureMake' name = 'muParser' @@ -19,16 +17,17 @@ toolchainopts = {'pic': True} # https://github.com/beltoforion/muparser/archive/v2.2.5.tar.gz source_urls = ['https://github.com/beltoforion/muparser/archive/'] sources = [SOURCELOWER_TAR_GZ] +checksums = ['0666ef55da72c3e356ca85b6a0084d56b05dd740c3c21d26d372085aa2c6e708'] builddependencies = [ ('binutils', '2.28'), ] +configopts = "--disable-samples --enable-shared" + sanity_check_paths = { - 'files': ['include/muParser.h', 'lib/libmuparser.so'], + 'files': ['include/muParser.h', 'lib/libmuparser.%s' %SHLIB_EXT], 'dirs': [], } -parallel = 1 - moduleclass = 'math' -- GitLab From 71980e5c4b2c186d0e7066e4af0f649a5903d654 Mon Sep 17 00:00:00 2001 From: Adam Huffman Date: Wed, 12 Jul 2017 15:31:10 +0100 Subject: [PATCH 413/608] Create versioned source file and move to unversioned for the runtime copy --- .../easyconfigs/p/picard/picard-2.10.1-Java-1.8.0_131.eb | 9 +++++++-- .../easyconfigs/p/picard/picard-2.6.0-Java-1.8.0_131.eb | 9 ++++++++- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/easybuild/easyconfigs/p/picard/picard-2.10.1-Java-1.8.0_131.eb b/easybuild/easyconfigs/p/picard/picard-2.10.1-Java-1.8.0_131.eb index e69580f5e4..ab38eef7a5 100755 --- a/easybuild/easyconfigs/p/picard/picard-2.10.1-Java-1.8.0_131.eb +++ b/easybuild/easyconfigs/p/picard/picard-2.10.1-Java-1.8.0_131.eb @@ -24,9 +24,14 @@ description = """A set of tools (in Java) for working with next generation seque toolchain = {'name': 'dummy', 'version': 'dummy'} source_urls = ['https://github.com/broadinstitute/picard/releases/download/%(version)s'] -sources = ['%(name)s.jar'] +sources = [{ + 'filename': '%(name)s-%(version)s.jar', + 'download_filename': '%(name)s.jar', +}] -checksums = [('sha256', 'e256d5e43656b7d8be454201a7056dce543fe9cbeb30329a0d8c22d28e655775')] +checksums = ['ace0de725f7dbf3a1f621ac146e205b41bc872a0bdc700cf687124740fb60412'] + +postinstallcmds = [' mv %(installdir)s/%(name)s-%(version)s.jar %(installdir)s/%(name)s.jar'] dependencies = [('Java', '1.8.0_131')] diff --git a/easybuild/easyconfigs/p/picard/picard-2.6.0-Java-1.8.0_131.eb b/easybuild/easyconfigs/p/picard/picard-2.6.0-Java-1.8.0_131.eb index 674512ad38..f2d7251544 100755 --- a/easybuild/easyconfigs/p/picard/picard-2.6.0-Java-1.8.0_131.eb +++ b/easybuild/easyconfigs/p/picard/picard-2.6.0-Java-1.8.0_131.eb @@ -25,7 +25,14 @@ toolchain = {'name': 'dummy', 'version': 'dummy'} source_urls = ['https://github.com/broadinstitute/picard/releases/download/%(version)s'] sources = ['%(name)s.jar'] -checksums = [('sha256', '671d9e86e6bf0c28ee007aea55d07e2456ae3a57016491b50aab0fd2fd0e493b')] +sources = [{ + 'filename': '%(name)s-%(version)s.jar', + 'download_filename': '%(name)s.jar', +}] + +checksums = ['671d9e86e6bf0c28ee007aea55d07e2456ae3a57016491b50aab0fd2fd0e493b'] + +postinstallcmds = [' mv %(installdir)s/%(name)s-%(version)s.jar %(installdir)s/%(name)s.jar'] dependencies = [('Java', '1.8.0_131')] -- GitLab From e94c16366aef8249db878d49e4f349b58f71d230 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Wed, 12 Jul 2017 09:32:05 -0500 Subject: [PATCH 414/608] cleanup and add checksum --- .../easyconfigs/n/ncompress/ncompress-4.2.4.4-GCCcore-6.4.0.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/n/ncompress/ncompress-4.2.4.4-GCCcore-6.4.0.eb b/easybuild/easyconfigs/n/ncompress/ncompress-4.2.4.4-GCCcore-6.4.0.eb index a000487503..a9b3d371a0 100644 --- a/easybuild/easyconfigs/n/ncompress/ncompress-4.2.4.4-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/n/ncompress/ncompress-4.2.4.4-GCCcore-6.4.0.eb @@ -16,9 +16,9 @@ description = """ toolchain = {'name': 'GCCcore', 'version': '6.4.0'} -# https://github.com/vapier/ncompress/archive/v4.2.4.4.tar.gz source_urls = ['https://github.com/vapier/ncompress/archive/'] sources = ['%(name)s-%(version)s.tar.gz'] +checksums = ['2670439935e7639c3a767087da99810e45bc3997d0638b3094396043571e5aec'] builddependencies = [ ('binutils', '2.28'), -- GitLab From 7e945a3421406121e5ac9c9aebe16a05b34bab91 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Wed, 12 Jul 2017 09:40:17 -0500 Subject: [PATCH 415/608] cleanup --- easybuild/easyconfigs/s/Szip/Szip-2.1.1-GCCcore-6.4.0.eb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/s/Szip/Szip-2.1.1-GCCcore-6.4.0.eb b/easybuild/easyconfigs/s/Szip/Szip-2.1.1-GCCcore-6.4.0.eb index 8df5fac01e..98b8e0cf48 100644 --- a/easybuild/easyconfigs/s/Szip/Szip-2.1.1-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/s/Szip/Szip-2.1.1-GCCcore-6.4.0.eb @@ -22,8 +22,7 @@ builddependencies = [ sanity_check_paths = { 'files': ["lib/libsz.a", "lib/libsz.%s" % SHLIB_EXT] + - ["include/%s" % x for x in - ["ricehdf.h", "szip_adpt.h", "szlib.h"]], + ["include/%s" % x for x in ["ricehdf.h", "szip_adpt.h", "szlib.h"]], 'dirs': [], } -- GitLab From 58cd5d05e7226cfd0e5099b955e1b8d2ffdc8742 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Wed, 12 Jul 2017 09:55:49 -0500 Subject: [PATCH 416/608] cleanup --- easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-GCCcore-6.4.0.eb | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-GCCcore-6.4.0.eb b/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-GCCcore-6.4.0.eb index 53ab4485ce..691d1170d5 100644 --- a/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/y/Yasm/Yasm-1.3.0-GCCcore-6.4.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos @@ -17,9 +17,7 @@ version = '1.3.0' homepage = 'http://www.tortall.net/projects/yasm/' -description = """ - Yasm: Complete rewrite of the NASM assembler with BSD license -""" +description = """Yasm: Complete rewrite of the NASM assembler with BSD license""" toolchain = {'name': 'GCCcore', 'version': '6.4.0'} -- GitLab From 05ef2db0b1b76c5635076e836d28897e3707a661 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 12 Jul 2017 17:06:54 +0200 Subject: [PATCH 417/608] adding easyconfigs: vsc-mympirun-4.0.1.eb --- .../v/vsc-mympirun/vsc-mympirun-4.0.1.eb | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100755 easybuild/easyconfigs/v/vsc-mympirun/vsc-mympirun-4.0.1.eb diff --git a/easybuild/easyconfigs/v/vsc-mympirun/vsc-mympirun-4.0.1.eb b/easybuild/easyconfigs/v/vsc-mympirun/vsc-mympirun-4.0.1.eb new file mode 100755 index 0000000000..5e6aaec33a --- /dev/null +++ b/easybuild/easyconfigs/v/vsc-mympirun/vsc-mympirun-4.0.1.eb @@ -0,0 +1,34 @@ +easyblock = 'PythonPackage' + +name = 'vsc-mympirun' +version = '4.0.1' + +homepage = 'https://github.com/hpcugent/vsc-mympirun' +description = """VSC-tools is a set of Python libraries and scripts that are commonly used within HPC-UGent.""" + +# we build this to work with every python version +toolchain = {'name': 'dummy', 'version': ''} + +source_urls = [PYPI_SOURCE] +sources = [SOURCE_TAR_GZ] +checksums = ['b5b08e6291a68802d29c344d5807e4c2a1945375055b57c819721151775789f0'] + +builddependencies = [('vsc-install', '0.10.26')] +dependencies = [('vsc-base', '2.5.8')] + +osdependencies = ['python-setuptools'] + +# we ship something in bin/fake +modextrapaths = {'PATH': 'bin/fake'} + +# don't check for import of vsc.mympirun, since that may fail if vsc-base is picked up from the OS +options = {'modulename': 'vsc'} + +pyshortver = '.'.join(SYS_PYTHON_VERSION.split('.')[:2]) +sanity_check_paths = { + 'files': ['bin/mympirun', 'bin/mympisanity'], + 'dirs': ['bin/fake', 'lib/python%s/site-packages' % pyshortver], +} +sanity_check_commands = ["mympirun --help"] + +moduleclass = 'tools' -- GitLab From d4fd3ae511ea33e8783fbd386892b051e1f036fa Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 12 Jul 2017 17:49:08 +0200 Subject: [PATCH 418/608] use single-line description in setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2d468796a8..49f7189df7 100644 --- a/setup.py +++ b/setup.py @@ -104,7 +104,7 @@ setup( version = VERSION, author = "EasyBuild community", author_email = "easybuild@lists.ugent.be", - description = """Easyconfig files are simple build specification files for EasyBuild, + description = """Easyconfig files are simple build specification files for EasyBuild, \ that specify the build parameters for software packages (version, compiler toolchain, dependency \ versions, etc.).""", license = "GPLv2", -- GitLab From 05b56fd157e1f8c3189657a4d6a4200209730694 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Wed, 12 Jul 2017 11:04:51 -0500 Subject: [PATCH 419/608] update EB URL --- easybuild/easyconfigs/p/PAPI/PAPI-5.5.1-GCCcore-6.4.0.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/p/PAPI/PAPI-5.5.1-GCCcore-6.4.0.eb b/easybuild/easyconfigs/p/PAPI/PAPI-5.5.1-GCCcore-6.4.0.eb index af271fc244..19d05f8452 100644 --- a/easybuild/easyconfigs/p/PAPI/PAPI-5.5.1-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/p/PAPI/PAPI-5.5.1-GCCcore-6.4.0.eb @@ -1,5 +1,5 @@ ## -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders # # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA # Authors:: Fotis Georgatos -- GitLab From 8e039123b500e97895da8deda4fcb9f9ea635c96 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Wed, 12 Jul 2017 11:12:22 -0500 Subject: [PATCH 420/608] add checksum --- easybuild/easyconfigs/m/Mesquite/Mesquite-2.3.0-GCCcore-6.4.0.eb | 1 + 1 file changed, 1 insertion(+) diff --git a/easybuild/easyconfigs/m/Mesquite/Mesquite-2.3.0-GCCcore-6.4.0.eb b/easybuild/easyconfigs/m/Mesquite/Mesquite-2.3.0-GCCcore-6.4.0.eb index f3e3eb3a99..b48cf2aa8f 100644 --- a/easybuild/easyconfigs/m/Mesquite/Mesquite-2.3.0-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/m/Mesquite/Mesquite-2.3.0-GCCcore-6.4.0.eb @@ -12,5 +12,6 @@ toolchainopts = {'pic': True} source_urls = ['https://software.sandia.gov/mesquite/'] sources = [SOURCELOWER_TAR_GZ] +checksums = ['4ab4ceadfa596e16c00dbb0e8b830a9112fa1b73291ca07633ec379a39b8bb28'] moduleclass = 'math' -- GitLab From 9afe523875f44516cafb53bd3a0dc7fd07a2e09d Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Wed, 12 Jul 2017 11:16:17 -0500 Subject: [PATCH 421/608] add checksum --- easybuild/easyconfigs/n/ncurses/ncurses-6.0-GCCcore-6.4.0.eb | 1 + 1 file changed, 1 insertion(+) diff --git a/easybuild/easyconfigs/n/ncurses/ncurses-6.0-GCCcore-6.4.0.eb b/easybuild/easyconfigs/n/ncurses/ncurses-6.0-GCCcore-6.4.0.eb index c4eefc78a1..0ee6b52eeb 100644 --- a/easybuild/easyconfigs/n/ncurses/ncurses-6.0-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/n/ncurses/ncurses-6.0-GCCcore-6.4.0.eb @@ -17,6 +17,7 @@ toolchainopts = {'pic': True} source_urls = [GNU_SOURCE] sources = [SOURCE_TAR_GZ] +checksums = ['f551c24b30ce8bfb6e96d9f59b42fbea30fa3a6123384172f9e7284bcf647260'] patches = ['ncurses-%(version)s_gcc-5.patch'] -- GitLab From d3d0cc6b9d59519fbe578324b2fec65b0fcb8ab4 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Wed, 12 Jul 2017 11:24:42 -0500 Subject: [PATCH 422/608] add checksum --- easybuild/easyconfigs/l/libtool/libtool-2.4.6-GCCcore-6.4.0.eb | 1 + 1 file changed, 1 insertion(+) diff --git a/easybuild/easyconfigs/l/libtool/libtool-2.4.6-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/libtool/libtool-2.4.6-GCCcore-6.4.0.eb index 2f6e8100a5..bc5c6cb40c 100644 --- a/easybuild/easyconfigs/l/libtool/libtool-2.4.6-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/l/libtool/libtool-2.4.6-GCCcore-6.4.0.eb @@ -14,6 +14,7 @@ toolchain = {'name': 'GCCcore', 'version': '6.4.0'} source_urls = [GNU_SOURCE] sources = [SOURCELOWER_TAR_GZ] +checksums = ['e3bd4d5d3d025a36c21dd6af7ea818a2afcd4dfc1ea5a17b39d7854bcd0c06e3'] builddependencies = [ ('binutils', '2.28'), -- GitLab From edaed19af3fb64227be2ab9ae3c25faa21c396b2 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Wed, 12 Jul 2017 11:38:42 -0500 Subject: [PATCH 423/608] add checksum --- easybuild/easyconfigs/g/gzip/gzip-1.8-GCCcore-6.4.0.eb | 1 + 1 file changed, 1 insertion(+) diff --git a/easybuild/easyconfigs/g/gzip/gzip-1.8-GCCcore-6.4.0.eb b/easybuild/easyconfigs/g/gzip/gzip-1.8-GCCcore-6.4.0.eb index fc8158dc1a..fcd38e2364 100644 --- a/easybuild/easyconfigs/g/gzip/gzip-1.8-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/g/gzip/gzip-1.8-GCCcore-6.4.0.eb @@ -14,6 +14,7 @@ toolchain = {'name': 'GCCcore', 'version': '6.4.0'} source_urls = [GNU_SOURCE] sources = [SOURCE_TAR_GZ] +checksums = ['1ff7aedb3d66a0d73f442f6261e4b3860df6fd6c94025c2cb31a202c9c60fe0e'] sanity_check_paths = { 'files': ["bin/gunzip", "bin/gzip", "bin/uncompress"], -- GitLab From 1180e84291b36a4c4ed76fc16f6e05316e8a728d Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Wed, 12 Jul 2017 12:03:04 -0500 Subject: [PATCH 424/608] maintain sanity --- easybuild/easyconfigs/d/DB/DB-6.2.32-GCCcore-6.4.0.eb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/d/DB/DB-6.2.32-GCCcore-6.4.0.eb b/easybuild/easyconfigs/d/DB/DB-6.2.32-GCCcore-6.4.0.eb index 076d25e019..7182e6afe1 100644 --- a/easybuild/easyconfigs/d/DB/DB-6.2.32-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/d/DB/DB-6.2.32-GCCcore-6.4.0.eb @@ -10,7 +10,8 @@ description = """ toolchain = {'name': 'GCCcore', 'version': '6.4.0'} -# download via http://www.oracle.com/technetwork/products/berkeleydb/downloads/, requires registration +# download via http://www.oracle.com/technetwork/products/berkeleydb/downloads/, +# requires registration sources = [SOURCELOWER_TAR_GZ] checksums = ['a9c5e2b004a5777aa03510cfe5cd766a4a3b777713406b02809c17c8e0e7a8fb'] @@ -19,7 +20,8 @@ builddependencies = [ ] sanity_check_paths = { - 'files': ["include/db.h"], + 'files': ['bin/db_archive', 'include/db.h', 'lib/libdb.a', + 'lib/libdb.%s' % SHLIB_EXT], 'dirs': [], } -- GitLab From 844a1c5a147387eccf4ebb7784e3ec3e57cec5a7 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Wed, 12 Jul 2017 12:24:59 -0500 Subject: [PATCH 425/608] add checksum --- easybuild/easyconfigs/a/Autoconf/Autoconf-2.69-GCCcore-6.4.0.eb | 1 + 1 file changed, 1 insertion(+) diff --git a/easybuild/easyconfigs/a/Autoconf/Autoconf-2.69-GCCcore-6.4.0.eb b/easybuild/easyconfigs/a/Autoconf/Autoconf-2.69-GCCcore-6.4.0.eb index 6574fccdb0..741c36b430 100644 --- a/easybuild/easyconfigs/a/Autoconf/Autoconf-2.69-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/a/Autoconf/Autoconf-2.69-GCCcore-6.4.0.eb @@ -18,6 +18,7 @@ toolchain = {'name': 'GCCcore', 'version': '6.4.0'} source_urls = [GNU_SOURCE] sources = [SOURCELOWER_TAR_GZ] +checksums = ['954bd69b391edc12d6a4a51a2dd1476543da5c6bbf05a95b59dc0dd6fd4c2969'] builddependencies = [ ('binutils', '2.28'), -- GitLab From 0ca4803546c93bd4c41a90b7d1019a88e3e1a439 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Wed, 12 Jul 2017 12:44:19 -0500 Subject: [PATCH 426/608] add checksum --- easybuild/easyconfigs/p/pixman/pixman-0.34.0-GCCcore-6.4.0.eb | 1 + 1 file changed, 1 insertion(+) diff --git a/easybuild/easyconfigs/p/pixman/pixman-0.34.0-GCCcore-6.4.0.eb b/easybuild/easyconfigs/p/pixman/pixman-0.34.0-GCCcore-6.4.0.eb index 5f58c9f25c..9fb2609138 100644 --- a/easybuild/easyconfigs/p/pixman/pixman-0.34.0-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/p/pixman/pixman-0.34.0-GCCcore-6.4.0.eb @@ -15,6 +15,7 @@ toolchain = {'name': 'GCCcore', 'version': '6.4.0'} source_urls = ['http://cairographics.org/releases/'] sources = [SOURCE_TAR_GZ] +checksums = ['21b6b249b51c6800dc9553b65106e1e37d0e25df942c90531d4c3997aa20a88e'] builddependencies = [ ('binutils', '2.28'), -- GitLab From f7dcd08e2054af6d6aceb8c1b616fd9cef0a4245 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Wed, 12 Jul 2017 12:48:21 -0500 Subject: [PATCH 427/608] add checksum --- .../l/libpthread-stubs/libpthread-stubs-0.4-GCCcore-6.4.0.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/l/libpthread-stubs/libpthread-stubs-0.4-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/libpthread-stubs/libpthread-stubs-0.4-GCCcore-6.4.0.eb index f65b67ddd6..f5302ea370 100644 --- a/easybuild/easyconfigs/l/libpthread-stubs/libpthread-stubs-0.4-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/l/libpthread-stubs/libpthread-stubs-0.4-GCCcore-6.4.0.eb @@ -18,7 +18,7 @@ toolchain = {'name': 'GCCcore', 'version': '6.4.0'} toolchainopts = {'pic': True} builddependencies = [ - ('binutils','2.28'), + ('binutils', '2.28'), ] sanity_check_paths = { -- GitLab From 62a3d90a39970bec28bfb2c07b8349b17fe990d2 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Wed, 12 Jul 2017 12:53:49 -0500 Subject: [PATCH 428/608] really this time, add checksums --- .../l/libpthread-stubs/libpthread-stubs-0.4-GCCcore-6.4.0.eb | 1 + 1 file changed, 1 insertion(+) diff --git a/easybuild/easyconfigs/l/libpthread-stubs/libpthread-stubs-0.4-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/libpthread-stubs/libpthread-stubs-0.4-GCCcore-6.4.0.eb index f5302ea370..64f2cd1602 100644 --- a/easybuild/easyconfigs/l/libpthread-stubs/libpthread-stubs-0.4-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/l/libpthread-stubs/libpthread-stubs-0.4-GCCcore-6.4.0.eb @@ -13,6 +13,7 @@ description = """ source_urls = ['http://xcb.freedesktop.org/dist/'] sources = [SOURCELOWER_TAR_GZ] +checksums = ['50d5686b79019ccea08bcbd7b02fe5a40634abcfd4146b6e75c6420cc170e9d9'] toolchain = {'name': 'GCCcore', 'version': '6.4.0'} toolchainopts = {'pic': True} -- GitLab From 7821ecb9619ef1e35b1424d26aa71770380cb5f5 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Wed, 12 Jul 2017 22:47:03 -0500 Subject: [PATCH 429/608] pigz and patch --- .../p/pigz/pigz-2.3.4-GCCcore-6.4.0.eb | 42 +++++++++++++++++++ .../p/pigz/pigz-2.3.4_Makefile.patch | 17 ++++++++ 2 files changed, 59 insertions(+) create mode 100644 easybuild/easyconfigs/p/pigz/pigz-2.3.4-GCCcore-6.4.0.eb create mode 100644 easybuild/easyconfigs/p/pigz/pigz-2.3.4_Makefile.patch diff --git a/easybuild/easyconfigs/p/pigz/pigz-2.3.4-GCCcore-6.4.0.eb b/easybuild/easyconfigs/p/pigz/pigz-2.3.4-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..4b0af18f75 --- /dev/null +++ b/easybuild/easyconfigs/p/pigz/pigz-2.3.4-GCCcore-6.4.0.eb @@ -0,0 +1,42 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# Author: Pablo Escobar Lopez +# Swiss Institute of Bioinformatics +# Biozentrum - University of Basel + +easyblock = 'MakeCp' + +name = 'pigz' +version = '2.3.4' + +homepage = 'http://zlib.net/pigz/' + +description = """ + pigz, which stands for parallel implementation of gzip, is a fully + functional replacement for gzip that exploits multiple processors and multiple + cores to the hilt when compressing data. pigz was written by Mark Adler, and + uses the zlib and pthread libraries. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = ['http://zlib.net/pigz/'] +sources = [SOURCE_TAR_GZ] +checksums = ['6f031fa40bc15b1d80d502ff91f83ba14f4b079e886bfb83221374f7bf5c8f9a'] + +# Patch Makefile so zlib provided by EasyBuild is picked up +patches = ['%(name)s-%(version)s_Makefile.patch'] + +dependencies = [ + ('zlib', '1.2.11'), +] + +parallel = 1 + +files_to_copy = [(["pigz", "unpigz"], "bin")] + +sanity_check_paths = { + 'files': ['bin/pigz', 'bin/unpigz'], + 'dirs': [], +} + +moduleclass = 'tools' diff --git a/easybuild/easyconfigs/p/pigz/pigz-2.3.4_Makefile.patch b/easybuild/easyconfigs/p/pigz/pigz-2.3.4_Makefile.patch new file mode 100644 index 0000000000..05008c1033 --- /dev/null +++ b/easybuild/easyconfigs/p/pigz/pigz-2.3.4_Makefile.patch @@ -0,0 +1,17 @@ +--- Makefile.orig 2017-07-12 22:16:56.931252958 -0500 ++++ Makefile 2017-07-12 22:25:34.472386094 -0500 +@@ -1,12 +1,11 @@ +-CC=cc +-CFLAGS=-O3 -Wall -Wextra ++ZLIB=-L$(EBROOTZLIB)/lib + LDFLAGS= + LIBS=-lm -lpthread -lz + ZOPFLI=zopfli/src/zopfli/ + # use gcc and gmake on Solaris + + pigz: pigz.o yarn.o try.o ${ZOPFLI}deflate.o ${ZOPFLI}blocksplitter.o ${ZOPFLI}tree.o ${ZOPFLI}lz77.o ${ZOPFLI}cache.o ${ZOPFLI}hash.o ${ZOPFLI}util.o ${ZOPFLI}squeeze.o ${ZOPFLI}katajainen.o +- $(CC) $(LDFLAGS) -o pigz $^ $(LIBS) ++ $(CC) $(LDFLAGS) -o pigz $^ $(ZLIB) $(LIBS) + ln -f pigz unpigz + + pigz.o: pigz.c yarn.h try.h ${ZOPFLI}deflate.h ${ZOPFLI}util.h -- GitLab From a75d1e7c0c30290cf695b666cc90fa51bd7b13cc Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Wed, 12 Jul 2017 23:19:26 -0500 Subject: [PATCH 430/608] fix URL fail --- easybuild/easyconfigs/p/pigz/pigz-2.3.4-GCCcore-6.4.0.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/p/pigz/pigz-2.3.4-GCCcore-6.4.0.eb b/easybuild/easyconfigs/p/pigz/pigz-2.3.4-GCCcore-6.4.0.eb index 4b0af18f75..0042955a0b 100644 --- a/easybuild/easyconfigs/p/pigz/pigz-2.3.4-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/p/pigz/pigz-2.3.4-GCCcore-6.4.0.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel -- GitLab From 3dce9cfcebc9337afd45f218818a45ad1ecee22e Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Wed, 12 Jul 2017 23:24:54 -0500 Subject: [PATCH 431/608] adding easyconfigs: CMake-3.8.2-GCCcore-6.4.0.eb --- .../c/CMake/CMake-3.8.2-GCCcore-6.4.0.eb | 38 +++++++++++++++ .../n/ncurses/ncurses-6.0-GCCcore-6.4.0.eb | 48 +++++++++++++++++++ 2 files changed, 86 insertions(+) create mode 100644 easybuild/easyconfigs/c/CMake/CMake-3.8.2-GCCcore-6.4.0.eb create mode 100644 easybuild/easyconfigs/n/ncurses/ncurses-6.0-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/c/CMake/CMake-3.8.2-GCCcore-6.4.0.eb b/easybuild/easyconfigs/c/CMake/CMake-3.8.2-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..84630972bf --- /dev/null +++ b/easybuild/easyconfigs/c/CMake/CMake-3.8.2-GCCcore-6.4.0.eb @@ -0,0 +1,38 @@ +easyblock = 'ConfigureMake' + +name = 'CMake' +version = '3.8.2' + +homepage = 'http://www.cmake.org' + +description = """ + CMake, the cross-platform, open-source build system. CMake is a family of + tools designed to build, test and package software. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s'] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['da3072794eb4c09f2d782fcee043847b99bb4cf8d4573978d9b2024214d6e92d'] + +configopts = '-- -DCMAKE_USE_OPENSSL=1 -DCMAKE_PREFIX_PATH=$EBROOTNCURSES' + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('ncurses', '6.0'), +] + +osdependencies = [ + ('openssl-devel', 'libssl-dev', 'libopenssl-devel'), +] + +sanity_check_paths = { + 'files': ["bin/%s" % x for x in ['ccmake', 'cmake', 'cpack', 'ctest']], + 'dirs': [], +} + +moduleclass = 'devel' diff --git a/easybuild/easyconfigs/n/ncurses/ncurses-6.0-GCCcore-6.4.0.eb b/easybuild/easyconfigs/n/ncurses/ncurses-6.0-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..0ee6b52eeb --- /dev/null +++ b/easybuild/easyconfigs/n/ncurses/ncurses-6.0-GCCcore-6.4.0.eb @@ -0,0 +1,48 @@ +easyblock = 'ConfigureMake' + +name = 'ncurses' +version = '6.0' + +homepage = 'http://www.gnu.org/software/ncurses/' + +description = """ + The Ncurses (new curses) library is a free software emulation of curses in + System V Release 4.0, and more. It uses Terminfo format, supports pads and + color and multiple highlights and forms characters and function-key mapping, + and has all the other SYSV-curses enhancements over BSD Curses. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = [GNU_SOURCE] +sources = [SOURCE_TAR_GZ] +checksums = ['f551c24b30ce8bfb6e96d9f59b42fbea30fa3a6123384172f9e7284bcf647260'] + +patches = ['ncurses-%(version)s_gcc-5.patch'] + +builddependencies = [ + ('binutils', '2.28'), +] + +configopts = [ + # default build + '--with-shared --enable-overwrite', + # the UTF-8 enabled version (ncursesw) + '--with-shared --enable-overwrite --enable-ext-colors --enable-widec --includedir=%(installdir)s/include/ncursesw/' +] + +libs = ["form", "menu", "ncurses", "panel"] +sanity_check_paths = { + 'files': ['bin/%s' % x for x in ["captoinfo", "clear", "infocmp", + "infotocap", + "ncurses%(version_major)s-config", + "reset", "tabs", "tic", "toe", "tput", + "tset"]] + + ['lib/lib%s%s.a' % (x, y) for x in libs for y in ['', '_g', 'w', 'w_g']] + + ['lib/lib%s%s.%s' % (x, y, SHLIB_EXT) for x in libs for y in ['', 'w']] + + ['lib/libncurses++%s.a' % x for x in ['', 'w']], + 'dirs': ['include', 'include/ncursesw'], +} + +moduleclass = 'devel' -- GitLab From 95d04f57d80eba01f7ee9bc9f96abd6d8b364cfc Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Thu, 13 Jul 2017 00:29:53 -0500 Subject: [PATCH 432/608] add binutils --- .../easyconfigs/m/Mesquite/Mesquite-2.3.0-GCCcore-6.4.0.eb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/easybuild/easyconfigs/m/Mesquite/Mesquite-2.3.0-GCCcore-6.4.0.eb b/easybuild/easyconfigs/m/Mesquite/Mesquite-2.3.0-GCCcore-6.4.0.eb index b48cf2aa8f..bf18a3528d 100644 --- a/easybuild/easyconfigs/m/Mesquite/Mesquite-2.3.0-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/m/Mesquite/Mesquite-2.3.0-GCCcore-6.4.0.eb @@ -14,4 +14,8 @@ source_urls = ['https://software.sandia.gov/mesquite/'] sources = [SOURCELOWER_TAR_GZ] checksums = ['4ab4ceadfa596e16c00dbb0e8b830a9112fa1b73291ca07633ec379a39b8bb28'] +builddependencies = [ + ('binutils', '2.28'), +] + moduleclass = 'math' -- GitLab From 267b906f2b2dd9a648d0b44e8d8689798c416dbf Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Thu, 13 Jul 2017 01:10:28 -0500 Subject: [PATCH 433/608] adding easyconfigs: gc-7.6.0-GCCcore-6.4.0.eb --- .../g/gc/gc-7.6.0-GCCcore-6.4.0.eb | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 easybuild/easyconfigs/g/gc/gc-7.6.0-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/g/gc/gc-7.6.0-GCCcore-6.4.0.eb b/easybuild/easyconfigs/g/gc/gc-7.6.0-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..aa7d33f680 --- /dev/null +++ b/easybuild/easyconfigs/g/gc/gc-7.6.0-GCCcore-6.4.0.eb @@ -0,0 +1,40 @@ +easyblock = 'ConfigureMake' + +name = 'gc' +version = '7.6.0' + +homepage = 'http://hboehm.info/gc/' + +description = """ + The Boehm-Demers-Weiser conservative garbage collector can be used as a + garbage collecting replacement for C malloc or C++ new. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = [ + 'http://hboehm.info/gc/gc_source/', + 'https://github.com/ivmai/libatomic_ops/releases/download/v7.4.6/', +] +sources = [ + SOURCE_TAR_GZ, + 'libatomic_ops-7.4.6.tar.gz', +] +checksums = [ + 'a14a28b1129be90e55cd6f71127ffc5594e1091d5d54131528c24cd0c03b7d90', + '96e88ba450ae5fa10aa8e94e6b151a63ffbe47f8069574bd12da22ae80c686db', +] + +builddependencies = [ + ('binutils', '2.28'), +] + +preconfigopts = 'ln -s %(builddir)s/libatomic_ops*/ libatomic_ops && ' + +sanity_check_paths = { + 'files': ['include/gc.h', 'lib/libcord.a', 'lib/libcord.%s' % SHLIB_EXT, + 'lib/libgc.a', 'lib/libgc.%s' % SHLIB_EXT], + 'dirs': ['include/gc', 'share'], +} + +moduleclass = 'lib' -- GitLab From 04e4a0bc1bcbb8612c080143bccce49073a8160f Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Thu, 13 Jul 2017 01:42:05 -0500 Subject: [PATCH 434/608] adding easyconfigs: cURL-7.54.1-GCCcore-6.4.0.eb --- .../c/cURL/cURL-7.54.1-GCCcore-6.4.0.eb | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 easybuild/easyconfigs/c/cURL/cURL-7.54.1-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/c/cURL/cURL-7.54.1-GCCcore-6.4.0.eb b/easybuild/easyconfigs/c/cURL/cURL-7.54.1-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..0c330ab8c8 --- /dev/null +++ b/easybuild/easyconfigs/c/cURL/cURL-7.54.1-GCCcore-6.4.0.eb @@ -0,0 +1,45 @@ +easyblock = 'ConfigureMake' + +name = 'cURL' +version = '7.54.1' + +homepage = 'http://curl.haxx.se' + +description = """ + libcurl is a free and easy-to-use client-side URL transfer library, + supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, + LDAPS, POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. + libcurl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP + form based upload, proxies, cookies, user+password authentication (Basic, + Digest, NTLM, Negotiate, Kerberos), file transfer resume, http proxy tunneling + and more. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = ['http://curl.haxx.se/download/'] +sources = [SOURCELOWER_TAR_GZ] + +osdependencies = [ + ('libssh2-devel'), + ('openssl-devel', 'libssl-dev', 'libopenssl-devel'), +] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('zlib', '1.2.11'), +] + +configopts = '--with-libssh2 --with-zlib' + +modextravars = {'CURL_INCLUDES': '%(installdir)s/include'} + +sanity_check_paths = { + 'files': ['bin/curl', 'lib/libcurl.a', 'lib/libcurl.%s' % SHLIB_EXT], + 'dirs': ['lib/pkgconfig'], +} + +moduleclass = 'tools' -- GitLab From 18c0ed1bc962eddef6fabf77445c1db9ec47ac63 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Thu, 13 Jul 2017 02:13:46 -0500 Subject: [PATCH 435/608] adding easyconfigs: libreadline-7.0-GCCcore-6.4.0.eb --- .../libreadline-7.0-GCCcore-6.4.0.eb | 43 +++++++++++++++++ .../n/ncurses/ncurses-6.0-GCCcore-6.4.0.eb | 48 +++++++++++++++++++ 2 files changed, 91 insertions(+) create mode 100644 easybuild/easyconfigs/l/libreadline/libreadline-7.0-GCCcore-6.4.0.eb create mode 100644 easybuild/easyconfigs/n/ncurses/ncurses-6.0-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/l/libreadline/libreadline-7.0-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/libreadline/libreadline-7.0-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..b26a32205d --- /dev/null +++ b/easybuild/easyconfigs/l/libreadline/libreadline-7.0-GCCcore-6.4.0.eb @@ -0,0 +1,43 @@ +easyblock = 'ConfigureMake' + +name = 'libreadline' +version = '7.0' + +homepage = 'http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html' + +description = """ + The GNU Readline library provides a set of functions for use by applications + that allow users to edit command lines as they are typed in. Both Emacs and + vi editing modes are available. The Readline library includes additional + functions to maintain a list of previously-entered command lines, to recall + and perhaps reedit those lines, and perform csh-like history expansion on + previous commands. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = ['http://ftp.gnu.org/gnu/readline'] +sources = ['readline-%(version)s.tar.gz'] +checksums = ['750d437185286f40a369e1e4f4764eda932b9459b5ec9a731628393dd3d32334'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('ncurses', '6.0'), +] + +# for the termcap symbols, use EB ncurses +preconfigopts = "env LDFLAGS='-lncurses'" + +sanity_check_paths = { + 'files': ['lib/libreadline.a', 'lib/libhistory.a'] + + ['include/readline/%s' % x + for x in ['chardefs.h', 'history.h', 'keymaps.h', 'readline.h', + 'rlconf.h', 'rlstdc.h', 'rltypedefs.h', 'tilde.h']], + 'dirs': [], +} + +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/n/ncurses/ncurses-6.0-GCCcore-6.4.0.eb b/easybuild/easyconfigs/n/ncurses/ncurses-6.0-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..0ee6b52eeb --- /dev/null +++ b/easybuild/easyconfigs/n/ncurses/ncurses-6.0-GCCcore-6.4.0.eb @@ -0,0 +1,48 @@ +easyblock = 'ConfigureMake' + +name = 'ncurses' +version = '6.0' + +homepage = 'http://www.gnu.org/software/ncurses/' + +description = """ + The Ncurses (new curses) library is a free software emulation of curses in + System V Release 4.0, and more. It uses Terminfo format, supports pads and + color and multiple highlights and forms characters and function-key mapping, + and has all the other SYSV-curses enhancements over BSD Curses. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = [GNU_SOURCE] +sources = [SOURCE_TAR_GZ] +checksums = ['f551c24b30ce8bfb6e96d9f59b42fbea30fa3a6123384172f9e7284bcf647260'] + +patches = ['ncurses-%(version)s_gcc-5.patch'] + +builddependencies = [ + ('binutils', '2.28'), +] + +configopts = [ + # default build + '--with-shared --enable-overwrite', + # the UTF-8 enabled version (ncursesw) + '--with-shared --enable-overwrite --enable-ext-colors --enable-widec --includedir=%(installdir)s/include/ncursesw/' +] + +libs = ["form", "menu", "ncurses", "panel"] +sanity_check_paths = { + 'files': ['bin/%s' % x for x in ["captoinfo", "clear", "infocmp", + "infotocap", + "ncurses%(version_major)s-config", + "reset", "tabs", "tic", "toe", "tput", + "tset"]] + + ['lib/lib%s%s.a' % (x, y) for x in libs for y in ['', '_g', 'w', 'w_g']] + + ['lib/lib%s%s.%s' % (x, y, SHLIB_EXT) for x in libs for y in ['', 'w']] + + ['lib/libncurses++%s.a' % x for x in ['', 'w']], + 'dirs': ['include', 'include/ncursesw'], +} + +moduleclass = 'devel' -- GitLab From 9b25022eb3400b38202d3a31baea829ec1f3f01f Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Thu, 13 Jul 2017 02:25:59 -0500 Subject: [PATCH 436/608] toss SSH --- easybuild/easyconfigs/c/cURL/cURL-7.54.1-GCCcore-6.4.0.eb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/c/cURL/cURL-7.54.1-GCCcore-6.4.0.eb b/easybuild/easyconfigs/c/cURL/cURL-7.54.1-GCCcore-6.4.0.eb index 0c330ab8c8..cc57b35bc9 100644 --- a/easybuild/easyconfigs/c/cURL/cURL-7.54.1-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/c/cURL/cURL-7.54.1-GCCcore-6.4.0.eb @@ -21,7 +21,6 @@ source_urls = ['http://curl.haxx.se/download/'] sources = [SOURCELOWER_TAR_GZ] osdependencies = [ - ('libssh2-devel'), ('openssl-devel', 'libssl-dev', 'libopenssl-devel'), ] @@ -33,7 +32,7 @@ dependencies = [ ('zlib', '1.2.11'), ] -configopts = '--with-libssh2 --with-zlib' +configopts = '--with-zlib' modextravars = {'CURL_INCLUDES': '%(installdir)s/include'} -- GitLab From 41d89ea5d2185498b6eb326f416e368a3f63fd72 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 13 Jul 2017 11:27:34 +0200 Subject: [PATCH 437/608] fix version and source for Seurat (use sources, not binary release), add extensions required by Seurat in R 3.4.0 easyconfig --- .../easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb | 7 +++++++ ...R-3.4.0.eb => Seurat-1.4.0.16-intel-2017a-R-3.4.0.eb} | 9 ++++++--- 2 files changed, 13 insertions(+), 3 deletions(-) rename easybuild/easyconfigs/s/Seurat/{Seurat-1.4.0-intel-2017a-R-3.4.0.eb => Seurat-1.4.0.16-intel-2017a-R-3.4.0.eb} (70%) diff --git a/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb b/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb index 78bdaaa928..10a1470cb3 100644 --- a/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb +++ b/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb @@ -528,6 +528,13 @@ exts_list = [ ('ucminf', '1.1-4', ext_options), ('ordinal', '2015.6-28', ext_options), ('Rtsne', '0.13', dict(ext_options.items() + [('patches', ['Rtsne-0.13_icpc-wd308.patch'])])), + ('cowplot', '0.7.0', ext_options), + ('tsne', '0.1-3', ext_options), + ('pbapply', '1.3-3', ext_options), + ('RcppProgress', '0.3', ext_options), + ('sn', '1.5-0', ext_options), + ('tclust', '1.2-7', ext_options), + ('ranger', '0.8.0', ext_options), ] moduleclass = 'lang' diff --git a/easybuild/easyconfigs/s/Seurat/Seurat-1.4.0-intel-2017a-R-3.4.0.eb b/easybuild/easyconfigs/s/Seurat/Seurat-1.4.0.16-intel-2017a-R-3.4.0.eb similarity index 70% rename from easybuild/easyconfigs/s/Seurat/Seurat-1.4.0-intel-2017a-R-3.4.0.eb rename to easybuild/easyconfigs/s/Seurat/Seurat-1.4.0.16-intel-2017a-R-3.4.0.eb index 7db49d1db5..47751ee440 100644 --- a/easybuild/easyconfigs/s/Seurat/Seurat-1.4.0-intel-2017a-R-3.4.0.eb +++ b/easybuild/easyconfigs/s/Seurat/Seurat-1.4.0.16-intel-2017a-R-3.4.0.eb @@ -1,7 +1,7 @@ easyblock = 'RPackage' name = 'Seurat' -version = '1.4.0' +version = '1.4.0.16' versionsuffix = '-R-%(rver)s' homepage = 'http://satijalab.org/seurat' @@ -9,8 +9,11 @@ description = "Seurat is an R package designed for QC, analysis, and exploration toolchain = {'name': 'intel', 'version': '2017a'} -source_urls = ['https://github.com/satijalab/seurat/releases/download/v%(version_major_minor)s.0/'] -sources = ['%(name)s_%(version)s.tgz'] +source_urls = ['https://github.com/satijalab/seurat/archive/'] +sources = [{ + 'filename': SOURCE_TAR_GZ, + 'download_filename': '3bd092a.tar.gz', +}] dependencies = [('R', '3.4.0', '-X11-20170314')] -- GitLab From 3ccc82892883980470a421457ecc24b1baa85773 Mon Sep 17 00:00:00 2001 From: Miguel Dias Costa Date: Thu, 13 Jul 2017 18:12:18 +0800 Subject: [PATCH 438/608] adding easyconfigs: Siesta-4.0.1-intel-2017a.eb, Siesta-4.1-b3-intel-2017a.eb --- .../s/Siesta/Siesta-4.0.1-intel-2017a.eb | 17 +++++++++++++++++ .../s/Siesta/Siesta-4.1-b3-intel-2017a.eb | 18 ++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 easybuild/easyconfigs/s/Siesta/Siesta-4.0.1-intel-2017a.eb create mode 100644 easybuild/easyconfigs/s/Siesta/Siesta-4.1-b3-intel-2017a.eb diff --git a/easybuild/easyconfigs/s/Siesta/Siesta-4.0.1-intel-2017a.eb b/easybuild/easyconfigs/s/Siesta/Siesta-4.0.1-intel-2017a.eb new file mode 100644 index 0000000000..a7acc195e9 --- /dev/null +++ b/easybuild/easyconfigs/s/Siesta/Siesta-4.0.1-intel-2017a.eb @@ -0,0 +1,17 @@ +name = 'Siesta' +version = '4.0.1' + +homepage = 'http://departments.icmab.es/leem/siesta' +description = """SIESTA is both a method and its computer program implementation, to perform efficient electronic + structure calculations and ab initio molecular dynamics simulations of molecules and solids.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'usempi': True} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = ['https://launchpad.net/siesta/%(version_major_minor)s/%(version)s/+download'] +checksums = ['bfb9e4335ae1d1639a749ce7e679e739fdead5ee5766b5356ea1d259a6b1e6d1'] + +dependencies = [('netCDF-Fortran', '4.4.4')] + +moduleclass = 'phys' diff --git a/easybuild/easyconfigs/s/Siesta/Siesta-4.1-b3-intel-2017a.eb b/easybuild/easyconfigs/s/Siesta/Siesta-4.1-b3-intel-2017a.eb new file mode 100644 index 0000000000..44fa8757f7 --- /dev/null +++ b/easybuild/easyconfigs/s/Siesta/Siesta-4.1-b3-intel-2017a.eb @@ -0,0 +1,18 @@ +name = 'Siesta' +version = '4.1-b3' + +homepage = 'http://departments.icmab.es/leem/siesta' +description = """SIESTA is both a method and its computer program implementation, to perform efficient electronic + structure calculations and ab initio molecular dynamics simulations of molecules and solids.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'usempi': True} + +sources = [SOURCELOWER_TAR_GZ] +vl = version.split('-') +source_urls = ['https://launchpad.net/siesta/%s/%%(version)s/+download' % vl[0]] +checksums = ['f51970f34ee9b6b9de7fb77f722dde4e10817bafe7315716502eaa22bb96a090'] + +dependencies = [('netCDF-Fortran', '4.4.4')] + +moduleclass = 'phys' -- GitLab From 7b16d355b6c4d0a420f1c6f659a5d766888ce7b8 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Thu, 13 Jul 2017 10:01:06 -0500 Subject: [PATCH 439/608] cope with GitHubs weird download URLs --- .../easyconfigs/m/muParser/muParser-2.2.5-GCCcore-6.4.0.eb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/m/muParser/muParser-2.2.5-GCCcore-6.4.0.eb b/easybuild/easyconfigs/m/muParser/muParser-2.2.5-GCCcore-6.4.0.eb index 915de6c6ce..0995bc4f02 100644 --- a/easybuild/easyconfigs/m/muParser/muParser-2.2.5-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/m/muParser/muParser-2.2.5-GCCcore-6.4.0.eb @@ -14,9 +14,8 @@ description = """ toolchain = {'name': 'GCCcore', 'version': '6.4.0'} toolchainopts = {'pic': True} -# https://github.com/beltoforion/muparser/archive/v2.2.5.tar.gz source_urls = ['https://github.com/beltoforion/muparser/archive/'] -sources = [SOURCELOWER_TAR_GZ] +sources = ['v%(version)s.tar.gz'] checksums = ['0666ef55da72c3e356ca85b6a0084d56b05dd740c3c21d26d372085aa2c6e708'] builddependencies = [ -- GitLab From d305a60010159db45b8453342954513b23bbcf76 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Thu, 13 Jul 2017 10:17:28 -0500 Subject: [PATCH 440/608] toolchain before sources --- .../libpthread-stubs/libpthread-stubs-0.4-GCCcore-6.4.0.eb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/easybuild/easyconfigs/l/libpthread-stubs/libpthread-stubs-0.4-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/libpthread-stubs/libpthread-stubs-0.4-GCCcore-6.4.0.eb index 64f2cd1602..60da643bb8 100644 --- a/easybuild/easyconfigs/l/libpthread-stubs/libpthread-stubs-0.4-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/l/libpthread-stubs/libpthread-stubs-0.4-GCCcore-6.4.0.eb @@ -11,13 +11,13 @@ description = """ threading support, and extensibility. """ +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + source_urls = ['http://xcb.freedesktop.org/dist/'] sources = [SOURCELOWER_TAR_GZ] checksums = ['50d5686b79019ccea08bcbd7b02fe5a40634abcfd4146b6e75c6420cc170e9d9'] -toolchain = {'name': 'GCCcore', 'version': '6.4.0'} -toolchainopts = {'pic': True} - builddependencies = [ ('binutils', '2.28'), ] -- GitLab From 0fd588c772be9a3d3a4093b2e195e5c1365b7682 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Thu, 13 Jul 2017 10:32:48 -0500 Subject: [PATCH 441/608] readd OpenSSH comments --- easybuild/easyconfigs/c/CMake/CMake-3.8.2-GCCcore-6.4.0.eb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/easybuild/easyconfigs/c/CMake/CMake-3.8.2-GCCcore-6.4.0.eb b/easybuild/easyconfigs/c/CMake/CMake-3.8.2-GCCcore-6.4.0.eb index 84630972bf..80d38b2735 100644 --- a/easybuild/easyconfigs/c/CMake/CMake-3.8.2-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/c/CMake/CMake-3.8.2-GCCcore-6.4.0.eb @@ -24,6 +24,9 @@ builddependencies = [ dependencies = [ ('ncurses', '6.0'), + # OS dependency should be preferred if the os version is more recent then this version, + # it's nice to have an up to date openssl for security reasons + # ('OpenSSL', '1.1.0c'), ] osdependencies = [ -- GitLab From 63df373aa095c2327818f5935e59a34967344581 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Thu, 13 Jul 2017 10:34:13 -0500 Subject: [PATCH 442/608] readd OpenSSH comments --- easybuild/easyconfigs/c/cURL/cURL-7.54.1-GCCcore-6.4.0.eb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/easybuild/easyconfigs/c/cURL/cURL-7.54.1-GCCcore-6.4.0.eb b/easybuild/easyconfigs/c/cURL/cURL-7.54.1-GCCcore-6.4.0.eb index cc57b35bc9..7b0a7c7ffb 100644 --- a/easybuild/easyconfigs/c/cURL/cURL-7.54.1-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/c/cURL/cURL-7.54.1-GCCcore-6.4.0.eb @@ -29,10 +29,14 @@ builddependencies = [ ] dependencies = [ + # OS dependency should be preferred if the os version is more recent then this version, + # it's nice to have an up to date openssl for security reasons + #('OpenSSL', '1.1.0e') ('zlib', '1.2.11'), ] configopts = '--with-zlib' +#configopts += '--with-ssl=$EBROOTOPENSSL' modextravars = {'CURL_INCLUDES': '%(installdir)s/include'} -- GitLab From 24e782112dbf9a8ccc746b8e7df034916fcc4913 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Thu, 13 Jul 2017 10:45:05 -0500 Subject: [PATCH 443/608] cleanups --- .../n/ncompress/ncompress-4.2.4.4-GCCcore-6.4.0.eb | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/easybuild/easyconfigs/n/ncompress/ncompress-4.2.4.4-GCCcore-6.4.0.eb b/easybuild/easyconfigs/n/ncompress/ncompress-4.2.4.4-GCCcore-6.4.0.eb index a9b3d371a0..51e898837e 100644 --- a/easybuild/easyconfigs/n/ncompress/ncompress-4.2.4.4-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/n/ncompress/ncompress-4.2.4.4-GCCcore-6.4.0.eb @@ -17,7 +17,7 @@ description = """ toolchain = {'name': 'GCCcore', 'version': '6.4.0'} source_urls = ['https://github.com/vapier/ncompress/archive/'] -sources = ['%(name)s-%(version)s.tar.gz'] +sources = ['v%(version)s.tar.gz'] checksums = ['2670439935e7639c3a767087da99810e45bc3997d0638b3094396043571e5aec'] builddependencies = [ @@ -26,11 +26,10 @@ builddependencies = [ skipsteps = ['configure'] -installopts = """\ - DESTDIR=%(installdir)s\ - BINDIR=/bin\ - MANDIR=/man/man1\ -""" +installopts = '' +installopts += 'DESTDIR=%(installdir)s ' +installopts += 'BINDIR=/bin ' +installopts += 'MANDIR=/man/man1 ' sanity_check_paths = { 'files': ['bin/compress', 'man/man1/compress.1'], -- GitLab From c2a87864118cbb19386b9d174dd083c964454143 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Thu, 13 Jul 2017 11:24:40 -0500 Subject: [PATCH 444/608] adding easyconfigs: Automake-1.15.1-GCCcore-6.4.0.eb --- .../Automake/Automake-1.15.1-GCCcore-6.4.0.eb | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 easybuild/easyconfigs/a/Automake/Automake-1.15.1-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15.1-GCCcore-6.4.0.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15.1-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..8aa27a8cf4 --- /dev/null +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15.1-GCCcore-6.4.0.eb @@ -0,0 +1,41 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild +# +# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA +# Authors:: Fotis Georgatos +# License:: MIT/GPL +# $Id$ +# +# This work implements a part of the HPCBIOS project and is a component of the policy: +# http://hpcbios.readthedocs.org/en/latest/ +## + +easyblock = 'ConfigureMake' + +name = 'Automake' +version = "1.15.1" + +homepage = 'http://www.gnu.org/software/automake/automake.html' + +description = "Automake: GNU Standards-compliant Makefile generator" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = [GNU_SOURCE] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['988e32527abe052307d21c8ca000aa238b914df363a617e38f4fb89f5abf6260'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('Autoconf', '2.69'), +] + +sanity_check_paths = { + 'files': ['bin/automake', 'bin/aclocal'], + 'dirs': [] +} + +moduleclass = 'devel' -- GitLab From c2597c8882c5c2d8b17128d2ad42902cdc80a06f Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Thu, 13 Jul 2017 11:36:40 -0500 Subject: [PATCH 445/608] missed a pep8 warning --- .../easyconfigs/m/muParser/muParser-2.2.5-GCCcore-6.4.0.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/m/muParser/muParser-2.2.5-GCCcore-6.4.0.eb b/easybuild/easyconfigs/m/muParser/muParser-2.2.5-GCCcore-6.4.0.eb index 0995bc4f02..d54dab67db 100644 --- a/easybuild/easyconfigs/m/muParser/muParser-2.2.5-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/m/muParser/muParser-2.2.5-GCCcore-6.4.0.eb @@ -25,7 +25,7 @@ builddependencies = [ configopts = "--disable-samples --enable-shared" sanity_check_paths = { - 'files': ['include/muParser.h', 'lib/libmuparser.%s' %SHLIB_EXT], + 'files': ['include/muParser.h', 'lib/libmuparser.%s' % SHLIB_EXT], 'dirs': [], } -- GitLab From 149c41a2088b8cbabb7216b37139af6ab294ff77 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Thu, 13 Jul 2017 11:46:27 -0500 Subject: [PATCH 446/608] style fixes --- easybuild/easyconfigs/c/cURL/cURL-7.54.1-GCCcore-6.4.0.eb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/c/cURL/cURL-7.54.1-GCCcore-6.4.0.eb b/easybuild/easyconfigs/c/cURL/cURL-7.54.1-GCCcore-6.4.0.eb index 7b0a7c7ffb..852ba24f5c 100644 --- a/easybuild/easyconfigs/c/cURL/cURL-7.54.1-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/c/cURL/cURL-7.54.1-GCCcore-6.4.0.eb @@ -31,12 +31,12 @@ builddependencies = [ dependencies = [ # OS dependency should be preferred if the os version is more recent then this version, # it's nice to have an up to date openssl for security reasons - #('OpenSSL', '1.1.0e') + # ('OpenSSL', '1.1.0e') ('zlib', '1.2.11'), ] configopts = '--with-zlib' -#configopts += '--with-ssl=$EBROOTOPENSSL' +# configopts += '--with-ssl=$EBROOTOPENSSL' modextravars = {'CURL_INCLUDES': '%(installdir)s/include'} -- GitLab From af138eeb23b861ab94d4a65af1f44332d7f1ff5a Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Thu, 13 Jul 2017 12:05:25 -0500 Subject: [PATCH 447/608] depends on PR #4859 and #4890 --- .../Automake/Automake-1.15.1-GCCcore-6.4.0.eb | 41 +++++++++++++++++++ .../Autotools-20170619-GCCcore-6.4.0.eb | 24 +++++++++++ .../l/libtool/libtool-2.4.6-GCCcore-6.4.0.eb | 27 ++++++++++++ 3 files changed, 92 insertions(+) create mode 100644 easybuild/easyconfigs/a/Automake/Automake-1.15.1-GCCcore-6.4.0.eb create mode 100644 easybuild/easyconfigs/a/Autotools/Autotools-20170619-GCCcore-6.4.0.eb create mode 100644 easybuild/easyconfigs/l/libtool/libtool-2.4.6-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/a/Automake/Automake-1.15.1-GCCcore-6.4.0.eb b/easybuild/easyconfigs/a/Automake/Automake-1.15.1-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..8aa27a8cf4 --- /dev/null +++ b/easybuild/easyconfigs/a/Automake/Automake-1.15.1-GCCcore-6.4.0.eb @@ -0,0 +1,41 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild +# +# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA +# Authors:: Fotis Georgatos +# License:: MIT/GPL +# $Id$ +# +# This work implements a part of the HPCBIOS project and is a component of the policy: +# http://hpcbios.readthedocs.org/en/latest/ +## + +easyblock = 'ConfigureMake' + +name = 'Automake' +version = "1.15.1" + +homepage = 'http://www.gnu.org/software/automake/automake.html' + +description = "Automake: GNU Standards-compliant Makefile generator" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = [GNU_SOURCE] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['988e32527abe052307d21c8ca000aa238b914df363a617e38f4fb89f5abf6260'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('Autoconf', '2.69'), +] + +sanity_check_paths = { + 'files': ['bin/automake', 'bin/aclocal'], + 'dirs': [] +} + +moduleclass = 'devel' diff --git a/easybuild/easyconfigs/a/Autotools/Autotools-20170619-GCCcore-6.4.0.eb b/easybuild/easyconfigs/a/Autotools/Autotools-20170619-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..34009edd83 --- /dev/null +++ b/easybuild/easyconfigs/a/Autotools/Autotools-20170619-GCCcore-6.4.0.eb @@ -0,0 +1,24 @@ +easyblock = 'Bundle' + +name = 'Autotools' +version = '20170619' # date of the most recent change + +homepage = 'http://autotools.io' + +description = """ + This bundle collect the standard GNU build tools: Autoconf, Automake + and libtool +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +dependencies = [ + ('Autoconf', '2.69'), # 20120424 + ('Automake', '1.15.1'), # 20170619 + ('libtool', '2.4.6'), # 20150215 +] + +# Pure bundle -- no need to specify 'binutils' used when building GCCcore +# toolchain as build dependency + +moduleclass = 'devel' diff --git a/easybuild/easyconfigs/l/libtool/libtool-2.4.6-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/libtool/libtool-2.4.6-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..bc5c6cb40c --- /dev/null +++ b/easybuild/easyconfigs/l/libtool/libtool-2.4.6-GCCcore-6.4.0.eb @@ -0,0 +1,27 @@ +easyblock = 'ConfigureMake' + +name = 'libtool' +version = '2.4.6' + +homepage = 'http://www.gnu.org/software/libtool' + +description = """ + GNU libtool is a generic library support script. Libtool hides the complexity + of using shared libraries behind a consistent, portable interface. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = [GNU_SOURCE] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['e3bd4d5d3d025a36c21dd6af7ea818a2afcd4dfc1ea5a17b39d7854bcd0c06e3'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('M4', '1.4.18'), +] + +moduleclass = 'lib' -- GitLab From b1da9f1a5aac34c92ebdb9abeb6f4a5f962d9c7b Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Thu, 13 Jul 2017 12:15:39 -0500 Subject: [PATCH 448/608] adding easyconfigs: FreeXL-1.0.2-GCCcore-6.4.0.eb --- .../f/FreeXL/FreeXL-1.0.2-GCCcore-6.4.0.eb | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 easybuild/easyconfigs/f/FreeXL/FreeXL-1.0.2-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/f/FreeXL/FreeXL-1.0.2-GCCcore-6.4.0.eb b/easybuild/easyconfigs/f/FreeXL/FreeXL-1.0.2-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..a4542ae867 --- /dev/null +++ b/easybuild/easyconfigs/f/FreeXL/FreeXL-1.0.2-GCCcore-6.4.0.eb @@ -0,0 +1,29 @@ +easyblock = 'ConfigureMake' + +name = 'FreeXL' +version = '1.0.2' + +homepage = 'https://www.gaia-gis.it/fossil/freexl/index' + +description = """ + FreeXL is an open source library to extract valid data from within an + Excel (.xls) spreadsheet. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = ['http://www.gaia-gis.it/gaia-sins/freexl-sources/'] +sources = [SOURCELOWER_TAR_GZ] + +builddependencies = [ + ('binutils', '2.28'), + ('CMake', '3.8.2'), +] + +sanity_check_paths = { + 'files': ['lib/libfreexl.a'], + 'dirs': [] + } + +moduleclass = 'lib' -- GitLab From 007bf7400d443aafe5d4c469f41b9481f58ef7ca Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Thu, 13 Jul 2017 12:21:16 -0500 Subject: [PATCH 449/608] add checksum --- easybuild/easyconfigs/f/FreeXL/FreeXL-1.0.2-GCCcore-6.4.0.eb | 1 + 1 file changed, 1 insertion(+) diff --git a/easybuild/easyconfigs/f/FreeXL/FreeXL-1.0.2-GCCcore-6.4.0.eb b/easybuild/easyconfigs/f/FreeXL/FreeXL-1.0.2-GCCcore-6.4.0.eb index a4542ae867..cdc2b4f4bc 100644 --- a/easybuild/easyconfigs/f/FreeXL/FreeXL-1.0.2-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/f/FreeXL/FreeXL-1.0.2-GCCcore-6.4.0.eb @@ -15,6 +15,7 @@ toolchainopts = {'pic': True} source_urls = ['http://www.gaia-gis.it/gaia-sins/freexl-sources/'] sources = [SOURCELOWER_TAR_GZ] +checksums = ['b39a4814a0f53f5e09a9192c41e3e51bd658843f770399023a963eb064f6409d'] builddependencies = [ ('binutils', '2.28'), -- GitLab From 1fe36def8814cc53df44843e98282de9d2bf6981 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Thu, 13 Jul 2017 12:33:28 -0500 Subject: [PATCH 450/608] adding easyconfigs: PCRE-8.41-GCCcore-6.4.0.eb --- .../p/PCRE/PCRE-8.41-GCCcore-6.4.0.eb | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 easybuild/easyconfigs/p/PCRE/PCRE-8.41-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/p/PCRE/PCRE-8.41-GCCcore-6.4.0.eb b/easybuild/easyconfigs/p/PCRE/PCRE-8.41-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..0beae5c4cc --- /dev/null +++ b/easybuild/easyconfigs/p/PCRE/PCRE-8.41-GCCcore-6.4.0.eb @@ -0,0 +1,36 @@ +easyblock = 'ConfigureMake' + +name = 'PCRE' +version = '8.41' + +homepage = 'http://www.pcre.org/' + +description = """ + The PCRE library is a set of functions that implement regular expression + pattern matching using the same syntax and semantics as Perl 5. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = [SOURCEFORGE_SOURCE] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['244838e1f1d14f7e2fa7681b857b3a8566b74215f28133f14a8f5e59241b682c'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('bzip2', '1.0.6'), + ('zlib', '1.2.11'), +] + +configopts = """\ + --enable-utf\ + --enable-unicode-properties\ + --enable-pcre16\ + --enable-pcre32\ +""" + +moduleclass = 'devel' -- GitLab From 3cbe316f1efe5a3e7d4e77d5a7993c5e8d47c713 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Thu, 13 Jul 2017 12:58:00 -0500 Subject: [PATCH 451/608] adding easyconfigs: fontconfig-2.12.1-GCCcore-6.4.0.eb --- .../fontconfig-2.12.1-GCCcore-6.4.0.eb | 31 +++++++++++++++ .../f/freetype/freetype-2.8-GCCcore-6.4.0.eb | 39 +++++++++++++++++++ 2 files changed, 70 insertions(+) create mode 100644 easybuild/easyconfigs/f/fontconfig/fontconfig-2.12.1-GCCcore-6.4.0.eb create mode 100644 easybuild/easyconfigs/f/freetype/freetype-2.8-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/f/fontconfig/fontconfig-2.12.1-GCCcore-6.4.0.eb b/easybuild/easyconfigs/f/fontconfig/fontconfig-2.12.1-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..985994992e --- /dev/null +++ b/easybuild/easyconfigs/f/fontconfig/fontconfig-2.12.1-GCCcore-6.4.0.eb @@ -0,0 +1,31 @@ +easyblock = 'ConfigureMake' + +name = 'fontconfig' +version = '2.12.1' + +homepage = 'http://www.freedesktop.org/software/fontconfig' + +description = """ + Fontconfig is a library designed to provide system-wide font configuration, + customization and application access. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = ['http://www.freedesktop.org/software/fontconfig/release/'] +sources = [SOURCE_TAR_GZ] +checksums = ['a9f42d03949f948a3a4f762287dbc16e53a927c91a07ee64207ebd90a9e5e292'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('expat', '2.2.1'), + ('freetype', '2.8'), +] + +configopts = '--disable-docs ' + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/f/freetype/freetype-2.8-GCCcore-6.4.0.eb b/easybuild/easyconfigs/f/freetype/freetype-2.8-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..683ea59e3d --- /dev/null +++ b/easybuild/easyconfigs/f/freetype/freetype-2.8-GCCcore-6.4.0.eb @@ -0,0 +1,39 @@ +name = 'freetype' +version = '2.8' + +homepage = 'http://freetype.org' + +description = """ + FreeType 2 is a software font engine that is designed to be small, efficient, + highly customizable, and portable while capable of producing high-quality + output (glyph images). It can be used in graphics libraries, display servers, + font conversion tools, text image generation tools, and many other products + as well. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = [GNU_SAVANNAH_SOURCE] +sources = [SOURCE_TAR_GZ] +checksums = ['33a28fabac471891d0523033e99c0005b95e5618dc8ffa7fa47f9dadcacb1c9b'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('bzip2', '1.0.6'), + ('libpng', '1.6.30'), + ('zlib', '1.2.11'), +] + +configopts = '--with-harfbuzz=no' + +sanity_check_paths = { + 'files': ['bin/freetype-config', 'lib/libfreetype.a', + 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], + 'dirs': ['include/freetype2'], +} + +moduleclass = 'vis' -- GitLab From b5771c2fc23bb69e43e097b0af1b387cdc3e3fc6 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Thu, 13 Jul 2017 14:10:18 -0500 Subject: [PATCH 452/608] adding easyconfigs: HDF-4.2.13-GCCcore-6.4.0.eb --- .../h/HDF/HDF-4.2.13-GCCcore-6.4.0.eb | 43 +++++++++++++++++++ .../libjpeg-turbo-1.5.2-GCCcore-6.4.0.eb | 41 ++++++++++++++++++ .../s/Szip/Szip-2.1.1-GCCcore-6.4.0.eb | 29 +++++++++++++ 3 files changed, 113 insertions(+) create mode 100644 easybuild/easyconfigs/h/HDF/HDF-4.2.13-GCCcore-6.4.0.eb create mode 100644 easybuild/easyconfigs/l/libjpeg-turbo/libjpeg-turbo-1.5.2-GCCcore-6.4.0.eb create mode 100644 easybuild/easyconfigs/s/Szip/Szip-2.1.1-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/h/HDF/HDF-4.2.13-GCCcore-6.4.0.eb b/easybuild/easyconfigs/h/HDF/HDF-4.2.13-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..f1b4395af4 --- /dev/null +++ b/easybuild/easyconfigs/h/HDF/HDF-4.2.13-GCCcore-6.4.0.eb @@ -0,0 +1,43 @@ +easyblock = 'ConfigureMake' + +name = 'HDF' +version = '4.2.13' + +homepage = 'http://www.hdfgroup.org/products/hdf4/' + +description = """ + HDF (also known as HDF4) is a library and multi-object file format for + storing and managing data between machines. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = ['http://www.hdfgroup.org/ftp/HDF/releases/HDF%(version)s/src/'] +checksums = ['be9813c1dc3712c2df977d4960e1f13f20f447dfa8c3ce53331d610c1f470483'] + +builddependencies = [ + ('binutils', '2.28'), + ('Bison', '3.0.4'), + ('flex', '2.6.4'), +] + +dependencies = [ + ('libjpeg-turbo', '1.5.2'), + ('Szip', '2.1.1'), + ('zlib', '1.2.11'), +] + +configopts = '' +configopts += '--with-szlib=$EBROOTSZIP ' +configopts += '--includedir=%(installdir)s/include/%(namelower)s ' + +modextrapaths = {'CPATH': 'include/hdf'} + +sanity_check_paths = { + 'files': ['lib/libdf.a', 'lib/libhdf4.settings', 'lib/libmfhdf.a'], + 'dirs': ['bin', 'include/hdf'], +} + +moduleclass = 'data' diff --git a/easybuild/easyconfigs/l/libjpeg-turbo/libjpeg-turbo-1.5.2-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/libjpeg-turbo/libjpeg-turbo-1.5.2-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..8d3ce16df6 --- /dev/null +++ b/easybuild/easyconfigs/l/libjpeg-turbo/libjpeg-turbo-1.5.2-GCCcore-6.4.0.eb @@ -0,0 +1,41 @@ +easyblock = 'ConfigureMake' + +name = 'libjpeg-turbo' +version = '1.5.2' + +homepage = 'http://sourceforge.net/projects/libjpeg-turbo/' + +description = """ + libjpeg-turbo is a fork of the original IJG libjpeg which uses SIMD to + accelerate baseline JPEG compression and decompression. libjpeg is a library + that implements JPEG image encoding, decoding and transcoding. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = [SOURCEFORGE_SOURCE] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['9098943b270388727ae61de82adec73cf9f0dbb240b3bc8b172595ebf405b528'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('NASM', '2.13.01'), +] + +configopts = "--with-jpeg8" + +runtest = "test" + +sanity_check_paths = { + 'files': ['bin/cjpeg', 'bin/djpeg', 'bin/jpegtran', 'bin/rdjpgcom', + 'bin/tjbench', 'bin/wrjpgcom', 'lib/libjpeg.a', + 'lib/libjpeg.%s' % SHLIB_EXT, 'lib/libturbojpeg.a', + 'lib/libturbojpeg.%s' % SHLIB_EXT], + 'dirs': ['include', 'share'], +} + +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/s/Szip/Szip-2.1.1-GCCcore-6.4.0.eb b/easybuild/easyconfigs/s/Szip/Szip-2.1.1-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..98b8e0cf48 --- /dev/null +++ b/easybuild/easyconfigs/s/Szip/Szip-2.1.1-GCCcore-6.4.0.eb @@ -0,0 +1,29 @@ +easyblock = 'ConfigureMake' + +name = 'Szip' +version = '2.1.1' + +homepage = 'http://www.hdfgroup.org/doc_resource/SZIP/' + +description = """ + Szip compression software, providing lossless compression of scientific data +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = ['http://www.hdfgroup.org/ftp/lib-external/szip/%(version)s/src'] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['897dda94e1d4bf88c91adeaad88c07b468b18eaf2d6125c47acac57e540904a9'] + +builddependencies = [ + ('binutils', '2.28'), +] + +sanity_check_paths = { + 'files': ["lib/libsz.a", "lib/libsz.%s" % SHLIB_EXT] + + ["include/%s" % x for x in ["ricehdf.h", "szip_adpt.h", "szlib.h"]], + 'dirs': [], +} + +moduleclass = 'tools' -- GitLab From e56d0c1885a545622e7aa95f33c3e4a6051d1eaf Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Thu, 13 Jul 2017 14:35:09 -0500 Subject: [PATCH 453/608] indentation fix --- easybuild/easyconfigs/f/FreeXL/FreeXL-1.0.2-GCCcore-6.4.0.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/f/FreeXL/FreeXL-1.0.2-GCCcore-6.4.0.eb b/easybuild/easyconfigs/f/FreeXL/FreeXL-1.0.2-GCCcore-6.4.0.eb index cdc2b4f4bc..f0015556cc 100644 --- a/easybuild/easyconfigs/f/FreeXL/FreeXL-1.0.2-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/f/FreeXL/FreeXL-1.0.2-GCCcore-6.4.0.eb @@ -25,6 +25,6 @@ builddependencies = [ sanity_check_paths = { 'files': ['lib/libfreexl.a'], 'dirs': [] - } +} moduleclass = 'lib' -- GitLab From 056a9a561de34df0584dde15a2eb1436e68fe77e Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Thu, 13 Jul 2017 14:39:00 -0500 Subject: [PATCH 454/608] adding easyconfigs: GMP-6.1.2-GCCcore-6.4.0.eb --- .../g/GMP/GMP-6.1.2-GCCcore-6.4.0.eb | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 easybuild/easyconfigs/g/GMP/GMP-6.1.2-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/g/GMP/GMP-6.1.2-GCCcore-6.4.0.eb b/easybuild/easyconfigs/g/GMP/GMP-6.1.2-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..579e3410d3 --- /dev/null +++ b/easybuild/easyconfigs/g/GMP/GMP-6.1.2-GCCcore-6.4.0.eb @@ -0,0 +1,35 @@ +easyblock = 'ConfigureMake' + +name = 'GMP' +version = '6.1.2' + +homepage = 'http://gmplib.org/' + +description = """ + GMP is a free library for arbitrary precision arithmetic, operating on signed + integers, rational numbers, and floating point numbers. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True, 'precise': True} + +sources = [SOURCELOWER_TAR_BZ2] +source_urls = ['http://ftp.gnu.org/gnu/gmp'] +checksums = ['5275bb04f4863a13516b2f39392ac5e272f5e1bb8057b18aec1c9b79d73d8fb2'] + +builddependencies = [ + ('Autotools', '20170619'), + ('binutils', '2.28'), +] + +# enable C++ interface +configopts = '--enable-cxx' + +runtest = 'check' + +sanity_check_paths = { + 'files': ['lib/libgmp.%s' % SHLIB_EXT, 'include/gmp.h'], + 'dirs': [], +} + +moduleclass = 'math' -- GitLab From c8f0fbf6ebc21b3cbc4d024516e1aa8f50585e99 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Thu, 13 Jul 2017 15:18:26 -0500 Subject: [PATCH 455/608] adding easyconfigs: JasPer-2.0.12-GCCcore-6.4.0.eb --- .../j/JasPer/JasPer-2.0.12-GCCcore-6.4.0.eb | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 easybuild/easyconfigs/j/JasPer/JasPer-2.0.12-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/j/JasPer/JasPer-2.0.12-GCCcore-6.4.0.eb b/easybuild/easyconfigs/j/JasPer/JasPer-2.0.12-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..b2d812f323 --- /dev/null +++ b/easybuild/easyconfigs/j/JasPer/JasPer-2.0.12-GCCcore-6.4.0.eb @@ -0,0 +1,35 @@ +easyblock = 'CMakeMake' + +name = 'JasPer' +version = '2.0.12' + +homepage = 'http://www.ece.uvic.ca/~frodo/jasper/' + +description = """ + The JasPer Project is an open-source initiative to provide a free + software-based reference implementation of the codec specified in + the JPEG-2000 Part-1 standard. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = ['http://www.ece.uvic.ca/~frodo/jasper/software/'] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['5b24faf5ed38670d6286e45ab7516b26458d05e7929b435afe569176765f4dda'] + +builddependencies = [ + ('binutils', '2.28'), + ('CMake', '3.8.2'), +] + +separate_build_dir = True + +configopts = '-DJAS_ENABLE_DOC=OFF ' + +sanity_check_paths = { + 'files': ['bin/jasper', 'lib64/libjasper.%s' % SHLIB_EXT], + 'dirs': ['include'], +} + +moduleclass = 'vis' -- GitLab From c46a9ba250b09cd33a2cd137c667d0a6d398ed99 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Thu, 13 Jul 2017 15:48:08 -0500 Subject: [PATCH 456/608] adding easyconfigs: Voro++-0.4.6-GCCcore-6.4.0.eb --- .../v/Voro++/Voro++-0.4.6-GCCcore-6.4.0.eb | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 easybuild/easyconfigs/v/Voro++/Voro++-0.4.6-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/v/Voro++/Voro++-0.4.6-GCCcore-6.4.0.eb b/easybuild/easyconfigs/v/Voro++/Voro++-0.4.6-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..9d8d8d4d19 --- /dev/null +++ b/easybuild/easyconfigs/v/Voro++/Voro++-0.4.6-GCCcore-6.4.0.eb @@ -0,0 +1,45 @@ +easyblock = 'ConfigureMake' + +name = 'Voro++' +version = '0.4.6' + +homepage = 'http://math.lbl.gov/voro++/' + +description = """ + Voro++ is a software library for carrying out three-dimensional computations + of the Voronoi tessellation. A distinguishing feature of the Voro++ library is + that it carries out cell-based calculations, computing the Voronoi cell for + each particle individually. It is particularly well-suited for applications + that rely on cell-based statistics, where features of Voronoi cells (eg. + volume, centroid, number of faces) can be used to analyze a system of + particles. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = ['http://math.lbl.gov/voro++/download/dir/'] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['ef7970071ee2ce3800daa8723649ca069dc4c71cc25f0f7d22552387f3ea437e'] + +builddependencies = [ + ('binutils', '2.28'), +] + +# No configure +skipsteps = ['configure'] + +# Override CXX and CFLAGS variables from Makefile +buildopts = 'CXX="$CXX" CFLAGS="$CXXFLAGS"' + +# Override PREFIX variable from Makefile +installopts = 'PREFIX=%(installdir)s' + +sanity_check_paths = { + 'files': ['bin/voro++', 'lib/libvoro++.a', 'include/voro++/voro++.hh'], + 'dirs': [], +} + +modextrapaths = {'CPATH': 'include/voro++'} + +moduleclass = 'math' -- GitLab From ed582f7e7b5e3294f76d9656704b99740ec65c12 Mon Sep 17 00:00:00 2001 From: Davide Vanzo Date: Fri, 14 Jul 2017 14:31:09 -0500 Subject: [PATCH 457/608] Adding required zlib dependency --- .../u/util-linux/util-linux-2.29.2-intel-2017a.eb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/u/util-linux/util-linux-2.29.2-intel-2017a.eb b/easybuild/easyconfigs/u/util-linux/util-linux-2.29.2-intel-2017a.eb index 3495ebee0c..b794436556 100644 --- a/easybuild/easyconfigs/u/util-linux/util-linux-2.29.2-intel-2017a.eb +++ b/easybuild/easyconfigs/u/util-linux/util-linux-2.29.2-intel-2017a.eb @@ -23,7 +23,10 @@ configopts += "--with-bashcompletiondir='${prefix}/share/bash-completion/complet # disable building Python bindings (since we don't include Python as a dep) configopts += "--without-python " -dependencies = [('ncurses', '6.0')] +dependencies = [ + ('ncurses', '6.0'), + ('zlib', '1.2.11'), +] sanity_check_paths = { 'files': ['lib/lib%s.a' % x for x in ['blkid', 'mount', 'uuid']], -- GitLab From 459ecc488f3c15192c74f6b7d73f58f74810d485 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Mon, 17 Jul 2017 07:38:34 +0200 Subject: [PATCH 458/608] Add BLAST+ 2.6.0 for foss-2016b --- .../BLAST+-2.6.0-foss-2016b-Python-2.7.12.eb | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 easybuild/easyconfigs/b/BLAST+/BLAST+-2.6.0-foss-2016b-Python-2.7.12.eb diff --git a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.6.0-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.6.0-foss-2016b-Python-2.7.12.eb new file mode 100644 index 0000000000..ecc6133475 --- /dev/null +++ b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.6.0-foss-2016b-Python-2.7.12.eb @@ -0,0 +1,41 @@ +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild + +easyblock = 'ConfigureMake' + +name = 'BLAST+' +version = '2.6.0' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://blast.ncbi.nlm.nih.gov/' +description = """Basic Local Alignment Search Tool, or BLAST, is an algorithm + for comparing primary biological sequence information, such as the amino-acid + sequences of different proteins or the nucleotides of DNA sequences.""" + +toolchain = {'name': 'foss', 'version': '2016b'} +toolchainopts = {'cstd': 'c++14'} + +sources = ['ncbi-blast-%(version)s+-src.tar.gz'] +source_urls = ['http://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/%(version)s/'] +patches = ['BLAST+-%(version)s_fix-make-install.patch'] + +dependencies = [ + ('zlib', '1.2.8'), + ('bzip2', '1.0.6'), + ('PCRE', '8.39'), + ('Python', '2.7.12'), + ('Boost', '1.63.0', versionsuffix), + ('GMP', '6.1.1'), + ('libpng', '1.6.26'), + ('libjpeg-turbo', '1.5.0'), +] + +configopts = "--with-64 --with-z=$EBROOTZLIB --with-bz2=$EBROOTBZIP2 --with-pcre=$EBROOTPCRE " +configopts += "--with-python=$EBROOTPYTHON --with-boost=$EBROOTBOOST --with-gmp=$EBROOTGMP " +configopts += "--with-png=$EBROOTLIBPNG --with-jpeg=$EBROOTLIBJPEGMINTURBO " + +sanity_check_paths = { + 'files': ['bin/blastn', 'bin/blastp', 'bin/blastx'], + 'dirs': [] +} + +moduleclass = 'bio' -- GitLab From 6c0b5310022d0c040ebd19c85c62e81bbc81bc98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Mon, 17 Jul 2017 07:44:18 +0200 Subject: [PATCH 459/608] Add bcl2fastq2 2.19.1 for foss-2016b --- ...2fastq2-2.19.1-foss-2016b-Python-2.7.12.eb | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 easybuild/easyconfigs/b/bcl2fastq2/bcl2fastq2-2.19.1-foss-2016b-Python-2.7.12.eb diff --git a/easybuild/easyconfigs/b/bcl2fastq2/bcl2fastq2-2.19.1-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/b/bcl2fastq2/bcl2fastq2-2.19.1-foss-2016b-Python-2.7.12.eb new file mode 100644 index 0000000000..bbe3f9e5a8 --- /dev/null +++ b/easybuild/easyconfigs/b/bcl2fastq2/bcl2fastq2-2.19.1-foss-2016b-Python-2.7.12.eb @@ -0,0 +1,35 @@ +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild + +easyblock = 'ConfigureMake' + +name = 'bcl2fastq2' +version = '2.19.1' +versionsuffix = '-Python-2.7.12' + +homepage = 'https://support.illumina.com/sequencing/sequencing_software/bcl2fastq-conversion-software.html' +description = """bcl2fastq Conversion Software both demultiplexes data and converts BCL files generated by + Illumina sequencing systems to standard FASTQ file formats for downstream analysis.""" + +toolchain = {'name': 'foss', 'version': '2016b'} + +source_urls = ['ftp://webdata2:webdata2@ussd-ftp.illumina.com/downloads/software/bcl2fastq/'] +sources = [{ + 'filename': '%(name)s-v%(version)s-tar.zip', + 'extract_cmd': 'unzip -p %s | tar -xzvf -', # source file is a .zip that contains a .tar.gz +}] + +checksums = ['cf13580f2c1ebcc3642b4d98a02ad01e41a44e644db7d31730f9767b25521806'] + +start_dir = 'src' +configopts = '--force-builddir' + +dependencies = [ + ('Boost', '1.54.0', versionsuffix), +] + +sanity_check_paths = { + 'files': ['bin/%(name)s'], + 'dirs': ['lib'] +} + +moduleclass = 'bio' -- GitLab From 90fa9bb8a1ae4cb00351d23451286a9c60c76a58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Mon, 17 Jul 2017 08:51:43 +0200 Subject: [PATCH 460/608] Add requested changes Use pyver variable and explicitly add Python as dependency. Use two spaces for inline comment. --- .../bcl2fastq2/bcl2fastq2-2.19.1-foss-2016b-Python-2.7.12.eb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/b/bcl2fastq2/bcl2fastq2-2.19.1-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/b/bcl2fastq2/bcl2fastq2-2.19.1-foss-2016b-Python-2.7.12.eb index bbe3f9e5a8..9f550972a5 100644 --- a/easybuild/easyconfigs/b/bcl2fastq2/bcl2fastq2-2.19.1-foss-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/b/bcl2fastq2/bcl2fastq2-2.19.1-foss-2016b-Python-2.7.12.eb @@ -4,7 +4,7 @@ easyblock = 'ConfigureMake' name = 'bcl2fastq2' version = '2.19.1' -versionsuffix = '-Python-2.7.12' +versionsuffix = '-Python-%(pyver)s' homepage = 'https://support.illumina.com/sequencing/sequencing_software/bcl2fastq-conversion-software.html' description = """bcl2fastq Conversion Software both demultiplexes data and converts BCL files generated by @@ -15,7 +15,7 @@ toolchain = {'name': 'foss', 'version': '2016b'} source_urls = ['ftp://webdata2:webdata2@ussd-ftp.illumina.com/downloads/software/bcl2fastq/'] sources = [{ 'filename': '%(name)s-v%(version)s-tar.zip', - 'extract_cmd': 'unzip -p %s | tar -xzvf -', # source file is a .zip that contains a .tar.gz + 'extract_cmd': 'unzip -p %s | tar -xzvf -', # source file is a .zip that contains a .tar.gz }] checksums = ['cf13580f2c1ebcc3642b4d98a02ad01e41a44e644db7d31730f9767b25521806'] @@ -25,6 +25,7 @@ configopts = '--force-builddir' dependencies = [ ('Boost', '1.54.0', versionsuffix), + ('Python', '2.7.12'), ] sanity_check_paths = { -- GitLab From e3002d7b5e25ff400c668cef51a14803365c1aba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Mon, 17 Jul 2017 08:54:21 +0200 Subject: [PATCH 461/608] Fix sanity check Executable name is bcl2fastq not bcl2fastq2. --- .../b/bcl2fastq2/bcl2fastq2-2.19.1-foss-2016b-Python-2.7.12.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/b/bcl2fastq2/bcl2fastq2-2.19.1-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/b/bcl2fastq2/bcl2fastq2-2.19.1-foss-2016b-Python-2.7.12.eb index 9f550972a5..eb24e2f5ed 100644 --- a/easybuild/easyconfigs/b/bcl2fastq2/bcl2fastq2-2.19.1-foss-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/b/bcl2fastq2/bcl2fastq2-2.19.1-foss-2016b-Python-2.7.12.eb @@ -29,7 +29,7 @@ dependencies = [ ] sanity_check_paths = { - 'files': ['bin/%(name)s'], + 'files': ['bin/bcl2fastq'], 'dirs': ['lib'] } -- GitLab From be75232725b621228d075facb0d644180985e9c7 Mon Sep 17 00:00:00 2001 From: Pablo Escobar Date: Mon, 17 Jul 2017 10:48:27 +0200 Subject: [PATCH 462/608] fix typo. Use modextrapaths instead of modextravars --- .../o/OpenMM/OpenMM-6.1-goolf-1.4.10-Python-2.7.5.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/o/OpenMM/OpenMM-6.1-goolf-1.4.10-Python-2.7.5.eb b/easybuild/easyconfigs/o/OpenMM/OpenMM-6.1-goolf-1.4.10-Python-2.7.5.eb index 547084c491..1644d773d3 100644 --- a/easybuild/easyconfigs/o/OpenMM/OpenMM-6.1-goolf-1.4.10-Python-2.7.5.eb +++ b/easybuild/easyconfigs/o/OpenMM/OpenMM-6.1-goolf-1.4.10-Python-2.7.5.eb @@ -45,7 +45,7 @@ modextrapaths = { 'PYTHONPATH': 'lib/python%(pyshortver)s/site-packages', } -modextravars = { +modextrapaths = { 'OPENMM_INCLUDE_PATH': 'include', 'OPENMM_LIB_PATH': 'lib', } -- GitLab From affa6cb03c5917cbbdb701abb25e8200f8d53791 Mon Sep 17 00:00:00 2001 From: Pablo Escobar Date: Mon, 17 Jul 2017 11:01:26 +0200 Subject: [PATCH 463/608] put all modextrapaths together --- .../o/OpenMM/OpenMM-6.1-goolf-1.4.10-Python-2.7.5.eb | 3 --- 1 file changed, 3 deletions(-) diff --git a/easybuild/easyconfigs/o/OpenMM/OpenMM-6.1-goolf-1.4.10-Python-2.7.5.eb b/easybuild/easyconfigs/o/OpenMM/OpenMM-6.1-goolf-1.4.10-Python-2.7.5.eb index 1644d773d3..c0eaaaab71 100644 --- a/easybuild/easyconfigs/o/OpenMM/OpenMM-6.1-goolf-1.4.10-Python-2.7.5.eb +++ b/easybuild/easyconfigs/o/OpenMM/OpenMM-6.1-goolf-1.4.10-Python-2.7.5.eb @@ -43,9 +43,6 @@ sanity_check_paths = { modextrapaths = { 'PYTHONPATH': 'lib/python%(pyshortver)s/site-packages', -} - -modextrapaths = { 'OPENMM_INCLUDE_PATH': 'include', 'OPENMM_LIB_PATH': 'lib', } -- GitLab From dcfcb3c73374b0d7ae67af20e58bc1f9bf12c383 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Tue, 18 Jul 2017 07:10:57 +0200 Subject: [PATCH 464/608] Add SHA256 checksum --- .../b/BLAST+/BLAST+-2.6.0-foss-2016b-Python-2.7.12.eb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.6.0-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.6.0-foss-2016b-Python-2.7.12.eb index ecc6133475..0942e32de1 100644 --- a/easybuild/easyconfigs/b/BLAST+/BLAST+-2.6.0-foss-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/b/BLAST+/BLAST+-2.6.0-foss-2016b-Python-2.7.12.eb @@ -16,6 +16,9 @@ toolchainopts = {'cstd': 'c++14'} sources = ['ncbi-blast-%(version)s+-src.tar.gz'] source_urls = ['http://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/%(version)s/'] + +checksums = ['0510e1d607d0fb4389eca50d434d5a0be787423b6850b3a4f315abc2ef19c996'] + patches = ['BLAST+-%(version)s_fix-make-install.patch'] dependencies = [ -- GitLab From 16e89fc20d32bb91ea24b217d6866b173bbed635 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Tue, 18 Jul 2017 10:01:56 +0200 Subject: [PATCH 465/608] Add Bowtie2 2.3.2 for foss-2016b --- .../b/Bowtie2/Bowtie2-2.3.2-foss-2016b.eb | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2016b.eb diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2016b.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2016b.eb new file mode 100644 index 0000000000..5f6d0b56d6 --- /dev/null +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2016b.eb @@ -0,0 +1,26 @@ +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild + +name = 'Bowtie2' +version = '2.3.2' + +homepage = 'http://bowtie-bio.sourceforge.net/bowtie2/index.shtml' +description = """ Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing reads + to long reference sequences. It is particularly good at aligning reads of about 50 up to 100s or 1,000s + of characters, and particularly good at aligning to relatively long (e.g. mammalian) genomes. + Bowtie 2 indexes the genome with an FM Index to keep its memory footprint small: for the human genome, + its memory footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end alignment modes.""" + +toolchain = {'name': 'foss', 'version': '2016b'} +toolchainopts = {'pic': True} + +sources = ['%(namelower)s-%(version)s-source.zip'] +source_urls = [('http://sourceforge.net/projects/bowtie-bio/files/%(namelower)s/%(version)s', 'download')] + +checksums = ['ef0fe6d712eb3f9fbd784a5772547a28859a71eb6c455ef670b0f11a56cc73f7'] + +dependencies = [('tbb', '2017_U5')] + +# to add script folder to path just uncomment this line +# modextrapaths = {'PATH': 'scripts'} + +moduleclass = 'bio' -- GitLab From 2afd8b882e9dd970968cb241ee1901a69606a5ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Tue, 18 Jul 2017 09:59:43 +0200 Subject: [PATCH 466/608] Add Bowtie 1.2.1.1 for foss-2016b --- .../b/Bowtie/Bowtie-1.2.1.1-foss-2016b.eb | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 easybuild/easyconfigs/b/Bowtie/Bowtie-1.2.1.1-foss-2016b.eb diff --git a/easybuild/easyconfigs/b/Bowtie/Bowtie-1.2.1.1-foss-2016b.eb b/easybuild/easyconfigs/b/Bowtie/Bowtie-1.2.1.1-foss-2016b.eb new file mode 100644 index 0000000000..8e5cbc7d40 --- /dev/null +++ b/easybuild/easyconfigs/b/Bowtie/Bowtie-1.2.1.1-foss-2016b.eb @@ -0,0 +1,20 @@ +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild + +name = 'Bowtie' +version = '1.2.1.1' + +homepage = 'http://bowtie-bio.sourceforge.net/index.shtml' +description = """Bowtie is an ultrafast, memory-efficient short read aligner. + It aligns short DNA sequences (reads) to the human genome.""" + +toolchain = {'name': 'foss', 'version': '2016b'} +toolchainopts = {'pic': True} + +sources = ['%(namelower)s-%(version)s-src.zip'] +source_urls = ['http://download.sourceforge.net/bowtie-bio/'] + +checksums = ['71d708c957380e115ba420a96ac5f8456c6a61760a5f4dbe06305df6a42131d8'] + +dependencies = [('tbb', '2017_U5')] + +moduleclass = 'bio' -- GitLab From f6306c149824717463c6a05f9a769177a3903d6e Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 18 Jul 2017 07:00:21 -0500 Subject: [PATCH 467/608] maintain sanity --- .../easyconfigs/l/libtool/libtool-2.4.6-GCCcore-6.4.0.eb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/easybuild/easyconfigs/l/libtool/libtool-2.4.6-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/libtool/libtool-2.4.6-GCCcore-6.4.0.eb index bc5c6cb40c..93cdcb700f 100644 --- a/easybuild/easyconfigs/l/libtool/libtool-2.4.6-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/l/libtool/libtool-2.4.6-GCCcore-6.4.0.eb @@ -24,4 +24,9 @@ dependencies = [ ('M4', '1.4.18'), ] +sanity_check_paths = { + 'files': ['bin/libtool', 'bin/libtoolize', 'lib/libltdl.%s' % SHLIB_EXT], + 'dirs': ['include/libltdl', 'share/libtool/loaders', 'share/man/man1'], +} + moduleclass = 'lib' -- GitLab From 2d46898043deb387804b017ddf809f38df0d20f4 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 18 Jul 2017 07:23:07 -0500 Subject: [PATCH 468/608] maintain sanity --- easybuild/easyconfigs/p/PCRE/PCRE-8.41-GCCcore-6.4.0.eb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/easybuild/easyconfigs/p/PCRE/PCRE-8.41-GCCcore-6.4.0.eb b/easybuild/easyconfigs/p/PCRE/PCRE-8.41-GCCcore-6.4.0.eb index 0beae5c4cc..197001b9a8 100644 --- a/easybuild/easyconfigs/p/PCRE/PCRE-8.41-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/p/PCRE/PCRE-8.41-GCCcore-6.4.0.eb @@ -33,4 +33,10 @@ configopts = """\ --enable-pcre32\ """ +sanity_check_paths = { + 'files': ['bin/pcre-config', 'include/pcre.h', + 'share/man/man3/pcre.3', 'lib/libpcre32.%s' % SHLIB_EXT], + 'dirs': ['lib/pkgconfig', 'share/doc/pcre/html', 'share/man/man1'], +} + moduleclass = 'devel' -- GitLab From 2016d8b4c31d9beffacbc0338bab36c2a0d07247 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 18 Jul 2017 07:48:25 -0500 Subject: [PATCH 469/608] adding easyconfigs: Tcl-8.6.6-GCCcore-6.4.0.eb --- .../t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb b/easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..a74036c985 --- /dev/null +++ b/easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb @@ -0,0 +1,34 @@ +easyblock = 'ConfigureMake' + +name = 'Tcl' +version = '8.6.6' + +homepage = 'http://www.tcl.tk/' + +description = """ + Tcl (Tool Command Language) is a very powerful but easy to learn dynamic + programming language, suitable for a very wide range of uses, including web + and desktop applications, networking, administration, testing and many more. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = ["http://prdownloads.sourceforge.net/tcl"] +sources = ['%(namelower)s%(version)s-src.tar.gz'] +checksums = ['a265409781e4b3edcc4ef822533071b34c3dc6790b893963809b9fe221befe07'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('zlib', '1.2.11'), +] + +configopts = '--enable-threads EXTRA_INSTALL="install-private-headers"' + +runtest = 'test' + +start_dir = 'unix' + +moduleclass = 'lang' -- GitLab From e630f55224a1938297732855ec50eba38c517c96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Wed, 19 Jul 2017 07:37:49 +0200 Subject: [PATCH 470/608] Add sanity check --- .../easyconfigs/b/Bowtie/Bowtie-1.2.1.1-foss-2016b.eb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/easybuild/easyconfigs/b/Bowtie/Bowtie-1.2.1.1-foss-2016b.eb b/easybuild/easyconfigs/b/Bowtie/Bowtie-1.2.1.1-foss-2016b.eb index 8e5cbc7d40..ceafd39df5 100644 --- a/easybuild/easyconfigs/b/Bowtie/Bowtie-1.2.1.1-foss-2016b.eb +++ b/easybuild/easyconfigs/b/Bowtie/Bowtie-1.2.1.1-foss-2016b.eb @@ -17,4 +17,11 @@ checksums = ['71d708c957380e115ba420a96ac5f8456c6a61760a5f4dbe06305df6a42131d8'] dependencies = [('tbb', '2017_U5')] +sanity_check_paths = { + 'files': ['bin/%s' % x for x in ['bowtie', 'bowtie-align-l', 'bowtie-align-s', 'bowtie-build', 'bowtie-build-l', 'bowtie-build-s', 'bowtie-inspect', 'bowtie-inspect-l', 'bowtie-inspect-s']], + 'dirs': [] +} + +sanity_check_commands = [('bowtie', '--version')] + moduleclass = 'bio' -- GitLab From 9693231280b707f8da0792c9912aef823f772f6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Wed, 19 Jul 2017 07:39:12 +0200 Subject: [PATCH 471/608] Add sanity check --- .../easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2016b.eb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2016b.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2016b.eb index 5f6d0b56d6..2258f2b213 100644 --- a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2016b.eb +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2016b.eb @@ -20,6 +20,13 @@ checksums = ['ef0fe6d712eb3f9fbd784a5772547a28859a71eb6c455ef670b0f11a56cc73f7'] dependencies = [('tbb', '2017_U5')] +sanity_check_paths = { + 'files': ['bin/%s' % x for x in ['bowtie2', 'bowtie2-align-l', 'bowtie2-align-s', 'bowtie2-build', 'bowtie2-build-l', 'bowtie2-build-s', 'bowtie2-inspect', 'bowtie2-inspect-l', 'bowtie2-inspect-s']], + 'dirs': [] +} + +sanity_check_commands = [('bowtie2', '--version')] + # to add script folder to path just uncomment this line # modextrapaths = {'PATH': 'scripts'} -- GitLab From 2ea485b45b24e27d4e9ae8ce5f76085d01dafbed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Wed, 19 Jul 2017 08:05:32 +0200 Subject: [PATCH 472/608] Fix line length --- easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2016b.eb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2016b.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2016b.eb index 2258f2b213..03a5dea73d 100644 --- a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2016b.eb +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2016b.eb @@ -21,7 +21,9 @@ checksums = ['ef0fe6d712eb3f9fbd784a5772547a28859a71eb6c455ef670b0f11a56cc73f7'] dependencies = [('tbb', '2017_U5')] sanity_check_paths = { - 'files': ['bin/%s' % x for x in ['bowtie2', 'bowtie2-align-l', 'bowtie2-align-s', 'bowtie2-build', 'bowtie2-build-l', 'bowtie2-build-s', 'bowtie2-inspect', 'bowtie2-inspect-l', 'bowtie2-inspect-s']], + 'files': ['bin/%s' % x for x in ['bowtie2', 'bowtie2-align-l', 'bowtie2-align-s', 'bowtie2-build', + 'bowtie2-build-l', 'bowtie2-build-s', 'bowtie2-inspect', 'bowtie2-inspect-l', + 'bowtie2-inspect-s']], 'dirs': [] } -- GitLab From 700d746e651ab98fed83705df9c1c5904977241d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Wed, 19 Jul 2017 08:07:20 +0200 Subject: [PATCH 473/608] Fix line length --- easybuild/easyconfigs/b/Bowtie/Bowtie-1.2.1.1-foss-2016b.eb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/b/Bowtie/Bowtie-1.2.1.1-foss-2016b.eb b/easybuild/easyconfigs/b/Bowtie/Bowtie-1.2.1.1-foss-2016b.eb index ceafd39df5..28f4c0d027 100644 --- a/easybuild/easyconfigs/b/Bowtie/Bowtie-1.2.1.1-foss-2016b.eb +++ b/easybuild/easyconfigs/b/Bowtie/Bowtie-1.2.1.1-foss-2016b.eb @@ -18,7 +18,8 @@ checksums = ['71d708c957380e115ba420a96ac5f8456c6a61760a5f4dbe06305df6a42131d8'] dependencies = [('tbb', '2017_U5')] sanity_check_paths = { - 'files': ['bin/%s' % x for x in ['bowtie', 'bowtie-align-l', 'bowtie-align-s', 'bowtie-build', 'bowtie-build-l', 'bowtie-build-s', 'bowtie-inspect', 'bowtie-inspect-l', 'bowtie-inspect-s']], + 'files': ['bin/%s' % x for x in ['bowtie', 'bowtie-align-l', 'bowtie-align-s', 'bowtie-build', 'bowtie-build-l', + 'bowtie-build-s', 'bowtie-inspect', 'bowtie-inspect-l', 'bowtie-inspect-s']], 'dirs': [] } -- GitLab From 1c3daacb0de6ba160c554a291522809a40740742 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Wed, 19 Jul 2017 08:39:50 -0500 Subject: [PATCH 474/608] maintain sanity --- easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb b/easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb index a74036c985..cffeed4270 100644 --- a/easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb @@ -31,4 +31,12 @@ runtest = 'test' start_dir = 'unix' +sanity_check_paths = { + 'files': ['bin/tclsh%(version_major)s.%(version_minor)s', 'include/tcl.h', + 'lib/libtcl%%(version_major)s.%%(version_minor)s.%s' % SHLIB_EXT, + 'lib/tclConfig.sh', 'man/man1/tclsh.1'], + 'dirs': ['share'], +} + + moduleclass = 'lang' -- GitLab From 56179a8e735a06a8dc9af0d06d683a4ac8f971d8 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Wed, 19 Jul 2017 18:47:59 -0500 Subject: [PATCH 475/608] adding easyconfigs: SQLite-3.19.3-GCCcore-6.4.0.eb --- .../s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb | 49 +++++++++++++++++++ .../t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb | 42 ++++++++++++++++ 2 files changed, 91 insertions(+) create mode 100644 easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb create mode 100644 easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..9d9a1ef2eb --- /dev/null +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb @@ -0,0 +1,49 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild +# +# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA +# Authors:: Fotis Georgatos +# License:: MIT/GPL +# $Id$ +# +# This work implements a part of the HPCBIOS project and is a component of the +# policy: http://hpcbios.readthedocs.org/en/latest/ +## + +easyblock = 'ConfigureMake' + +name = 'SQLite' +version = '3.19.3' + +homepage = 'http://www.sqlite.org/' + +description = 'SQLite: SQL Database Engine in a C Library' + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +# eg. http://www.sqlite.org/2017/sqlite-autoconf-3190300.tar.gz +source_urls = ['http://www.sqlite.org/2017/'] +version_str = '%%(version_major)s%s00' % ''.join('%02d' % + int(x) for x in version.split('.')[1:]) +sources = ['sqlite-autoconf-%s.tar.gz' % version_str] +checksums = ['06129c03dced9f87733a8cba408871bd60673b8f93b920ba8d815efab0a06301'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('libreadline', '7.0'), + ('Tcl', '8.6.6'), +] + +parallel = 1 + +sanity_check_paths = { + 'files': ['bin/sqlite3', 'include/sqlite3ext.h', 'include/sqlite3.h', + 'lib/libsqlite3.a', 'lib/libsqlite3.%s' % SHLIB_EXT], + 'dirs': ['lib/pkgconfig'], +} + +moduleclass = 'devel' diff --git a/easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb b/easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..cffeed4270 --- /dev/null +++ b/easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb @@ -0,0 +1,42 @@ +easyblock = 'ConfigureMake' + +name = 'Tcl' +version = '8.6.6' + +homepage = 'http://www.tcl.tk/' + +description = """ + Tcl (Tool Command Language) is a very powerful but easy to learn dynamic + programming language, suitable for a very wide range of uses, including web + and desktop applications, networking, administration, testing and many more. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = ["http://prdownloads.sourceforge.net/tcl"] +sources = ['%(namelower)s%(version)s-src.tar.gz'] +checksums = ['a265409781e4b3edcc4ef822533071b34c3dc6790b893963809b9fe221befe07'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('zlib', '1.2.11'), +] + +configopts = '--enable-threads EXTRA_INSTALL="install-private-headers"' + +runtest = 'test' + +start_dir = 'unix' + +sanity_check_paths = { + 'files': ['bin/tclsh%(version_major)s.%(version_minor)s', 'include/tcl.h', + 'lib/libtcl%%(version_major)s.%%(version_minor)s.%s' % SHLIB_EXT, + 'lib/tclConfig.sh', 'man/man1/tclsh.1'], + 'dirs': ['share'], +} + + +moduleclass = 'lang' -- GitLab From 34014ba01b2606d1dd77782c9f5d426cccfca08f Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Wed, 19 Jul 2017 19:37:20 -0500 Subject: [PATCH 476/608] adding easyconfigs: PyYAML-3.12-GCCcore-6.4.0-Python-2.7.13-bare.eb --- .../l/libyaml/libyaml-0.1.6-GCCcore-6.4.0.eb | 34 ++++++++++++ ...L-3.12-GCCcore-6.4.0-Python-2.7.13-bare.eb | 38 +++++++++++++ .../Python-2.7.13-GCCcore-6.4.0-bare.eb | 53 +++++++++++++++++++ .../s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb | 49 +++++++++++++++++ .../t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb | 42 +++++++++++++++ 5 files changed, 216 insertions(+) create mode 100644 easybuild/easyconfigs/l/libyaml/libyaml-0.1.6-GCCcore-6.4.0.eb create mode 100644 easybuild/easyconfigs/p/PyYAML/PyYAML-3.12-GCCcore-6.4.0-Python-2.7.13-bare.eb create mode 100644 easybuild/easyconfigs/p/Python/Python-2.7.13-GCCcore-6.4.0-bare.eb create mode 100644 easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb create mode 100644 easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/l/libyaml/libyaml-0.1.6-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/libyaml/libyaml-0.1.6-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..156fcf6ef5 --- /dev/null +++ b/easybuild/easyconfigs/l/libyaml/libyaml-0.1.6-GCCcore-6.4.0.eb @@ -0,0 +1,34 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild +# +# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA +# Authors:: Nils Christian +# License:: MIT/GPL +# $Id$ +## + +easyblock = 'ConfigureMake' + +name = 'libyaml' +version = '0.1.6' + +homepage = 'http://pyyaml.org/wiki/LibYAML' + +description = """LibYAML is a YAML parser and emitter written in C.""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = ['http://pyyaml.org/download/libyaml/'] +sources = ['yaml-%(version)s.tar.gz'] +checksums = ['7da6971b4bd08a986dd2a61353bc422362bd0edcc67d7ebaac68c95f74182749'] + +builddependencies = [ + ('binutils', '2.28'), +] + +sanity_check_paths = { + 'files': ["include/yaml.h", "lib/libyaml.a", "lib/libyaml.%s" % SHLIB_EXT], + 'dirs': ["lib/pkgconfig"] +} + +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/p/PyYAML/PyYAML-3.12-GCCcore-6.4.0-Python-2.7.13-bare.eb b/easybuild/easyconfigs/p/PyYAML/PyYAML-3.12-GCCcore-6.4.0-Python-2.7.13-bare.eb new file mode 100644 index 0000000000..eb4c534d26 --- /dev/null +++ b/easybuild/easyconfigs/p/PyYAML/PyYAML-3.12-GCCcore-6.4.0-Python-2.7.13-bare.eb @@ -0,0 +1,38 @@ +easyblock = 'PythonPackage' + +name = 'PyYAML' +version = '3.12' +pyver = '2.7.13' +pyshortver = '2.7' +pysubver = '-bare' +versionsuffix = '-Python-%s%s' % (pyver, pysubver) + +homepage = 'https://pypi.python.org/pypi/PyYAML/' + +description = """ + PyYAML is a YAML parser and emitter for the Python programming language. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = [PYPI_SOURCE] +sources = [SOURCE_TAR_GZ] +checksums = ['592766c6303207a20efc445587778322d7f73b161bd994f227adaa341ba212ab'] + +builddependencies = [ + ('binutils', '2.28'), + ('Python', pyver, pysubver), +] + +dependencies = [ + ('libyaml', '0.1.6'), +] + +options = {'modulename': 'yaml'} + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%s/site-packages' % pyshortver], +} + +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/p/Python/Python-2.7.13-GCCcore-6.4.0-bare.eb b/easybuild/easyconfigs/p/Python/Python-2.7.13-GCCcore-6.4.0-bare.eb new file mode 100644 index 0000000000..42f2730022 --- /dev/null +++ b/easybuild/easyconfigs/p/Python/Python-2.7.13-GCCcore-6.4.0-bare.eb @@ -0,0 +1,53 @@ +name = 'Python' +version = '2.7.13' +versionsuffix = '-bare' + +homepage = 'http://python.org/' + +description = """ + Python is a programming language that lets you work more quickly and + integrate your systems more effectively. + +Note: This module is meant to provide a builddependency for other Python + modules while using EasyBuild's --minimaltoolchain option. Modules + built with it will require the full Python later +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = ['http://www.python.org/ftp/%(namelower)s/%(version)s/'] +sources = [SOURCE_TGZ] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('bzip2', '1.0.6'), + ('libreadline', '7.0'), + ('ncurses', '6.0'), + ('SQLite', '3.19.3'), + ('zlib', '1.2.11'), +] + +osdependencies = [ + # rely upon distribution for timely security updates + ('openssl-devel', 'libssl-dev', 'libopenssl-devel'), +] + +# We hide this by default since users should not use it in production, +# high-performance Python should be delivered at compiler level with +# a default extension set +#hidden = True + +# bare installation: only known module deps for GCCcore tools included +exts_list = [] + +# Until such time that EasyBuild accepts 'rpath' as a toolchainopt... +# add RPATH so this can be as a builddependency later +prebuildopts = """ + sed -e 's:Modules/python.o \\\\:-Wl,-rpath=%(installdir)s/lib Modules/python.o \\\\:' -i.eb Makefile +""" + +moduleclass = 'lang' diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..9d9a1ef2eb --- /dev/null +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb @@ -0,0 +1,49 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild +# +# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA +# Authors:: Fotis Georgatos +# License:: MIT/GPL +# $Id$ +# +# This work implements a part of the HPCBIOS project and is a component of the +# policy: http://hpcbios.readthedocs.org/en/latest/ +## + +easyblock = 'ConfigureMake' + +name = 'SQLite' +version = '3.19.3' + +homepage = 'http://www.sqlite.org/' + +description = 'SQLite: SQL Database Engine in a C Library' + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +# eg. http://www.sqlite.org/2017/sqlite-autoconf-3190300.tar.gz +source_urls = ['http://www.sqlite.org/2017/'] +version_str = '%%(version_major)s%s00' % ''.join('%02d' % + int(x) for x in version.split('.')[1:]) +sources = ['sqlite-autoconf-%s.tar.gz' % version_str] +checksums = ['06129c03dced9f87733a8cba408871bd60673b8f93b920ba8d815efab0a06301'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('libreadline', '7.0'), + ('Tcl', '8.6.6'), +] + +parallel = 1 + +sanity_check_paths = { + 'files': ['bin/sqlite3', 'include/sqlite3ext.h', 'include/sqlite3.h', + 'lib/libsqlite3.a', 'lib/libsqlite3.%s' % SHLIB_EXT], + 'dirs': ['lib/pkgconfig'], +} + +moduleclass = 'devel' diff --git a/easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb b/easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..cffeed4270 --- /dev/null +++ b/easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb @@ -0,0 +1,42 @@ +easyblock = 'ConfigureMake' + +name = 'Tcl' +version = '8.6.6' + +homepage = 'http://www.tcl.tk/' + +description = """ + Tcl (Tool Command Language) is a very powerful but easy to learn dynamic + programming language, suitable for a very wide range of uses, including web + and desktop applications, networking, administration, testing and many more. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = ["http://prdownloads.sourceforge.net/tcl"] +sources = ['%(namelower)s%(version)s-src.tar.gz'] +checksums = ['a265409781e4b3edcc4ef822533071b34c3dc6790b893963809b9fe221befe07'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('zlib', '1.2.11'), +] + +configopts = '--enable-threads EXTRA_INSTALL="install-private-headers"' + +runtest = 'test' + +start_dir = 'unix' + +sanity_check_paths = { + 'files': ['bin/tclsh%(version_major)s.%(version_minor)s', 'include/tcl.h', + 'lib/libtcl%%(version_major)s.%%(version_minor)s.%s' % SHLIB_EXT, + 'lib/tclConfig.sh', 'man/man1/tclsh.1'], + 'dirs': ['share'], +} + + +moduleclass = 'lang' -- GitLab From afd8369b9930976bfe3178f5f15bfdfa64ab4bed Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Wed, 19 Jul 2017 19:54:41 -0500 Subject: [PATCH 477/608] adding easyconfigs: setuptools-36.2.0-GCCcore-6.4.0-Python-2.7.13-bare.eb --- .../Python-2.7.13-GCCcore-6.4.0-bare.eb | 53 +++++++++++++++++++ .../s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb | 49 +++++++++++++++++ ...36.2.0-GCCcore-6.4.0-Python-2.7.13-bare.eb | 32 +++++++++++ .../t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb | 42 +++++++++++++++ 4 files changed, 176 insertions(+) create mode 100644 easybuild/easyconfigs/p/Python/Python-2.7.13-GCCcore-6.4.0-bare.eb create mode 100644 easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb create mode 100644 easybuild/easyconfigs/s/setuptools/setuptools-36.2.0-GCCcore-6.4.0-Python-2.7.13-bare.eb create mode 100644 easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/p/Python/Python-2.7.13-GCCcore-6.4.0-bare.eb b/easybuild/easyconfigs/p/Python/Python-2.7.13-GCCcore-6.4.0-bare.eb new file mode 100644 index 0000000000..42f2730022 --- /dev/null +++ b/easybuild/easyconfigs/p/Python/Python-2.7.13-GCCcore-6.4.0-bare.eb @@ -0,0 +1,53 @@ +name = 'Python' +version = '2.7.13' +versionsuffix = '-bare' + +homepage = 'http://python.org/' + +description = """ + Python is a programming language that lets you work more quickly and + integrate your systems more effectively. + +Note: This module is meant to provide a builddependency for other Python + modules while using EasyBuild's --minimaltoolchain option. Modules + built with it will require the full Python later +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = ['http://www.python.org/ftp/%(namelower)s/%(version)s/'] +sources = [SOURCE_TGZ] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('bzip2', '1.0.6'), + ('libreadline', '7.0'), + ('ncurses', '6.0'), + ('SQLite', '3.19.3'), + ('zlib', '1.2.11'), +] + +osdependencies = [ + # rely upon distribution for timely security updates + ('openssl-devel', 'libssl-dev', 'libopenssl-devel'), +] + +# We hide this by default since users should not use it in production, +# high-performance Python should be delivered at compiler level with +# a default extension set +#hidden = True + +# bare installation: only known module deps for GCCcore tools included +exts_list = [] + +# Until such time that EasyBuild accepts 'rpath' as a toolchainopt... +# add RPATH so this can be as a builddependency later +prebuildopts = """ + sed -e 's:Modules/python.o \\\\:-Wl,-rpath=%(installdir)s/lib Modules/python.o \\\\:' -i.eb Makefile +""" + +moduleclass = 'lang' diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..9d9a1ef2eb --- /dev/null +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb @@ -0,0 +1,49 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild +# +# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA +# Authors:: Fotis Georgatos +# License:: MIT/GPL +# $Id$ +# +# This work implements a part of the HPCBIOS project and is a component of the +# policy: http://hpcbios.readthedocs.org/en/latest/ +## + +easyblock = 'ConfigureMake' + +name = 'SQLite' +version = '3.19.3' + +homepage = 'http://www.sqlite.org/' + +description = 'SQLite: SQL Database Engine in a C Library' + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +# eg. http://www.sqlite.org/2017/sqlite-autoconf-3190300.tar.gz +source_urls = ['http://www.sqlite.org/2017/'] +version_str = '%%(version_major)s%s00' % ''.join('%02d' % + int(x) for x in version.split('.')[1:]) +sources = ['sqlite-autoconf-%s.tar.gz' % version_str] +checksums = ['06129c03dced9f87733a8cba408871bd60673b8f93b920ba8d815efab0a06301'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('libreadline', '7.0'), + ('Tcl', '8.6.6'), +] + +parallel = 1 + +sanity_check_paths = { + 'files': ['bin/sqlite3', 'include/sqlite3ext.h', 'include/sqlite3.h', + 'lib/libsqlite3.a', 'lib/libsqlite3.%s' % SHLIB_EXT], + 'dirs': ['lib/pkgconfig'], +} + +moduleclass = 'devel' diff --git a/easybuild/easyconfigs/s/setuptools/setuptools-36.2.0-GCCcore-6.4.0-Python-2.7.13-bare.eb b/easybuild/easyconfigs/s/setuptools/setuptools-36.2.0-GCCcore-6.4.0-Python-2.7.13-bare.eb new file mode 100644 index 0000000000..6c0e83e5dc --- /dev/null +++ b/easybuild/easyconfigs/s/setuptools/setuptools-36.2.0-GCCcore-6.4.0-Python-2.7.13-bare.eb @@ -0,0 +1,32 @@ +easyblock = 'PythonPackage' + +name = 'setuptools' +version = '36.2.0' +pyver = '2.7.13' +pyshortver = '2.7' +pysubver = '-bare' +versionsuffix = '-Python-%s%s' % (pyver, pysubver) + +homepage = 'http://pypi.python.org/pypi/setuptools/' + +description = """ + Download, build, install, upgrade, and uninstall Python packages -- easily! +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = [PYPI_SOURCE] +sources = [SOURCE_ZIP] + +builddependencies = [ + ('Python', pyver, pysubver), +] + +pylibdir = "lib/python%s/site-packages/%s" % (pyshortver, name) +sanity_check_paths = { + 'files': ["bin/easy_install", "%s-%s-py%s.egg" % + (pylibdir, version, pyshortver)], + 'dirs': [] +} + +moduleclass = 'devel' diff --git a/easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb b/easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..cffeed4270 --- /dev/null +++ b/easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb @@ -0,0 +1,42 @@ +easyblock = 'ConfigureMake' + +name = 'Tcl' +version = '8.6.6' + +homepage = 'http://www.tcl.tk/' + +description = """ + Tcl (Tool Command Language) is a very powerful but easy to learn dynamic + programming language, suitable for a very wide range of uses, including web + and desktop applications, networking, administration, testing and many more. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = ["http://prdownloads.sourceforge.net/tcl"] +sources = ['%(namelower)s%(version)s-src.tar.gz'] +checksums = ['a265409781e4b3edcc4ef822533071b34c3dc6790b893963809b9fe221befe07'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('zlib', '1.2.11'), +] + +configopts = '--enable-threads EXTRA_INSTALL="install-private-headers"' + +runtest = 'test' + +start_dir = 'unix' + +sanity_check_paths = { + 'files': ['bin/tclsh%(version_major)s.%(version_minor)s', 'include/tcl.h', + 'lib/libtcl%%(version_major)s.%%(version_minor)s.%s' % SHLIB_EXT, + 'lib/tclConfig.sh', 'man/man1/tclsh.1'], + 'dirs': ['share'], +} + + +moduleclass = 'lang' -- GitLab From cc31c73e147ea9d13d35ab0af9080bae73301a33 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Wed, 19 Jul 2017 20:04:10 -0500 Subject: [PATCH 478/608] add checksum --- .../setuptools-36.2.0-GCCcore-6.4.0-Python-2.7.13-bare.eb | 1 + 1 file changed, 1 insertion(+) diff --git a/easybuild/easyconfigs/s/setuptools/setuptools-36.2.0-GCCcore-6.4.0-Python-2.7.13-bare.eb b/easybuild/easyconfigs/s/setuptools/setuptools-36.2.0-GCCcore-6.4.0-Python-2.7.13-bare.eb index 6c0e83e5dc..9b5a4054e1 100644 --- a/easybuild/easyconfigs/s/setuptools/setuptools-36.2.0-GCCcore-6.4.0-Python-2.7.13-bare.eb +++ b/easybuild/easyconfigs/s/setuptools/setuptools-36.2.0-GCCcore-6.4.0-Python-2.7.13-bare.eb @@ -17,6 +17,7 @@ toolchain = {'name': 'GCCcore', 'version': '6.4.0'} source_urls = [PYPI_SOURCE] sources = [SOURCE_ZIP] +checksums = ['4c2bda3829c9dbbe9c2b33d89c4b1cb6d45813615ab8e248ad352e3697a96d81'] builddependencies = [ ('Python', pyver, pysubver), -- GitLab From d8d78be361b0d88101593befe669901993a6c468 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Wed, 19 Jul 2017 20:20:27 -0500 Subject: [PATCH 479/608] adding easyconfigs: six-1.10.0-GCCcore-6.4.0-Python-2.7.13-bare.eb --- .../Python-2.7.13-GCCcore-6.4.0-bare.eb | 53 +++++++++++++++++++ .../s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb | 49 +++++++++++++++++ ...1.10.0-GCCcore-6.4.0-Python-2.7.13-bare.eb | 31 +++++++++++ .../t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb | 42 +++++++++++++++ 4 files changed, 175 insertions(+) create mode 100644 easybuild/easyconfigs/p/Python/Python-2.7.13-GCCcore-6.4.0-bare.eb create mode 100644 easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb create mode 100644 easybuild/easyconfigs/s/six/six-1.10.0-GCCcore-6.4.0-Python-2.7.13-bare.eb create mode 100644 easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/p/Python/Python-2.7.13-GCCcore-6.4.0-bare.eb b/easybuild/easyconfigs/p/Python/Python-2.7.13-GCCcore-6.4.0-bare.eb new file mode 100644 index 0000000000..42f2730022 --- /dev/null +++ b/easybuild/easyconfigs/p/Python/Python-2.7.13-GCCcore-6.4.0-bare.eb @@ -0,0 +1,53 @@ +name = 'Python' +version = '2.7.13' +versionsuffix = '-bare' + +homepage = 'http://python.org/' + +description = """ + Python is a programming language that lets you work more quickly and + integrate your systems more effectively. + +Note: This module is meant to provide a builddependency for other Python + modules while using EasyBuild's --minimaltoolchain option. Modules + built with it will require the full Python later +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = ['http://www.python.org/ftp/%(namelower)s/%(version)s/'] +sources = [SOURCE_TGZ] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('bzip2', '1.0.6'), + ('libreadline', '7.0'), + ('ncurses', '6.0'), + ('SQLite', '3.19.3'), + ('zlib', '1.2.11'), +] + +osdependencies = [ + # rely upon distribution for timely security updates + ('openssl-devel', 'libssl-dev', 'libopenssl-devel'), +] + +# We hide this by default since users should not use it in production, +# high-performance Python should be delivered at compiler level with +# a default extension set +#hidden = True + +# bare installation: only known module deps for GCCcore tools included +exts_list = [] + +# Until such time that EasyBuild accepts 'rpath' as a toolchainopt... +# add RPATH so this can be as a builddependency later +prebuildopts = """ + sed -e 's:Modules/python.o \\\\:-Wl,-rpath=%(installdir)s/lib Modules/python.o \\\\:' -i.eb Makefile +""" + +moduleclass = 'lang' diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..9d9a1ef2eb --- /dev/null +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb @@ -0,0 +1,49 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild +# +# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA +# Authors:: Fotis Georgatos +# License:: MIT/GPL +# $Id$ +# +# This work implements a part of the HPCBIOS project and is a component of the +# policy: http://hpcbios.readthedocs.org/en/latest/ +## + +easyblock = 'ConfigureMake' + +name = 'SQLite' +version = '3.19.3' + +homepage = 'http://www.sqlite.org/' + +description = 'SQLite: SQL Database Engine in a C Library' + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +# eg. http://www.sqlite.org/2017/sqlite-autoconf-3190300.tar.gz +source_urls = ['http://www.sqlite.org/2017/'] +version_str = '%%(version_major)s%s00' % ''.join('%02d' % + int(x) for x in version.split('.')[1:]) +sources = ['sqlite-autoconf-%s.tar.gz' % version_str] +checksums = ['06129c03dced9f87733a8cba408871bd60673b8f93b920ba8d815efab0a06301'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('libreadline', '7.0'), + ('Tcl', '8.6.6'), +] + +parallel = 1 + +sanity_check_paths = { + 'files': ['bin/sqlite3', 'include/sqlite3ext.h', 'include/sqlite3.h', + 'lib/libsqlite3.a', 'lib/libsqlite3.%s' % SHLIB_EXT], + 'dirs': ['lib/pkgconfig'], +} + +moduleclass = 'devel' diff --git a/easybuild/easyconfigs/s/six/six-1.10.0-GCCcore-6.4.0-Python-2.7.13-bare.eb b/easybuild/easyconfigs/s/six/six-1.10.0-GCCcore-6.4.0-Python-2.7.13-bare.eb new file mode 100644 index 0000000000..f5345426c3 --- /dev/null +++ b/easybuild/easyconfigs/s/six/six-1.10.0-GCCcore-6.4.0-Python-2.7.13-bare.eb @@ -0,0 +1,31 @@ +# Author:: Jack Perdue - TAMU HPRC - http://sc.tamu.edu + +easyblock = 'PythonPackage' + +name = 'six' +version = '1.10.0' +pyver = '2.7.13' +pyshortver = '2.7' +pysubver = '-bare' +versionsuffix = '-Python-%s%s' % (pyver, pysubver) + +homepage = 'https://pypi.python.org/pypi/six/1.10.0' + +description = "Python 2 and 3 compatibility utilities" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +sources = [SOURCE_TAR_GZ] +source_urls = [PYPI_LOWER_SOURCE] +checksums = ['105f8d68616f8248e24bf0e9372ef04d3cc10104f1980f54d57b2ce73a5ad56a'] + +builddependencies = [ + ('Python', pyver, pysubver), +] + +sanity_check_paths = { + 'files': ['lib/python%s/site-packages/%%(name)s.py' % pyshortver], + 'dirs': [], +} + +moduleclass = 'devel' diff --git a/easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb b/easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..cffeed4270 --- /dev/null +++ b/easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb @@ -0,0 +1,42 @@ +easyblock = 'ConfigureMake' + +name = 'Tcl' +version = '8.6.6' + +homepage = 'http://www.tcl.tk/' + +description = """ + Tcl (Tool Command Language) is a very powerful but easy to learn dynamic + programming language, suitable for a very wide range of uses, including web + and desktop applications, networking, administration, testing and many more. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = ["http://prdownloads.sourceforge.net/tcl"] +sources = ['%(namelower)s%(version)s-src.tar.gz'] +checksums = ['a265409781e4b3edcc4ef822533071b34c3dc6790b893963809b9fe221befe07'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('zlib', '1.2.11'), +] + +configopts = '--enable-threads EXTRA_INSTALL="install-private-headers"' + +runtest = 'test' + +start_dir = 'unix' + +sanity_check_paths = { + 'files': ['bin/tclsh%(version_major)s.%(version_minor)s', 'include/tcl.h', + 'lib/libtcl%%(version_major)s.%%(version_minor)s.%s' % SHLIB_EXT, + 'lib/tclConfig.sh', 'man/man1/tclsh.1'], + 'dirs': ['share'], +} + + +moduleclass = 'lang' -- GitLab From 189003600e9f8ae77a05fbb0c471d0178fce96a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Thu, 20 Jul 2017 14:15:59 +0200 Subject: [PATCH 480/608] Add attributions --- .../easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2016b.eb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2016b.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2016b.eb index 03a5dea73d..bea5f1dfd7 100644 --- a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2016b.eb +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2016b.eb @@ -1,4 +1,13 @@ # This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild +# Author: Pablo Escobar Lopez +# Swiss Institute of Bioinformatics +# Biozentrum - University of Basel +# Modified by: Robert Schmidt +# Ottawa Hospital Research Institute - Bioinformatics Team +# Modified by: Adam Huffman +# The Francis Crick Institute +# Modified by: Kurt Lust, UAntwerp +# Modified by: Paul Jähne name = 'Bowtie2' version = '2.3.2' -- GitLab From 94f225009eae9ac4471852c4e701ba93bb79b29e Mon Sep 17 00:00:00 2001 From: Pol Llovet Date: Thu, 20 Jul 2017 09:56:02 -0600 Subject: [PATCH 481/608] Updating deprecated PLINK urls --- easybuild/easyconfigs/p/PLINK/PLINK-1.07-foss-2015b.eb | 4 ++-- easybuild/easyconfigs/p/PLINK/PLINK-1.07-foss-2016a.eb | 4 ++-- easybuild/easyconfigs/p/PLINK/PLINK-1.07-foss-2016b.eb | 4 ++-- easybuild/easyconfigs/p/PLINK/PLINK-1.07-ictce-5.3.0.eb | 4 ++-- easybuild/easyconfigs/p/PLINK/PLINK-1.07-ictce-6.2.5.eb | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/easybuild/easyconfigs/p/PLINK/PLINK-1.07-foss-2015b.eb b/easybuild/easyconfigs/p/PLINK/PLINK-1.07-foss-2015b.eb index 7d60edd787..f172624a26 100644 --- a/easybuild/easyconfigs/p/PLINK/PLINK-1.07-foss-2015b.eb +++ b/easybuild/easyconfigs/p/PLINK/PLINK-1.07-foss-2015b.eb @@ -10,7 +10,7 @@ easyblock = 'MakeCp' name = 'PLINK' version = '1.07' -homepage = 'http://pngu.mgh.harvard.edu/~purcell/plink/' +homepage = 'http://zzz.bwh.harvard.edu/plink/' description = """ PLINK is a free, open-source whole genome association analysis toolset, designed to perform a range of basic, large-scale analyses in a computationally efficient manner. The focus of PLINK is purely on analysis of genotype/phenotype data, so there is no support for @@ -22,7 +22,7 @@ toolchain = {'name': 'foss', 'version': '2015b'} toolchainopts = {'openmp': True} sources = ['%(namelower)s-%(version)s-src.zip'] -source_urls = ['http://pngu.mgh.harvard.edu/~purcell/plink/dist/'] +source_urls = ['http://zzz.bwh.harvard.edu/plink/dist/'] patches = ['PLINK-1.07_redeclaration.patch'] diff --git a/easybuild/easyconfigs/p/PLINK/PLINK-1.07-foss-2016a.eb b/easybuild/easyconfigs/p/PLINK/PLINK-1.07-foss-2016a.eb index 5b4efc33f6..08a47b6d0e 100644 --- a/easybuild/easyconfigs/p/PLINK/PLINK-1.07-foss-2016a.eb +++ b/easybuild/easyconfigs/p/PLINK/PLINK-1.07-foss-2016a.eb @@ -10,7 +10,7 @@ easyblock = 'MakeCp' name = 'PLINK' version = '1.07' -homepage = 'http://pngu.mgh.harvard.edu/~purcell/plink/' +homepage = 'http://zzz.bwh.harvard.edu/plink/' description = """ PLINK is a free, open-source whole genome association analysis toolset, designed to perform a range of basic, large-scale analyses in a computationally efficient manner. The focus of PLINK is purely on analysis of genotype/phenotype data, so there is no support for @@ -22,7 +22,7 @@ toolchain = {'name': 'foss', 'version': '2016a'} toolchainopts = {'openmp': True} sources = ['%(namelower)s-%(version)s-src.zip'] -source_urls = ['http://pngu.mgh.harvard.edu/~purcell/plink/dist/'] +source_urls = ['http://zzz.bwh.harvard.edu/plink/dist/'] patches = ['PLINK-1.07_redeclaration.patch'] diff --git a/easybuild/easyconfigs/p/PLINK/PLINK-1.07-foss-2016b.eb b/easybuild/easyconfigs/p/PLINK/PLINK-1.07-foss-2016b.eb index 26b293a777..9782f91b1d 100644 --- a/easybuild/easyconfigs/p/PLINK/PLINK-1.07-foss-2016b.eb +++ b/easybuild/easyconfigs/p/PLINK/PLINK-1.07-foss-2016b.eb @@ -10,7 +10,7 @@ easyblock = 'MakeCp' name = 'PLINK' version = '1.07' -homepage = 'http://pngu.mgh.harvard.edu/~purcell/plink/' +homepage = 'http://zzz.bwh.harvard.edu/plink/' description = """ PLINK is a free, open-source whole genome association analysis toolset, designed to perform a range of basic, large-scale analyses in a computationally efficient manner. The focus of PLINK is purely on analysis of genotype/phenotype data, so there is no support for @@ -22,7 +22,7 @@ toolchain = {'name': 'foss', 'version': '2016b'} toolchainopts = {'openmp': True} sources = ['%(namelower)s-%(version)s-src.zip'] -source_urls = ['http://pngu.mgh.harvard.edu/~purcell/plink/dist/'] +source_urls = ['hhttp://zzz.bwh.harvard.edu/plink/dist/'] patches = ['PLINK-1.07_redeclaration.patch'] diff --git a/easybuild/easyconfigs/p/PLINK/PLINK-1.07-ictce-5.3.0.eb b/easybuild/easyconfigs/p/PLINK/PLINK-1.07-ictce-5.3.0.eb index 1c0a984949..5a77a49bf9 100644 --- a/easybuild/easyconfigs/p/PLINK/PLINK-1.07-ictce-5.3.0.eb +++ b/easybuild/easyconfigs/p/PLINK/PLINK-1.07-ictce-5.3.0.eb @@ -11,14 +11,14 @@ easyblock = 'MakeCp' name = 'PLINK' version = '1.07' -homepage = 'http://pngu.mgh.harvard.edu/~purcell/plink/' +homepage = 'http://zzz.bwh.harvard.edu/plink/' description = "plink-1.07-src: Whole-genome association analysis toolset" toolchain = {'name': 'ictce', 'version': '5.3.0'} toolchainopts = {'openmp': True} sources = ['%(namelower)s-%(version)s-src.zip'] -source_urls = ['http://pngu.mgh.harvard.edu/~purcell/plink/dist/'] +source_urls = ['http://zzz.bwh.harvard.edu/plink/dist/'] dependencies = [('zlib', '1.2.7')] diff --git a/easybuild/easyconfigs/p/PLINK/PLINK-1.07-ictce-6.2.5.eb b/easybuild/easyconfigs/p/PLINK/PLINK-1.07-ictce-6.2.5.eb index c6adbf0428..8f4e1d77e1 100644 --- a/easybuild/easyconfigs/p/PLINK/PLINK-1.07-ictce-6.2.5.eb +++ b/easybuild/easyconfigs/p/PLINK/PLINK-1.07-ictce-6.2.5.eb @@ -8,7 +8,7 @@ easyblock = 'MakeCp' name = 'PLINK' version = '1.07' -homepage = 'http://pngu.mgh.harvard.edu/~purcell/plink/' +homepage = 'http://zzz.bwh.harvard.edu/plink/' description = """ PLINK is a free, open-source whole genome association analysis toolset, designed to perform a range of basic, large-scale analyses in a computationally efficient manner. The focus of PLINK is purely on analysis of genotype/phenotype data, so there is no support for @@ -20,7 +20,7 @@ toolchain = {'name': 'ictce', 'version': '6.2.5'} toolchainopts = {'openmp': True} sources = ['%(namelower)s-%(version)s-src.zip'] -source_urls = ['http://pngu.mgh.harvard.edu/~purcell/plink/dist/'] +source_urls = ['http://zzz.bwh.harvard.edu/plink/dist/'] dependencies = [('zlib', '1.2.8')] -- GitLab From a94e3ea95cd8798022c02c3f88fea0ac74275d16 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Thu, 20 Jul 2017 15:30:42 -0500 Subject: [PATCH 482/608] style fix --- easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb index 9d9a1ef2eb..e10115f361 100644 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb @@ -24,8 +24,7 @@ toolchainopts = {'pic': True} # eg. http://www.sqlite.org/2017/sqlite-autoconf-3190300.tar.gz source_urls = ['http://www.sqlite.org/2017/'] -version_str = '%%(version_major)s%s00' % ''.join('%02d' % - int(x) for x in version.split('.')[1:]) +version_str = '%%(version_major)s%s00' % ''.join('%02d' % int(x) for x in version.split('.')[1:]) sources = ['sqlite-autoconf-%s.tar.gz' % version_str] checksums = ['06129c03dced9f87733a8cba408871bd60673b8f93b920ba8d815efab0a06301'] -- GitLab From fe6a3c30c2ce1d89566f02131620809e80725053 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Thu, 20 Jul 2017 16:34:22 -0500 Subject: [PATCH 483/608] Delete libsigsegv-2.11-GCC-6.4.0-2.28.eb going with GCCcore for now --- .../libsigsegv-2.11-GCC-6.4.0-2.28.eb | 24 ------------------- 1 file changed, 24 deletions(-) delete mode 100644 easybuild/easyconfigs/l/libsigsegv/libsigsegv-2.11-GCC-6.4.0-2.28.eb diff --git a/easybuild/easyconfigs/l/libsigsegv/libsigsegv-2.11-GCC-6.4.0-2.28.eb b/easybuild/easyconfigs/l/libsigsegv/libsigsegv-2.11-GCC-6.4.0-2.28.eb deleted file mode 100644 index 716653df4c..0000000000 --- a/easybuild/easyconfigs/l/libsigsegv/libsigsegv-2.11-GCC-6.4.0-2.28.eb +++ /dev/null @@ -1,24 +0,0 @@ -# Authors:: Jack Perdue - TAMU HPRC - http://hprc.tamu.edu - -easyblock = 'ConfigureMake' - -name = 'libsigsegv' -version = '2.11' - -homepage = 'https://www.gnu.org/software/libsigsegv/' - -description = """ - GNU libsigsegv is a library for handling page faults in user mode. -""" - -toolchain = {'name': 'GCC', 'version': '6.4.0-2.28'} - -source_urls = [GNU_SOURCE] -sources = [SOURCELOWER_TAR_GZ] - -sanity_check_paths = { - 'files': ['include/sigsegv.h', 'lib/libsigsegv.a', 'lib/libsigsegv.la'], - 'dirs': [], -} - -moduleclass = 'lib' -- GitLab From 5005f6ce03899b84b16a7cb0cd5c945548162ac2 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Thu, 20 Jul 2017 16:51:50 -0500 Subject: [PATCH 484/608] cleanup and checksum --- .../l/libsigsegv/libsigsegv-2.11-GCCcore-6.4.0.eb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/easybuild/easyconfigs/l/libsigsegv/libsigsegv-2.11-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/libsigsegv/libsigsegv-2.11-GCCcore-6.4.0.eb index 519b35b032..d65a11de5b 100644 --- a/easybuild/easyconfigs/l/libsigsegv/libsigsegv-2.11-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/l/libsigsegv/libsigsegv-2.11-GCCcore-6.4.0.eb @@ -7,14 +7,14 @@ version = '2.11' homepage = 'https://www.gnu.org/software/libsigsegv/' -description = """ - GNU libsigsegv is a library for handling page faults in user mode. -""" +description = "GNU libsigsegv is a library for handling page faults in user mode." toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} source_urls = [GNU_SOURCE] sources = [SOURCELOWER_TAR_GZ] +checksums = ['dd7c2eb2ef6c47189406d562c1dc0f96f2fc808036834d596075d58377e37a18'] builddependencies = [ ('binutils', '2.28'), -- GitLab From 77fbf8e39cf718bd3a2a3612812a8e64c9784911 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Fri, 21 Jul 2017 06:58:25 -0500 Subject: [PATCH 485/608] adding easyconfigs: BEDTools-2.26.0-GCCcore-6.4.0.eb --- .../BEDTools/BEDTools-2.26.0-GCCcore-6.4.0.eb | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 easybuild/easyconfigs/b/BEDTools/BEDTools-2.26.0-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/b/BEDTools/BEDTools-2.26.0-GCCcore-6.4.0.eb b/easybuild/easyconfigs/b/BEDTools/BEDTools-2.26.0-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..13cda05cc9 --- /dev/null +++ b/easybuild/easyconfigs/b/BEDTools/BEDTools-2.26.0-GCCcore-6.4.0.eb @@ -0,0 +1,39 @@ +# Author: Maxime Schmitt, University of Luxembourg +# Author: Adam Huffman, The Francis Crick Institute +# +# Based on the work of: Pablo Escobar Lopez +# Swiss Institute of Bioinformatics (SIB) +# Biozentrum - University of Basel + +easyblock = 'MakeCp' + +name = 'BEDTools' +version = '2.26.0' + +homepage = "https://github.com/arq5x/bedtools2" + +description = """ + The BEDTools utilities allow one to address common genomics tasks such as + finding feature overlaps and computing coverage. The utilities are largely + based on four widely-used file formats: BED, GFF/GTF, VCF, and SAM/BAM. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = ['https://github.com/arq5x/bedtools2/releases/download/v%(version)s/'] +sources = ['bedtools-%(version)s.tar.gz'] +checksums = ['65f32f32cbf1b91ba42854b40c604aa6a16c7d3b3ec110d6acf438eb22df0a4a'] + +builddependencies = [ + ('binutils', '2.28'), +] + +files_to_copy = ["bin", "docs", "data", "genomes", "scripts", "test"] + +sanity_check_paths = { + 'dirs': files_to_copy, + 'files': ['bin/%s' % x for x in + ['bedtools', 'pairToBed', 'mergeBed', 'bedToBam', 'fastaFromBed']], +} + +moduleclass = 'bio' -- GitLab From 2556099b3b4383a2b3a701191be143366e8b40c5 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Fri, 21 Jul 2017 07:11:26 -0500 Subject: [PATCH 486/608] adding easyconfigs: Blitz++-0.10-GCCcore-6.4.0.eb --- .../b/Blitz++/Blitz++-0.10-GCCcore-6.4.0.eb | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 easybuild/easyconfigs/b/Blitz++/Blitz++-0.10-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/b/Blitz++/Blitz++-0.10-GCCcore-6.4.0.eb b/easybuild/easyconfigs/b/Blitz++/Blitz++-0.10-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..7789563ca5 --- /dev/null +++ b/easybuild/easyconfigs/b/Blitz++/Blitz++-0.10-GCCcore-6.4.0.eb @@ -0,0 +1,33 @@ +easyblock = 'ConfigureMake' + +name = 'Blitz++' +version = '0.10' + +homepage = 'http://blitz.sourceforge.net/' + +description = """ + Blitz++ is a (LGPLv3+) licensed meta-template library for array manipulation + in C++ with a speed comparable to Fortran implementations, while preserving an + object-oriented interface +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = [('https://sourceforge.net/projects/blitz/files/blitz/%(name)s %(version)s', 'download')] +sources = ['blitz-%(version)s.tar.gz'] +checksums = ['804ef0e6911d43642a2ea1894e47c6007e4c185c866a7d68bad1e4c8ac4e6f94'] + +builddependencies = [ + ('binutils', '2.28'), +] + +configopts = '--enable-shared' + +sanity_check_paths = { + 'files': ['lib/libblitz.a'], + 'dirs': ['include/blitz/array', 'include/blitz/gnu', 'include/blitz/meta', + 'include/random', 'lib/pkgconfig'], +} + +moduleclass = 'lib' -- GitLab From 73f4b1698f0ef494a8e7d4139408a42a4d9471eb Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Fri, 21 Jul 2017 07:55:53 -0500 Subject: [PATCH 487/608] adding easyconfigs: CLISP-2.49-GCCcore-6.4.0.eb --- .../c/CLISP/CLISP-2.49-GCCcore-6.4.0.eb | 51 +++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 easybuild/easyconfigs/c/CLISP/CLISP-2.49-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/c/CLISP/CLISP-2.49-GCCcore-6.4.0.eb b/easybuild/easyconfigs/c/CLISP/CLISP-2.49-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..d9d3d1bf33 --- /dev/null +++ b/easybuild/easyconfigs/c/CLISP/CLISP-2.49-GCCcore-6.4.0.eb @@ -0,0 +1,51 @@ +# Authors:: Jack Perdue - TAMU HPRC - http://hprc.tamu.edu + +easyblock = 'ConfigureMake' + +name = 'CLISP' +version = '2.49' + +homepage = 'http://www.clisp.org/' + +description = """ + Common Lisp is a high-level, general-purpose, object-oriented, dynamic, + functional programming language. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = [GNU_SOURCE] +sources = [SOURCELOWER_TAR_BZ2] +checksums = ['8132ff353afaa70e6b19367a25ae3d5a43627279c25647c220641fed00f8e890'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('DB', '6.2.32'), + ('libffcall', '1.13'), + ('libreadline', '7.0'), + ('libsigsegv', '2.11'), + ('PCRE', '8.41'), + ('zlib', '1.2.11'), +] + +prebuildopts = """ + sed -e 's/ac_cv_have_decl_rl_readline_state" = x""yes/ac_cv_have_decl_rl_readline_state" = x""JKP/'\ + -i.eb modules/readline/configure + cd src +""" + +preinstallopts = """ + cd src +""" + +parallel = 1 + +sanity_check_paths = { + 'files': ['bin/clisp', 'lib/%(namelower)s-%(version)s/base/lisp.a'], + 'dirs': ['share/aclocal', 'share/doc'], +} + +moduleclass = 'lang' -- GitLab From b59b726b6b27d71570aaecd9fe0acb822dbf219e Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Fri, 21 Jul 2017 08:25:41 -0500 Subject: [PATCH 488/608] adding easyconfigs: DBus-1.10.20-GCCcore-6.4.0.eb --- .../d/DBus/DBus-1.10.20-GCCcore-6.4.0.eb | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 easybuild/easyconfigs/d/DBus/DBus-1.10.20-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/d/DBus/DBus-1.10.20-GCCcore-6.4.0.eb b/easybuild/easyconfigs/d/DBus/DBus-1.10.20-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..99bd5ca7ab --- /dev/null +++ b/easybuild/easyconfigs/d/DBus/DBus-1.10.20-GCCcore-6.4.0.eb @@ -0,0 +1,39 @@ +easyblock = 'ConfigureMake' + +name = 'DBus' +version = '1.10.20' + +homepage = 'http://dbus.freedesktop.org/' + +description = """ + D-Bus is a message bus system, a simple way for applications to talk + to one another. In addition to interprocess communication, D-Bus helps + coordinate process lifecycle; it makes it simple and reliable to code + a "single instance" application or daemon, and to launch applications + and daemons on demand when their services are needed. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = ['http://dbus.freedesktop.org/releases/dbus'] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['e574b9780b5425fde4d973bb596e7ea0f09e00fe2edd662da9016e976c460b48'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('expat', '2.2.1'), +] + +sanity_check_paths = { + 'files': ['bin/dbus-%s' % x for x in + ['cleanup-sockets', 'daemon', 'launch', 'monitor', + 'run-session', 'send', 'uuidgen']] + + ['lib/libdbus-1.%s' % x for x in ['a', SHLIB_EXT]], + 'dirs': ['include', 'share'], +} + +moduleclass = 'devel' -- GitLab From 3ee3c867b399e7ae583f18793ab106c792d2a449 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Fri, 21 Jul 2017 08:36:06 -0500 Subject: [PATCH 489/608] adding easyconfigs: Eigen-3.3.4-GCCcore-6.4.0.eb --- .../e/Eigen/Eigen-3.3.4-GCCcore-6.4.0.eb | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 easybuild/easyconfigs/e/Eigen/Eigen-3.3.4-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/e/Eigen/Eigen-3.3.4-GCCcore-6.4.0.eb b/easybuild/easyconfigs/e/Eigen/Eigen-3.3.4-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..7fd77a3b5e --- /dev/null +++ b/easybuild/easyconfigs/e/Eigen/Eigen-3.3.4-GCCcore-6.4.0.eb @@ -0,0 +1,33 @@ +name = 'Eigen' +version = '3.3.4' + +homepage = 'http://eigen.tuxfamily.org/index.php?title=Main_Page' + +description = """ + Eigen is a C++ template library for linear algebra: + matrices, vectors, numerical solvers, and related algorithms. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = ['http://bitbucket.org/%(namelower)s/%(namelower)s/get'] +sources = ['%(version)s.tar.bz2'] +checksums = ['dd254beb0bafc695d0f62ae1a222ff85b52dbaa3a16f76e781dce22d0d20a4a6'] + +# both in Eigen 2.x an 3.x +include_files = ['Cholesky', 'Core', 'Dense', 'Eigen', 'Geometry', 'LU', + 'QR', 'QtAlignedMalloc', 'SVD', 'Sparse', 'StdVector'] + +# only 3.x +include_files.extend(['CholmodSupport', 'Eigenvalues', 'Householder', + 'IterativeLinearSolvers', 'Jacobi', 'OrderingMethods', + 'PaStiXSupport', 'PardisoSupport', 'SparseCholesky', + 'SparseCore', 'StdDeque', 'StdList', + 'SuperLUSupport', 'UmfPackSupport']) + +sanity_check_paths = { + 'files': ['include/Eigen/%s' % x for x in include_files], + 'dirs': ['include'], +} + +moduleclass = 'math' -- GitLab From 8a4309a6151f85c12881d7649541e4b79a066066 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Fri, 21 Jul 2017 08:49:32 -0500 Subject: [PATCH 490/608] adding easyconfigs: gperf-3.1-GCCcore-6.4.0.eb --- .../g/gperf/gperf-3.1-GCCcore-6.4.0.eb | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 easybuild/easyconfigs/g/gperf/gperf-3.1-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/g/gperf/gperf-3.1-GCCcore-6.4.0.eb b/easybuild/easyconfigs/g/gperf/gperf-3.1-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..6dd680f7e4 --- /dev/null +++ b/easybuild/easyconfigs/g/gperf/gperf-3.1-GCCcore-6.4.0.eb @@ -0,0 +1,31 @@ +easyblock = 'ConfigureMake' + +name = 'gperf' +version = '3.1' + +homepage = 'http://www.gnu.org/software/gperf/' + +description = """ + GNU gperf is a perfect hash function generator. For a given list of strings, + it produces a hash function and hash table, in form of C or C++ code, for + looking up a value depending on the input string. The hash function is + perfect, which means that the hash table has no collisions, and the hash + table lookup needs a single string comparison only. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = [GNU_SOURCE] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['588546b945bba4b70b6a3a616e80b4ab466e3f33024a352fc2198112cdbb3ae2'] + +builddependencies = [ + ('binutils', '2.28'), +] + +sanity_check_paths = { + 'files': ['bin/gperf'], + 'dirs': [] +} + +moduleclass = 'devel' -- GitLab From 7d8f23154e056e5585b1b43dd402b0d4fa9464b4 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Fri, 21 Jul 2017 09:08:10 -0500 Subject: [PATCH 491/608] adding easyconfigs: libunistring-0.9.7-GCCcore-6.4.0.eb --- .../libunistring-0.9.7-GCCcore-6.4.0.eb | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 easybuild/easyconfigs/l/libunistring/libunistring-0.9.7-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/l/libunistring/libunistring-0.9.7-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/libunistring/libunistring-0.9.7-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..8d845c9877 --- /dev/null +++ b/easybuild/easyconfigs/l/libunistring/libunistring-0.9.7-GCCcore-6.4.0.eb @@ -0,0 +1,33 @@ +easyblock = 'ConfigureMake' + +name = 'libunistring' +version = '0.9.7' + +homepage = 'http://www.gnu.org/software/libunistring/' + +description = """ + This library provides functions for manipulating Unicode strings and for + manipulating C strings according to the Unicode standard. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +sources = [SOURCELOWER_TAR_XZ] +source_urls = [GNU_SOURCE] +checksums = ['2e3764512aaf2ce598af5a38818c0ea23dedf1ff5460070d1b6cee5c3336e797'] + +builddependencies = [ + ('binutils', '2.28'), +] + +parallel = 1 + +sanity_check_paths = { + 'files': ['lib/libunistring.a', 'lib/libunistring.%s' % SHLIB_EXT] + + ['include/uni%s.h' % x for x in ['case', 'conv', 'ctype', 'lbrk', 'name', 'norm', + 'stdio', 'str', 'types', 'wbrk', 'width']], + 'dirs': ['include/unistring'], +} + +moduleclass = 'lib' -- GitLab From 5dc3a28322e7f90edfd1909590812913106be11b Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Fri, 21 Jul 2017 09:35:18 -0500 Subject: [PATCH 492/608] adding easyconfigs: Guile-2.2.2-GCCcore-6.4.0.eb --- .../g/Guile/Guile-2.2.2-GCCcore-6.4.0.eb | 43 +++++++++++++++++++ .../l/libffi/libffi-3.2.1-GCCcore-6.4.0.eb | 34 +++++++++++++++ .../libunistring-0.9.7-GCCcore-6.4.0.eb | 33 ++++++++++++++ 3 files changed, 110 insertions(+) create mode 100644 easybuild/easyconfigs/g/Guile/Guile-2.2.2-GCCcore-6.4.0.eb create mode 100644 easybuild/easyconfigs/l/libffi/libffi-3.2.1-GCCcore-6.4.0.eb create mode 100644 easybuild/easyconfigs/l/libunistring/libunistring-0.9.7-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/g/Guile/Guile-2.2.2-GCCcore-6.4.0.eb b/easybuild/easyconfigs/g/Guile/Guile-2.2.2-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..395d150d5b --- /dev/null +++ b/easybuild/easyconfigs/g/Guile/Guile-2.2.2-GCCcore-6.4.0.eb @@ -0,0 +1,43 @@ +easyblock = 'ConfigureMake' + +name = 'Guile' +version = '2.2.2' + +homepage = 'https://www.gnu.org/software/guile/' + +description = """ + Guile is a programming language, designed to help programmers create flexible + applications that can be extended by users or other programmers with plug-ins, + modules, or scripts. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = [GNU_SOURCE] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['3d9b94183b19f04dd4317da87beedafd1c947142f3d861ca1f0224e7a75127ee'] + +builddependencies = [ + ('Autotools', '20170619'), + ('binutils', '2.28'), +] + +dependencies = [ + ('gc', '7.6.0'), + ('GMP', '6.1.2'), + ('libffi', '3.2.1'), + ('libunistring', '0.9.7'), +] + +sanity_check_paths = { + 'files': ['bin/guild', 'bin/guile', 'bin/guile-config', + 'bin/guile-snarf', 'bin/guile-tools', + 'include/guile/%(version_major_minor)s/libguile.h', + 'lib/libguile-%(version_major_minor)s.a', + 'lib/libguile-%%(version_major_minor)s.%s' % SHLIB_EXT], + 'dirs': ['include/guile/%(version_major_minor)s/libguile', + 'lib/guile/%(version_major_minor)s/ccache'], +} + +moduleclass = 'lang' diff --git a/easybuild/easyconfigs/l/libffi/libffi-3.2.1-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/libffi/libffi-3.2.1-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..35fa02052a --- /dev/null +++ b/easybuild/easyconfigs/l/libffi/libffi-3.2.1-GCCcore-6.4.0.eb @@ -0,0 +1,34 @@ +easyblock = 'ConfigureMake' + +name = 'libffi' +version = '3.2.1' + +homepage = 'http://sourceware.org/libffi/' + +description = """ + The libffi library provides a portable, high level programming interface to + various calling conventions. This allows a programmer to call any function + specified by a call interface description at run-time. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = [ + 'ftp://sourceware.org/pub/libffi/', + 'http://www.mirrorservice.org/sites/sourceware.org/pub/libffi/', +] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['d06ebb8e1d9a22d19e38d63fdb83954253f39bedc5d46232a05645685722ca37'] + +builddependencies = [ + ('binutils', '2.28'), +] + +sanity_check_paths = { + 'files': [('lib/libffi.%s' % SHLIB_EXT, 'lib64/libffi.%s' % SHLIB_EXT), + ('lib/libffi.a', 'lib64/libffi.a')], + 'dirs': ['lib', 'lib64'], +} + +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/l/libunistring/libunistring-0.9.7-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/libunistring/libunistring-0.9.7-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..8d845c9877 --- /dev/null +++ b/easybuild/easyconfigs/l/libunistring/libunistring-0.9.7-GCCcore-6.4.0.eb @@ -0,0 +1,33 @@ +easyblock = 'ConfigureMake' + +name = 'libunistring' +version = '0.9.7' + +homepage = 'http://www.gnu.org/software/libunistring/' + +description = """ + This library provides functions for manipulating Unicode strings and for + manipulating C strings according to the Unicode standard. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +sources = [SOURCELOWER_TAR_XZ] +source_urls = [GNU_SOURCE] +checksums = ['2e3764512aaf2ce598af5a38818c0ea23dedf1ff5460070d1b6cee5c3336e797'] + +builddependencies = [ + ('binutils', '2.28'), +] + +parallel = 1 + +sanity_check_paths = { + 'files': ['lib/libunistring.a', 'lib/libunistring.%s' % SHLIB_EXT] + + ['include/uni%s.h' % x for x in ['case', 'conv', 'ctype', 'lbrk', 'name', 'norm', + 'stdio', 'str', 'types', 'wbrk', 'width']], + 'dirs': ['include/unistring'], +} + +moduleclass = 'lib' -- GitLab From 6ad085d0cb5eb1dd485902f1e4f5f5cd54cf6412 Mon Sep 17 00:00:00 2001 From: jrbosch Date: Fri, 21 Jul 2017 11:26:56 -0400 Subject: [PATCH 493/608] add GROMACS easyconfig with GPU enabled and foss 2016b toolchain --- ...ACS-2016.3-foss-2016b-GPU-enabled-build.eb | 45 +++++++++++++++++++ ...ACS-2016.3_amend_search_for_nvml_lib.patch | 2 +- 2 files changed, 46 insertions(+), 1 deletion(-) create mode 100644 easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-foss-2016b-GPU-enabled-build.eb diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-foss-2016b-GPU-enabled-build.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-foss-2016b-GPU-enabled-build.eb new file mode 100644 index 0000000000..7d8210d268 --- /dev/null +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-foss-2016b-GPU-enabled-build.eb @@ -0,0 +1,45 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild +# +# Copyright:: Copyright 2012-2016 University of Luxembourg / LCSB, Cyprus Institute / CaSToRC, +# Ghent University / The Francis Crick Institute +# Authors:: +# * Wiktor Jurkowski +# * Fotis Georgatos +# * George Tsouloupas +# * Kenneth Hoste +# * Adam Huffman +# License:: MIT/GPL +## + +name = 'GROMACS' +version = '2016.3' +versionsuffix = '-GPU-enabled-build' + +homepage = 'http://www.gromacs.org' +description = """ +GROMACS is a versatile package to perform molecular dynamics, + i.e. simulate the Newtonian equations of motion for systems with hundreds to millions of particles. + +This is a GPU enabled build, containing both MPI and threadMPI builds. +""" + +toolchain = {'name': 'foss', 'version': '2016b'} +toolchainopts = {'openmp': True, 'usempi': True} + +source_urls = ['ftp://ftp.gromacs.org/pub/gromacs/'] +sources = [SOURCELOWER_TAR_GZ] + +patches = [ + 'GROMACS-%(version)s_amend_search_for_nvml_lib.patch', +] + +dependencies = [ + ('CUDA', '8.0.61_375.26'), +] + +builddependencies = [ + ('CMake', '3.7.2'), +] + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3_amend_search_for_nvml_lib.patch b/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3_amend_search_for_nvml_lib.patch index 8ae9027f34..b30455aecc 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3_amend_search_for_nvml_lib.patch +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3_amend_search_for_nvml_lib.patch @@ -8,7 +8,7 @@ diff -ru gromacs-2016.orig/cmake/FindNVML.cmake gromacs-2016/cmake/FindNVML.cmak # passed to the installer, or the root where they later found the # kit to be installed. Below, we cater for both possibilities. - set( NVML_LIB_PATHS /usr/lib64 ) -+ set( NVML_LIB_PATHS /usr/lib64 /usr/lib/nvidia-367 /usr/lib/nvidia-375) ++ set( NVML_LIB_PATHS /usr/lib64 /usr/lib64/nvidia /usr/lib/nvidia-367 /usr/lib/nvidia-375) if(GPU_DEPLOYMENT_KIT_ROOT_DIR) list(APPEND NVML_LIB_PATHS "${GPU_DEPLOYMENT_KIT_ROOT_DIR}/src/gdk/nvml/lib" -- GitLab From d7d3f98ef76a5048ec1c04b5deecc17585f26b73 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Fri, 21 Jul 2017 11:12:11 -0500 Subject: [PATCH 494/608] adding easyconfigs: pkg-config-0.29.2-GCCcore-6.4.0.eb --- .../pkg-config-0.29.2-GCCcore-6.4.0.eb | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 easybuild/easyconfigs/p/pkg-config/pkg-config-0.29.2-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/p/pkg-config/pkg-config-0.29.2-GCCcore-6.4.0.eb b/easybuild/easyconfigs/p/pkg-config/pkg-config-0.29.2-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..c02bedf48d --- /dev/null +++ b/easybuild/easyconfigs/p/pkg-config/pkg-config-0.29.2-GCCcore-6.4.0.eb @@ -0,0 +1,36 @@ +easyblock = 'ConfigureMake' + +name = 'pkg-config' +version = '0.29.2' + +homepage = 'http://www.freedesktop.org/wiki/Software/pkg-config/' + +description = """ + pkg-config is a helper tool used when compiling applications and libraries. + It helps you insert the correct compiler options on the command line so an + application can use gcc -o test test.c `pkg-config --libs --cflags glib-2.0` + for instance, rather than hard-coding values on where to find glib (or other + libraries). +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = ['https://pkg-config.freedesktop.org/releases/'] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['6fc69c01688c9458a57eb9a1664c9aba372ccda420a02bf4429fe610e7e7d591'] + +builddependencies = [ + ('binutils', '2.28'), +] + +# don't use PAX, it might break. +tar_config_opts = True + +configopts = " --with-internal-glib" + +sanity_check_paths = { + 'files': ['bin/pkg-config'], + 'dirs': [], +} + +moduleclass = 'devel' -- GitLab From 1491145f89ce6732bff600e8087173da71544eca Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Fri, 21 Jul 2017 11:13:04 -0500 Subject: [PATCH 495/608] adding easyconfigs: libcerf-1.5-GCCcore-6.4.0.eb --- .../l/libcerf/libcerf-1.5-GCCcore-6.4.0.eb | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 easybuild/easyconfigs/l/libcerf/libcerf-1.5-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/l/libcerf/libcerf-1.5-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/libcerf/libcerf-1.5-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..5489e38fa7 --- /dev/null +++ b/easybuild/easyconfigs/l/libcerf/libcerf-1.5-GCCcore-6.4.0.eb @@ -0,0 +1,35 @@ +easyblock = 'ConfigureMake' + +name = 'libcerf' +version = '1.5' + +homepage = 'http://apps.jcns.fz-juelich.de/doku/sc/libcerf' + +description = """ + libcerf is a self-contained numeric library that provides an efficient and + accurate implementation of complex error functions, along with Dawson, + Faddeeva, and Voigt functions. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = [ + 'http://apps.jcns.fz-juelich.de/src/libcerf/', + 'http://apps.jcns.fz-juelich.de/src/libcerf/old', +] +sources = [SOURCE_TGZ] +checksums = ['e36dc147e7fff81143074a21550c259b5aac1b99fc314fc0ae33294231ca5c86'] + +builddependencies = [ + ('Autotools', '20170619'), + ('binutils', '2.28'), + ('libtool', '2.4.6'), +] + +sanity_check_paths = { + 'files': ['lib/libcerf.%s' % SHLIB_EXT], + 'dirs': [] +} + +moduleclass = 'math' -- GitLab From dd7f25269b3caf75267bbc72b1f8c422a1bff436 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Fri, 21 Jul 2017 11:32:38 -0500 Subject: [PATCH 496/608] adding easyconfigs: libgd-2.2.4-GCCcore-6.4.0.eb --- .../l/libgd/libgd-2.2.4-GCCcore-6.4.0.eb | 33 +++++++++++++++ .../libjpeg-turbo-1.5.2-GCCcore-6.4.0.eb | 41 +++++++++++++++++++ 2 files changed, 74 insertions(+) create mode 100644 easybuild/easyconfigs/l/libgd/libgd-2.2.4-GCCcore-6.4.0.eb create mode 100644 easybuild/easyconfigs/l/libjpeg-turbo/libjpeg-turbo-1.5.2-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/l/libgd/libgd-2.2.4-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/libgd/libgd-2.2.4-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..463baf18d2 --- /dev/null +++ b/easybuild/easyconfigs/l/libgd/libgd-2.2.4-GCCcore-6.4.0.eb @@ -0,0 +1,33 @@ +easyblock = 'ConfigureMake' + +name = 'libgd' +version = '2.2.4' + +homepage = 'https://libgd.github.io/' + +description = "GD is an open source code library for the dynamic creation of images by programmers." + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = ['https://github.com/libgd/libgd/releases/download/gd-%(version)s/'] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['487a650aa614217ed08ab1bd1aa5d282f9d379cfd95c756aed0b43406381be65'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('fontconfig', '2.12.1'), + ('libjpeg-turbo', '1.5.2'), + ('libpng', '1.6.30'), + ('zlib', '1.2.11'), +] + +sanity_check_paths = { + 'files': ["lib/libgd.a", "lib/libgd.%s" % SHLIB_EXT], + 'dirs': ["bin", "include"], +} + +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/l/libjpeg-turbo/libjpeg-turbo-1.5.2-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/libjpeg-turbo/libjpeg-turbo-1.5.2-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..8d3ce16df6 --- /dev/null +++ b/easybuild/easyconfigs/l/libjpeg-turbo/libjpeg-turbo-1.5.2-GCCcore-6.4.0.eb @@ -0,0 +1,41 @@ +easyblock = 'ConfigureMake' + +name = 'libjpeg-turbo' +version = '1.5.2' + +homepage = 'http://sourceforge.net/projects/libjpeg-turbo/' + +description = """ + libjpeg-turbo is a fork of the original IJG libjpeg which uses SIMD to + accelerate baseline JPEG compression and decompression. libjpeg is a library + that implements JPEG image encoding, decoding and transcoding. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = [SOURCEFORGE_SOURCE] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['9098943b270388727ae61de82adec73cf9f0dbb240b3bc8b172595ebf405b528'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('NASM', '2.13.01'), +] + +configopts = "--with-jpeg8" + +runtest = "test" + +sanity_check_paths = { + 'files': ['bin/cjpeg', 'bin/djpeg', 'bin/jpegtran', 'bin/rdjpgcom', + 'bin/tjbench', 'bin/wrjpgcom', 'lib/libjpeg.a', + 'lib/libjpeg.%s' % SHLIB_EXT, 'lib/libturbojpeg.a', + 'lib/libturbojpeg.%s' % SHLIB_EXT], + 'dirs': ['include', 'share'], +} + +moduleclass = 'lib' -- GitLab From adeb9bb2a9cd6918c1f206e42311825bf4a8a756 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Fri, 21 Jul 2017 12:44:20 -0500 Subject: [PATCH 497/608] adding easyconfigs: OpenPGM-5.2.122-GCCcore-6.4.0.eb --- .../OpenPGM/OpenPGM-5.2.122-GCCcore-6.4.0.eb | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 easybuild/easyconfigs/o/OpenPGM/OpenPGM-5.2.122-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/o/OpenPGM/OpenPGM-5.2.122-GCCcore-6.4.0.eb b/easybuild/easyconfigs/o/OpenPGM/OpenPGM-5.2.122-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..88a05b260e --- /dev/null +++ b/easybuild/easyconfigs/o/OpenPGM/OpenPGM-5.2.122-GCCcore-6.4.0.eb @@ -0,0 +1,36 @@ +easyblock = 'ConfigureMake' + +name = 'OpenPGM' +version = '5.2.122' + +homepage = 'http://code.google.com/p/openpgm/' + +description = """ + OpenPGM is an open source implementation of the Pragmatic General Multicast + (PGM) specification in RFC 3208 available at www.ietf.org. PGM is a reliable + and scalable multicast protocol that enables receivers to detect loss, request + retransmission of lost data, or notify an application of unrecoverable loss. + PGM is a receiver-reliable protocol, which means the receiver is responsible + for ensuring all data is received, absolving the sender of reception + responsibility. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = ['https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/openpgm/'] +sources = ['libpgm-%(version)s.tar.gz'] +checksums = ['6b895f550b95284dcde7189b01e04a9a1c1f94579af31b1eebd32c2207a1ba2c'] + +builddependencies = [ + ('binutils', '2.28'), +] + +start_dir = 'pgm' + +sanity_check_paths = { + 'files': ['lib/libpgm.%s' % SHLIB_EXT, 'lib/libpgm.a'], + 'dirs': ['include'], +} + +moduleclass = 'system' -- GitLab From 217f8e695bd496e581899383550b95d5585a4ec6 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Fri, 21 Jul 2017 13:01:29 -0500 Subject: [PATCH 498/608] adding easyconfigs: util-linux-2.30-GCCcore-6.4.0.eb --- .../util-linux-2.30-GCCcore-6.4.0.eb | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 easybuild/easyconfigs/u/util-linux/util-linux-2.30-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/u/util-linux/util-linux-2.30-GCCcore-6.4.0.eb b/easybuild/easyconfigs/u/util-linux/util-linux-2.30-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..3556edda8d --- /dev/null +++ b/easybuild/easyconfigs/u/util-linux/util-linux-2.30-GCCcore-6.4.0.eb @@ -0,0 +1,42 @@ +easyblock = 'ConfigureMake' + +name = 'util-linux' +version = '2.30' + +homepage = 'http://www.kernel.org/pub/linux/utils/util-linux' + +description = "Set of Linux utilities" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = ['%s/v%%(version_major_minor)s' % homepage] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['e84cc32566abf28b84efb5ee326e1f3597c3d19b9916740f50c75bd57e498ce0'] + +# disable account related utilities (they need OS dependant pam-devel files) +# disable wall and friends (requires group changing permissions for install user) +# install systemd service files in install dir +# install bash completion files in install dir +configopts = "--disable-chfn-chsh --disable-login --disable-su " +configopts += "--disable-wall --disable-use-tty-group " +configopts += "--disable-makeinstall-chown --disable-makeinstall-setuid " +configopts += "--with-systemdsystemunitdir='${prefix}/systemd' " +configopts += "--with-bashcompletiondir='${prefix}/share/bash-completion/completions' " +# disable building Python bindings (since we don't include Python as a dep) +configopts += "--without-python " + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('ncurses', '6.0'), +] + +sanity_check_paths = { + 'files': ['lib/lib%s.a' % x for x in ['blkid', 'mount', 'uuid']], + 'dirs': ['include', 'bin', 'share', 'sbin'], +} + +moduleclass = 'tools' -- GitLab From 592668fa98063559f9089f1ef2a832a410bb0472 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sat, 22 Jul 2017 06:22:27 -0500 Subject: [PATCH 499/608] adding easyconfigs: x264-20170721-GCCcore-6.4.0.eb --- .../x/x264/x264-20170721-GCCcore-6.4.0.eb | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 easybuild/easyconfigs/x/x264/x264-20170721-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/x/x264/x264-20170721-GCCcore-6.4.0.eb b/easybuild/easyconfigs/x/x264/x264-20170721-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..073bcb840c --- /dev/null +++ b/easybuild/easyconfigs/x/x264/x264-20170721-GCCcore-6.4.0.eb @@ -0,0 +1,40 @@ +easyblock = 'ConfigureMake' + +name = 'x264' +version = '20170721' + +homepage = 'http://www.videolan.org/developers/x264.html' + +description = """ + x264 is a free software library and application for encoding video streams + into the H.264/MPEG-4 AVC compression format, and is released under the + terms of the GNU GPL. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = [ + 'https://download.videolan.org/pub/videolan/x264/snapshots/', + 'ftp://ftp.videolan.org/pub/videolan/x264/snapshots/', +] +sources = ['x264-snapshot-%(version)s-2245-stable.tar.bz2'] +checksums = ['1459f7b6683c90eafd9d7bf623a574968a94814cdf4b2fb57c0f73bf414d2c8d'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('Yasm', '1.3.0'), +] + +configopts = " --enable-shared --enable-static" + +sanity_check_paths = { + 'files': ['bin/x264', 'include/x264_config.h', 'include/x264.h', + 'lib/libx264.a', 'lib/libx264.%s' % SHLIB_EXT], + 'dirs': [], +} + +moduleclass = 'vis' -- GitLab From d8aa6264c758a46dbd3e383ac01a0746afcb70fb Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sat, 22 Jul 2017 06:36:30 -0500 Subject: [PATCH 500/608] adding easyconfigs: Xerces-C++-3.1.4-GCCcore-6.4.0.eb --- .../Xerces-C++-3.1.4-GCCcore-6.4.0.eb | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 easybuild/easyconfigs/x/Xerces-C++/Xerces-C++-3.1.4-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/x/Xerces-C++/Xerces-C++-3.1.4-GCCcore-6.4.0.eb b/easybuild/easyconfigs/x/Xerces-C++/Xerces-C++-3.1.4-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..3832c17c46 --- /dev/null +++ b/easybuild/easyconfigs/x/Xerces-C++/Xerces-C++-3.1.4-GCCcore-6.4.0.eb @@ -0,0 +1,35 @@ +easyblock = 'ConfigureMake' + +name = 'Xerces-C++' +version = '3.1.4' + +homepage = 'http://xerces.apache.org/xerces-c/' + +description = """ + Xerces-C++ is a validating XML parser written in a portable subset of C++. + Xerces-C++ makes it easy to give your application the ability to read and + write XML data. A shared library is provided for parsing, generating, + manipulating, and validating XML documents using the DOM, SAX, and SAX2 + APIs. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = ['http://archive.apache.org/dist/xerces/c/%(version_major)s/sources/'] +sources = ['xerces-c-%(version)s.tar.gz'] +checksums = ['c98eedac4cf8a73b09366ad349cb3ef30640e7a3089d360d40a3dde93f66ecf6'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('cURL', '7.54.1'), +] + +sanity_check_paths = { + 'files': ['bin/XInclude', 'lib/libxerces-c.%s' % SHLIB_EXT], + 'dirs': ['include/xercesc/xinclude'], +} + +moduleclass = 'lib' -- GitLab From fab9fae15011bfe8f957612c7a578ba9e8187e33 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sat, 22 Jul 2017 06:50:55 -0500 Subject: [PATCH 501/608] adding easyconfigs: StringTie-1.3.3-GCCcore-6.4.0.eb --- .../StringTie-1.3.3-GCCcore-6.4.0.eb | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 easybuild/easyconfigs/s/StringTie/StringTie-1.3.3-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/s/StringTie/StringTie-1.3.3-GCCcore-6.4.0.eb b/easybuild/easyconfigs/s/StringTie/StringTie-1.3.3-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..4af7c0ed99 --- /dev/null +++ b/easybuild/easyconfigs/s/StringTie/StringTie-1.3.3-GCCcore-6.4.0.eb @@ -0,0 +1,35 @@ +# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# Author: Pablo Escobar Lopez +# sciCORE - University of Basel +# SIB Swiss Institute of Bioinformatics + +easyblock = 'MakeCp' + +name = 'StringTie' +version = '1.3.3' + +homepage = 'http://ccb.jhu.edu/software/stringtie/' + +description = """ + StringTie is a fast and highly efficient assembler of RNA-Seq alignments + into potential transcripts. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = ['http://ccb.jhu.edu/software/stringtie/dl/'] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['c01b16a681dc55f114dbfc2fcd725f615b2d9a79058ff8c110047cfa9cbe2976'] + +builddependencies = [ + ('binutils', '2.28'), +] + +files_to_copy = [(['stringtie'], 'bin'), 'README', 'LICENSE'] + +sanity_check_paths = { + 'files': ['bin/stringtie'], + 'dirs': [], +} + +moduleclass = 'bio' -- GitLab From d337a8b2274e4c37032c27356e39ca02facdac7c Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sat, 22 Jul 2017 07:17:27 -0500 Subject: [PATCH 502/608] adding easyconfigs: Qhull-2015.2-GCCcore-6.4.0.eb --- .../q/Qhull/Qhull-2015.2-GCCcore-6.4.0.eb | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 easybuild/easyconfigs/q/Qhull/Qhull-2015.2-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/q/Qhull/Qhull-2015.2-GCCcore-6.4.0.eb b/easybuild/easyconfigs/q/Qhull/Qhull-2015.2-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..9734e3543a --- /dev/null +++ b/easybuild/easyconfigs/q/Qhull/Qhull-2015.2-GCCcore-6.4.0.eb @@ -0,0 +1,45 @@ +easyblock = 'CMakeMake' + +name = 'Qhull' +version = '2015.2' + +homepage = 'http://www.qhull.org' + +description = """ + Qhull computes the convex hull, Delaunay triangulation, Voronoi diagram, + halfspace intersection about a point, furthest-site Delaunay triangulation, + and furthest-site Voronoi diagram. The source code runs in 2-d, 3-d, 4-d, and + higher dimensions. Qhull implements the Quickhull algorithm for computing the + convex hull. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = ['http://www.qhull.org/download/'] +sources = ['%(namelower)s-%(version_major)s-src-7.%(version_minor)s.0.tgz'] +checksums = ['78b010925c3b577adc3d58278787d7df08f7c8fb02c3490e375eab91bb58a436'] + +patches = [ + 'Qhull-%(version)s-intel-fix.patch', + 'Qhull_pkgconfig.patch', +] + +builddependencies = [ + ('binutils', '2.28'), + ('CMake', '3.8.2'), +] + +sanity_check_paths = { + 'files': ['bin/qhull', 'lib/libqhull.%s' % SHLIB_EXT, + 'lib/pkgconfig/qhull.pc'], + 'dirs': [], +} + +modextrapaths = { + 'CPATH': ['qhull/include'], +} + +parallel = 1 + +moduleclass = 'math' -- GitLab From 41a89ae9d2873dadfe5f3d680ec059255f2d1ce0 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sat, 22 Jul 2017 07:30:16 -0500 Subject: [PATCH 503/608] fix EB URL --- .../easyconfigs/s/StringTie/StringTie-1.3.3-GCCcore-6.4.0.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/s/StringTie/StringTie-1.3.3-GCCcore-6.4.0.eb b/easybuild/easyconfigs/s/StringTie/StringTie-1.3.3-GCCcore-6.4.0.eb index 4af7c0ed99..8347d427b4 100644 --- a/easybuild/easyconfigs/s/StringTie/StringTie-1.3.3-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/s/StringTie/StringTie-1.3.3-GCCcore-6.4.0.eb @@ -1,4 +1,4 @@ -# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild +# This file is an EasyBuild reciPY as per https://github.com/easybuilders # Author: Pablo Escobar Lopez # sciCORE - University of Basel # SIB Swiss Institute of Bioinformatics -- GitLab From 11743dfa52e8fc92ad9d29abfe9b349976d1e6ad Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sat, 22 Jul 2017 09:51:51 -0500 Subject: [PATCH 504/608] adding easyconfigs: numactl-2.0.11-GCCcore-6.4.0.eb --- .../n/numactl/numactl-2.0.11-GCCcore-6.4.0.eb | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 easybuild/easyconfigs/n/numactl/numactl-2.0.11-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/n/numactl/numactl-2.0.11-GCCcore-6.4.0.eb b/easybuild/easyconfigs/n/numactl/numactl-2.0.11-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..7ce46ec76c --- /dev/null +++ b/easybuild/easyconfigs/n/numactl/numactl-2.0.11-GCCcore-6.4.0.eb @@ -0,0 +1,31 @@ +easyblock = 'ConfigureMake' + +name = 'numactl' +version = '2.0.11' + +homepage = 'http://oss.sgi.com/projects/libnuma/' + +description = """ + The numactl program allows you to run your application program on specific + cpu's and memory nodes. It does this by supplying a NUMA memory policy to + the operating system before running your program. The libnuma library provides + convenient ways for you to add NUMA memory policies into your own program. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = ['ftp://oss.sgi.com/www/projects/libnuma/download/'] +sources = [SOURCE_TAR_GZ] +checksums = ['450c091235f891ee874a8651b179c30f57a1391ca5c4673354740ba65e527861'] + +builddependencies = [ + ('binutils', '2.28'), +] + +sanity_check_paths = { + 'files': ['bin/numactl', 'bin/numastat', 'lib/libnuma.%s' % SHLIB_EXT, 'lib/libnuma.a'], + 'dirs': ['share/man', 'include'] +} + +moduleclass = 'tools' -- GitLab From cecf4e6330edc61b7c419df38a61bbb263e01148 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sun, 23 Jul 2017 12:58:02 -0500 Subject: [PATCH 505/608] adding easyconfigs: LittleCMS-2.8-GCCcore-6.4.0.eb --- .../LittleCMS/LittleCMS-2.8-GCCcore-6.4.0.eb | 35 ++++++++++++++++ .../libjpeg-turbo-1.5.2-GCCcore-6.4.0.eb | 41 +++++++++++++++++++ 2 files changed, 76 insertions(+) create mode 100644 easybuild/easyconfigs/l/LittleCMS/LittleCMS-2.8-GCCcore-6.4.0.eb create mode 100644 easybuild/easyconfigs/l/libjpeg-turbo/libjpeg-turbo-1.5.2-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/l/LittleCMS/LittleCMS-2.8-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/LittleCMS/LittleCMS-2.8-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..fda360d04d --- /dev/null +++ b/easybuild/easyconfigs/l/LittleCMS/LittleCMS-2.8-GCCcore-6.4.0.eb @@ -0,0 +1,35 @@ +easyblock = 'ConfigureMake' + +name = 'LittleCMS' +version = '2.8' + +homepage = 'http://www.littlecms.com/' + +description = """ + Little CMS intends to be an OPEN SOURCE small-footprint color management + engine, with special focus on accuracy and performance. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = ['http://sourceforge.net/projects/lcms/files/lcms/%(version)s/'] +sources = ['lcms2-%(version)s.tar.gz'] +checksums = ['66d02b229d2ea9474e62c2b6cd6720fde946155cd1d0d2bffdab829790a0fb22'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('libjpeg-turbo', '1.5.2'), +] + +sanity_check_paths = { + 'files': ['bin/jpgicc', 'bin/linkicc', 'bin/psicc', 'bin/transicc', + 'include/lcms2.h', 'include/lcms2_plugin.h', 'lib/liblcms2.a', + 'lib/liblcms2.%s' % SHLIB_EXT, 'lib/pkgconfig/lcms2.pc'], + 'dirs': ['share/man'], +} + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/l/libjpeg-turbo/libjpeg-turbo-1.5.2-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/libjpeg-turbo/libjpeg-turbo-1.5.2-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..8d3ce16df6 --- /dev/null +++ b/easybuild/easyconfigs/l/libjpeg-turbo/libjpeg-turbo-1.5.2-GCCcore-6.4.0.eb @@ -0,0 +1,41 @@ +easyblock = 'ConfigureMake' + +name = 'libjpeg-turbo' +version = '1.5.2' + +homepage = 'http://sourceforge.net/projects/libjpeg-turbo/' + +description = """ + libjpeg-turbo is a fork of the original IJG libjpeg which uses SIMD to + accelerate baseline JPEG compression and decompression. libjpeg is a library + that implements JPEG image encoding, decoding and transcoding. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = [SOURCEFORGE_SOURCE] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['9098943b270388727ae61de82adec73cf9f0dbb240b3bc8b172595ebf405b528'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('NASM', '2.13.01'), +] + +configopts = "--with-jpeg8" + +runtest = "test" + +sanity_check_paths = { + 'files': ['bin/cjpeg', 'bin/djpeg', 'bin/jpegtran', 'bin/rdjpgcom', + 'bin/tjbench', 'bin/wrjpgcom', 'lib/libjpeg.a', + 'lib/libjpeg.%s' % SHLIB_EXT, 'lib/libturbojpeg.a', + 'lib/libturbojpeg.%s' % SHLIB_EXT], + 'dirs': ['include', 'share'], +} + +moduleclass = 'lib' -- GitLab From 05782da44b5db1407fcd265e5ed26148f8973335 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sun, 23 Jul 2017 21:14:33 -0500 Subject: [PATCH 506/608] adding easyconfigs: nettle-3.3-GCCcore-6.4.0.eb --- .../n/nettle/nettle-3.3-GCCcore-6.4.0.eb | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 easybuild/easyconfigs/n/nettle/nettle-3.3-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/n/nettle/nettle-3.3-GCCcore-6.4.0.eb b/easybuild/easyconfigs/n/nettle/nettle-3.3-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..ec88285ad3 --- /dev/null +++ b/easybuild/easyconfigs/n/nettle/nettle-3.3-GCCcore-6.4.0.eb @@ -0,0 +1,38 @@ +easyblock = 'ConfigureMake' + +name = 'nettle' +version = '3.3' + +homepage = 'http://www.lysator.liu.se/~nisse/nettle/' + +description = """ + Nettle is a cryptographic library that is designed to fit easily in more or + less any context: In crypto toolkits for object-oriented languages (C++, + Python, Pike, ...), in applications like LSH or GNUPG, or even in + kernel space. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = [GNU_SOURCE] +sources = [SOURCE_TAR_GZ] +checksums = ['46942627d5d0ca11720fec18d81fc38f7ef837ea4197c1f630e71ce0d470b11e'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('GMP', '6.1.2'), +] + +sanity_check_paths = { + 'files': ['bin/%s' % x for x in ['nettle-hash', 'nettle-lfib-stream', + 'pkcs1-conv', 'sexp-conv']] + + ['lib64/libhogweed.a', 'lib64/libhogweed.%s' % SHLIB_EXT, + 'lib64/libnettle.a', 'lib64/libnettle.%s' % SHLIB_EXT], + 'dirs': ['include/nettle'], +} + +moduleclass = 'lib' -- GitLab From 20a3b73cc962b9526d078de85c8a002e95e300b3 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sun, 23 Jul 2017 21:46:01 -0500 Subject: [PATCH 507/608] adding easyconfigs: MPFR-3.1.5-GCCcore-6.4.0.eb --- .../m/MPFR/MPFR-3.1.5-GCCcore-6.4.0.eb | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 easybuild/easyconfigs/m/MPFR/MPFR-3.1.5-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/m/MPFR/MPFR-3.1.5-GCCcore-6.4.0.eb b/easybuild/easyconfigs/m/MPFR/MPFR-3.1.5-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..b3d040944b --- /dev/null +++ b/easybuild/easyconfigs/m/MPFR/MPFR-3.1.5-GCCcore-6.4.0.eb @@ -0,0 +1,36 @@ +easyblock = 'ConfigureMake' + +name = 'MPFR' +version = '3.1.5' + +homepage = 'http://www.mpfr.org' + +description = """ + The MPFR library is a C library for multiple-precision floating-point + computations with correct rounding. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = ['http://www.mpfr.org/mpfr-%(version)s/'] +sources = [SOURCELOWER_TAR_BZ2] +checksums = ['ca498c1c7a74dd37a576f353312d1e68d490978de4395fa28f1cbd46a364e658'] + +patches = ['MPFR_ictce_remove-deprecated-mp.patch'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('GMP', '6.1.2'), +] + +runtest = 'check' + +sanity_check_paths = { + 'files': ['lib/libmpfr.%s' % SHLIB_EXT, 'include/mpfr.h'], + 'dirs': [], +} + +moduleclass = 'math' -- GitLab From 284d51c25c7736dfc250f3415454e6d0c4671c4f Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Mon, 24 Jul 2017 07:53:10 -0500 Subject: [PATCH 508/608] adding easyconfigs: Java-1.8.0_141.eb --- .../easyconfigs/j/Java/Java-1.8.0_141.eb | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 easybuild/easyconfigs/j/Java/Java-1.8.0_141.eb diff --git a/easybuild/easyconfigs/j/Java/Java-1.8.0_141.eb b/easybuild/easyconfigs/j/Java/Java-1.8.0_141.eb new file mode 100644 index 0000000000..5ecb4ab81c --- /dev/null +++ b/easybuild/easyconfigs/j/Java/Java-1.8.0_141.eb @@ -0,0 +1,20 @@ +name = 'Java' +version = '1.8.0_141' + +homepage = 'http://java.com/' + +description = """ + Java Platform, Standard Edition (Java SE) lets you develop and deploy + Java applications on desktops and servers. +""" + +toolchain = {'name': 'dummy', 'version': 'dummy'} + +# download the tar.gz directly from +# http://www.oracle.com/technetwork/java/javase/downloads/index.html +(vp, vs) = version.split('_') +altver = '%su%s' % (vp.split('.')[1], vs) +sources = ['jdk-%s-linux-x64.tar.gz' % altver] +checksums = ['041d5218fbea6cd7e81c8c15e51d0d32911573af2ed69e066787a8dc8a39ba4f'] + +moduleclass = 'lang' -- GitLab From ee0c897759c9410ea13ef0b611d07b5d47185da5 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Mon, 24 Jul 2017 08:15:13 -0500 Subject: [PATCH 509/608] adding easyconfigs: ART-2016.06.05-GCCcore-6.4.0.eb --- .../a/ART/ART-2016.06.05-GCCcore-6.4.0.eb | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 easybuild/easyconfigs/a/ART/ART-2016.06.05-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/a/ART/ART-2016.06.05-GCCcore-6.4.0.eb b/easybuild/easyconfigs/a/ART/ART-2016.06.05-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..f15d1e1ba6 --- /dev/null +++ b/easybuild/easyconfigs/a/ART/ART-2016.06.05-GCCcore-6.4.0.eb @@ -0,0 +1,34 @@ +easyblock = 'ConfigureMake' + +name = 'ART' +version = '2016.06.05' + +homepage = 'http://www.niehs.nih.gov/research/resources/software/biostatistics/art/' + +description = """ + ART is a set of simulation tools to generate synthetic next-generation sequencing reads" +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = ['http://www.niehs.nih.gov/research/resources/assets/docs/'] +sources = ['artsrcmountrainier%slinuxtgz.tgz' % ''.join(version.split('.'))] +checksums = ['69aede60884eb848de043aae5294274b7ca6348b7384a8380f0ac5a4dfeff488'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('GSL', '2.4'), +] + +sanity_check_paths = { + 'files': ['bin/aln2bed.pl', 'bin/art_454', 'bin/art_illumina', + 'bin/art_profiler_454', 'bin/art_profiler_illumina', + 'bin/art_SOLiD', 'bin/combinedAvg.pl', 'bin/empDist.pl', + 'bin/fastqReadAvg.pl', 'bin/map2bed.pl', 'bin/summation.pl'], + 'dirs': [], +} + +moduleclass = 'bio' -- GitLab From ce1dcd63f731e2750806bd2f2922a475e9f446ee Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Mon, 24 Jul 2017 08:40:57 -0500 Subject: [PATCH 510/608] adding easyconfigs: Blosc-1.12.1-GCCcore-6.4.0.eb --- .../b/Blosc/Blosc-1.12.1-GCCcore-6.4.0.eb | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 easybuild/easyconfigs/b/Blosc/Blosc-1.12.1-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/b/Blosc/Blosc-1.12.1-GCCcore-6.4.0.eb b/easybuild/easyconfigs/b/Blosc/Blosc-1.12.1-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..ca8add747d --- /dev/null +++ b/easybuild/easyconfigs/b/Blosc/Blosc-1.12.1-GCCcore-6.4.0.eb @@ -0,0 +1,27 @@ +easyblock = 'CMakeMake' + +name = 'Blosc' +version = '1.12.1' + +homepage = 'http://www.blosc.org/' + +description = "Blosc, an extremely fast, multi-threaded, meta-compressor library" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = ['https://github.com/Blosc/c-blosc/archive/'] +sources = ['v%(version)s.tar.gz'] +checksums = ['e04535e816bb942bedc9a0ba209944d1eb34e26e2d9cca37f114e8ee292cb3c8'] + +builddependencies = [ + ('binutils', '2.28'), + ('CMake', '3.8.2'), +] + +sanity_check_paths = { + 'files': ['include/blosc-export.h', 'include/blosc.h', 'lib/libblosc.a', + 'lib/libblosc.%s' % SHLIB_EXT], + 'dirs': [], +} + +moduleclass = 'lib' -- GitLab From 68c9c7d7e9c1b4a80b4e208f690c7f353257c4a0 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Mon, 24 Jul 2017 09:01:44 -0500 Subject: [PATCH 511/608] adding easyconfigs: BWA-0.7.15-GCCcore-6.4.0.eb --- .../b/BWA/BWA-0.7.15-GCCcore-6.4.0.eb | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 easybuild/easyconfigs/b/BWA/BWA-0.7.15-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/b/BWA/BWA-0.7.15-GCCcore-6.4.0.eb b/easybuild/easyconfigs/b/BWA/BWA-0.7.15-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..01ef5ad9dc --- /dev/null +++ b/easybuild/easyconfigs/b/BWA/BWA-0.7.15-GCCcore-6.4.0.eb @@ -0,0 +1,41 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild +# +# Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA +# Authors:: George Tsouloupas , Fotis Georgatos +# License:: MIT/GPL +# $Id$ +# +# This work implements a part of the HPCBIOS project and is a component of the policy: +# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html +# +# Version >= 0.7.15 +# Author: Adam Huffman +# The Francis Crick Institute +# +# Note that upstream development is mainly at: https://github.com/lh3/bwa +## + +name = 'BWA' +version = '0.7.15' + +homepage = 'http://bio-bwa.sourceforge.net/' + +description = """ + Burrows-Wheeler Aligner (BWA) is an efficient program that aligns relatively + short nucleotide sequences against a long reference sequence such as the human + genome. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'optarch': True, 'pic': True} + +source_urls = ['https://github.com/lh3/%(name)s/archive/'] +sources = ['v%(version)s.tar.gz'] +checksums = ['126d247e6ab8a8c215bec248f9174a15c6d960c193330e659a2b686f2964cfbd'] + +builddependencies = [ + ('binutils', '2.28'), +] + +moduleclass = 'bio' -- GitLab From da70e5076f4b1ee2cad32def558cd126b31713d0 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Wed, 26 Jul 2017 08:33:56 -0500 Subject: [PATCH 512/608] adding easyconfigs: hwloc-1.11.7-GCCcore-6.4.0.eb --- .../h/hwloc/hwloc-1.11.7-GCCcore-6.4.0.eb | 41 +++++++++++++++++++ .../n/numactl/numactl-2.0.11-GCCcore-6.4.0.eb | 31 ++++++++++++++ 2 files changed, 72 insertions(+) create mode 100644 easybuild/easyconfigs/h/hwloc/hwloc-1.11.7-GCCcore-6.4.0.eb create mode 100644 easybuild/easyconfigs/n/numactl/numactl-2.0.11-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/h/hwloc/hwloc-1.11.7-GCCcore-6.4.0.eb b/easybuild/easyconfigs/h/hwloc/hwloc-1.11.7-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..aed499874e --- /dev/null +++ b/easybuild/easyconfigs/h/hwloc/hwloc-1.11.7-GCCcore-6.4.0.eb @@ -0,0 +1,41 @@ +easyblock = 'ConfigureMake' + +name = 'hwloc' +version = '1.11.7' + +homepage = 'http://www.open-mpi.org/projects/hwloc/' + +description = """ + The Portable Hardware Locality (hwloc) software package provides a portable + abstraction (across OS, versions, architectures, ...) of the hierarchical + topology of modern architectures, including NUMA memory nodes, sockets, shared + caches, cores and simultaneous multithreading. It also gathers various system + attributes such as cache and memory information as well as the locality of I/O + devices such as network interfaces, InfiniBand HCAs or GPUs. It primarily + aims at helping applications with gathering information about modern computing + hardware so as to exploit it accordingly and efficiently. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = ['http://www.open-mpi.org/software/hwloc/v%(version_major_minor)s/downloads/'] +sources = [SOURCE_TAR_GZ] +checksums = ['ac16bed9cdd3c63bca1fe1ac3de522a1376b1487c4fc85b7b19592e28fd98e26'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('numactl', '2.0.11'), +] + +configopts = "--enable-libnuma=$EBROOTNUMACTL" + +sanity_check_paths = { + 'files': ['bin/lstopo', 'include/hwloc/linux.h', 'sbin/hwloc-dump-hwdata', + 'lib/libhwloc.%s' % SHLIB_EXT], + 'dirs': ['share/man/man3'], +} + +moduleclass = 'system' diff --git a/easybuild/easyconfigs/n/numactl/numactl-2.0.11-GCCcore-6.4.0.eb b/easybuild/easyconfigs/n/numactl/numactl-2.0.11-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..7ce46ec76c --- /dev/null +++ b/easybuild/easyconfigs/n/numactl/numactl-2.0.11-GCCcore-6.4.0.eb @@ -0,0 +1,31 @@ +easyblock = 'ConfigureMake' + +name = 'numactl' +version = '2.0.11' + +homepage = 'http://oss.sgi.com/projects/libnuma/' + +description = """ + The numactl program allows you to run your application program on specific + cpu's and memory nodes. It does this by supplying a NUMA memory policy to + the operating system before running your program. The libnuma library provides + convenient ways for you to add NUMA memory policies into your own program. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = ['ftp://oss.sgi.com/www/projects/libnuma/download/'] +sources = [SOURCE_TAR_GZ] +checksums = ['450c091235f891ee874a8651b179c30f57a1391ca5c4673354740ba65e527861'] + +builddependencies = [ + ('binutils', '2.28'), +] + +sanity_check_paths = { + 'files': ['bin/numactl', 'bin/numastat', 'lib/libnuma.%s' % SHLIB_EXT, 'lib/libnuma.a'], + 'dirs': ['share/man', 'include'] +} + +moduleclass = 'tools' -- GitLab From 28b767c0395f6cb5deb4bc65988ff3ff16b32bec Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sat, 29 Jul 2017 07:30:50 -0500 Subject: [PATCH 513/608] maintain sanity? --- .../e/Eigen/Eigen-3.3.4-GCCcore-6.4.0.eb | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/easybuild/easyconfigs/e/Eigen/Eigen-3.3.4-GCCcore-6.4.0.eb b/easybuild/easyconfigs/e/Eigen/Eigen-3.3.4-GCCcore-6.4.0.eb index 7fd77a3b5e..50d8127475 100644 --- a/easybuild/easyconfigs/e/Eigen/Eigen-3.3.4-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/e/Eigen/Eigen-3.3.4-GCCcore-6.4.0.eb @@ -14,20 +14,4 @@ source_urls = ['http://bitbucket.org/%(namelower)s/%(namelower)s/get'] sources = ['%(version)s.tar.bz2'] checksums = ['dd254beb0bafc695d0f62ae1a222ff85b52dbaa3a16f76e781dce22d0d20a4a6'] -# both in Eigen 2.x an 3.x -include_files = ['Cholesky', 'Core', 'Dense', 'Eigen', 'Geometry', 'LU', - 'QR', 'QtAlignedMalloc', 'SVD', 'Sparse', 'StdVector'] - -# only 3.x -include_files.extend(['CholmodSupport', 'Eigenvalues', 'Householder', - 'IterativeLinearSolvers', 'Jacobi', 'OrderingMethods', - 'PaStiXSupport', 'PardisoSupport', 'SparseCholesky', - 'SparseCore', 'StdDeque', 'StdList', - 'SuperLUSupport', 'UmfPackSupport']) - -sanity_check_paths = { - 'files': ['include/Eigen/%s' % x for x in include_files], - 'dirs': ['include'], -} - moduleclass = 'math' -- GitLab From fde9be252bf4ee9831e3f0e5f38767f398dd3f1c Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sat, 29 Jul 2017 09:26:04 -0500 Subject: [PATCH 514/608] update source_urls --- easybuild/easyconfigs/c/CLISP/CLISP-2.49-GCCcore-6.4.0.eb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/c/CLISP/CLISP-2.49-GCCcore-6.4.0.eb b/easybuild/easyconfigs/c/CLISP/CLISP-2.49-GCCcore-6.4.0.eb index d9d3d1bf33..3c1b56f7a9 100644 --- a/easybuild/easyconfigs/c/CLISP/CLISP-2.49-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/c/CLISP/CLISP-2.49-GCCcore-6.4.0.eb @@ -14,7 +14,7 @@ description = """ toolchain = {'name': 'GCCcore', 'version': '6.4.0'} -source_urls = [GNU_SOURCE] +source_urls = ['ftp://ftp.gnu.org/pub/gnu/%(namelower)s/release/%(version)s'] sources = [SOURCELOWER_TAR_BZ2] checksums = ['8132ff353afaa70e6b19367a25ae3d5a43627279c25647c220641fed00f8e890'] @@ -32,7 +32,7 @@ dependencies = [ ] prebuildopts = """ - sed -e 's/ac_cv_have_decl_rl_readline_state" = x""yes/ac_cv_have_decl_rl_readline_state" = x""JKP/'\ + sed -e 's/ac_cv_have_decl_rl_readline_state" = x""yes/ac_cv_have_decl_rl_readline_state" = x""FOOBAR/'\ -i.eb modules/readline/configure cd src """ -- GitLab From 23625fc62166e63234e92ce4efdceaddc5efc8aa Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sun, 30 Jul 2017 11:13:54 -0500 Subject: [PATCH 515/608] adding easyconfigs: Python-2.7.13-GCCcore-6.4.0-bare.eb --- .../Python-2.7.13-GCCcore-6.4.0-bare.eb | 56 +++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 easybuild/easyconfigs/p/Python/Python-2.7.13-GCCcore-6.4.0-bare.eb diff --git a/easybuild/easyconfigs/p/Python/Python-2.7.13-GCCcore-6.4.0-bare.eb b/easybuild/easyconfigs/p/Python/Python-2.7.13-GCCcore-6.4.0-bare.eb new file mode 100644 index 0000000000..0860032fc3 --- /dev/null +++ b/easybuild/easyconfigs/p/Python/Python-2.7.13-GCCcore-6.4.0-bare.eb @@ -0,0 +1,56 @@ +name = 'Python' +version = '2.7.13' +versionsuffix = '-bare' + +homepage = 'http://python.org/' + +description = """ + Python is a programming language that lets you work more quickly and + integrate your systems more effectively. + +Note: This module is meant to provide a builddependency for other Python + modules while using EasyBuild's --minimaltoolchain option. Modules + built with it will require the full Python later +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} +toolchainopts = {'pic': True} + +source_urls = ['http://www.python.org/ftp/%(namelower)s/%(version)s/'] +sources = [SOURCE_TGZ] +checksums = ['a4f05a0720ce0fd92626f0278b6b433eee9a6173ddf2bced7957dfb599a5ece1'] + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('bzip2', '1.0.6'), + ('libreadline', '7.0'), + ('ncurses', '6.0'), + ('SQLite', '3.19.3'), + ('zlib', '1.2.11'), +] + +osdependencies = [ + # rely upon distribution for timely security updates + ('openssl-devel', 'libssl-dev', 'libopenssl-devel'), +] + +# We hide this by default since users should not use it in production, +# high-performance Python should be delivered at compiler level with +# a default extension set +# hidden = True + +# bare installation: only known module deps for GCCcore tools included +exts_list = [] + +# Until such time that EasyBuild accepts 'rpath' as a toolchainopt... +# add RPATH so this can be used as a builddependency for "bare" PythonPackages +preconfigopts = """ + sed -e\ + 's:$(LINKCC) $(LDFLAGS) $(LINKFORSHARED):$(LINKCC) $(LDFLAGS) $(LINKFORSHARED) -Wl,-rpath=%(installdir)s/lib:'\ + -i.eb Makefile.pre.in +""" + +moduleclass = 'lang' -- GitLab From a7ac403f432ad2c13e58f3acc796e63458b8b954 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sun, 30 Jul 2017 11:48:09 -0500 Subject: [PATCH 516/608] Delete libunistring-0.9.7-GCCcore-6.4.0.eb --- .../libunistring-0.9.7-GCCcore-6.4.0.eb | 33 ------------------- 1 file changed, 33 deletions(-) delete mode 100644 easybuild/easyconfigs/l/libunistring/libunistring-0.9.7-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/l/libunistring/libunistring-0.9.7-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/libunistring/libunistring-0.9.7-GCCcore-6.4.0.eb deleted file mode 100644 index 8d845c9877..0000000000 --- a/easybuild/easyconfigs/l/libunistring/libunistring-0.9.7-GCCcore-6.4.0.eb +++ /dev/null @@ -1,33 +0,0 @@ -easyblock = 'ConfigureMake' - -name = 'libunistring' -version = '0.9.7' - -homepage = 'http://www.gnu.org/software/libunistring/' - -description = """ - This library provides functions for manipulating Unicode strings and for - manipulating C strings according to the Unicode standard. -""" - -toolchain = {'name': 'GCCcore', 'version': '6.4.0'} -toolchainopts = {'pic': True} - -sources = [SOURCELOWER_TAR_XZ] -source_urls = [GNU_SOURCE] -checksums = ['2e3764512aaf2ce598af5a38818c0ea23dedf1ff5460070d1b6cee5c3336e797'] - -builddependencies = [ - ('binutils', '2.28'), -] - -parallel = 1 - -sanity_check_paths = { - 'files': ['lib/libunistring.a', 'lib/libunistring.%s' % SHLIB_EXT] + - ['include/uni%s.h' % x for x in ['case', 'conv', 'ctype', 'lbrk', 'name', 'norm', - 'stdio', 'str', 'types', 'wbrk', 'width']], - 'dirs': ['include/unistring'], -} - -moduleclass = 'lib' -- GitLab From 1c28386218cdc615b5771570f4049e33fc3a8a90 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sun, 30 Jul 2017 12:02:30 -0500 Subject: [PATCH 517/608] Delete libjpeg-turbo-1.5.2-GCCcore-6.4.0.eb --- .../libjpeg-turbo-1.5.2-GCCcore-6.4.0.eb | 41 ------------------- 1 file changed, 41 deletions(-) delete mode 100644 easybuild/easyconfigs/l/libjpeg-turbo/libjpeg-turbo-1.5.2-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/l/libjpeg-turbo/libjpeg-turbo-1.5.2-GCCcore-6.4.0.eb b/easybuild/easyconfigs/l/libjpeg-turbo/libjpeg-turbo-1.5.2-GCCcore-6.4.0.eb deleted file mode 100644 index 8d3ce16df6..0000000000 --- a/easybuild/easyconfigs/l/libjpeg-turbo/libjpeg-turbo-1.5.2-GCCcore-6.4.0.eb +++ /dev/null @@ -1,41 +0,0 @@ -easyblock = 'ConfigureMake' - -name = 'libjpeg-turbo' -version = '1.5.2' - -homepage = 'http://sourceforge.net/projects/libjpeg-turbo/' - -description = """ - libjpeg-turbo is a fork of the original IJG libjpeg which uses SIMD to - accelerate baseline JPEG compression and decompression. libjpeg is a library - that implements JPEG image encoding, decoding and transcoding. -""" - -toolchain = {'name': 'GCCcore', 'version': '6.4.0'} -toolchainopts = {'pic': True} - -source_urls = [SOURCEFORGE_SOURCE] -sources = [SOURCELOWER_TAR_GZ] -checksums = ['9098943b270388727ae61de82adec73cf9f0dbb240b3bc8b172595ebf405b528'] - -builddependencies = [ - ('binutils', '2.28'), -] - -dependencies = [ - ('NASM', '2.13.01'), -] - -configopts = "--with-jpeg8" - -runtest = "test" - -sanity_check_paths = { - 'files': ['bin/cjpeg', 'bin/djpeg', 'bin/jpegtran', 'bin/rdjpgcom', - 'bin/tjbench', 'bin/wrjpgcom', 'lib/libjpeg.a', - 'lib/libjpeg.%s' % SHLIB_EXT, 'lib/libturbojpeg.a', - 'lib/libturbojpeg.%s' % SHLIB_EXT], - 'dirs': ['include', 'share'], -} - -moduleclass = 'lib' -- GitLab From a75dcbc044720f4a6b8f0c0ad624664849c070bf Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sun, 30 Jul 2017 21:28:39 -0500 Subject: [PATCH 518/608] Delete Python-2.7.13-GCCcore-6.4.0-bare.eb --- .../Python-2.7.13-GCCcore-6.4.0-bare.eb | 53 ------------------- 1 file changed, 53 deletions(-) delete mode 100644 easybuild/easyconfigs/p/Python/Python-2.7.13-GCCcore-6.4.0-bare.eb diff --git a/easybuild/easyconfigs/p/Python/Python-2.7.13-GCCcore-6.4.0-bare.eb b/easybuild/easyconfigs/p/Python/Python-2.7.13-GCCcore-6.4.0-bare.eb deleted file mode 100644 index 42f2730022..0000000000 --- a/easybuild/easyconfigs/p/Python/Python-2.7.13-GCCcore-6.4.0-bare.eb +++ /dev/null @@ -1,53 +0,0 @@ -name = 'Python' -version = '2.7.13' -versionsuffix = '-bare' - -homepage = 'http://python.org/' - -description = """ - Python is a programming language that lets you work more quickly and - integrate your systems more effectively. - -Note: This module is meant to provide a builddependency for other Python - modules while using EasyBuild's --minimaltoolchain option. Modules - built with it will require the full Python later -""" - -toolchain = {'name': 'GCCcore', 'version': '6.4.0'} -toolchainopts = {'pic': True} - -source_urls = ['http://www.python.org/ftp/%(namelower)s/%(version)s/'] -sources = [SOURCE_TGZ] - -builddependencies = [ - ('binutils', '2.28'), -] - -dependencies = [ - ('bzip2', '1.0.6'), - ('libreadline', '7.0'), - ('ncurses', '6.0'), - ('SQLite', '3.19.3'), - ('zlib', '1.2.11'), -] - -osdependencies = [ - # rely upon distribution for timely security updates - ('openssl-devel', 'libssl-dev', 'libopenssl-devel'), -] - -# We hide this by default since users should not use it in production, -# high-performance Python should be delivered at compiler level with -# a default extension set -#hidden = True - -# bare installation: only known module deps for GCCcore tools included -exts_list = [] - -# Until such time that EasyBuild accepts 'rpath' as a toolchainopt... -# add RPATH so this can be as a builddependency later -prebuildopts = """ - sed -e 's:Modules/python.o \\\\:-Wl,-rpath=%(installdir)s/lib Modules/python.o \\\\:' -i.eb Makefile -""" - -moduleclass = 'lang' -- GitLab From a3a406c2b7102dd2f0c9c482541b568f95b7e312 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sun, 30 Jul 2017 21:30:52 -0500 Subject: [PATCH 519/608] Delete SQLite-3.19.3-GCCcore-6.4.0.eb --- .../s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb | 49 ------------------- 1 file changed, 49 deletions(-) delete mode 100644 easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb deleted file mode 100644 index 9d9a1ef2eb..0000000000 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb +++ /dev/null @@ -1,49 +0,0 @@ -## -# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild -# -# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA -# Authors:: Fotis Georgatos -# License:: MIT/GPL -# $Id$ -# -# This work implements a part of the HPCBIOS project and is a component of the -# policy: http://hpcbios.readthedocs.org/en/latest/ -## - -easyblock = 'ConfigureMake' - -name = 'SQLite' -version = '3.19.3' - -homepage = 'http://www.sqlite.org/' - -description = 'SQLite: SQL Database Engine in a C Library' - -toolchain = {'name': 'GCCcore', 'version': '6.4.0'} -toolchainopts = {'pic': True} - -# eg. http://www.sqlite.org/2017/sqlite-autoconf-3190300.tar.gz -source_urls = ['http://www.sqlite.org/2017/'] -version_str = '%%(version_major)s%s00' % ''.join('%02d' % - int(x) for x in version.split('.')[1:]) -sources = ['sqlite-autoconf-%s.tar.gz' % version_str] -checksums = ['06129c03dced9f87733a8cba408871bd60673b8f93b920ba8d815efab0a06301'] - -builddependencies = [ - ('binutils', '2.28'), -] - -dependencies = [ - ('libreadline', '7.0'), - ('Tcl', '8.6.6'), -] - -parallel = 1 - -sanity_check_paths = { - 'files': ['bin/sqlite3', 'include/sqlite3ext.h', 'include/sqlite3.h', - 'lib/libsqlite3.a', 'lib/libsqlite3.%s' % SHLIB_EXT], - 'dirs': ['lib/pkgconfig'], -} - -moduleclass = 'devel' -- GitLab From 0c423acce71c630ac5c6cfad40118b75c405e9b6 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sun, 30 Jul 2017 21:32:47 -0500 Subject: [PATCH 520/608] Delete Tcl-8.6.6-GCCcore-6.4.0.eb --- .../t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb | 42 ------------------- 1 file changed, 42 deletions(-) delete mode 100644 easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb b/easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb deleted file mode 100644 index cffeed4270..0000000000 --- a/easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb +++ /dev/null @@ -1,42 +0,0 @@ -easyblock = 'ConfigureMake' - -name = 'Tcl' -version = '8.6.6' - -homepage = 'http://www.tcl.tk/' - -description = """ - Tcl (Tool Command Language) is a very powerful but easy to learn dynamic - programming language, suitable for a very wide range of uses, including web - and desktop applications, networking, administration, testing and many more. -""" - -toolchain = {'name': 'GCCcore', 'version': '6.4.0'} - -source_urls = ["http://prdownloads.sourceforge.net/tcl"] -sources = ['%(namelower)s%(version)s-src.tar.gz'] -checksums = ['a265409781e4b3edcc4ef822533071b34c3dc6790b893963809b9fe221befe07'] - -builddependencies = [ - ('binutils', '2.28'), -] - -dependencies = [ - ('zlib', '1.2.11'), -] - -configopts = '--enable-threads EXTRA_INSTALL="install-private-headers"' - -runtest = 'test' - -start_dir = 'unix' - -sanity_check_paths = { - 'files': ['bin/tclsh%(version_major)s.%(version_minor)s', 'include/tcl.h', - 'lib/libtcl%%(version_major)s.%%(version_minor)s.%s' % SHLIB_EXT, - 'lib/tclConfig.sh', 'man/man1/tclsh.1'], - 'dirs': ['share'], -} - - -moduleclass = 'lang' -- GitLab From 6c75575777ad354b2dd5a8b944c0136ab16d4e03 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sun, 30 Jul 2017 22:02:20 -0500 Subject: [PATCH 521/608] Delete Tcl-8.6.6-GCCcore-6.4.0.eb --- .../t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb | 42 ------------------- 1 file changed, 42 deletions(-) delete mode 100644 easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb b/easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb deleted file mode 100644 index cffeed4270..0000000000 --- a/easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb +++ /dev/null @@ -1,42 +0,0 @@ -easyblock = 'ConfigureMake' - -name = 'Tcl' -version = '8.6.6' - -homepage = 'http://www.tcl.tk/' - -description = """ - Tcl (Tool Command Language) is a very powerful but easy to learn dynamic - programming language, suitable for a very wide range of uses, including web - and desktop applications, networking, administration, testing and many more. -""" - -toolchain = {'name': 'GCCcore', 'version': '6.4.0'} - -source_urls = ["http://prdownloads.sourceforge.net/tcl"] -sources = ['%(namelower)s%(version)s-src.tar.gz'] -checksums = ['a265409781e4b3edcc4ef822533071b34c3dc6790b893963809b9fe221befe07'] - -builddependencies = [ - ('binutils', '2.28'), -] - -dependencies = [ - ('zlib', '1.2.11'), -] - -configopts = '--enable-threads EXTRA_INSTALL="install-private-headers"' - -runtest = 'test' - -start_dir = 'unix' - -sanity_check_paths = { - 'files': ['bin/tclsh%(version_major)s.%(version_minor)s', 'include/tcl.h', - 'lib/libtcl%%(version_major)s.%%(version_minor)s.%s' % SHLIB_EXT, - 'lib/tclConfig.sh', 'man/man1/tclsh.1'], - 'dirs': ['share'], -} - - -moduleclass = 'lang' -- GitLab From 50f5d5c089d44c209bca454a419f3176ab3d57f4 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sun, 30 Jul 2017 22:13:24 -0500 Subject: [PATCH 522/608] Delete SQLite-3.19.3-GCCcore-6.4.0.eb --- .../s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb | 49 ------------------- 1 file changed, 49 deletions(-) delete mode 100644 easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb deleted file mode 100644 index 9d9a1ef2eb..0000000000 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb +++ /dev/null @@ -1,49 +0,0 @@ -## -# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild -# -# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA -# Authors:: Fotis Georgatos -# License:: MIT/GPL -# $Id$ -# -# This work implements a part of the HPCBIOS project and is a component of the -# policy: http://hpcbios.readthedocs.org/en/latest/ -## - -easyblock = 'ConfigureMake' - -name = 'SQLite' -version = '3.19.3' - -homepage = 'http://www.sqlite.org/' - -description = 'SQLite: SQL Database Engine in a C Library' - -toolchain = {'name': 'GCCcore', 'version': '6.4.0'} -toolchainopts = {'pic': True} - -# eg. http://www.sqlite.org/2017/sqlite-autoconf-3190300.tar.gz -source_urls = ['http://www.sqlite.org/2017/'] -version_str = '%%(version_major)s%s00' % ''.join('%02d' % - int(x) for x in version.split('.')[1:]) -sources = ['sqlite-autoconf-%s.tar.gz' % version_str] -checksums = ['06129c03dced9f87733a8cba408871bd60673b8f93b920ba8d815efab0a06301'] - -builddependencies = [ - ('binutils', '2.28'), -] - -dependencies = [ - ('libreadline', '7.0'), - ('Tcl', '8.6.6'), -] - -parallel = 1 - -sanity_check_paths = { - 'files': ['bin/sqlite3', 'include/sqlite3ext.h', 'include/sqlite3.h', - 'lib/libsqlite3.a', 'lib/libsqlite3.%s' % SHLIB_EXT], - 'dirs': ['lib/pkgconfig'], -} - -moduleclass = 'devel' -- GitLab From 5c4acb95df7f7f96f5aafb834c283c326c32ff67 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sun, 30 Jul 2017 22:14:45 -0500 Subject: [PATCH 523/608] Delete Python-2.7.13-GCCcore-6.4.0-bare.eb --- .../Python-2.7.13-GCCcore-6.4.0-bare.eb | 53 ------------------- 1 file changed, 53 deletions(-) delete mode 100644 easybuild/easyconfigs/p/Python/Python-2.7.13-GCCcore-6.4.0-bare.eb diff --git a/easybuild/easyconfigs/p/Python/Python-2.7.13-GCCcore-6.4.0-bare.eb b/easybuild/easyconfigs/p/Python/Python-2.7.13-GCCcore-6.4.0-bare.eb deleted file mode 100644 index 42f2730022..0000000000 --- a/easybuild/easyconfigs/p/Python/Python-2.7.13-GCCcore-6.4.0-bare.eb +++ /dev/null @@ -1,53 +0,0 @@ -name = 'Python' -version = '2.7.13' -versionsuffix = '-bare' - -homepage = 'http://python.org/' - -description = """ - Python is a programming language that lets you work more quickly and - integrate your systems more effectively. - -Note: This module is meant to provide a builddependency for other Python - modules while using EasyBuild's --minimaltoolchain option. Modules - built with it will require the full Python later -""" - -toolchain = {'name': 'GCCcore', 'version': '6.4.0'} -toolchainopts = {'pic': True} - -source_urls = ['http://www.python.org/ftp/%(namelower)s/%(version)s/'] -sources = [SOURCE_TGZ] - -builddependencies = [ - ('binutils', '2.28'), -] - -dependencies = [ - ('bzip2', '1.0.6'), - ('libreadline', '7.0'), - ('ncurses', '6.0'), - ('SQLite', '3.19.3'), - ('zlib', '1.2.11'), -] - -osdependencies = [ - # rely upon distribution for timely security updates - ('openssl-devel', 'libssl-dev', 'libopenssl-devel'), -] - -# We hide this by default since users should not use it in production, -# high-performance Python should be delivered at compiler level with -# a default extension set -#hidden = True - -# bare installation: only known module deps for GCCcore tools included -exts_list = [] - -# Until such time that EasyBuild accepts 'rpath' as a toolchainopt... -# add RPATH so this can be as a builddependency later -prebuildopts = """ - sed -e 's:Modules/python.o \\\\:-Wl,-rpath=%(installdir)s/lib Modules/python.o \\\\:' -i.eb Makefile -""" - -moduleclass = 'lang' -- GitLab From b7c4726f9a935ee6ab09e5533b08923f081beb45 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sun, 30 Jul 2017 22:44:00 -0500 Subject: [PATCH 524/608] Delete Python-2.7.13-GCCcore-6.4.0-bare.eb --- .../Python-2.7.13-GCCcore-6.4.0-bare.eb | 53 ------------------- 1 file changed, 53 deletions(-) delete mode 100644 easybuild/easyconfigs/p/Python/Python-2.7.13-GCCcore-6.4.0-bare.eb diff --git a/easybuild/easyconfigs/p/Python/Python-2.7.13-GCCcore-6.4.0-bare.eb b/easybuild/easyconfigs/p/Python/Python-2.7.13-GCCcore-6.4.0-bare.eb deleted file mode 100644 index 42f2730022..0000000000 --- a/easybuild/easyconfigs/p/Python/Python-2.7.13-GCCcore-6.4.0-bare.eb +++ /dev/null @@ -1,53 +0,0 @@ -name = 'Python' -version = '2.7.13' -versionsuffix = '-bare' - -homepage = 'http://python.org/' - -description = """ - Python is a programming language that lets you work more quickly and - integrate your systems more effectively. - -Note: This module is meant to provide a builddependency for other Python - modules while using EasyBuild's --minimaltoolchain option. Modules - built with it will require the full Python later -""" - -toolchain = {'name': 'GCCcore', 'version': '6.4.0'} -toolchainopts = {'pic': True} - -source_urls = ['http://www.python.org/ftp/%(namelower)s/%(version)s/'] -sources = [SOURCE_TGZ] - -builddependencies = [ - ('binutils', '2.28'), -] - -dependencies = [ - ('bzip2', '1.0.6'), - ('libreadline', '7.0'), - ('ncurses', '6.0'), - ('SQLite', '3.19.3'), - ('zlib', '1.2.11'), -] - -osdependencies = [ - # rely upon distribution for timely security updates - ('openssl-devel', 'libssl-dev', 'libopenssl-devel'), -] - -# We hide this by default since users should not use it in production, -# high-performance Python should be delivered at compiler level with -# a default extension set -#hidden = True - -# bare installation: only known module deps for GCCcore tools included -exts_list = [] - -# Until such time that EasyBuild accepts 'rpath' as a toolchainopt... -# add RPATH so this can be as a builddependency later -prebuildopts = """ - sed -e 's:Modules/python.o \\\\:-Wl,-rpath=%(installdir)s/lib Modules/python.o \\\\:' -i.eb Makefile -""" - -moduleclass = 'lang' -- GitLab From 2882d52b16ed84921f8d81eb8c9c15e64e96abbf Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sun, 30 Jul 2017 22:48:34 -0500 Subject: [PATCH 525/608] Delete Tcl-8.6.6-GCCcore-6.4.0.eb --- .../t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb | 42 ------------------- 1 file changed, 42 deletions(-) delete mode 100644 easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb b/easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb deleted file mode 100644 index cffeed4270..0000000000 --- a/easybuild/easyconfigs/t/Tcl/Tcl-8.6.6-GCCcore-6.4.0.eb +++ /dev/null @@ -1,42 +0,0 @@ -easyblock = 'ConfigureMake' - -name = 'Tcl' -version = '8.6.6' - -homepage = 'http://www.tcl.tk/' - -description = """ - Tcl (Tool Command Language) is a very powerful but easy to learn dynamic - programming language, suitable for a very wide range of uses, including web - and desktop applications, networking, administration, testing and many more. -""" - -toolchain = {'name': 'GCCcore', 'version': '6.4.0'} - -source_urls = ["http://prdownloads.sourceforge.net/tcl"] -sources = ['%(namelower)s%(version)s-src.tar.gz'] -checksums = ['a265409781e4b3edcc4ef822533071b34c3dc6790b893963809b9fe221befe07'] - -builddependencies = [ - ('binutils', '2.28'), -] - -dependencies = [ - ('zlib', '1.2.11'), -] - -configopts = '--enable-threads EXTRA_INSTALL="install-private-headers"' - -runtest = 'test' - -start_dir = 'unix' - -sanity_check_paths = { - 'files': ['bin/tclsh%(version_major)s.%(version_minor)s', 'include/tcl.h', - 'lib/libtcl%%(version_major)s.%%(version_minor)s.%s' % SHLIB_EXT, - 'lib/tclConfig.sh', 'man/man1/tclsh.1'], - 'dirs': ['share'], -} - - -moduleclass = 'lang' -- GitLab From 510bbce052acacc75653f3a60428fbc57a802c43 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sun, 30 Jul 2017 22:49:37 -0500 Subject: [PATCH 526/608] Delete SQLite-3.19.3-GCCcore-6.4.0.eb --- .../s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb | 49 ------------------- 1 file changed, 49 deletions(-) delete mode 100644 easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb diff --git a/easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb b/easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb deleted file mode 100644 index 9d9a1ef2eb..0000000000 --- a/easybuild/easyconfigs/s/SQLite/SQLite-3.19.3-GCCcore-6.4.0.eb +++ /dev/null @@ -1,49 +0,0 @@ -## -# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild -# -# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA -# Authors:: Fotis Georgatos -# License:: MIT/GPL -# $Id$ -# -# This work implements a part of the HPCBIOS project and is a component of the -# policy: http://hpcbios.readthedocs.org/en/latest/ -## - -easyblock = 'ConfigureMake' - -name = 'SQLite' -version = '3.19.3' - -homepage = 'http://www.sqlite.org/' - -description = 'SQLite: SQL Database Engine in a C Library' - -toolchain = {'name': 'GCCcore', 'version': '6.4.0'} -toolchainopts = {'pic': True} - -# eg. http://www.sqlite.org/2017/sqlite-autoconf-3190300.tar.gz -source_urls = ['http://www.sqlite.org/2017/'] -version_str = '%%(version_major)s%s00' % ''.join('%02d' % - int(x) for x in version.split('.')[1:]) -sources = ['sqlite-autoconf-%s.tar.gz' % version_str] -checksums = ['06129c03dced9f87733a8cba408871bd60673b8f93b920ba8d815efab0a06301'] - -builddependencies = [ - ('binutils', '2.28'), -] - -dependencies = [ - ('libreadline', '7.0'), - ('Tcl', '8.6.6'), -] - -parallel = 1 - -sanity_check_paths = { - 'files': ['bin/sqlite3', 'include/sqlite3ext.h', 'include/sqlite3.h', - 'lib/libsqlite3.a', 'lib/libsqlite3.%s' % SHLIB_EXT], - 'dirs': ['lib/pkgconfig'], -} - -moduleclass = 'devel' -- GitLab From c3663ed7ff25ee37f67a6b84550ff964eacfe019 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Mon, 31 Jul 2017 07:18:00 +0200 Subject: [PATCH 527/608] Remove sanity check Already covered by EasyBlock --- .../easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2016b.eb | 9 --------- 1 file changed, 9 deletions(-) diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2016b.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2016b.eb index bea5f1dfd7..5fcd3f7ba0 100644 --- a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2016b.eb +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2016b.eb @@ -29,15 +29,6 @@ checksums = ['ef0fe6d712eb3f9fbd784a5772547a28859a71eb6c455ef670b0f11a56cc73f7'] dependencies = [('tbb', '2017_U5')] -sanity_check_paths = { - 'files': ['bin/%s' % x for x in ['bowtie2', 'bowtie2-align-l', 'bowtie2-align-s', 'bowtie2-build', - 'bowtie2-build-l', 'bowtie2-build-s', 'bowtie2-inspect', 'bowtie2-inspect-l', - 'bowtie2-inspect-s']], - 'dirs': [] -} - -sanity_check_commands = [('bowtie2', '--version')] - # to add script folder to path just uncomment this line # modextrapaths = {'PATH': 'scripts'} -- GitLab From 1cb3ce7bcb03c19a0e8d952e30be2e2113e86534 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20J=C3=A4hne?= Date: Mon, 31 Jul 2017 07:19:34 +0200 Subject: [PATCH 528/608] Remove sanity check Already covered by EasyBlock --- .../easyconfigs/b/Bowtie/Bowtie-1.2.1.1-foss-2016b.eb | 8 -------- 1 file changed, 8 deletions(-) diff --git a/easybuild/easyconfigs/b/Bowtie/Bowtie-1.2.1.1-foss-2016b.eb b/easybuild/easyconfigs/b/Bowtie/Bowtie-1.2.1.1-foss-2016b.eb index 28f4c0d027..8e5cbc7d40 100644 --- a/easybuild/easyconfigs/b/Bowtie/Bowtie-1.2.1.1-foss-2016b.eb +++ b/easybuild/easyconfigs/b/Bowtie/Bowtie-1.2.1.1-foss-2016b.eb @@ -17,12 +17,4 @@ checksums = ['71d708c957380e115ba420a96ac5f8456c6a61760a5f4dbe06305df6a42131d8'] dependencies = [('tbb', '2017_U5')] -sanity_check_paths = { - 'files': ['bin/%s' % x for x in ['bowtie', 'bowtie-align-l', 'bowtie-align-s', 'bowtie-build', 'bowtie-build-l', - 'bowtie-build-s', 'bowtie-inspect', 'bowtie-inspect-l', 'bowtie-inspect-s']], - 'dirs': [] -} - -sanity_check_commands = [('bowtie', '--version')] - moduleclass = 'bio' -- GitLab From 8533fa5024fe9ab7aec8921a3a863eeb09a23e42 Mon Sep 17 00:00:00 2001 From: jrbosch Date: Mon, 31 Jul 2017 11:19:19 -0400 Subject: [PATCH 529/608] improving easyconfig file --- ...d-build.eb => GROMACS-2016.3-foss-2016b-GPU-enabled.eb} | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) rename easybuild/easyconfigs/g/GROMACS/{GROMACS-2016.3-foss-2016b-GPU-enabled-build.eb => GROMACS-2016.3-foss-2016b-GPU-enabled.eb} (89%) diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-foss-2016b-GPU-enabled-build.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-foss-2016b-GPU-enabled.eb similarity index 89% rename from easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-foss-2016b-GPU-enabled-build.eb rename to easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-foss-2016b-GPU-enabled.eb index 7d8210d268..6d8f8f3924 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-foss-2016b-GPU-enabled-build.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-foss-2016b-GPU-enabled.eb @@ -14,7 +14,7 @@ name = 'GROMACS' version = '2016.3' -versionsuffix = '-GPU-enabled-build' +versionsuffix = '-GPU-enabled' homepage = 'http://www.gromacs.org' description = """ @@ -30,6 +30,10 @@ toolchainopts = {'openmp': True, 'usempi': True} source_urls = ['ftp://ftp.gromacs.org/pub/gromacs/'] sources = [SOURCELOWER_TAR_GZ] +checksums = [ + '7bf00e74a9d38b7cef9356141d20e4ba9387289cbbfd4d11be479ef932d77d27', # gromacs-2016.3.tar.gz +] + patches = [ 'GROMACS-%(version)s_amend_search_for_nvml_lib.patch', ] @@ -43,3 +47,4 @@ builddependencies = [ ] moduleclass = 'bio' + -- GitLab From d3cfdf8e4a286ef29220276b24080694a8850c04 Mon Sep 17 00:00:00 2001 From: jrbosch Date: Mon, 31 Jul 2017 11:40:12 -0400 Subject: [PATCH 530/608] removing blank line at end of file --- .../g/GROMACS/GROMACS-2016.3-foss-2016b-GPU-enabled.eb | 1 - 1 file changed, 1 deletion(-) diff --git a/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-foss-2016b-GPU-enabled.eb b/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-foss-2016b-GPU-enabled.eb index 6d8f8f3924..38bb91bb4e 100644 --- a/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-foss-2016b-GPU-enabled.eb +++ b/easybuild/easyconfigs/g/GROMACS/GROMACS-2016.3-foss-2016b-GPU-enabled.eb @@ -47,4 +47,3 @@ builddependencies = [ ] moduleclass = 'bio' - -- GitLab From 536b36ca5afe18fc801b1cfc9411db0aa3ccb313 Mon Sep 17 00:00:00 2001 From: Adam Huffman Date: Tue, 1 Aug 2017 11:46:43 +0100 Subject: [PATCH 531/608] adding easyconfigs: SAMtools-1.5-foss-2016b.eb --- .../s/SAMtools/SAMtools-1.5-foss-2016b.eb | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100755 easybuild/easyconfigs/s/SAMtools/SAMtools-1.5-foss-2016b.eb diff --git a/easybuild/easyconfigs/s/SAMtools/SAMtools-1.5-foss-2016b.eb b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.5-foss-2016b.eb new file mode 100755 index 0000000000..30006e4f3c --- /dev/null +++ b/easybuild/easyconfigs/s/SAMtools/SAMtools-1.5-foss-2016b.eb @@ -0,0 +1,38 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild +# +# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA +# Authors:: Robert Schmidt , Cedric Laczny , Fotis Georgatos +# License:: MIT/GPL +# $Id$ +# +# Modified by: Adam Huffman +# The Francis Crick Institute +# +# Modified for version 1.4 by: Kurt Lust, UAntwerpen +# +## +name = 'SAMtools' +version = '1.5' + +homepage = 'http://www.htslib.org/' +description = """SAM Tools provide various utilities for manipulating alignments in the SAM format, + including sorting, merging, indexing and generating alignments in a per-position format.""" + +toolchain = {'name': 'foss', 'version': '2016b'} +toolchainopts = {'pic': True} + +source_urls = ['https://github.com/samtools/%(namelower)s/releases/download/%(version)s'] +sources = [SOURCELOWER_TAR_BZ2] +checksums = ['8542da26832ee08c1978713f5f6188ff750635b50d8ab126a0c7bb2ac1ae2df6'] + +# The htslib component of SAMtools 1.4 uses zlib, bzip2 and lzma compression. +# The latter is currently provided by XZ. +dependencies = [ + ('ncurses', '6.0'), + ('zlib', '1.2.8'), + ('bzip2', '1.0.6'), + ('XZ', '5.2.2'), +] + +moduleclass = 'bio' -- GitLab From 12634789b1a3b8f8f7cf60e7cc40f4e4fa4603f5 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 1 Aug 2017 06:53:03 -0500 Subject: [PATCH 532/608] adding easyconfigs: Cython-0.26-GCCcore-6.4.0-Python-2.7.13-bare.eb --- ...n-0.26-GCCcore-6.4.0-Python-2.7.13-bare.eb | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 easybuild/easyconfigs/c/Cython/Cython-0.26-GCCcore-6.4.0-Python-2.7.13-bare.eb diff --git a/easybuild/easyconfigs/c/Cython/Cython-0.26-GCCcore-6.4.0-Python-2.7.13-bare.eb b/easybuild/easyconfigs/c/Cython/Cython-0.26-GCCcore-6.4.0-Python-2.7.13-bare.eb new file mode 100644 index 0000000000..9875d3b964 --- /dev/null +++ b/easybuild/easyconfigs/c/Cython/Cython-0.26-GCCcore-6.4.0-Python-2.7.13-bare.eb @@ -0,0 +1,35 @@ +easyblock = 'PythonPackage' + +name = 'Cython' +version = '0.26' +pyver = '2.7.13' +pyshortver = '2.7' +pysubver = '-bare' +versionsuffix = '-Python-%s%s' % (pyver, pysubver) + +homepage = 'https://pypi.python.org/pypi/Cython/' + +description = """ + The Cython language makes writing C extensions for the Python language as easy + as Python itself. Cython is a source code translator based on the well-known + Pyrex, but supports more cutting edge functionality and optimizations. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = [PYPI_SOURCE] +sources = [SOURCE_TAR_GZ] +checksums = ['4c24e2c22ddaed624d35229dc5db25049e9e225c6f64f3364326836cad8f2c66'] + +builddependencies = [ + ('binutils', '2.28'), + ('Python', pyver, pysubver), +] + +sanity_check_paths = { + 'files': ['bin/cygdb', 'bin/%(namelower)s', + 'lib/python%s/site-packages/%%(namelower)s.py' % pyshortver], + 'dirs': ['lib/python%s/site-packages/%%(name)s' % pyshortver], +} + +moduleclass = 'lang' -- GitLab From 9157a389daf2d304b1a42a33202176c1cf975680 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 1 Aug 2017 07:13:11 -0500 Subject: [PATCH 533/608] comment patch --- easybuild/easyconfigs/p/pigz/pigz-2.3.4-GCCcore-6.4.0.eb | 4 ++++ easybuild/easyconfigs/p/pigz/pigz-2.3.4_Makefile.patch | 3 +++ 2 files changed, 7 insertions(+) diff --git a/easybuild/easyconfigs/p/pigz/pigz-2.3.4-GCCcore-6.4.0.eb b/easybuild/easyconfigs/p/pigz/pigz-2.3.4-GCCcore-6.4.0.eb index 0042955a0b..f5201cbea5 100644 --- a/easybuild/easyconfigs/p/pigz/pigz-2.3.4-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/p/pigz/pigz-2.3.4-GCCcore-6.4.0.eb @@ -26,6 +26,10 @@ checksums = ['6f031fa40bc15b1d80d502ff91f83ba14f4b079e886bfb83221374f7bf5c8f9a'] # Patch Makefile so zlib provided by EasyBuild is picked up patches = ['%(name)s-%(version)s_Makefile.patch'] +builddependencies = [ + ('binutils', '2.28'), +] + dependencies = [ ('zlib', '1.2.11'), ] diff --git a/easybuild/easyconfigs/p/pigz/pigz-2.3.4_Makefile.patch b/easybuild/easyconfigs/p/pigz/pigz-2.3.4_Makefile.patch index 05008c1033..685a17d8ca 100644 --- a/easybuild/easyconfigs/p/pigz/pigz-2.3.4_Makefile.patch +++ b/easybuild/easyconfigs/p/pigz/pigz-2.3.4_Makefile.patch @@ -1,3 +1,6 @@ +# Patch Makefile so zlib provided by EasyBuild is picked up +# Authors:: Jack Perdue - TAMU HPRC - http://hprc.tamu.edu + --- Makefile.orig 2017-07-12 22:16:56.931252958 -0500 +++ Makefile 2017-07-12 22:25:34.472386094 -0500 @@ -1,12 +1,11 @@ -- GitLab From 7b99aa36388573e1f5fa6244c6f43d5894b91198 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 1 Aug 2017 08:05:14 -0500 Subject: [PATCH 534/608] add upstream patch --- .../c/CLISP/CLISP-2.49-GCCcore-6.4.0.eb | 5 +++-- .../c/CLISP/patch-modules_readline_readline.lisp | 15 +++++++++++++++ 2 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 easybuild/easyconfigs/c/CLISP/patch-modules_readline_readline.lisp diff --git a/easybuild/easyconfigs/c/CLISP/CLISP-2.49-GCCcore-6.4.0.eb b/easybuild/easyconfigs/c/CLISP/CLISP-2.49-GCCcore-6.4.0.eb index 3c1b56f7a9..1f086b8886 100644 --- a/easybuild/easyconfigs/c/CLISP/CLISP-2.49-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/c/CLISP/CLISP-2.49-GCCcore-6.4.0.eb @@ -18,6 +18,9 @@ source_urls = ['ftp://ftp.gnu.org/pub/gnu/%(namelower)s/release/%(version)s'] sources = [SOURCELOWER_TAR_BZ2] checksums = ['8132ff353afaa70e6b19367a25ae3d5a43627279c25647c220641fed00f8e890'] +# from: https://sourceforge.net/p/clisp/bugs/688/ +patches = ['patch-modules_readline_readline.lisp'] + builddependencies = [ ('binutils', '2.28'), ] @@ -32,8 +35,6 @@ dependencies = [ ] prebuildopts = """ - sed -e 's/ac_cv_have_decl_rl_readline_state" = x""yes/ac_cv_have_decl_rl_readline_state" = x""FOOBAR/'\ - -i.eb modules/readline/configure cd src """ diff --git a/easybuild/easyconfigs/c/CLISP/patch-modules_readline_readline.lisp b/easybuild/easyconfigs/c/CLISP/patch-modules_readline_readline.lisp new file mode 100644 index 0000000000..19c54f96d6 --- /dev/null +++ b/easybuild/easyconfigs/c/CLISP/patch-modules_readline_readline.lisp @@ -0,0 +1,15 @@ +$NetBSD: patch-modules_readline_readline.lisp,v 1.1 2016/09/20 14:10:25 wiz Exp $ + +rl_readline_state changed from int to unsigned long in readline-7.0. + +--- modules/readline/readline.lisp.orig 2010-01-06 22:18:03.000000000 +0000 ++++ modules/readline/readline.lisp +@@ -424,7 +424,7 @@ name in ~/.inputrc. This is preferred wa + "The version of this incarnation of the readline library, e.g., 0x0402.")) + (def-c-var gnu-readline-p (:name "rl_gnu_readline_p") (:type int) + (:documentation "True if this is real GNU readline.")) +-(def-c-var readline-state (:name "rl_readline_state") (:type int) ++(def-c-var readline-state (:name "rl_readline_state") (:type ulong) + (:documentation "Flags word encapsulating the current readline state.")) + (def-c-var editing-mode (:name "rl_editing_mode") (:type int) + (:documentation "Says which editing mode readline is currently using. -- GitLab From 549d46d3606c36ee0fe3678a50d12e0173e8018f Mon Sep 17 00:00:00 2001 From: Adam Huffman Date: Tue, 1 Aug 2017 15:23:56 +0100 Subject: [PATCH 535/608] adding easyconfigs: BWA-0.7.16a-foss-2016b.eb, BWA-0.7.16a-intel-2017a.eb --- .../b/BWA/BWA-0.7.16a-foss-2016b.eb | 34 +++++++++++++++++++ .../b/BWA/BWA-0.7.16a-intel-2017a.eb | 34 +++++++++++++++++++ 2 files changed, 68 insertions(+) create mode 100755 easybuild/easyconfigs/b/BWA/BWA-0.7.16a-foss-2016b.eb create mode 100755 easybuild/easyconfigs/b/BWA/BWA-0.7.16a-intel-2017a.eb diff --git a/easybuild/easyconfigs/b/BWA/BWA-0.7.16a-foss-2016b.eb b/easybuild/easyconfigs/b/BWA/BWA-0.7.16a-foss-2016b.eb new file mode 100755 index 0000000000..cfc64d5813 --- /dev/null +++ b/easybuild/easyconfigs/b/BWA/BWA-0.7.16a-foss-2016b.eb @@ -0,0 +1,34 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild +# +# Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA +# Authors:: George Tsouloupas , Fotis Georgatos +# License:: MIT/GPL +# $Id$ +# +# This work implements a part of the HPCBIOS project and is a component of the policy: +# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html +# +# Version >= 0.7.15 +# Author: Adam Huffman +# The Francis Crick Institute +# +# Note that upstream development is mainly at: https://github.com/lh3/bwa +## + +name = 'BWA' +version = '0.7.16a' +subver = '0.7.16' + +homepage = 'http://bio-bwa.sourceforge.net/' +description = """Burrows-Wheeler Aligner (BWA) is an efficient program that aligns + relatively short nucleotide sequences against a long reference sequence such as the human genome.""" + +toolchain = {'name': 'foss', 'version': '2016b'} +toolchainopts = {'pic': True} + +source_urls = ['https://github.com/lh3/bwa/releases/download/v%s/' % subver] +sources = ['%(namelower)s-%(version)s.tar.bz2'] +checksums = ['8fecdb5f88871351bbe050c18d6078121456c36ad75c5c78f33a926560ffc170'] + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/b/BWA/BWA-0.7.16a-intel-2017a.eb b/easybuild/easyconfigs/b/BWA/BWA-0.7.16a-intel-2017a.eb new file mode 100755 index 0000000000..c1ee916e24 --- /dev/null +++ b/easybuild/easyconfigs/b/BWA/BWA-0.7.16a-intel-2017a.eb @@ -0,0 +1,34 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild +# +# Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA +# Authors:: George Tsouloupas , Fotis Georgatos +# License:: MIT/GPL +# $Id$ +# +# This work implements a part of the HPCBIOS project and is a component of the policy: +# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html +# +# Version >= 0.7.15 +# Author: Adam Huffman +# The Francis Crick Institute +# +# Note that upstream development is mainly at: https://github.com/lh3/bwa +## + +name = 'BWA' +version = '0.7.16a' +subver = '0.7.16' + +homepage = 'http://bio-bwa.sourceforge.net/' +description = """Burrows-Wheeler Aligner (BWA) is an efficient program that aligns + relatively short nucleotide sequences against a long reference sequence such as the human genome.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'pic': True} + +source_urls = ['https://github.com/lh3/bwa/releases/download/v%s/' % subver] +sources = ['%(namelower)s-%(version)s.tar.bz2'] +checksums = ['8fecdb5f88871351bbe050c18d6078121456c36ad75c5c78f33a926560ffc170'] + +moduleclass = 'bio' -- GitLab From b5c5581f2145e580d19c85de9ddddd2e3b0d6be9 Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Tue, 1 Aug 2017 13:31:26 -0500 Subject: [PATCH 536/608] adding easyconfigs: Java-1.8.0_144.eb --- .../easyconfigs/j/Java/Java-1.8.0_144.eb | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 easybuild/easyconfigs/j/Java/Java-1.8.0_144.eb diff --git a/easybuild/easyconfigs/j/Java/Java-1.8.0_144.eb b/easybuild/easyconfigs/j/Java/Java-1.8.0_144.eb new file mode 100644 index 0000000000..dc8a2bb0a1 --- /dev/null +++ b/easybuild/easyconfigs/j/Java/Java-1.8.0_144.eb @@ -0,0 +1,20 @@ +name = 'Java' +version = '1.8.0_144' + +homepage = 'http://java.com/' + +description = """ + Java Platform, Standard Edition (Java SE) lets you develop and deploy + Java applications on desktops and servers. +""" + +toolchain = {'name': 'dummy', 'version': 'dummy'} + +# download the tar.gz directly from +# http://www.oracle.com/technetwork/java/javase/downloads/index.html +(vp, vs) = version.split('_') +altver = '%su%s' % (vp.split('.')[1], vs) +sources = ['jdk-%s-linux-x64.tar.gz' % altver] +checksums = ['e8a341ce566f32c3d06f6d0f0eeea9a0f434f538d22af949ae58bc86f2eeaae4'] + +moduleclass = 'lang' -- GitLab From 81a338c4cded59a94ad8d9fbb6020e6be37053c0 Mon Sep 17 00:00:00 2001 From: frenchwr Date: Wed, 2 Aug 2017 14:26:02 -0500 Subject: [PATCH 537/608] add updated version of singularity --- .../Singularity-2.3.1-GCC-5.4.0-2.26.eb | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 easybuild/easyconfigs/s/Singularity/Singularity-2.3.1-GCC-5.4.0-2.26.eb diff --git a/easybuild/easyconfigs/s/Singularity/Singularity-2.3.1-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/s/Singularity/Singularity-2.3.1-GCC-5.4.0-2.26.eb new file mode 100644 index 0000000000..a71dd25439 --- /dev/null +++ b/easybuild/easyconfigs/s/Singularity/Singularity-2.3.1-GCC-5.4.0-2.26.eb @@ -0,0 +1,34 @@ +easyblock = 'ConfigureMake' + +name = 'Singularity' +version = '2.3.1' + +homepage = 'http://gmkurtzer.github.io/singularity' +description = """Singularity is a portable application stack packaging and runtime utility.""" + +toolchain = {'name': 'GCC', 'version': '5.4.0-2.26'} + +source_urls = ['https://github.com/gmkurtzer/singularity/archive/'] +sources = ['%(version)s.tar.gz'] +checksums = ['d25be31b443969b12179fbdb6db38c24002f06234bf923424bda1d662ad34e71'] + +builddependencies = [('Autotools', '20150215')] + +preconfigopts = './autogen.sh && ' + +sanity_check_paths = { + 'files': ['bin/run-singularity', 'bin/singularity', 'etc/singularity/singularity.conf', + 'libexec/singularity/bin/action-suid'], + 'dirs': ['etc', 'libexec/singularity'], +} + +# next steps after instalations +# INSTALATION_PATH=your_instalation_path +# chown root:root $INSTALATION_PATH/Singularity/*/etc/singularity/singularity.conf +# chown root:root $INSTALATION_PATH/Singularity/*/libexec/singularity/bin/*-suid +# chown root:root $INSTALATION_PATH/Singularity/*/var/singularity/mnt/container +# chmod 4755 $INSTALATION_PATH/Singularity/*/libexec/singularity/bin/*-suid +# chmod +s $INSTALATION_PATH/Singularity/*/libexec/singularity/bin/*-suid + +moduleclass = 'tools' + -- GitLab From a1876330f2da4c05deb5ed983bfdf402806ed979 Mon Sep 17 00:00:00 2001 From: frenchwr Date: Wed, 2 Aug 2017 15:10:14 -0500 Subject: [PATCH 538/608] fix style --- .../s/Singularity/Singularity-2.3.1-GCC-5.4.0-2.26.eb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/s/Singularity/Singularity-2.3.1-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/s/Singularity/Singularity-2.3.1-GCC-5.4.0-2.26.eb index a71dd25439..3852a69875 100644 --- a/easybuild/easyconfigs/s/Singularity/Singularity-2.3.1-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/s/Singularity/Singularity-2.3.1-GCC-5.4.0-2.26.eb @@ -17,7 +17,7 @@ builddependencies = [('Autotools', '20150215')] preconfigopts = './autogen.sh && ' sanity_check_paths = { - 'files': ['bin/run-singularity', 'bin/singularity', 'etc/singularity/singularity.conf', + 'files': ['bin/run-singularity', 'bin/singularity', 'etc/singularity/singularity.conf', 'libexec/singularity/bin/action-suid'], 'dirs': ['etc', 'libexec/singularity'], } @@ -31,4 +31,3 @@ sanity_check_paths = { # chmod +s $INSTALATION_PATH/Singularity/*/libexec/singularity/bin/*-suid moduleclass = 'tools' - -- GitLab From 6768de1892c9b7c0d6a10732bdd8766d51334585 Mon Sep 17 00:00:00 2001 From: frenchwr Date: Thu, 3 Aug 2017 07:20:52 -0500 Subject: [PATCH 539/608] fix spelling of installation --- .../s/Singularity/Singularity-2.3.1-GCC-5.4.0-2.26.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/s/Singularity/Singularity-2.3.1-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/s/Singularity/Singularity-2.3.1-GCC-5.4.0-2.26.eb index 3852a69875..7e7221e7b3 100644 --- a/easybuild/easyconfigs/s/Singularity/Singularity-2.3.1-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/s/Singularity/Singularity-2.3.1-GCC-5.4.0-2.26.eb @@ -22,7 +22,7 @@ sanity_check_paths = { 'dirs': ['etc', 'libexec/singularity'], } -# next steps after instalations +# next steps after installation # INSTALATION_PATH=your_instalation_path # chown root:root $INSTALATION_PATH/Singularity/*/etc/singularity/singularity.conf # chown root:root $INSTALATION_PATH/Singularity/*/libexec/singularity/bin/*-suid -- GitLab From ddc316e4d204267c6bec0b5301460c6e3f43b32a Mon Sep 17 00:00:00 2001 From: Balazs Hajgato Date: Thu, 3 Aug 2017 16:04:55 +0200 Subject: [PATCH 540/608] {bio}[foss/2017a] Trinity 2.4.0 (REVIEW) --- .../b/Bowtie/Bowtie-1.1.2-GCCcore-6.3.0.eb | 18 + .../b/Bowtie2/Bowtie2-2.3.2-foss-2017a.eb | 32 + .../p/Perl/Perl-5.24.1-foss-2017a.eb | 907 ++++++++++++++++++ .../t/Trinity/Trinity-2.4.0-foss-2017a.eb | 34 + .../t/tbb/tbb-2017_U6-GCCcore-6.3.0.eb | 17 + 5 files changed, 1008 insertions(+) create mode 100644 easybuild/easyconfigs/b/Bowtie/Bowtie-1.1.2-GCCcore-6.3.0.eb create mode 100644 easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2017a.eb create mode 100644 easybuild/easyconfigs/p/Perl/Perl-5.24.1-foss-2017a.eb create mode 100644 easybuild/easyconfigs/t/Trinity/Trinity-2.4.0-foss-2017a.eb create mode 100644 easybuild/easyconfigs/t/tbb/tbb-2017_U6-GCCcore-6.3.0.eb diff --git a/easybuild/easyconfigs/b/Bowtie/Bowtie-1.1.2-GCCcore-6.3.0.eb b/easybuild/easyconfigs/b/Bowtie/Bowtie-1.1.2-GCCcore-6.3.0.eb new file mode 100644 index 0000000000..a46b5265d0 --- /dev/null +++ b/easybuild/easyconfigs/b/Bowtie/Bowtie-1.1.2-GCCcore-6.3.0.eb @@ -0,0 +1,18 @@ +# Modified from existing version by: +# Robert Schmidt +# Ottawa Hospital Research Institute - Bioinformatics Team +name = 'Bowtie' +version = '1.1.2' + +homepage = 'http://bowtie-bio.sourceforge.net/index.shtml' +description = """Bowtie is an ultrafast, memory-efficient short read aligner. +It aligns short DNA sequences (reads) to the human genome. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.3.0'} +toolchainopts = {'pic': True} + +sources = ['%(namelower)s-%(version)s-src.zip'] +source_urls = ['http://download.sourceforge.net/bowtie-bio/'] + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2017a.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2017a.eb new file mode 100644 index 0000000000..9d4236c5ff --- /dev/null +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2017a.eb @@ -0,0 +1,32 @@ +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild +# Author: Pablo Escobar Lopez +# Swiss Institute of Bioinformatics +# Biozentrum - University of Basel +# Modified by: Robert Schmidt +# Ottawa Hospital Research Institute - Bioinformatics Team +# Modified by: Adam Huffman +# The Francis Crick Institute +# Modified by: Kurt Lust, UAntwerp + +name = 'Bowtie2' +version = '2.3.2' + +homepage = 'http://bowtie-bio.sourceforge.net/bowtie2/index.shtml' +description = """ Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing reads + to long reference sequences. It is particularly good at aligning reads of about 50 up to 100s or 1,000s + of characters, and particularly good at aligning to relatively long (e.g. mammalian) genomes. + Bowtie 2 indexes the genome with an FM Index to keep its memory footprint small: for the human genome, + its memory footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end alignment modes.""" + +toolchain = {'name': 'foss', 'version': '2017a'} +toolchainopts = {'pic': True, 'cstd': 'gnu++98'} + +sources = ['%(namelower)s-%(version)s-source.zip'] +source_urls = [('http://sourceforge.net/projects/bowtie-bio/files/%(namelower)s/%(version)s', 'download')] + +dependencies = [('tbb', '2017_U6')] + +# to add script folder to path just uncomment this line +# modextrapaths = {'PATH': 'scripts'} + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/p/Perl/Perl-5.24.1-foss-2017a.eb b/easybuild/easyconfigs/p/Perl/Perl-5.24.1-foss-2017a.eb new file mode 100644 index 0000000000..c45b3b6b14 --- /dev/null +++ b/easybuild/easyconfigs/p/Perl/Perl-5.24.1-foss-2017a.eb @@ -0,0 +1,907 @@ +name = 'Perl' +version = '5.24.1' + +homepage = 'https://www.perl.org/' +description = """Larry Wall's Practical Extraction and Report Language""" + +toolchain = {'name': 'foss', 'version': '2017a'} +toolchainopts = {'pic': True} + +source_urls = ['http://www.cpan.org/src/%(version_major)s.0'] +sources = [SOURCELOWER_TAR_GZ] + +# !! order of extensions is important !! +# extensions updated on April 4th 2017 +exts_list = [ + ('Config::General', '2.63', { + 'source_tmpl': 'Config-General-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TL/TLINDEN'], + }), + ('File::Listing', '6.04', { + 'source_tmpl': 'File-Listing-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + }), + ('ExtUtils::InstallPaths', '0.011', { + 'source_tmpl': 'ExtUtils-InstallPaths-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/L/LE/LEONT'], + }), + ('ExtUtils::Helpers', '0.026', { + 'source_tmpl': 'ExtUtils-Helpers-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/L/LE/LEONT'], + }), + ('Test::Harness', '3.38', { + 'source_tmpl': 'Test-Harness-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/L/LE/LEONT'], + }), + ('ExtUtils::Config', '0.008', { + 'source_tmpl': 'ExtUtils-Config-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/L/LE/LEONT'], + }), + ('Module::Build::Tiny', '0.039', { + 'source_tmpl': 'Module-Build-Tiny-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/L/LE/LEONT'], + }), + ('aliased', '0.34', { + 'source_tmpl': 'aliased-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + }), + ('Text::Glob', '0.11', { + 'source_tmpl': 'Text-Glob-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RC/RCLAMP'], + }), + ('Regexp::Common', '2016060801', { + 'source_tmpl': 'Regexp-Common-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AB/ABIGAIL'], + }), + ('GO::Utils', '0.15', { + 'source_tmpl': 'go-perl-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/C/CM/CMUNGALL'], + }), + ('Module::Pluggable', '5.2', { + 'source_tmpl': 'Module-Pluggable-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SI/SIMONW'], + }), + ('Test::Fatal', '0.014', { + 'source_tmpl': 'Test-Fatal-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + }), + ('Test::Warnings', '0.026', { + 'source_tmpl': 'Test-Warnings-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + }), + ('File::ShareDir::Install', '0.11', { + 'source_tmpl': 'File-ShareDir-Install-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + }), + ('DateTime::Locale', '1.16', { + 'source_tmpl': 'DateTime-Locale-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DR/DROLSKY'], + }), + ('DateTime::TimeZone', '2.11', { + 'source_tmpl': 'DateTime-TimeZone-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DR/DROLSKY'], + }), + ('Test::Requires', '0.10', { + 'source_tmpl': 'Test-Requires-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TO/TOKUHIROM'], + }), + ('Module::Implementation', '0.09', { + 'source_tmpl': 'Module-Implementation-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DR/DROLSKY'], + }), + ('Module::Build', '0.4222', { + 'source_tmpl': 'Module-Build-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/L/LE/LEONT'], + }), + ('Module::Runtime', '0.014', { + 'source_tmpl': 'Module-Runtime-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/Z/ZE/ZEFRAM'], + }), + ('Try::Tiny', '0.28', { + 'source_tmpl': 'Try-Tiny-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + }), + ('Params::Validate', '1.26', { + 'source_tmpl': 'Params-Validate-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DR/DROLSKY'], + }), + ('List::MoreUtils', '0.418', { + 'source_tmpl': 'List-MoreUtils-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RE/REHSACK'], + }), + ('Exporter::Tiny', '0.044', { + 'source_tmpl': 'Exporter-Tiny-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TO/TOBYINK'], + }), + ('Class::Singleton', '1.5', { + 'source_tmpl': 'Class-Singleton-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SH/SHAY'], + }), + ('DateTime', '1.42', { + 'source_tmpl': 'DateTime-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DR/DROLSKY'], + }), + ('File::Find::Rule::Perl', '1.15', { + 'source_tmpl': 'File-Find-Rule-Perl-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + }), + ('Readonly', '2.05', { + 'source_tmpl': 'Readonly-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SA/SANKO'], + }), + ('Git', '0.41', { + 'source_tmpl': 'Git-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MS/MSOUTH'], + }), + ('Tree::DAG_Node', '1.29', { + 'source_tmpl': 'Tree-DAG_Node-%(version)s.tgz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RS/RSAVAGE'], + }), + ('Template', '2.26', { + 'source_tmpl': 'Template-Toolkit-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AB/ABW'], + }), + ('FreezeThaw', '0.5001', { + 'source_tmpl': 'FreezeThaw-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/I/IL/ILYAZ/modules'], + }), + ('DBI', '1.636', { + 'source_tmpl': 'DBI-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TI/TIMB'], + }), + ('DBD::SQLite', '1.54', { + 'source_tmpl': 'DBD-SQLite-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/I/IS/ISHIGAKI'], + }), + ('Math::Bezier', '0.01', { + 'source_tmpl': 'Math-Bezier-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AB/ABW'], + }), + ('Archive::Extract', '0.80', { + 'source_tmpl': 'Archive-Extract-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BI/BINGOS'], + }), + ('DBIx::Simple', '1.35', { + 'source_tmpl': 'DBIx-Simple-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/J/JU/JUERD'], + }), + ('Shell', '0.73', { + 'source_tmpl': 'Shell-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/F/FE/FERREIRA'], + }), + ('File::Spec', '3.62', { + 'source_tmpl': 'PathTools-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + }), + ('Test::Simple', '1.302078', { + 'source_tmpl': 'Test-Simple-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/E/EX/EXODIST'], + }), + ('Set::Scalar', '1.29', { + 'source_tmpl': 'Set-Scalar-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DA/DAVIDO'], + }), + ('IO::Stringy', '2.111', { + 'source_tmpl': 'IO-stringy-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DS/DSKOLL'], + }), + ('Encode::Locale', '1.05', { + 'source_tmpl': 'Encode-Locale-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + }), + ('XML::SAX::Base', '1.09', { + 'source_tmpl': 'XML-SAX-Base-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GR/GRANTM'], + }), + ('XML::NamespaceSupport', '1.12', { + 'source_tmpl': 'XML-NamespaceSupport-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/P/PE/PERIGRIN'], + }), + ('XML::SAX', '0.99', { + 'source_tmpl': 'XML-SAX-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GR/GRANTM'], + }), + ('Test::LeakTrace', '0.15', { + 'source_tmpl': 'Test-LeakTrace-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GF/GFUJI'], + }), + ('Test::Exception', '0.43', { + 'source_tmpl': 'Test-Exception-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/E/EX/EXODIST'], + }), + ('Text::Table', '1.132', { + 'source_tmpl': 'Text-Table-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF'], + }), + ('MIME::Types', '2.13', { + 'source_tmpl': 'MIME-Types-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MA/MARKOV'], + }), + ('Module::Build::XSUtil', '0.16', { + 'source_tmpl': 'Module-Build-XSUtil-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/H/HI/HIDEAKIO'], + }), + ('Tie::Function', '0.02', { + 'source_tmpl': 'Tie-Function-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DA/DAVIDNICO/handy_tied_functions'], + }), + ('Template::Plugin::Number::Format', '1.06', { + 'source_tmpl': 'Template-Plugin-Number-Format-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DA/DARREN'], + }), + ('HTML::Parser', '3.72', { + 'source_tmpl': 'HTML-Parser-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + }), + ('Date::Handler', '1.2', { + 'source_tmpl': 'Date-Handler-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BB/BBEAUSEJ'], + }), + ('Params::Util', '1.07', { + 'source_tmpl': 'Params-Util-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AD/ADAMK'], + }), + ('IO::HTML', '1.001', { + 'source_tmpl': 'IO-HTML-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/C/CJ/CJM'], + }), + ('Data::Grove', '0.08', { + 'source_tmpl': 'libxml-perl-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/K/KM/KMACLEOD'], + }), + ('Class::ISA', '0.36', { + 'source_tmpl': 'Class-ISA-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SM/SMUELLER'], + }), + ('URI', '1.71', { + 'source_tmpl': 'URI-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + }), + ('Ima::DBI', '0.35', { + 'source_tmpl': 'Ima-DBI-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/P/PE/PERRIN'], + }), + ('Tie::IxHash', '1.23', { + 'source_tmpl': 'Tie-IxHash-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/C/CH/CHORNY'], + }), + ('GO', '0.04', { + 'source_tmpl': 'go-db-perl-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SJ/SJCARBON'], + }), + ('Class::DBI::SQLite', '0.11', { + 'source_tmpl': 'Class-DBI-SQLite-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MI/MIYAGAWA'], + }), + ('Pod::POM', '2.01', { + 'source_tmpl': 'Pod-POM-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/N/NE/NEILB'], + }), + ('Math::Round', '0.07', { + 'source_tmpl': 'Math-Round-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GR/GROMMEL'], + }), + ('Text::Diff', '1.44', { + 'source_tmpl': 'Text-Diff-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/N/NE/NEILB'], + }), + ('Log::Message::Simple', '0.10', { + 'source_tmpl': 'Log-Message-Simple-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BI/BINGOS'], + }), + ('IO::Socket::SSL', '2.047', { + 'source_tmpl': 'IO-Socket-SSL-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SU/SULLR'], + }), + ('Fennec::Lite', '0.004', { + 'source_tmpl': 'Fennec-Lite-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/E/EX/EXODIST'], + }), + ('Sub::Uplevel', '0.2800', { + 'source_tmpl': 'Sub-Uplevel-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN'], + }), + ('Meta::Builder', '0.003', { + 'source_tmpl': 'Meta-Builder-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/E/EX/EXODIST'], + }), + ('Exporter::Declare', '0.114', { + 'source_tmpl': 'Exporter-Declare-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/E/EX/EXODIST'], + }), + ('Getopt::Long', '2.49.1', { + 'source_tmpl': 'Getopt-Long-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/J/JV/JV'], + }), + ('Log::Message', '0.08', { + 'source_tmpl': 'Log-Message-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BI/BINGOS'], + }), + ('Mouse', 'v2.4.9', { + 'source_tmpl': 'Mouse-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SY/SYOHEX'], + }), + ('Test::Version', '2.05', { + 'source_tmpl': 'Test-Version-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/P/PL/PLICEASE'], + }), + ('DBIx::Admin::TableInfo', '3.03', { + 'source_tmpl': 'DBIx-Admin-TableInfo-%(version)s.tgz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RS/RSAVAGE'], + }), + ('Net::HTTP', '6.13', { + 'source_tmpl': 'Net-HTTP-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/O/OA/OALDERS'], + }), + ('Test::Deep', '1.126', { + 'source_tmpl': 'Test-Deep-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + }), + ('Test::Warn', '0.32', { + 'source_tmpl': 'Test-Warn-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BI/BIGJ'], + }), + ('MRO::Compat', '0.13', { + 'source_tmpl': 'MRO-Compat-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/H/HA/HAARG'], + }), + ('Moo', '2.003002', { + 'source_tmpl': 'Moo-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/H/HA/HAARG'], + }), + ('Hash::Merge', '0.200', { + 'source_tmpl': 'Hash-Merge-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RE/REHSACK'], + }), + ('SQL::Abstract', '1.84', { + 'source_tmpl': 'SQL-Abstract-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/I/IL/ILMARI'], + }), + ('HTML::Form', '6.03', { + 'source_tmpl': 'HTML-Form-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + }), + ('File::Copy::Recursive', '0.38', { + 'source_tmpl': 'File-Copy-Recursive-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DM/DMUEY'], + }), + ('Number::Compare', '0.03', { + 'source_tmpl': 'Number-Compare-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RC/RCLAMP'], + }), + ('IPC::Run', '0.94', { + 'source_tmpl': 'IPC-Run-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TO/TODDR'], + }), + ('HTML::Entities::Interpolate', '1.10', { + 'source_tmpl': 'HTML-Entities-Interpolate-%(version)s.tgz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RS/RSAVAGE'], + }), + ('Test::ClassAPI', '1.06', { + 'source_tmpl': 'Test-ClassAPI-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AD/ADAMK'], + }), + ('Test::Most', '0.35', { + 'source_tmpl': 'Test-Most-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/O/OV/OVID'], + }), + ('Class::Accessor', '0.34', { + 'source_tmpl': 'Class-Accessor-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/K/KA/KASEI'], + }), + ('Test::Differences', '0.64', { + 'source_tmpl': 'Test-Differences-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DC/DCANTRELL'], + }), + ('HTTP::Tiny', '0.070', { + 'source_tmpl': 'HTTP-Tiny-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN'], + }), + ('Package::DeprecationManager', '0.17', { + 'source_tmpl': 'Package-DeprecationManager-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DR/DROLSKY'], + }), + ('Digest::SHA1', '2.13', { + 'source_tmpl': 'Digest-SHA1-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + }), + ('Date::Language', '2.30', { + 'source_tmpl': 'TimeDate-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GB/GBARR'], + }), + ('version', '0.9917', { + 'source_tmpl': 'version-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/J/JP/JPEACOCK'], + }), + ('Sub::Uplevel', '0.2800', { + 'source_tmpl': 'Sub-Uplevel-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN'], + }), + ('XML::Bare', '0.53', { + 'source_tmpl': 'XML-Bare-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/C/CO/CODECHILD'], + 'patches': ['XML-Bare-0.53_icc.patch'], + }), + ('Dist::CheckConflicts', '0.11', { + 'source_tmpl': 'Dist-CheckConflicts-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DO/DOY'], + }), + ('Sub::Name', '0.21', { + 'source_tmpl': 'Sub-Name-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + }), + ('Time::Piece', '1.31', { + 'source_tmpl': 'Time-Piece-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ES/ESAYM'], + }), + ('Digest::HMAC', '1.03', { + 'source_tmpl': 'Digest-HMAC-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + }), + ('HTTP::Negotiate', '6.01', { + 'source_tmpl': 'HTTP-Negotiate-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + }), + ('MIME::Lite', '3.030', { + 'source_tmpl': 'MIME-Lite-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + }), + ('Crypt::Rijndael', '1.13', { + 'source_tmpl': 'Crypt-Rijndael-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/L/LE/LEONT'], + }), + ('B::Lint', '1.20', { + 'source_tmpl': 'B-Lint-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + }), + ('Canary::Stability', '2012', { + 'source_tmpl': 'Canary-Stability-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN'], + }), + ('AnyEvent', '7.13', { + 'source_tmpl': 'AnyEvent-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN'], + }), + ('Object::Accessor', '0.48', { + 'source_tmpl': 'Object-Accessor-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BI/BINGOS'], + }), + ('Data::UUID', '1.221', { + 'source_tmpl': 'Data-UUID-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + }), + ('Test::Pod', '1.51', { + 'source_tmpl': 'Test-Pod-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + }), + ('AppConfig', '1.71', { + 'source_tmpl': 'AppConfig-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/N/NE/NEILB'], + }), + ('Net::SMTP::SSL', '1.04', { + 'source_tmpl': 'Net-SMTP-SSL-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + }), + ('XML::Tiny', '2.06', { + 'source_tmpl': 'XML-Tiny-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DC/DCANTRELL'], + }), + ('HTML::Tagset', '3.20', { + 'source_tmpl': 'HTML-Tagset-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/P/PE/PETDANCE'], + }), + ('HTML::Tree', '5.03', { + 'source_tmpl': 'HTML-Tree-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/C/CJ/CJM'], + }), + ('Devel::GlobalDestruction', '0.14', { + 'source_tmpl': 'Devel-GlobalDestruction-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/H/HA/HAARG'], + }), + ('WWW::RobotRules', '6.02', { + 'source_tmpl': 'WWW-RobotRules-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + }), + ('Expect', '1.33', { + 'source_tmpl': 'Expect-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/J/JA/JACOBY'], + }), + ('Term::UI', '0.46', { + 'source_tmpl': 'Term-UI-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BI/BINGOS'], + }), + ('Net::SNMP', 'v6.0.1', { + 'source_tmpl': 'Net-SNMP-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DT/DTOWN'], + }), + ('XML::SAX::Writer', '0.56', { + 'source_tmpl': 'XML-SAX-Writer-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/P/PE/PERIGRIN'], + }), + ('Statistics::Descriptive', '3.0612', { + 'source_tmpl': 'Statistics-Descriptive-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF'], + }), + ('Class::Load', '0.23', { + 'source_tmpl': 'Class-Load-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + }), + ('LWP::Simple', '6.25', { + 'source_tmpl': 'libwww-perl-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/O/OA/OALDERS'], + }), + ('Time::Piece::MySQL', '0.06', { + 'source_tmpl': 'Time-Piece-MySQL-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/K/KA/KASEI'], + }), + ('Package::Stash::XS', '0.28', { + 'source_tmpl': 'Package-Stash-XS-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DO/DOY'], + }), + ('GD::Graph', '1.54', { + 'source_tmpl': 'GDGraph-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RU/RUZ'], + }), + ('Set::Array', '0.30', { + 'source_tmpl': 'Set-Array-%(version)s.tgz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RS/RSAVAGE'], + }), + ('boolean', '0.46', { + 'source_tmpl': 'boolean-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/I/IN/INGY'], + }), + ('Number::Format', '1.75', { + 'source_tmpl': 'Number-Format-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/W/WR/WRW'], + }), + ('Data::Stag', '0.14', { + 'source_tmpl': 'Data-Stag-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/C/CM/CMUNGALL'], + }), + ('Test::NoWarnings', '1.04', { + 'source_tmpl': 'Test-NoWarnings-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AD/ADAMK'], + }), + ('Crypt::DES', '2.07', { + 'source_tmpl': 'Crypt-DES-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DP/DPARIS'], + }), + ('Exporter', '5.72', { + 'source_tmpl': 'Exporter-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TO/TODDR'], + }), + ('Class::Inspector', '1.31', { + 'source_tmpl': 'Class-Inspector-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/P/PL/PLICEASE'], + }), + ('Parse::RecDescent', '1.967014', { + 'source_tmpl': 'Parse-RecDescent-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/J/JT/JTBRAUN'], + }), + ('Carp', '1.38', { + 'source_tmpl': 'Carp-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + }), + ('XML::XPath', '1.40', { + 'source_tmpl': 'XML-XPath-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MA/MANWAR'], + }), + ('Capture::Tiny', '0.46', { + 'source_tmpl': 'Capture-Tiny-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN'], + }), + ('JSON', '2.90', { + 'source_tmpl': 'JSON-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MA/MAKAMAKA'], + }), + ('Sub::Exporter', '0.987', { + 'source_tmpl': 'Sub-Exporter-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + }), + ('Class::Load::XS', '0.09', { + 'source_tmpl': 'Class-Load-XS-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + }), + ('Set::IntSpan::Fast', '1.15', { + 'source_tmpl': 'Set-IntSpan-Fast-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AN/ANDYA'], + }), + ('Sub::Exporter::Progressive', '0.001013', { + 'source_tmpl': 'Sub-Exporter-Progressive-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/F/FR/FREW'], + }), + ('Data::Dumper::Concise', '2.022', { + 'source_tmpl': 'Data-Dumper-Concise-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/F/FR/FREW'], + }), + ('File::Slurp::Tiny', '0.004', { + 'source_tmpl': 'File-Slurp-Tiny-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/L/LE/LEONT'], + }), + ('Algorithm::Diff', '1.1903', { + 'source_tmpl': 'Algorithm-Diff-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TY/TYEMQ'], + }), + ('AnyData', '0.12', { + 'source_tmpl': 'AnyData-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RE/REHSACK'], + }), + ('Text::Iconv', '1.7', { + 'source_tmpl': 'Text-Iconv-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MP/MPIOTR'], + }), + ('Class::Data::Inheritable', '0.08', { + 'source_tmpl': 'Class-Data-Inheritable-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TM/TMTM'], + }), + ('Text::Balanced', '2.03', { + 'source_tmpl': 'Text-Balanced-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SH/SHAY'], + }), + ('strictures', '2.000003', { + 'source_tmpl': 'strictures-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/H/HA/HAARG'], + }), + ('Switch', '2.17', { + 'source_tmpl': 'Switch-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/C/CH/CHORNY'], + }), + ('File::Which', '1.21', { + 'source_tmpl': 'File-Which-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/P/PL/PLICEASE'], + }), + ('Email::Date::Format', '1.005', { + 'source_tmpl': 'Email-Date-Format-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + }), + ('Error', '0.17024', { + 'source_tmpl': 'Error-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF'], + }), + ('Mock::Quick', '1.111', { + 'source_tmpl': 'Mock-Quick-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/E/EX/EXODIST'], + }), + ('Text::CSV', '1.92', { + 'source_tmpl': 'Text-CSV-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/I/IS/ISHIGAKI'], + }), + ('Test::Output', '1.031', { + 'source_tmpl': 'Test-Output-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BD/BDFOY'], + }), + ('Class::DBI', 'v3.0.17', { + 'source_tmpl': 'Class-DBI-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TM/TMTM'], + }), + ('List::AllUtils', '0.14', { + 'source_tmpl': 'List-AllUtils-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DR/DROLSKY'], + }), + ('UNIVERSAL::moniker', '0.08', { + 'source_tmpl': 'UNIVERSAL-moniker-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/K/KA/KASEI'], + }), + ('Exception::Class', '1.42', { + 'source_tmpl': 'Exception-Class-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DR/DROLSKY'], + }), + ('File::CheckTree', '4.42', { + 'source_tmpl': 'File-CheckTree-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + }), + ('Math::VecStat', '0.08', { + 'source_tmpl': 'Math-VecStat-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AS/ASPINELLI'], + }), + ('Pod::LaTeX', '0.61', { + 'source_tmpl': 'Pod-LaTeX-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TJ/TJENNESS'], + }), + ('Eval::Closure', '0.14', { + 'source_tmpl': 'Eval-Closure-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DO/DOY'], + }), + ('HTTP::Request', '6.11', { + 'source_tmpl': 'HTTP-Message-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + }), + ('XML::Twig', '3.52', { + 'source_tmpl': 'XML-Twig-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MI/MIROD'], + }), + ('IO::String', '1.08', { + 'source_tmpl': 'IO-String-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + }), + ('XML::Simple', '2.22', { + 'source_tmpl': 'XML-Simple-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GR/GRANTM'], + }), + ('Sub::Install', '0.928', { + 'source_tmpl': 'Sub-Install-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + }), + ('HTTP::Cookies', '6.03', { + 'source_tmpl': 'HTTP-Cookies-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/O/OA/OALDERS'], + }), + ('Pod::Plainer', '1.04', { + 'source_tmpl': 'Pod-Plainer-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RM/RMBARKER'], + }), + ('Test::Exception::LessClever', '0.009', { + 'source_tmpl': 'Test-Exception-LessClever-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + }), + ('LWP::MediaTypes', '6.02', { + 'source_tmpl': 'LWP-MediaTypes-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + }), + ('Scalar::Util', '1.47', { + 'source_tmpl': 'Scalar-List-Utils-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/P/PE/PEVANS'], + }), + ('Data::Section::Simple', '0.07', { + 'source_tmpl': 'Data-Section-Simple-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MI/MIYAGAWA'], + }), + ('Class::Trigger', '0.14', { + 'source_tmpl': 'Class-Trigger-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MI/MIYAGAWA'], + }), + ('HTTP::Daemon', '6.01', { + 'source_tmpl': 'HTTP-Daemon-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + }), + ('File::HomeDir', '1.00', { + 'source_tmpl': 'File-HomeDir-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AD/ADAMK'], + }), + ('HTTP::Date', '6.02', { + 'source_tmpl': 'HTTP-Date-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + }), + ('Authen::SASL', '2.16', { + 'source_tmpl': 'Authen-SASL-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GB/GBARR'], + }), + ('Clone', '0.38', { + 'source_tmpl': 'Clone-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GARU'], + }), + ('Data::Types', '0.09', { + 'source_tmpl': 'Data-Types-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DW/DWHEELER'], + }), + ('Import::Into', '1.002005', { + 'source_tmpl': 'Import-Into-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/H/HA/HAARG'], + }), + ('DateTime::Tiny', '1.06', { + 'source_tmpl': 'DateTime-Tiny-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN'], + }), + ('DBD::AnyData', '0.110', { + 'source_tmpl': 'DBD-AnyData-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RE/REHSACK'], + }), + ('Text::Format', '0.60', { + 'source_tmpl': 'Text-Format-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF'], + }), + ('Devel::CheckCompiler', '0.07', { + 'source_tmpl': 'Devel-CheckCompiler-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SY/SYOHEX'], + }), + ('Log::Handler', '0.88', { + 'source_tmpl': 'Log-Handler-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BL/BLOONIX'], + }), + ('DBIx::ContextualFetch', '1.03', { + 'source_tmpl': 'DBIx-ContextualFetch-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TM/TMTM'], + }), + ('Devel::StackTrace', '2.02', { + 'source_tmpl': 'Devel-StackTrace-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DR/DROLSKY'], + }), + ('Term::ReadKey', '2.14', { + 'source_tmpl': 'TermReadKey-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/K/KJ/KJALB'], + }), + ('Set::IntSpan', '1.19', { + 'source_tmpl': 'Set-IntSpan-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SW/SWMCD'], + }), + ('Moose', '2.2004', { + 'source_tmpl': 'Moose-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + }), + ('Algorithm::Dependency', '1.110', { + 'source_tmpl': 'Algorithm-Dependency-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AD/ADAMK'], + }), + ('Font::TTF', '1.06', { + 'source_tmpl': 'Font-TTF-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BH/BHALLISSY'], + }), + ('IPC::Run3', '0.048', { + 'source_tmpl': 'IPC-Run3-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + }), + ('File::Find::Rule', '0.34', { + 'source_tmpl': 'File-Find-Rule-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RC/RCLAMP'], + }), + ('SQL::Statement', '1.410', { + 'source_tmpl': 'SQL-Statement-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RE/REHSACK'], + }), + ('File::Slurp', '9999.19', { + 'source_tmpl': 'File-Slurp-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/U/UR/URI'], + }), + ('Package::Stash', '0.37', { + 'source_tmpl': 'Package-Stash-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DO/DOY'], + }), + ('Data::OptList', '0.110', { + 'source_tmpl': 'Data-OptList-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + }), + ('CPANPLUS', '0.9164', { + 'source_tmpl': 'CPANPLUS-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BI/BINGOS'], + }), + ('IO::Tty', '1.12', { + 'source_tmpl': 'IO-Tty-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TO/TODDR'], + }), + ('Text::Soundex', '3.05', { + 'source_tmpl': 'Text-Soundex-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + }), + ('Lingua::EN::PluralToSingular', '0.19', { + 'source_tmpl': 'Lingua-EN-PluralToSingular-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BK/BKB'], + }), + ('Want', '0.29', { + 'source_tmpl': 'Want-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RO/ROBIN'], + }), + ('Cwd::Guard', '0.05', { + 'source_tmpl': 'Cwd-Guard-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/K/KA/KAZEBURO'], + }), + ('Bundle::BioPerl', '2.1.9', { + 'source_tmpl': 'Bundle-BioPerl-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/C/CJ/CJFIELDS'], + }), + ('Mail::Util', '2.18', { + 'source_tmpl': 'MailTools-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MA/MARKOV'], + }), + ('Text::Template', '1.47', { + 'source_tmpl': 'Text-Template-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MS/MSCHOUT'], + }), + ('PDF::API2', '2.031', { + 'source_tmpl': 'PDF-API2-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SS/SSIMMS'], + }), + ('Devel::CheckLib', '1.11', { + 'source_tmpl': 'Devel-CheckLib-%(version)s.tar.gz', + 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MA/MATTN'], + }), + ('SVG', '2.77', { + 'source_tmpl': 'SVG-2.77.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MA/MANWAR/'], + }), + ('Statistics::Basic', '1.6611', { + 'source_tmpl': 'Statistics-Basic-1.6611.tar.gz', + 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JE/JETTERO/'], + }), +] + +moduleclass = 'lang' diff --git a/easybuild/easyconfigs/t/Trinity/Trinity-2.4.0-foss-2017a.eb b/easybuild/easyconfigs/t/Trinity/Trinity-2.4.0-foss-2017a.eb new file mode 100644 index 0000000000..90175fa060 --- /dev/null +++ b/easybuild/easyconfigs/t/Trinity/Trinity-2.4.0-foss-2017a.eb @@ -0,0 +1,34 @@ +name = 'Trinity' +version = '2.4.0' +java = 'Java' +javaver = '1.8.0_121' + +homepage = 'http://trinityrnaseq.github.io' +description = """Trinity represents a novel method for the efficient and robust de novo reconstruction + of transcriptomes from RNA-Seq data. Trinity combines three independent software modules: Inchworm, + Chrysalis, and Butterfly, applied sequentially to process large volumes of RNA-Seq reads.""" +toolchain = {'name': 'foss', 'version': '2017a'} +toolchainopts = {'optarch': True} + +source_urls = ['https://github.com/trinityrnaseq/trinityrnaseq/archive/'] +sources = ['%(name)s-v%(version)s.tar.gz'] + +patches = [ + 'chrysalis_commandline_noconsts_2012-10-05.patch', +] + +builddependencies = [ + ('Autotools', '20150215', '', ('GCCcore', '6.3.0')), +] + +dependencies = [ + (java, javaver, '', True), + ('ant', '1.10.1', '-%s-%s' % (java, javaver), True), + ('Bowtie', '1.1.2'), + ('Bowtie2', '2.3.2'), + ('ncurses', '6.0'), + ('zlib', '1.2.11'), + ('Perl', '5.24.1'), +] + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/t/tbb/tbb-2017_U6-GCCcore-6.3.0.eb b/easybuild/easyconfigs/t/tbb/tbb-2017_U6-GCCcore-6.3.0.eb new file mode 100644 index 0000000000..34c5460e40 --- /dev/null +++ b/easybuild/easyconfigs/t/tbb/tbb-2017_U6-GCCcore-6.3.0.eb @@ -0,0 +1,17 @@ +name = 'tbb' +version = '2017_U6' + +homepage = 'https://01.org/tbb/' +description = """Intel(R) Threading Building Blocks (Intel(R) TBB) lets you easily write parallel C++ programs that + take full advantage of multicore performance, that are portable, composable and have future-proof scalability.""" + +toolchain = {'name': 'GCCcore', 'version': '6.3.0'} + +source_urls = ['https://github.com/01org/tbb/archive/'] +sources = ['%(version)s.tar.gz'] + +builddependencies = [ + ('binutils', '2.27') +] + +moduleclass = 'lib' -- GitLab From fd668ccbdfb333024df931f65aa141c832a501b8 Mon Sep 17 00:00:00 2001 From: Balazs Hajgato Date: Fri, 4 Aug 2017 11:46:38 +0200 Subject: [PATCH 541/608] Checksums added --- .../b/Bowtie/Bowtie-1.1.2-GCCcore-6.3.0.eb | 1 + .../b/Bowtie2/Bowtie2-2.3.2-foss-2017a.eb | 1 + .../p/Perl/Perl-5.24.1-foss-2017a.eb | 223 ++++++++++++++++++ .../t/Trinity/Trinity-2.4.0-foss-2017a.eb | 1 + .../t/tbb/tbb-2017_U6-GCCcore-6.3.0.eb | 1 + 5 files changed, 227 insertions(+) diff --git a/easybuild/easyconfigs/b/Bowtie/Bowtie-1.1.2-GCCcore-6.3.0.eb b/easybuild/easyconfigs/b/Bowtie/Bowtie-1.1.2-GCCcore-6.3.0.eb index a46b5265d0..ffaca077d2 100644 --- a/easybuild/easyconfigs/b/Bowtie/Bowtie-1.1.2-GCCcore-6.3.0.eb +++ b/easybuild/easyconfigs/b/Bowtie/Bowtie-1.1.2-GCCcore-6.3.0.eb @@ -14,5 +14,6 @@ toolchainopts = {'pic': True} sources = ['%(namelower)s-%(version)s-src.zip'] source_urls = ['http://download.sourceforge.net/bowtie-bio/'] +checksums = ['b1e9ccc825207efd1893d9e33244c681bcb89b9b2b811eb95a9f5a92eab637ae'] moduleclass = 'bio' diff --git a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2017a.eb b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2017a.eb index 9d4236c5ff..0222eced42 100644 --- a/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2017a.eb +++ b/easybuild/easyconfigs/b/Bowtie2/Bowtie2-2.3.2-foss-2017a.eb @@ -23,6 +23,7 @@ toolchainopts = {'pic': True, 'cstd': 'gnu++98'} sources = ['%(namelower)s-%(version)s-source.zip'] source_urls = [('http://sourceforge.net/projects/bowtie-bio/files/%(namelower)s/%(version)s', 'download')] +checksums = ['ef0fe6d712eb3f9fbd784a5772547a28859a71eb6c455ef670b0f11a56cc73f7'] dependencies = [('tbb', '2017_U6')] diff --git a/easybuild/easyconfigs/p/Perl/Perl-5.24.1-foss-2017a.eb b/easybuild/easyconfigs/p/Perl/Perl-5.24.1-foss-2017a.eb index c45b3b6b14..82a8efae48 100644 --- a/easybuild/easyconfigs/p/Perl/Perl-5.24.1-foss-2017a.eb +++ b/easybuild/easyconfigs/p/Perl/Perl-5.24.1-foss-2017a.eb @@ -9,6 +9,7 @@ toolchainopts = {'pic': True} source_urls = ['http://www.cpan.org/src/%(version_major)s.0'] sources = [SOURCELOWER_TAR_GZ] +checksums = ['e6c185c9b09bdb3f1b13f678999050c639859a7ef39c8cad418448075f5918af'] # !! order of extensions is important !! # extensions updated on April 4th 2017 @@ -16,891 +17,1113 @@ exts_list = [ ('Config::General', '2.63', { 'source_tmpl': 'Config-General-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TL/TLINDEN'], + 'checksums': ['0a9bf977b8aabe76343e88095d2296c8a422410fd2a05a1901f2b20e2e1f6fad'], }), ('File::Listing', '6.04', { 'source_tmpl': 'File-Listing-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + 'checksums': ['1e0050fcd6789a2179ec0db282bf1e90fb92be35d1171588bd9c47d52d959cf5'], }), ('ExtUtils::InstallPaths', '0.011', { 'source_tmpl': 'ExtUtils-InstallPaths-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/L/LE/LEONT'], + 'checksums': ['7609fa048cdcf1451cad5b1d7d494f30e3d5bad0672d15404f1ea60e1df0067c'], }), ('ExtUtils::Helpers', '0.026', { 'source_tmpl': 'ExtUtils-Helpers-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/L/LE/LEONT'], + 'checksums': ['de901b6790a4557cf4ec908149e035783b125bf115eb9640feb1bc1c24c33416'], }), ('Test::Harness', '3.38', { 'source_tmpl': 'Test-Harness-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/L/LE/LEONT'], + 'checksums': ['af906dd279217a6db5064a058658f2b1d5aa1d307ed6f142d96ac4d339754c01'], }), ('ExtUtils::Config', '0.008', { 'source_tmpl': 'ExtUtils-Config-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/L/LE/LEONT'], + 'checksums': ['ae5104f634650dce8a79b7ed13fb59d67a39c213a6776cfdaa3ee749e62f1a8c'], }), ('Module::Build::Tiny', '0.039', { 'source_tmpl': 'Module-Build-Tiny-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/L/LE/LEONT'], + 'checksums': ['7d580ff6ace0cbe555bf36b86dc8ea232581530cbeaaea09bccb57b55797f11c'], }), ('aliased', '0.34', { 'source_tmpl': 'aliased-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + 'checksums': ['c350524507cd827fab864e5d4c2cc350b1babaa12fa95aec0ca00843fcc7deeb'], }), ('Text::Glob', '0.11', { 'source_tmpl': 'Text-Glob-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RC/RCLAMP'], + 'checksums': ['069ccd49d3f0a2dedb115f4bdc9fbac07a83592840953d1fcdfc39eb9d305287'], }), ('Regexp::Common', '2016060801', { 'source_tmpl': 'Regexp-Common-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AB/ABIGAIL'], + 'checksums': ['fc2fc178facf0292974d6511bad677dd038fe60d7ac118e3b83a1ca9e98a8403'], }), ('GO::Utils', '0.15', { 'source_tmpl': 'go-perl-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/C/CM/CMUNGALL'], + 'checksums': ['423d26155ee85ca51ab2270cee59f4e85b193e57ac3a29aff827298c0a396b12'], }), ('Module::Pluggable', '5.2', { 'source_tmpl': 'Module-Pluggable-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SI/SIMONW'], + 'checksums': ['b3f2ad45e4fd10b3fb90d912d78d8b795ab295480db56dc64e86b9fa75c5a6df'], }), ('Test::Fatal', '0.014', { 'source_tmpl': 'Test-Fatal-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['bcdcef5c7b2790a187ebca810b0a08221a63256062cfab3c3b98685d91d1cbb0'], }), ('Test::Warnings', '0.026', { 'source_tmpl': 'Test-Warnings-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + 'checksums': ['ae2b68b1b5616704598ce07f5118efe42dc4605834453b7b2be14e26f9cc9a08'], }), ('File::ShareDir::Install', '0.11', { 'source_tmpl': 'File-ShareDir-Install-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + 'checksums': ['32bf8772e9fea60866074b27ff31ab5bc3f88972d61915e84cbbb98455e00cc8'], }), ('DateTime::Locale', '1.16', { 'source_tmpl': 'DateTime-Locale-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DR/DROLSKY'], + 'checksums': ['dfaf4c42149c0622e80721773b8d7229d7785280503585895c9fe9f51e076cfe'], }), ('DateTime::TimeZone', '2.11', { 'source_tmpl': 'DateTime-TimeZone-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DR/DROLSKY'], + 'checksums': ['a7c0b2581d2bf6d5cc535364099a67678a9f6ee608e5042dff9ef9c4c577ea6b'], }), ('Test::Requires', '0.10', { 'source_tmpl': 'Test-Requires-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TO/TOKUHIROM'], + 'checksums': ['2768a391d50ab94b95cefe540b9232d7046c13ee86d01859e04c044903222eb5'], }), ('Module::Implementation', '0.09', { 'source_tmpl': 'Module-Implementation-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DR/DROLSKY'], + 'checksums': ['c15f1a12f0c2130c9efff3c2e1afe5887b08ccd033bd132186d1e7d5087fd66d'], }), ('Module::Build', '0.4222', { 'source_tmpl': 'Module-Build-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/L/LE/LEONT'], + 'checksums': ['e74b45d9a74736472b74830599cec0d1123f992760f9cd97104f94bee800b160'], }), ('Module::Runtime', '0.014', { 'source_tmpl': 'Module-Runtime-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/Z/ZE/ZEFRAM'], + 'checksums': ['4c44fe0ea255a9fd00741ee545063f6692d2a28e7ef2fbaad1b24a92803362a4'], }), ('Try::Tiny', '0.28', { 'source_tmpl': 'Try-Tiny-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + 'checksums': ['f1d166be8aa19942c4504c9111dade7aacb981bc5b3a2a5c5f6019646db8c146'], }), ('Params::Validate', '1.26', { 'source_tmpl': 'Params-Validate-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DR/DROLSKY'], + 'checksums': ['821ac3cfa9715b94f60926faf316b9ff722785594b37036202371ad2303a72ed'], }), ('List::MoreUtils', '0.418', { 'source_tmpl': 'List-MoreUtils-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RE/REHSACK'], + 'checksums': ['365651edea4e0c806576e4dcfc3dfb98bb4cbb343bc5c3e04cdc7b5b71ed4988'], }), ('Exporter::Tiny', '0.044', { 'source_tmpl': 'Exporter-Tiny-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TO/TOBYINK'], + 'checksums': ['eda868cc2da094b685ceace4245b83de11f439feb98e0ec8246cfbb9109c88ab'], }), ('Class::Singleton', '1.5', { 'source_tmpl': 'Class-Singleton-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SH/SHAY'], + 'checksums': ['38220d04f02e3a803193c2575a1644cce0b95ad4b95c19eb932b94e2647ef678'], }), ('DateTime', '1.42', { 'source_tmpl': 'DateTime-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DR/DROLSKY'], + 'checksums': ['efa4badf07365d1b03ee5527fc79baaf7d8b449bf7baad13599f04177232416e'], }), ('File::Find::Rule::Perl', '1.15', { 'source_tmpl': 'File-Find-Rule-Perl-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + 'checksums': ['9a48433f86e08ce18e03526e2982de52162eb909d19735460f07eefcaf463ea6'], }), ('Readonly', '2.05', { 'source_tmpl': 'Readonly-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SA/SANKO'], + 'checksums': ['4b23542491af010d44a5c7c861244738acc74ababae6b8838d354dfb19462b5e'], }), ('Git', '0.41', { 'source_tmpl': 'Git-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MS/MSOUTH'], + 'checksums': ['9d4de21612253a1d3252ff7657d7e832dcf3cc2a748a8c84f73de618a3a38239'], }), ('Tree::DAG_Node', '1.29', { 'source_tmpl': 'Tree-DAG_Node-%(version)s.tgz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RS/RSAVAGE'], + 'checksums': ['2d04eb011aa06cee633c367d1f322b8d937020fde5d5393fad6a26c93725c4a8'], }), ('Template', '2.26', { 'source_tmpl': 'Template-Toolkit-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AB/ABW'], + 'checksums': ['e7e1cf36026f1ef96d8233e18a3fb39e1eafe9109edc639ecf25b20651cd76be'], }), ('FreezeThaw', '0.5001', { 'source_tmpl': 'FreezeThaw-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/I/IL/ILYAZ/modules'], + 'checksums': ['3c5e08329106f9cee3ab444b81331c5935f83084a151d88505e7a465da540f41'], }), ('DBI', '1.636', { 'source_tmpl': 'DBI-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TI/TIMB'], + 'checksums': ['8f7ddce97c04b4b7a000e65e5d05f679c964d62c8b02c94c1a7d815bb2dd676c'], }), ('DBD::SQLite', '1.54', { 'source_tmpl': 'DBD-SQLite-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/I/IS/ISHIGAKI'], + 'checksums': ['3929a6dbd8d71630f0cb57f85dcef9588cd7ac4c9fa12db79df77b9d3a4d7269'], }), ('Math::Bezier', '0.01', { 'source_tmpl': 'Math-Bezier-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AB/ABW'], + 'checksums': ['11a815fc45fdf0efabb1822ab77faad8b9eea162572c5f0940c8ed7d56e6b8b8'], }), ('Archive::Extract', '0.80', { 'source_tmpl': 'Archive-Extract-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BI/BINGOS'], + 'checksums': ['25cbc2d5626c14d39a0b5e4fe8383941e085c9a7e0aa873d86e81b6e709025f4'], }), ('DBIx::Simple', '1.35', { 'source_tmpl': 'DBIx-Simple-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/J/JU/JUERD'], + 'checksums': ['445535b3dfab88140c7a0d2776b1e78f254dc7e9c81072d5a01afc95a5db499a'], }), ('Shell', '0.73', { 'source_tmpl': 'Shell-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/F/FE/FERREIRA'], + 'checksums': ['f7dbebf65261ed0e5abd0f57052b64d665a1a830bab4c8bbc220f235bd39caf5'], }), ('File::Spec', '3.62', { 'source_tmpl': 'PathTools-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['36350e12f58871437ba03391f80a506e447e3c6630cc37d0625bc25ff1c7b4d2'], }), ('Test::Simple', '1.302078', { 'source_tmpl': 'Test-Simple-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/EX/EXODIST'], + 'checksums': ['ab47f3a980ad9aedb78a731719a0487f02a7bc30c17b65457e6dfc3a89a04c15'], }), ('Set::Scalar', '1.29', { 'source_tmpl': 'Set-Scalar-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DA/DAVIDO'], + 'checksums': ['a3dc1526f3dde72d3c64ea00007b86ce608cdcd93567cf6e6e42dc10fdc4511d'], }), ('IO::Stringy', '2.111', { 'source_tmpl': 'IO-stringy-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DS/DSKOLL'], + 'checksums': ['8c67fd6608c3c4e74f7324f1404a856c331dbf48d9deda6aaa8296ea41bf199d'], }), ('Encode::Locale', '1.05', { 'source_tmpl': 'Encode-Locale-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + 'checksums': ['176fa02771f542a4efb1dbc2a4c928e8f4391bf4078473bd6040d8f11adb0ec1'], }), ('XML::SAX::Base', '1.09', { 'source_tmpl': 'XML-SAX-Base-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GR/GRANTM'], + 'checksums': ['66cb355ba4ef47c10ca738bd35999723644386ac853abbeb5132841f5e8a2ad0'], }), ('XML::NamespaceSupport', '1.12', { 'source_tmpl': 'XML-NamespaceSupport-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/P/PE/PERIGRIN'], + 'checksums': ['47e995859f8dd0413aa3f22d350c4a62da652e854267aa0586ae544ae2bae5ef'], }), ('XML::SAX', '0.99', { 'source_tmpl': 'XML-SAX-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GR/GRANTM'], + 'checksums': ['32b04b8e36b6cc4cfc486de2d859d87af5386dd930f2383c49347050d6f5ad84'], }), ('Test::LeakTrace', '0.15', { 'source_tmpl': 'Test-LeakTrace-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GF/GFUJI'], + 'checksums': ['efb8b58b6981efc6c9c4b4a3b550728f8c179f3c8d57c05724873011c08de65e'], }), ('Test::Exception', '0.43', { 'source_tmpl': 'Test-Exception-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/EX/EXODIST'], + 'checksums': ['156b13f07764f766d8b45a43728f2439af81a3512625438deab783b7883eb533'], }), ('Text::Table', '1.132', { 'source_tmpl': 'Text-Table-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF'], + 'checksums': ['cd601742ee526a9c54b9fe0a4c051e1b09a23b75e2c97de14305218116aba516'], }), ('MIME::Types', '2.13', { 'source_tmpl': 'MIME-Types-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MA/MARKOV'], + 'checksums': ['99c3376357bbe22cc8b6c78f560aa18d81621287695cd629008a6c4e66b77bf8'], }), ('Module::Build::XSUtil', '0.16', { 'source_tmpl': 'Module-Build-XSUtil-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/H/HI/HIDEAKIO'], + 'checksums': ['15762fa4e43b41302cff261c7ad75aacdc874f416981f206d783f20acd023adb'], }), ('Tie::Function', '0.02', { 'source_tmpl': 'Tie-Function-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DA/DAVIDNICO/handy_tied_functions'], + 'checksums': ['0b1617af218dfab911ba0fbd72210529a246efe140332da77fe3e03d11000117'], }), ('Template::Plugin::Number::Format', '1.06', { 'source_tmpl': 'Template-Plugin-Number-Format-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DA/DARREN'], + 'checksums': ['0865836a1bcbc34d4a0ee34b5ccc14d7b511f1fd300bf390f002dac349539843'], }), ('HTML::Parser', '3.72', { 'source_tmpl': 'HTML-Parser-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + 'checksums': ['ec28c7e1d9e67c45eca197077f7cdc41ead1bb4c538c7f02a3296a4bb92f608b'], }), ('Date::Handler', '1.2', { 'source_tmpl': 'Date-Handler-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BB/BBEAUSEJ'], + 'checksums': ['c36fd2b68d48c2e17417bf2873c78820f3ae02460fdf5976b8eeab887d59e16c'], }), ('Params::Util', '1.07', { 'source_tmpl': 'Params-Util-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AD/ADAMK'], + 'checksums': ['30f1ec3f2cf9ff66ae96f973333f23c5f558915bb6266881eac7423f52d7c76c'], }), ('IO::HTML', '1.001', { 'source_tmpl': 'IO-HTML-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/C/CJ/CJM'], + 'checksums': ['ea78d2d743794adc028bc9589538eb867174b4e165d7d8b5f63486e6b828e7e0'], }), ('Data::Grove', '0.08', { 'source_tmpl': 'libxml-perl-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/K/KM/KMACLEOD'], + 'checksums': ['4571059b7b5d48b7ce52b01389e95d798bf5cf2020523c153ff27b498153c9cb'], }), ('Class::ISA', '0.36', { 'source_tmpl': 'Class-ISA-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SM/SMUELLER'], + 'checksums': ['8816f34e9a38e849a10df756030dccf9fe061a196c11ac3faafd7113c929b964'], }), ('URI', '1.71', { 'source_tmpl': 'URI-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + 'checksums': ['9c8eca0d7f39e74bbc14706293e653b699238eeb1a7690cc9c136fb8c2644115'], }), ('Ima::DBI', '0.35', { 'source_tmpl': 'Ima-DBI-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/P/PE/PERRIN'], + 'checksums': ['8b481ceedbf0ae4a83effb80581550008bfdd3885ef01145e3733c7097c00a08'], }), ('Tie::IxHash', '1.23', { 'source_tmpl': 'Tie-IxHash-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/C/CH/CHORNY'], + 'checksums': ['fabb0b8c97e67c9b34b6cc18ed66f6c5e01c55b257dcf007555e0b027d4caf56'], }), ('GO', '0.04', { 'source_tmpl': 'go-db-perl-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SJ/SJCARBON'], + 'checksums': ['8eb73d591ad767e7cf26def40cffd84833875f1ad51e456960b9ed73dc23641b'], }), ('Class::DBI::SQLite', '0.11', { 'source_tmpl': 'Class-DBI-SQLite-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MI/MIYAGAWA'], + 'checksums': ['c4661b00afb7e53c97ac36e13f34dde43c1a93540a2f4ff97e6182b0c731e4e7'], }), ('Pod::POM', '2.01', { 'source_tmpl': 'Pod-POM-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/N/NE/NEILB'], + 'checksums': ['1b50fba9bbdde3ead192beeba0eaddd0c614e3afb1743fa6fff805f57c56f7f4'], }), ('Math::Round', '0.07', { 'source_tmpl': 'Math-Round-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GR/GROMMEL'], + 'checksums': ['73a7329a86e54a5c29a440382e5803095b58f33129e61a1df0093b4824de9327'], }), ('Text::Diff', '1.44', { 'source_tmpl': 'Text-Diff-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/N/NE/NEILB'], + 'checksums': ['57f7a0bed7d085d34a3ffab3a68140d7b816737c87b831086b4c0945bf483b10'], }), ('Log::Message::Simple', '0.10', { 'source_tmpl': 'Log-Message-Simple-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BI/BINGOS'], + 'checksums': ['aa12d1a4c0ac260b94d448fa01feba242a8a85cb6cbfdc66432e3b5b468add96'], }), ('IO::Socket::SSL', '2.047', { 'source_tmpl': 'IO-Socket-SSL-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SU/SULLR'], + 'checksums': ['c5ad8e14174863194ad43c23a38c77e0b202a989cac9d3e13fb30efcf1d41158'], }), ('Fennec::Lite', '0.004', { 'source_tmpl': 'Fennec-Lite-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/EX/EXODIST'], + 'checksums': ['dce28e3932762c2ff92aa52d90405c06e898e81cb7b164ccae8966ae77f1dcab'], }), ('Sub::Uplevel', '0.2800', { 'source_tmpl': 'Sub-Uplevel-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN'], + 'checksums': ['b4f3f63b80f680a421332d8851ddbe5a8e72fcaa74d5d1d98f3c8cc4a3ece293'], }), ('Meta::Builder', '0.003', { 'source_tmpl': 'Meta-Builder-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/EX/EXODIST'], + 'checksums': ['e7ac289b88d1662e87708d716877ac66a1a8414660996fe58c1db96d834a5375'], }), ('Exporter::Declare', '0.114', { 'source_tmpl': 'Exporter-Declare-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/EX/EXODIST'], + 'checksums': ['4bd70d6ca76f6f6ba7e4c618d4ac93b8593a58f1233ccbe18b10f5f204f1d4e4'], }), ('Getopt::Long', '2.49.1', { 'source_tmpl': 'Getopt-Long-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/J/JV/JV'], + 'checksums': ['98fad4235509aa24608d9ef895b5c60fe2acd2bca70ebdf1acaf6824e17a882f'], }), ('Log::Message', '0.08', { 'source_tmpl': 'Log-Message-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BI/BINGOS'], + 'checksums': ['bd697dd62aaf26d118e9f0a0813429deb1c544e4501559879b61fcbdfe99fe46'], }), ('Mouse', 'v2.4.9', { 'source_tmpl': 'Mouse-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SY/SYOHEX'], + 'checksums': ['9640aae77bfee2fa9c739640c8da41482c183890f0901663f004867e12d540f8'], }), ('Test::Version', '2.05', { 'source_tmpl': 'Test-Version-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/P/PL/PLICEASE'], + 'checksums': ['39c0ec02663da0e56962bdafaef6790cf83d12b4d90e8a4cdc971d57d869d63f'], }), ('DBIx::Admin::TableInfo', '3.03', { 'source_tmpl': 'DBIx-Admin-TableInfo-%(version)s.tgz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RS/RSAVAGE'], + 'checksums': ['a852530f95957a43aa794f2edf5f3fe4ecec35bd20150c38136d4c23d85328b6'], }), ('Net::HTTP', '6.13', { 'source_tmpl': 'Net-HTTP-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/O/OA/OALDERS'], + 'checksums': ['2d25e696c5239c8a4aa5a97f07ecaa77cf908cc72bbeef7fa6573570af31ce87'], }), ('Test::Deep', '1.126', { 'source_tmpl': 'Test-Deep-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['159b42451e4018d9da97994f4ac46d5166abf9b6f343db30071c8fd1cfe0c7c2'], }), ('Test::Warn', '0.32', { 'source_tmpl': 'Test-Warn-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BI/BIGJ'], + 'checksums': ['2fc516e71f9ef453be22a4619d91eb3f78df414a57dfa0fd745d3bff50bf73d2'], }), ('MRO::Compat', '0.13', { 'source_tmpl': 'MRO-Compat-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/H/HA/HAARG'], + 'checksums': ['8a2c3b6ccc19328d5579d02a7d91285e2afd85d801f49d423a8eb16f323da4f8'], }), ('Moo', '2.003002', { 'source_tmpl': 'Moo-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/H/HA/HAARG'], + 'checksums': ['f3e9741e79baa63e89f5a08706cd80d18c0a5a37e3d898847e002310e06582f1'], }), ('Hash::Merge', '0.200', { 'source_tmpl': 'Hash-Merge-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RE/REHSACK'], + 'checksums': ['47f9f03330b7595c94e73bdd17dc6682ba59d1cc89e63f4e319617f4bb122a64'], }), ('SQL::Abstract', '1.84', { 'source_tmpl': 'SQL-Abstract-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/I/IL/ILMARI'], + 'checksums': ['655f4aa3d4ea7ca0a7bafb2beff84010d5c77f0ee4413baa0c86456bf6db5e75'], }), ('HTML::Form', '6.03', { 'source_tmpl': 'HTML-Form-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + 'checksums': ['68c01d94f005d5ca9c4d55ad2a1bf3a8d034a5fc6db187d91a4c42f3fdc9fc36'], }), ('File::Copy::Recursive', '0.38', { 'source_tmpl': 'File-Copy-Recursive-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DM/DMUEY'], + 'checksums': ['84ccbddf3894a88a2c2b6be68ff6ef8960037803bb36aa228b31944cfdf6deeb'], }), ('Number::Compare', '0.03', { 'source_tmpl': 'Number-Compare-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RC/RCLAMP'], + 'checksums': ['83293737e803b43112830443fb5208ec5208a2e6ea512ed54ef8e4dd2b880827'], }), ('IPC::Run', '0.94', { 'source_tmpl': 'IPC-Run-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TO/TODDR'], + 'checksums': ['2eb336c91a2b7ea61f98e5b2282d91020d39a484f16041e2365ffd30f8a5605b'], }), ('HTML::Entities::Interpolate', '1.10', { 'source_tmpl': 'HTML-Entities-Interpolate-%(version)s.tgz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RS/RSAVAGE'], + 'checksums': ['f15a9df92c282419f7010964aca1ada844ddfae7afc735cd2ba1bb20883e955c'], }), ('Test::ClassAPI', '1.06', { 'source_tmpl': 'Test-ClassAPI-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AD/ADAMK'], + 'checksums': ['06f82d076501701d78b8dc40b7688507bcc6c58b1beafd559e05bb0644df00a2'], }), ('Test::Most', '0.35', { 'source_tmpl': 'Test-Most-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/O/OV/OVID'], + 'checksums': ['9897a6f4d751598d2ed1047e01c1554b01d0f8c96c45e7e845229782bf6f657f'], }), ('Class::Accessor', '0.34', { 'source_tmpl': 'Class-Accessor-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/K/KA/KASEI'], + 'checksums': ['cdb1e0cdf8380fb9b63b44c33ce5afc1068736d55ac5904bf0eaa1efc1c3cefc'], }), ('Test::Differences', '0.64', { 'source_tmpl': 'Test-Differences-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DC/DCANTRELL'], + 'checksums': ['9f459dd9c2302a0a73e2f5528a0ce7d09d6766f073187ae2c69e603adf2eb276'], }), ('HTTP::Tiny', '0.070', { 'source_tmpl': 'HTTP-Tiny-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN'], + 'checksums': ['74f385d1e96de887a4df5a222d93afdc7d81ea9ad721a56ff3d8449bb12f7733'], }), ('Package::DeprecationManager', '0.17', { 'source_tmpl': 'Package-DeprecationManager-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DR/DROLSKY'], + 'checksums': ['1d743ada482b5c9871d894966e87d4c20edc96931bb949fb2638b000ddd6684b'], }), ('Digest::SHA1', '2.13', { 'source_tmpl': 'Digest-SHA1-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + 'checksums': ['68c1dac2187421f0eb7abf71452a06f190181b8fc4b28ededf5b90296fb943cc'], }), ('Date::Language', '2.30', { 'source_tmpl': 'TimeDate-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GB/GBARR'], + 'checksums': ['75bd254871cb5853a6aa0403ac0be270cdd75c9d1b6639f18ecba63c15298e86'], }), ('version', '0.9917', { 'source_tmpl': 'version-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/J/JP/JPEACOCK'], + 'checksums': ['d9ecb20dc5d7877b1f6cb1b1d2fb4149b1b25a8ec2d5fa09f1b5fbc62668b4c6'], }), ('Sub::Uplevel', '0.2800', { 'source_tmpl': 'Sub-Uplevel-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN'], + 'checksums': ['b4f3f63b80f680a421332d8851ddbe5a8e72fcaa74d5d1d98f3c8cc4a3ece293'], }), ('XML::Bare', '0.53', { 'source_tmpl': 'XML-Bare-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/C/CO/CODECHILD'], + 'checksums': ['865e198e98d904be1683ef5a53a4948f02dabdacde59fc554a082ffbcc5baefd'], 'patches': ['XML-Bare-0.53_icc.patch'], }), ('Dist::CheckConflicts', '0.11', { 'source_tmpl': 'Dist-CheckConflicts-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DO/DOY'], + 'checksums': ['ea844b9686c94d666d9d444321d764490b2cde2f985c4165b4c2c77665caedc4'], }), ('Sub::Name', '0.21', { 'source_tmpl': 'Sub-Name-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + 'checksums': ['bd32e9dee07047c10ae474c9f17d458b6e9885a6db69474c7a494ccc34c27117'], }), ('Time::Piece', '1.31', { 'source_tmpl': 'Time-Piece-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ES/ESAYM'], + 'checksums': ['05084024dc6fcec9ea5218038d1933e9c2cc5aa5f769d70404480e977cd167b9'], }), ('Digest::HMAC', '1.03', { 'source_tmpl': 'Digest-HMAC-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + 'checksums': ['3bc72c6d3ff144d73aefb90e9a78d33612d58cf1cd1631ecfb8985ba96da4a59'], }), ('HTTP::Negotiate', '6.01', { 'source_tmpl': 'HTTP-Negotiate-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + 'checksums': ['1c729c1ea63100e878405cda7d66f9adfd3ed4f1d6cacaca0ee9152df728e016'], }), ('MIME::Lite', '3.030', { 'source_tmpl': 'MIME-Lite-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['8f39901bc580bc3dce69e10415305e4435ff90264c63d29f707b4566460be962'], }), ('Crypt::Rijndael', '1.13', { 'source_tmpl': 'Crypt-Rijndael-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/L/LE/LEONT'], + 'checksums': ['cd7209a6dfe0a3dc8caffe1aa2233b0e6effec7572d76a7a93feefffe636214e'], }), ('B::Lint', '1.20', { 'source_tmpl': 'B-Lint-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['dc49408964fd8b7963859c92e013f0b9f92f74be5a7c2a78e3996279827c10b3'], }), ('Canary::Stability', '2012', { 'source_tmpl': 'Canary-Stability-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN'], + 'checksums': ['fd240b111d834dbae9630c59b42fae2145ca35addc1965ea311edf0d07817107'], }), ('AnyEvent', '7.13', { 'source_tmpl': 'AnyEvent-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN'], + 'checksums': ['a4103f4def9687b5545b3e6be1f29a5a24b59ff9a817b1afc27fb9bc268d04ad'], }), ('Object::Accessor', '0.48', { 'source_tmpl': 'Object-Accessor-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BI/BINGOS'], + 'checksums': ['76cb824a27b6b4e560409fcf6fd5b3bfbbd38b72f1f3d37ed0b54bd9c0baeade'], }), ('Data::UUID', '1.221', { 'source_tmpl': 'Data-UUID-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['3cc7b2a3a7b74b45a059e013f7fd878078500ea4b7269036f84556b022078667'], }), ('Test::Pod', '1.51', { 'source_tmpl': 'Test-Pod-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + 'checksums': ['c1a1d3cedf4a579e3aad89c36f9878a8542b6656dbe71f1581420f49582d7efb'], }), ('AppConfig', '1.71', { 'source_tmpl': 'AppConfig-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/N/NE/NEILB'], + 'checksums': ['1177027025ecb09ee64d9f9f255615c04db5e14f7536c344af632032eb887b0f'], }), ('Net::SMTP::SSL', '1.04', { 'source_tmpl': 'Net-SMTP-SSL-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['7b29c45add19d3d5084b751f7ba89a8e40479a446ce21cfd9cc741e558332a00'], }), ('XML::Tiny', '2.06', { 'source_tmpl': 'XML-Tiny-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DC/DCANTRELL'], + 'checksums': ['d2ca40496b96f6ff08e4f858c3a813a081983f5b5aa6ae76357e2b9a88886eea'], }), ('HTML::Tagset', '3.20', { 'source_tmpl': 'HTML-Tagset-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/P/PE/PETDANCE'], + 'checksums': ['adb17dac9e36cd011f5243881c9739417fd102fce760f8de4e9be4c7131108e2'], }), ('HTML::Tree', '5.03', { 'source_tmpl': 'HTML-Tree-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/C/CJ/CJM'], + 'checksums': ['7d6d73fca622aa74855a8b088faa39454a0f91b7af83c9ec0387f01eefc2148f'], }), ('Devel::GlobalDestruction', '0.14', { 'source_tmpl': 'Devel-GlobalDestruction-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/H/HA/HAARG'], + 'checksums': ['34b8a5f29991311468fe6913cadaba75fd5d2b0b3ee3bb41fe5b53efab9154ab'], }), ('WWW::RobotRules', '6.02', { 'source_tmpl': 'WWW-RobotRules-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + 'checksums': ['46b502e7a288d559429891eeb5d979461dd3ecc6a5c491ead85d165b6e03a51e'], }), ('Expect', '1.33', { 'source_tmpl': 'Expect-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/J/JA/JACOBY'], + 'checksums': ['fddfea6980c4f6771d979472e3e084fb55ca9b92bd39ebabdb2522594bf05ff2'], }), ('Term::UI', '0.46', { 'source_tmpl': 'Term-UI-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BI/BINGOS'], + 'checksums': ['91946c80d7f4aab0ca4bfedc3bbe0a75b37cab1a29bd7bca3b3b7456d417e9a6'], }), ('Net::SNMP', 'v6.0.1', { 'source_tmpl': 'Net-SNMP-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DT/DTOWN'], + 'checksums': ['14c37bc1cbb3f3cdc7d6c13e0f27a859f14cdcfd5ea54a0467a88bc259b0b741'], }), ('XML::SAX::Writer', '0.56', { 'source_tmpl': 'XML-SAX-Writer-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/P/PE/PERIGRIN'], + 'checksums': ['d073f7a25072c8150317b86b99d07031316a15bffab99e63e5afe591c8217d03'], }), ('Statistics::Descriptive', '3.0612', { 'source_tmpl': 'Statistics-Descriptive-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF'], + 'checksums': ['772413148e5e00efb32f277c4254aa78b9112490a896208dcd0025813afdbf7a'], }), ('Class::Load', '0.23', { 'source_tmpl': 'Class-Load-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + 'checksums': ['f2bca579e72ea96c6b1c5ebc86dfa1929062c412443277f0bc0437e50874b28f'], }), ('LWP::Simple', '6.25', { 'source_tmpl': 'libwww-perl-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/O/OA/OALDERS'], + 'checksums': ['49c0110ef38d27a8963a082cf61ce245447871676b85ec9f2b9b41d6c2f37f33'], }), ('Time::Piece::MySQL', '0.06', { 'source_tmpl': 'Time-Piece-MySQL-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/K/KA/KASEI'], + 'checksums': ['319601feec17fae344988a5ee91cfc6a0bcfe742af77dba254724c3268b2a60f'], }), ('Package::Stash::XS', '0.28', { 'source_tmpl': 'Package-Stash-XS-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DO/DOY'], + 'checksums': ['23d8c5c25768ef1dc0ce53b975796762df0d6e244445d06e48d794886c32d486'], }), ('GD::Graph', '1.54', { 'source_tmpl': 'GDGraph-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RU/RUZ'], + 'checksums': ['b96f5c10b656c17d16ab65a1777c908297b028d3b6815f6d54b2337f006bfa4f'], }), ('Set::Array', '0.30', { 'source_tmpl': 'Set-Array-%(version)s.tgz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RS/RSAVAGE'], + 'checksums': ['d9f024c8e3637feccdebcf6479b6754b6c92f1209f567feaf0c23818af31ee3c'], }), ('boolean', '0.46', { 'source_tmpl': 'boolean-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/I/IN/INGY'], + 'checksums': ['95c088085c3e83bf680fe6ce16d8264ec26310490f7d1680e416ea7a118f156a'], }), ('Number::Format', '1.75', { 'source_tmpl': 'Number-Format-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/W/WR/WRW'], + 'checksums': ['82d659cb16461764fd44d11a9ce9e6a4f5e8767dc1069eb03467c6e55de257f3'], }), ('Data::Stag', '0.14', { 'source_tmpl': 'Data-Stag-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/C/CM/CMUNGALL'], + 'checksums': ['4ab122508d2fb86d171a15f4006e5cf896d5facfa65219c0b243a89906258e59'], }), ('Test::NoWarnings', '1.04', { 'source_tmpl': 'Test-NoWarnings-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AD/ADAMK'], + 'checksums': ['638a57658cb119af1fe5b15e73d47c2544dcfef84af0c6b1b2e97f08202b686c'], }), ('Crypt::DES', '2.07', { 'source_tmpl': 'Crypt-DES-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DP/DPARIS'], + 'checksums': ['2db1ebb5837b4cb20051c0ee5b733b4453e3137df0a92306034c867621edd7e7'], }), ('Exporter', '5.72', { 'source_tmpl': 'Exporter-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TO/TODDR'], + 'checksums': ['cd13b7a0e91e8505a0ce4b25f40fab2c92bb28a99ef0d03da1001d95a32f0291'], }), ('Class::Inspector', '1.31', { 'source_tmpl': 'Class-Inspector-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/P/PL/PLICEASE'], + 'checksums': ['065f649f1f7a676f0496c37dc155cf4812edb77bdbb0e95d28c985deff930eeb'], }), ('Parse::RecDescent', '1.967014', { 'source_tmpl': 'Parse-RecDescent-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/J/JT/JTBRAUN'], + 'checksums': ['7041c483431fefd08eb66944fb5f8f7fb0fc595c08b33ed2f4c7037b8acccdcd'], }), ('Carp', '1.38', { 'source_tmpl': 'Carp-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['a5a9ce3cbb959dfefa8c2dd16552567199b286d39b0e55053ca247c038977101'], }), ('XML::XPath', '1.40', { 'source_tmpl': 'XML-XPath-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MA/MANWAR'], + 'checksums': ['2bf66f51fa786e3ce9273bfac6c842d0dd8dbaf5126a7964456a4a41e802ea1e'], }), ('Capture::Tiny', '0.46', { 'source_tmpl': 'Capture-Tiny-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN'], + 'checksums': ['5d7a6a830cf7f2b2960bf8b8afaac16a537ede64f3023827acea5bd24ca77015'], }), ('JSON', '2.90', { 'source_tmpl': 'JSON-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MA/MAKAMAKA'], + 'checksums': ['4ddbb3cb985a79f69a34e7c26cde1c81120d03487e87366f9a119f90f7bdfe88'], }), ('Sub::Exporter', '0.987', { 'source_tmpl': 'Sub-Exporter-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['543cb2e803ab913d44272c7da6a70bb62c19e467f3b12aaac4c9523259b083d6'], }), ('Class::Load::XS', '0.09', { 'source_tmpl': 'Class-Load-XS-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + 'checksums': ['bbec3b916df9e48827950a297bf53ef4dd59ed6376142099504307a42b553baa'], }), ('Set::IntSpan::Fast', '1.15', { 'source_tmpl': 'Set-IntSpan-Fast-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AN/ANDYA'], + 'checksums': ['cfb1768c24f55208e87405b17f537f0f303fa141891d0b22d509a941aa57e24e'], }), ('Sub::Exporter::Progressive', '0.001013', { 'source_tmpl': 'Sub-Exporter-Progressive-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/F/FR/FREW'], + 'checksums': ['d535b7954d64da1ac1305b1fadf98202769e3599376854b2ced90c382beac056'], }), ('Data::Dumper::Concise', '2.022', { 'source_tmpl': 'Data-Dumper-Concise-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/F/FR/FREW'], + 'checksums': ['4c0f30edf539665f708db40d085bd1c4252c8ff3bad518ef177c0a17e6ebfb7c'], }), ('File::Slurp::Tiny', '0.004', { 'source_tmpl': 'File-Slurp-Tiny-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/L/LE/LEONT'], + 'checksums': ['452995beeabf0e923e65fdc627a725dbb12c9e10c00d8018c16d10ba62757f1e'], }), ('Algorithm::Diff', '1.1903', { 'source_tmpl': 'Algorithm-Diff-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TY/TYEMQ'], + 'checksums': ['30e84ac4b31d40b66293f7b1221331c5a50561a39d580d85004d9c1fff991751'], }), ('AnyData', '0.12', { 'source_tmpl': 'AnyData-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RE/REHSACK'], + 'checksums': ['be6a957f04a2feba9b305536b132deceba1f455db295b221a63e75567fadbcfc'], }), ('Text::Iconv', '1.7', { 'source_tmpl': 'Text-Iconv-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MP/MPIOTR'], + 'checksums': ['5b80b7d5e709d34393bcba88971864a17b44a5bf0f9e4bcee383d029e7d2d5c3'], }), ('Class::Data::Inheritable', '0.08', { 'source_tmpl': 'Class-Data-Inheritable-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TM/TMTM'], + 'checksums': ['9967feceea15227e442ec818723163eb6d73b8947e31f16ab806f6e2391af14a'], }), ('Text::Balanced', '2.03', { 'source_tmpl': 'Text-Balanced-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SH/SHAY'], + 'checksums': ['057753f8f0568b53921f66a60a89c30092b73329bcc61a2c43339ab70c9792c8'], }), ('strictures', '2.000003', { 'source_tmpl': 'strictures-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/H/HA/HAARG'], + 'checksums': ['27f8ea096a521e9754d36ea32889c2cda28346d04e3e399e7ea118d182dbaf22'], }), ('Switch', '2.17', { 'source_tmpl': 'Switch-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/C/CH/CHORNY'], + 'checksums': ['31354975140fe6235ac130a109496491ad33dd42f9c62189e23f49f75f936d75'], }), ('File::Which', '1.21', { 'source_tmpl': 'File-Which-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/P/PL/PLICEASE'], + 'checksums': ['9def5f10316bfd944e56b7f8a2501be1d44c288325309462aa9345e340854bcc'], }), ('Email::Date::Format', '1.005', { 'source_tmpl': 'Email-Date-Format-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['579c617e303b9d874411c7b61b46b59d36f815718625074ae6832e7bb9db5104'], }), ('Error', '0.17024', { 'source_tmpl': 'Error-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF'], + 'checksums': ['074db7c783a67b0667eca64a4f6a0c3de94998afc92c01d6453163eb04b9150d'], }), ('Mock::Quick', '1.111', { 'source_tmpl': 'Mock-Quick-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/EX/EXODIST'], + 'checksums': ['ff786008bf8c022064ececd3b7ed89c76b35e8d1eac6cf472a9f51771c1c9f2c'], }), ('Text::CSV', '1.92', { 'source_tmpl': 'Text-CSV-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/I/IS/ISHIGAKI'], + 'checksums': ['c705804519ab5ed9bfad7767704ec7725d8eb57f7c67af855353b7708ade6585'], }), ('Test::Output', '1.031', { 'source_tmpl': 'Test-Output-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BD/BDFOY'], + 'checksums': ['f8b8f37185717872727d06f6c078fa77db794410faf2f6da4d37b0b7650f7ea4'], }), ('Class::DBI', 'v3.0.17', { 'source_tmpl': 'Class-DBI-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TM/TMTM'], + 'checksums': ['541354fe361c56850cb11261f6ca089a14573fa764792447444ff736ae626206'], }), ('List::AllUtils', '0.14', { 'source_tmpl': 'List-AllUtils-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DR/DROLSKY'], + 'checksums': ['e45aa65927ae1975a000cc2fed14274627fa5e2bd09bab826a5f2c41d17ef6cd'], }), ('UNIVERSAL::moniker', '0.08', { 'source_tmpl': 'UNIVERSAL-moniker-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/K/KA/KASEI'], + 'checksums': ['94ce27a546cd57cb52e080a8f2533a7cc2350028388582485bd1039a37871f9c'], }), ('Exception::Class', '1.42', { 'source_tmpl': 'Exception-Class-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DR/DROLSKY'], + 'checksums': ['8bb4ee64d3770d6812bda36890ef5df418573287eb8eccbb106f04c981dea22b'], }), ('File::CheckTree', '4.42', { 'source_tmpl': 'File-CheckTree-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['66fb417f8ff8a5e5b7ea25606156e70e204861c59fa8c3831925b4dd3f155f8a'], }), ('Math::VecStat', '0.08', { 'source_tmpl': 'Math-VecStat-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AS/ASPINELLI'], + 'checksums': ['409a8e0e4b1025c8e80f628f65a9778aa77ab285161406ca4a6c097b13656d0d'], }), ('Pod::LaTeX', '0.61', { 'source_tmpl': 'Pod-LaTeX-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TJ/TJENNESS'], + 'checksums': ['15a840ea1c8a76cd3c865fbbf2fec33b03615c0daa50f9c800c54e0cf0659d46'], }), ('Eval::Closure', '0.14', { 'source_tmpl': 'Eval-Closure-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DO/DOY'], + 'checksums': ['ea0944f2f5ec98d895bef6d503e6e4a376fea6383a6bc64c7670d46ff2218cad'], }), ('HTTP::Request', '6.11', { 'source_tmpl': 'HTTP-Message-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + 'checksums': ['e7b368077ae6a188d99920411d8f52a8e5acfb39574d4f5c24f46fd22533d81b'], }), ('XML::Twig', '3.52', { 'source_tmpl': 'XML-Twig-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MI/MIROD'], + 'checksums': ['fef75826c24f2b877d0a0d2645212fc4fb9756ed4d2711614ac15c497e8680ad'], }), ('IO::String', '1.08', { 'source_tmpl': 'IO-String-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + 'checksums': ['2a3f4ad8442d9070780e58ef43722d19d1ee21a803bf7c8206877a10482de5a0'], }), ('XML::Simple', '2.22', { 'source_tmpl': 'XML-Simple-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GR/GRANTM'], + 'checksums': ['b9450ef22ea9644ae5d6ada086dc4300fa105be050a2030ebd4efd28c198eb49'], }), ('Sub::Install', '0.928', { 'source_tmpl': 'Sub-Install-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['61e567a7679588887b7b86d427bc476ea6d77fffe7e0d17d640f89007d98ef0f'], }), ('HTTP::Cookies', '6.03', { 'source_tmpl': 'HTTP-Cookies-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/O/OA/OALDERS'], + 'checksums': ['05051f2761832317554b0be4b74012c35fd278f6af2c9d218f055e0de891457c'], }), ('Pod::Plainer', '1.04', { 'source_tmpl': 'Pod-Plainer-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RM/RMBARKER'], + 'checksums': ['1bbfbf7d1d4871e5a83bab2137e22d089078206815190eb1d5c1260a3499456f'], }), ('Test::Exception::LessClever', '0.009', { 'source_tmpl': 'Test-Exception-LessClever-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + 'checksums': ['3b2731a44956a11f74b46b3ecf0734fab651e1c0bcf120f8b407aa1b4d43ac34'], }), ('LWP::MediaTypes', '6.02', { 'source_tmpl': 'LWP-MediaTypes-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + 'checksums': ['18790b0cc5f0a51468495c3847b16738f785a2d460403595001e0b932e5db676'], }), ('Scalar::Util', '1.47', { 'source_tmpl': 'Scalar-List-Utils-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/P/PE/PEVANS'], + 'checksums': ['c483347372a96972d61fd186522a9dafc2da899ef2951964513b7e8efb37efe1'], }), ('Data::Section::Simple', '0.07', { 'source_tmpl': 'Data-Section-Simple-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MI/MIYAGAWA'], + 'checksums': ['0b3035ffdb909aa1f7ded6b608fa9d894421c82c097d51e7171170d67579a9cb'], }), ('Class::Trigger', '0.14', { 'source_tmpl': 'Class-Trigger-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MI/MIYAGAWA'], + 'checksums': ['6b1e45acc561e0708e00a2fcf16e157cad8b8963d1bf73726f77dd809b8aebc4'], }), ('HTTP::Daemon', '6.01', { 'source_tmpl': 'HTTP-Daemon-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + 'checksums': ['43fd867742701a3f9fcc7bd59838ab72c6490c0ebaf66901068ec6997514adc2'], }), ('File::HomeDir', '1.00', { 'source_tmpl': 'File-HomeDir-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AD/ADAMK'], + 'checksums': ['85b94f3513093ec0a25b91f9f2571918519ae6f2b7a1e8546f8f78d09a877143'], }), ('HTTP::Date', '6.02', { 'source_tmpl': 'HTTP-Date-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + 'checksums': ['e8b9941da0f9f0c9c01068401a5e81341f0e3707d1c754f8e11f42a7e629e333'], }), ('Authen::SASL', '2.16', { 'source_tmpl': 'Authen-SASL-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GB/GBARR'], + 'checksums': ['6614fa7518f094f853741b63c73f3627168c5d3aca89b1d02b1016dc32854e09'], }), ('Clone', '0.38', { 'source_tmpl': 'Clone-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GARU'], + 'checksums': ['9fb0534bb7ef6ca1f6cc1dc3f29750d6d424394d14c40efdc77832fad3cebde8'], }), ('Data::Types', '0.09', { 'source_tmpl': 'Data-Types-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DW/DWHEELER'], + 'checksums': ['b2296fdcf9addc8e8fc39e15eb2c3d81145f6355258438bc783b12b02c41cb81'], }), ('Import::Into', '1.002005', { 'source_tmpl': 'Import-Into-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/H/HA/HAARG'], + 'checksums': ['bd9e77a3fb662b40b43b18d3280cd352edf9fad8d94283e518181cc1ce9f0567'], }), ('DateTime::Tiny', '1.06', { 'source_tmpl': 'DateTime-Tiny-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN'], + 'checksums': ['bd725df481d7223ee787e154c116098b08a129f55e0763194b07ebea3dda33ec'], }), ('DBD::AnyData', '0.110', { 'source_tmpl': 'DBD-AnyData-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RE/REHSACK'], + 'checksums': ['247f0d88e55076fd3f6c7bf3fd527989d62fcc1ef9bde9bf2ee11c280adcaeab'], }), ('Text::Format', '0.60', { 'source_tmpl': 'Text-Format-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF'], + 'checksums': ['664f313570604624ff9e1fc9b26b6d04e06897b3e4eac83089fc0905a692a2b8'], }), ('Devel::CheckCompiler', '0.07', { 'source_tmpl': 'Devel-CheckCompiler-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SY/SYOHEX'], + 'checksums': ['768b7697b4b8d4d372c7507b65e9dd26aa4223f7100183bbb4d3af46d43869b5'], }), ('Log::Handler', '0.88', { 'source_tmpl': 'Log-Handler-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BL/BLOONIX'], + 'checksums': ['45bf540ab2138ed3ff93afc205b0516dc75755b86acdcc5e75c41347833c293d'], }), ('DBIx::ContextualFetch', '1.03', { 'source_tmpl': 'DBIx-ContextualFetch-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TM/TMTM'], + 'checksums': ['85e2f805bfc81cd738c294316b27a515397036f397a0ff1c6c8d754c38530306'], }), ('Devel::StackTrace', '2.02', { 'source_tmpl': 'Devel-StackTrace-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DR/DROLSKY'], + 'checksums': ['cbbd96db0ecf194ed140198090eaea0e327d9a378a4aa15f9a34b3138a91931f'], }), ('Term::ReadKey', '2.14', { 'source_tmpl': 'TermReadKey-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/K/KJ/KJALB'], + 'checksums': ['6009158cd9889f8c00da78af99847ace5052f1ca04fa30eb3411fdc26d54c9a8'], }), ('Set::IntSpan', '1.19', { 'source_tmpl': 'Set-IntSpan-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SW/SWMCD'], + 'checksums': ['11b7549b13ec5d87cc695dd4c777cd02983dd5fe9866012877fb530f48b3dfd0'], }), ('Moose', '2.2004', { 'source_tmpl': 'Moose-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + 'checksums': ['e4c881bf8d8fd5821aea8a8c7c57ed850c2373d4800949798a55c06ca9e8d2b0'], }), ('Algorithm::Dependency', '1.110', { 'source_tmpl': 'Algorithm-Dependency-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AD/ADAMK'], + 'checksums': ['f27733e8d89cf2ab621284c2584da90ab0cb743ba2295ee739fe51bf92561e37'], }), ('Font::TTF', '1.06', { 'source_tmpl': 'Font-TTF-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BH/BHALLISSY'], + 'checksums': ['4b697d444259759ea02d2c442c9bffe5ffe14c9214084a01f743693a944cc293'], }), ('IPC::Run3', '0.048', { 'source_tmpl': 'IPC-Run3-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['3d81c3cc1b5cff69cca9361e2c6e38df0352251ae7b41e2ff3febc850e463565'], }), ('File::Find::Rule', '0.34', { 'source_tmpl': 'File-Find-Rule-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RC/RCLAMP'], + 'checksums': ['7e6f16cc33eb1f29ff25bee51d513f4b8a84947bbfa18edb2d3cc40a2d64cafe'], }), ('SQL::Statement', '1.410', { 'source_tmpl': 'SQL-Statement-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RE/REHSACK'], + 'checksums': ['7367fcda896367c96d98416cad423c9f98adb7e04b793c5c7deb3052a1213182'], }), ('File::Slurp', '9999.19', { 'source_tmpl': 'File-Slurp-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/U/UR/URI'], + 'checksums': ['ce29ebe995097ebd6e9bc03284714cdfa0c46dc94f6b14a56980747ea3253643'], }), ('Package::Stash', '0.37', { 'source_tmpl': 'Package-Stash-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DO/DOY'], + 'checksums': ['06ab05388f9130cd377c0e1d3e3bafeed6ef6a1e22104571a9e1d7bfac787b2c'], }), ('Data::OptList', '0.110', { 'source_tmpl': 'Data-OptList-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['366117cb2966473f2559f2f4575ff6ae69e84c69a0f30a0773e1b51a457ef5c3'], }), ('CPANPLUS', '0.9164', { 'source_tmpl': 'CPANPLUS-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BI/BINGOS'], + 'checksums': ['3fcd8c7bb1973df484236fc3d59ed17c8a35057f56546ba44bfc780b97fec0a8'], }), ('IO::Tty', '1.12', { 'source_tmpl': 'IO-Tty-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TO/TODDR'], + 'checksums': ['a2ef8770d3309178203f8c8ac25e623e63cf76e97830fd3be280ade1a555290d'], }), ('Text::Soundex', '3.05', { 'source_tmpl': 'Text-Soundex-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['f6dd55b4280b25dea978221839864382560074e1d6933395faee2510c2db60ed'], }), ('Lingua::EN::PluralToSingular', '0.19', { 'source_tmpl': 'Lingua-EN-PluralToSingular-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BK/BKB'], + 'checksums': ['c71b6c1aec01aae9c42aef0d9f147a437e91a7cc5cea6e4abbc35440638f299e'], }), ('Want', '0.29', { 'source_tmpl': 'Want-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RO/ROBIN'], + 'checksums': ['b4e4740b8d4cb783591273c636bd68304892e28d89e88abf9273b1de17f552f7'], }), ('Cwd::Guard', '0.05', { 'source_tmpl': 'Cwd-Guard-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/K/KA/KAZEBURO'], + 'checksums': ['7afc7ca2b9502e440241938ad97a3e7ebd550180ebd6142e1db394186b268e77'], }), ('Bundle::BioPerl', '2.1.9', { 'source_tmpl': 'Bundle-BioPerl-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/C/CJ/CJFIELDS'], + 'checksums': ['c343ba97f49d86e7fb14aef4cfe3124992e2a5c3168e53a54606dd611d73e5c7'], }), ('Mail::Util', '2.18', { 'source_tmpl': 'MailTools-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MA/MARKOV'], + 'checksums': ['dfee9e770257371112f20d978e637759e81bc4f19e97b083585c71ecab37b527'], }), ('Text::Template', '1.47', { 'source_tmpl': 'Text-Template-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MS/MSCHOUT'], + 'checksums': ['50d742c74482478aa01008d468290fcfbc0b9a1219cfe1284076f1f31f0be8fc'], }), ('PDF::API2', '2.031', { 'source_tmpl': 'PDF-API2-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SS/SSIMMS'], + 'checksums': ['6ea5d38f99dfb1e8acf57c9c7579659b3eee84944295a135f90e607e0a3f43e9'], }), ('Devel::CheckLib', '1.11', { 'source_tmpl': 'Devel-CheckLib-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MA/MATTN'], + 'checksums': ['bd6d1c187e80be6de1f0d37add441ba8f14950c7bc1f54e764770ed484b232c1'], }), ('SVG', '2.77', { 'source_tmpl': 'SVG-2.77.tar.gz', 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MA/MANWAR/'], + 'checksums': ['1f01cf2dc666a2ba3bf5219ec9e2290143e5e569747431412c8423916a9846c5'], }), ('Statistics::Basic', '1.6611', { 'source_tmpl': 'Statistics-Basic-1.6611.tar.gz', 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JE/JETTERO/'], + 'checksums': ['6855ce5615fd3e1af4cfc451a9bf44ff29a3140b4e7130034f1f0af2511a94fb'], }), ] diff --git a/easybuild/easyconfigs/t/Trinity/Trinity-2.4.0-foss-2017a.eb b/easybuild/easyconfigs/t/Trinity/Trinity-2.4.0-foss-2017a.eb index 90175fa060..167f098cd2 100644 --- a/easybuild/easyconfigs/t/Trinity/Trinity-2.4.0-foss-2017a.eb +++ b/easybuild/easyconfigs/t/Trinity/Trinity-2.4.0-foss-2017a.eb @@ -12,6 +12,7 @@ toolchainopts = {'optarch': True} source_urls = ['https://github.com/trinityrnaseq/trinityrnaseq/archive/'] sources = ['%(name)s-v%(version)s.tar.gz'] +checksums = ['2e91ed242923205b060164398aa325e5fe824040732d86c74ece4f98d7a6f220'] patches = [ 'chrysalis_commandline_noconsts_2012-10-05.patch', diff --git a/easybuild/easyconfigs/t/tbb/tbb-2017_U6-GCCcore-6.3.0.eb b/easybuild/easyconfigs/t/tbb/tbb-2017_U6-GCCcore-6.3.0.eb index 34c5460e40..1b8ceddb15 100644 --- a/easybuild/easyconfigs/t/tbb/tbb-2017_U6-GCCcore-6.3.0.eb +++ b/easybuild/easyconfigs/t/tbb/tbb-2017_U6-GCCcore-6.3.0.eb @@ -9,6 +9,7 @@ toolchain = {'name': 'GCCcore', 'version': '6.3.0'} source_urls = ['https://github.com/01org/tbb/archive/'] sources = ['%(version)s.tar.gz'] +checksums = ['1f7df7af6045179a45eba9b5dfde74d185ee7f573328f103c137696f81e4ae5a'] builddependencies = [ ('binutils', '2.27') -- GitLab From 22350337eb4eb73d2bafce5d2abd9108507f8305 Mon Sep 17 00:00:00 2001 From: frenchwr Date: Fri, 4 Aug 2017 09:19:44 -0500 Subject: [PATCH 542/608] fix additional typos in comments --- .../Singularity/Singularity-2.3.1-GCC-5.4.0-2.26.eb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/easybuild/easyconfigs/s/Singularity/Singularity-2.3.1-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/s/Singularity/Singularity-2.3.1-GCC-5.4.0-2.26.eb index 7e7221e7b3..b3cde73978 100644 --- a/easybuild/easyconfigs/s/Singularity/Singularity-2.3.1-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/s/Singularity/Singularity-2.3.1-GCC-5.4.0-2.26.eb @@ -23,11 +23,11 @@ sanity_check_paths = { } # next steps after installation -# INSTALATION_PATH=your_instalation_path -# chown root:root $INSTALATION_PATH/Singularity/*/etc/singularity/singularity.conf -# chown root:root $INSTALATION_PATH/Singularity/*/libexec/singularity/bin/*-suid -# chown root:root $INSTALATION_PATH/Singularity/*/var/singularity/mnt/container -# chmod 4755 $INSTALATION_PATH/Singularity/*/libexec/singularity/bin/*-suid -# chmod +s $INSTALATION_PATH/Singularity/*/libexec/singularity/bin/*-suid +# INSTALLATION_PATH=your_installation_path +# chown root:root $INSTALLATION_PATH/Singularity/*/etc/singularity/singularity.conf +# chown root:root $INSTALLATION_PATH/Singularity/*/libexec/singularity/bin/*-suid +# chown root:root $INSTALLATION_PATH/Singularity/*/var/singularity/mnt/container +# chmod 4755 $INSTALLATION_PATH/Singularity/*/libexec/singularity/bin/*-suid +# chmod +s $INSTALLATION_PATH/Singularity/*/libexec/singularity/bin/*-suid moduleclass = 'tools' -- GitLab From 90b9071e2d237db34221573e104e8847b8029bac Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Sat, 5 Aug 2017 06:24:11 -0500 Subject: [PATCH 543/608] adding easyconfigs: htop-2.0.1.eb --- easybuild/easyconfigs/h/htop/htop-2.0.1.eb | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 easybuild/easyconfigs/h/htop/htop-2.0.1.eb diff --git a/easybuild/easyconfigs/h/htop/htop-2.0.1.eb b/easybuild/easyconfigs/h/htop/htop-2.0.1.eb new file mode 100644 index 0000000000..c7e830f3a7 --- /dev/null +++ b/easybuild/easyconfigs/h/htop/htop-2.0.1.eb @@ -0,0 +1,29 @@ +easyblock = 'ConfigureMake' + +name = 'htop' +version = "2.0.1" + +homepage = 'http://hisham.hm/htop/' + +description = """An interactive process viewer for Unix""" + +toolchain = {'name': 'dummy', 'version': ''} + +source_urls = ['http://hisham.hm/htop/releases/%(version)s/'] +sources = [SOURCE_TAR_GZ] +checksums = ['f410626dfaf6b70fdf73cd7bb33cae768869707028d847fed94a978e974f5666'] + +dependencies = [ + ('ncurses', '6.0'), +] + +prebuildopts = """ + sed -e 's/^LIBS = -lncursesw -lm/LIBS = -lncursesw -lm -ltinfo/' -i.eb Makefile +""" + +sanity_check_paths = { + 'files': ['bin/htop'], + 'dirs': ['share'], +} + +moduleclass = 'tools' -- GitLab From 1c5255de37fc32764fdc3747f3fefcaf52d6692f Mon Sep 17 00:00:00 2001 From: Adam Huffman Date: Sun, 6 Aug 2017 08:07:00 +0100 Subject: [PATCH 544/608] Fix inline functions --- .../b/BFAST/BFAST-0.7.0a-foss-2016b.eb | 42 +++++++++++++++++++ .../b/BFAST/BFAST-0.7.0a-inline.patch | 28 +++++++++++++ 2 files changed, 70 insertions(+) create mode 100755 easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-foss-2016b.eb create mode 100755 easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-inline.patch diff --git a/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-foss-2016b.eb b/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-foss-2016b.eb new file mode 100755 index 0000000000..2126725d43 --- /dev/null +++ b/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-foss-2016b.eb @@ -0,0 +1,42 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild +# +# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA +# Authors:: Fotis Georgatos +# License:: MIT/GPL +# $Id$ +# +# This work implements a part of the HPCBIOS project and is a component of the policy: +# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html +## +# Modified for foss/2016b by Adam Huffman, Francis Crick Institute + +easyblock = 'ConfigureMake' + +name = 'BFAST' +version = '0.7.0a' + +homepage = 'http://bfast.sourceforge.net/' +description = """BFAST facilitates the fast and accurate mapping of short reads to reference sequences. + Some advantages of BFAST include: + 1) Speed: enables billions of short reads to be mapped quickly. + 2) Accuracy: A priori probabilities for mapping reads with defined set of variants. + 3) An easy way to measurably tune accuracy at the expense of speed.""" + +toolchain = {'name': 'foss', 'version': '2016b'} + +verdir = ''.join(char for char in version if not char.isalpha()) +source_urls = ['http://sourceforge.net/projects/bfast/files/bfast/%s/' % verdir, 'download'] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['ed8de49693165a87d5dbef352207c424b1bf6f670a83acf49a4f4f188444995e'] + +dependencies = [('bzip2', '1.0.6')] + +patches = ['BFAST-0.7.0a-inline.patch'] + +sanity_check_paths = { + 'files': ["bin/bfast"], + 'dirs': [], +} + +moduleclass = 'bio' diff --git a/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-inline.patch b/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-inline.patch new file mode 100755 index 0000000000..c936129c8c --- /dev/null +++ b/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-inline.patch @@ -0,0 +1,28 @@ +# mismatch in function declaration, taken from +# http://www.vcru.wisc.edu/simonlab/bioinformatics/programs/install/bfast.htm +diff -ur bfast-0.7.0a/bfast/BLib.h bfast-0.7.0a.new/bfast/BLib.h +--- bfast-0.7.0a/bfast/BLib.h 2011-09-03 19:44:58.000000000 +0100 ++++ bfast-0.7.0a.new/bfast/BLib.h 2017-08-06 07:56:35.943546000 +0100 +@@ -16,7 +16,7 @@ + int ParseFastaHeaderLine(char*); + char ToLower(char); + void ToLowerRead(char*, int); +-inline char ToUpper(char); ++char ToUpper(char); + void ToUpperRead(char*, int); + void ReverseRead(char*, char*, int); + void ReverseReadFourBit(int8_t*, int8_t*, int); +diff -ur bfast-0.7.0a/bfast/ScoringMatrix.h bfast-0.7.0a.new/bfast/ScoringMatrix.h +--- bfast-0.7.0a/bfast/ScoringMatrix.h 2011-09-03 19:44:59.000000000 +0100 ++++ bfast-0.7.0a.new/bfast/ScoringMatrix.h 2017-08-06 07:56:49.351357000 +0100 +@@ -3,8 +3,8 @@ + + #include "BLibDefinitions.h" + +-inline int32_t ScoringMatrixGetNTScore(char, char, ScoringMatrix*); +-inline int32_t ScoringMatrixGetColorScore(char, char, ScoringMatrix*); ++int32_t ScoringMatrixGetNTScore(char, char, ScoringMatrix*); ++int32_t ScoringMatrixGetColorScore(char, char, ScoringMatrix*); + + int ScoringMatrixRead(char*, ScoringMatrix*, int); + void ScoringMatrixInitialize(ScoringMatrix*); -- GitLab From de2861a5f8a80113e9d6156936b200178d347c72 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Sun, 6 Aug 2017 15:09:55 +0200 Subject: [PATCH 545/608] add checksum for Seurat sources --- .../easyconfigs/s/Seurat/Seurat-1.4.0.16-intel-2017a-R-3.4.0.eb | 1 + 1 file changed, 1 insertion(+) diff --git a/easybuild/easyconfigs/s/Seurat/Seurat-1.4.0.16-intel-2017a-R-3.4.0.eb b/easybuild/easyconfigs/s/Seurat/Seurat-1.4.0.16-intel-2017a-R-3.4.0.eb index 47751ee440..60c2927733 100644 --- a/easybuild/easyconfigs/s/Seurat/Seurat-1.4.0.16-intel-2017a-R-3.4.0.eb +++ b/easybuild/easyconfigs/s/Seurat/Seurat-1.4.0.16-intel-2017a-R-3.4.0.eb @@ -14,6 +14,7 @@ sources = [{ 'filename': SOURCE_TAR_GZ, 'download_filename': '3bd092a.tar.gz', }] +checksums = ['2079b09698aadc1f3fdd3de5ac708add7196f4713d9f6a01b85d05b3a6ba2ec5'] dependencies = [('R', '3.4.0', '-X11-20170314')] -- GitLab From f8a8ee43919df30083788376ccebbd1a2c1ebd77 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 7 Aug 2017 10:44:20 +0200 Subject: [PATCH 546/608] adding easyconfigs: XGBoost-0.6a2-intel-2017a-Python-3.6.1.eb --- .../XGBoost-0.6a2-intel-2017a-Python-3.6.1.eb | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 easybuild/easyconfigs/x/XGBoost/XGBoost-0.6a2-intel-2017a-Python-3.6.1.eb diff --git a/easybuild/easyconfigs/x/XGBoost/XGBoost-0.6a2-intel-2017a-Python-3.6.1.eb b/easybuild/easyconfigs/x/XGBoost/XGBoost-0.6a2-intel-2017a-Python-3.6.1.eb new file mode 100644 index 0000000000..c34999e2b6 --- /dev/null +++ b/easybuild/easyconfigs/x/XGBoost/XGBoost-0.6a2-intel-2017a-Python-3.6.1.eb @@ -0,0 +1,23 @@ +easyblock = 'PythonPackage' + +name = 'XGBoost' +version = '0.6a2' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'https://github.com/dmlc/xgboost' +description = """XGBoost is an optimized distributed gradient boosting library designed to be highly efficient, + flexible and portable.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [PYPI_SOURCE] +sources = [SOURCELOWER_TAR_GZ] + +dependencies = [('Python', '3.6.1')] + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages'], +} + +moduleclass = 'lib' -- GitLab From 78a47cf1ddc2c495c683f1121785f0b316feb269 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 7 Aug 2017 11:02:03 +0200 Subject: [PATCH 547/608] add SHA256 checksum in XGBoost easyconfigs --- .../x/XGBoost/XGBoost-0.6a2-intel-2016b-Python-2.7.12.eb | 1 + .../x/XGBoost/XGBoost-0.6a2-intel-2016b-Python-3.5.2.eb | 1 + .../x/XGBoost/XGBoost-0.6a2-intel-2017a-Python-3.6.1.eb | 1 + 3 files changed, 3 insertions(+) diff --git a/easybuild/easyconfigs/x/XGBoost/XGBoost-0.6a2-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/x/XGBoost/XGBoost-0.6a2-intel-2016b-Python-2.7.12.eb index 4359ea417d..da4a0e2bda 100644 --- a/easybuild/easyconfigs/x/XGBoost/XGBoost-0.6a2-intel-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/x/XGBoost/XGBoost-0.6a2-intel-2016b-Python-2.7.12.eb @@ -12,6 +12,7 @@ toolchain = {'name': 'intel', 'version': '2016b'} source_urls = [PYPI_SOURCE] sources = [SOURCELOWER_TAR_GZ] +checksums = ['ebc4e2bf8c8266212e342ff8ec4f6ae469e8c41a05d099b6778de8424ce32563'] dependencies = [('Python', '2.7.12')] diff --git a/easybuild/easyconfigs/x/XGBoost/XGBoost-0.6a2-intel-2016b-Python-3.5.2.eb b/easybuild/easyconfigs/x/XGBoost/XGBoost-0.6a2-intel-2016b-Python-3.5.2.eb index f4be4224b1..a979a43a6f 100644 --- a/easybuild/easyconfigs/x/XGBoost/XGBoost-0.6a2-intel-2016b-Python-3.5.2.eb +++ b/easybuild/easyconfigs/x/XGBoost/XGBoost-0.6a2-intel-2016b-Python-3.5.2.eb @@ -12,6 +12,7 @@ toolchain = {'name': 'intel', 'version': '2016b'} source_urls = [PYPI_SOURCE] sources = [SOURCELOWER_TAR_GZ] +checksums = ['ebc4e2bf8c8266212e342ff8ec4f6ae469e8c41a05d099b6778de8424ce32563'] dependencies = [('Python', '3.5.2')] diff --git a/easybuild/easyconfigs/x/XGBoost/XGBoost-0.6a2-intel-2017a-Python-3.6.1.eb b/easybuild/easyconfigs/x/XGBoost/XGBoost-0.6a2-intel-2017a-Python-3.6.1.eb index c34999e2b6..6269db2cd4 100644 --- a/easybuild/easyconfigs/x/XGBoost/XGBoost-0.6a2-intel-2017a-Python-3.6.1.eb +++ b/easybuild/easyconfigs/x/XGBoost/XGBoost-0.6a2-intel-2017a-Python-3.6.1.eb @@ -12,6 +12,7 @@ toolchain = {'name': 'intel', 'version': '2017a'} source_urls = [PYPI_SOURCE] sources = [SOURCELOWER_TAR_GZ] +checksums = ['ebc4e2bf8c8266212e342ff8ec4f6ae469e8c41a05d099b6778de8424ce32563'] dependencies = [('Python', '3.6.1')] -- GitLab From 2f5e440be70dcbe0a3b3e075ef349e36a0da7397 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 7 Aug 2017 11:39:44 +0200 Subject: [PATCH 548/608] adding easyconfigs: I-TASSER-5.1.eb --- .../easyconfigs/i/I-TASSER/I-TASSER-5.1.eb | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 easybuild/easyconfigs/i/I-TASSER/I-TASSER-5.1.eb diff --git a/easybuild/easyconfigs/i/I-TASSER/I-TASSER-5.1.eb b/easybuild/easyconfigs/i/I-TASSER/I-TASSER-5.1.eb new file mode 100644 index 0000000000..f505003e03 --- /dev/null +++ b/easybuild/easyconfigs/i/I-TASSER/I-TASSER-5.1.eb @@ -0,0 +1,31 @@ +easyblock = 'PackedBinary' + +name = 'I-TASSER' +version = '5.1' + +homepage = 'http://zhanglab.ccmb.med.umich.edu/I-TASSER/' +description = """I-TASSER is a set of pre-compiled binaries and scripts for protein structure and function +modelling and comparison.""" + +toolchain = {'name': 'dummy', 'version': 'dummy'} + +# Can't download from the web site automatically as registration is required. +# The source code may be downloaded manually from http://zhanglab.ccmb.med.umich.edu. +sources = ['%(name)s%(version)s.tar.bz2'] +checksums = ['c127f4932c11bb3f8940ad8510a3429b8e7dc14595cfee230af7cc52196a5396'] + +dependencies = [ + ('BLAST', '2.2.26', '-Linux_x86_64'), + ('Java', '1.7.0_80'), +] + +sanity_check_paths = { + 'files': ['I-TASSERmod/runI-TASSER.pl'], + 'dirs': ['bin', 'blast', 'COACH', 'COFACTOR', 'I-TASSERmod', 'PSSpred'], +} + +# You may find it desirable to put this variable in the module file. +# The command to do so has been put here (commented out) as a convenience. +# modextravars = {'IMINTASSERDB': '/path/to/databases/I-TASSER/%(version)s'} + +moduleclass = 'bio' -- GitLab From 46a05e3b80361c673890e5162088885e514c2223 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 7 Aug 2017 12:08:55 +0200 Subject: [PATCH 549/608] adding easyconfigs: rjags-4-6-intel-2017a-R-3.4.0.eb, JAGS-4.2.0-intel-2017a.eb --- .../j/JAGS/JAGS-4.2.0-intel-2017a.eb | 32 +++++++++++++++++++ .../r/rjags/rjags-4-6-intel-2017a-R-3.4.0.eb | 28 ++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 easybuild/easyconfigs/j/JAGS/JAGS-4.2.0-intel-2017a.eb create mode 100644 easybuild/easyconfigs/r/rjags/rjags-4-6-intel-2017a-R-3.4.0.eb diff --git a/easybuild/easyconfigs/j/JAGS/JAGS-4.2.0-intel-2017a.eb b/easybuild/easyconfigs/j/JAGS/JAGS-4.2.0-intel-2017a.eb new file mode 100644 index 0000000000..6b1311fff0 --- /dev/null +++ b/easybuild/easyconfigs/j/JAGS/JAGS-4.2.0-intel-2017a.eb @@ -0,0 +1,32 @@ +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild +# Author: Pablo Escobar Lopez +# Swiss Institute of Bioinformatics +# Biozentrum - University of Basel + +easyblock = 'ConfigureMake' + +name = 'JAGS' +version = '4.2.0' + +homepage = 'http://mcmc-jags.sourceforge.net/' +description = """JAGS is Just Another Gibbs Sampler. It is a program for analysis + of Bayesian hierarchical models using Markov Chain Monte Carlo (MCMC) simulation """ + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [('http://sourceforge.net/projects/mcmc-jags/files/JAGS/%(version_major)s.x/Source/', 'download')] +sources = [SOURCE_TAR_GZ] + +configopts = ' --with-blas="-lmkl" --with-lapack="-lmkl" ' + +sanity_check_paths = { + 'files': ["bin/jags", "libexec/jags-terminal", "lib/libjags.%s" % SHLIB_EXT], + 'dirs': [] +} + +modextrapaths = { + 'JAGS_INCLUDE': 'include/JAGS', + 'JAGS_LIB': 'lib', +} + +moduleclass = 'math' diff --git a/easybuild/easyconfigs/r/rjags/rjags-4-6-intel-2017a-R-3.4.0.eb b/easybuild/easyconfigs/r/rjags/rjags-4-6-intel-2017a-R-3.4.0.eb new file mode 100644 index 0000000000..7a91a922a5 --- /dev/null +++ b/easybuild/easyconfigs/r/rjags/rjags-4-6-intel-2017a-R-3.4.0.eb @@ -0,0 +1,28 @@ +easyblock = 'RPackage' + +name = 'rjags' +version = '4-6' +versionsuffix = '-R-%(rver)s' + +homepage = 'http://cran.r-project.org/web/packages/rjags' +description = """The rjags package is an interface to the JAGS library.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [ + 'http://cran.r-project.org/src/contrib/', + 'http://cran.r-project.org/src/contrib/Archive/rjags/', +] +sources = ['%(name)s_%(version)s.tar.gz'] + +dependencies = [ + ('R', '3.4.0', '-X11-20170314'), + ('JAGS', '4.2.0'), +] + +sanity_check_paths = { + 'files': [], + 'dirs': ['rjags'], +} + +moduleclass = 'math' -- GitLab From 725d2ded96d5dbd5e3314c2b0f4d897691c16b89 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 7 Aug 2017 13:19:48 +0200 Subject: [PATCH 550/608] adding easyconfigs: Biopython-1.70-intel-2017a-Python-3.6.1.eb --- ...Biopython-1.70-intel-2017a-Python-3.6.1.eb | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 easybuild/easyconfigs/b/Biopython/Biopython-1.70-intel-2017a-Python-3.6.1.eb diff --git a/easybuild/easyconfigs/b/Biopython/Biopython-1.70-intel-2017a-Python-3.6.1.eb b/easybuild/easyconfigs/b/Biopython/Biopython-1.70-intel-2017a-Python-3.6.1.eb new file mode 100644 index 0000000000..a9ed1da426 --- /dev/null +++ b/easybuild/easyconfigs/b/Biopython/Biopython-1.70-intel-2017a-Python-3.6.1.eb @@ -0,0 +1,38 @@ +## +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild +# +# Copyright:: Copyright 2012-2013 The Cyprus Institute +# Authors:: Andreas Panteli , Thekla Loizou , +# George Tsouloupas +# License:: MIT/GPL +# +## +easyblock = 'PythonPackage' + +name = 'Biopython' +version = '1.70' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://www.biopython.org' +description = """Biopython is a set of freely available tools for biological computation written +in Python by an international team of developers. It is a distributed collaborative effort to +develop Python libraries and applications which address the needs of current and future work in +bioinformatics. """ + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = ['http://biopython.org/DIST'] +sources = [SOURCELOWER_TAR_GZ] + +dependencies = [ + ('Python', '3.6.1') +] + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages/Bio', 'lib/python%(pyshortver)s/site-packages/BioSQL'] +} + +options = {'modulename': 'Bio'} + +moduleclass = 'bio' -- GitLab From 0adb0dc158fc71ae4a5be0f8c95b8be8751ef494 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 7 Aug 2017 15:18:40 +0200 Subject: [PATCH 551/608] rename CLISP patch + add upstream ref + minor style cleanups in easyconfig --- .../c/CLISP/CLISP-2.49-GCCcore-6.4.0.eb | 14 ++++---------- ...readline.lisp => CLISP-2.49_fix-readline.patch} | 2 ++ 2 files changed, 6 insertions(+), 10 deletions(-) rename easybuild/easyconfigs/c/CLISP/{patch-modules_readline_readline.lisp => CLISP-2.49_fix-readline.patch} (93%) diff --git a/easybuild/easyconfigs/c/CLISP/CLISP-2.49-GCCcore-6.4.0.eb b/easybuild/easyconfigs/c/CLISP/CLISP-2.49-GCCcore-6.4.0.eb index 1f086b8886..b37bd540bf 100644 --- a/easybuild/easyconfigs/c/CLISP/CLISP-2.49-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/c/CLISP/CLISP-2.49-GCCcore-6.4.0.eb @@ -14,12 +14,11 @@ description = """ toolchain = {'name': 'GCCcore', 'version': '6.4.0'} -source_urls = ['ftp://ftp.gnu.org/pub/gnu/%(namelower)s/release/%(version)s'] +source_urls = [GNU_SOURCE + '/release/%(version)s'] sources = [SOURCELOWER_TAR_BZ2] checksums = ['8132ff353afaa70e6b19367a25ae3d5a43627279c25647c220641fed00f8e890'] -# from: https://sourceforge.net/p/clisp/bugs/688/ -patches = ['patch-modules_readline_readline.lisp'] +patches = ['CLISP-%(version)s_fix-readline.patch'] builddependencies = [ ('binutils', '2.28'), @@ -34,13 +33,8 @@ dependencies = [ ('zlib', '1.2.11'), ] -prebuildopts = """ - cd src -""" - -preinstallopts = """ - cd src -""" +prebuildopts = "cd src && " +preinstallopts = prebuildopts parallel = 1 diff --git a/easybuild/easyconfigs/c/CLISP/patch-modules_readline_readline.lisp b/easybuild/easyconfigs/c/CLISP/CLISP-2.49_fix-readline.patch similarity index 93% rename from easybuild/easyconfigs/c/CLISP/patch-modules_readline_readline.lisp rename to easybuild/easyconfigs/c/CLISP/CLISP-2.49_fix-readline.patch index 19c54f96d6..44e4e73952 100644 --- a/easybuild/easyconfigs/c/CLISP/patch-modules_readline_readline.lisp +++ b/easybuild/easyconfigs/c/CLISP/CLISP-2.49_fix-readline.patch @@ -1,3 +1,5 @@ +obtained from https://sourceforge.net/p/clisp/bugs/688/ + $NetBSD: patch-modules_readline_readline.lisp,v 1.1 2016/09/20 14:10:25 wiz Exp $ rl_readline_state changed from int to unsigned long in readline-7.0. -- GitLab From a3450c32904c16b0483628fdb0b531bb8ab8b638 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 7 Aug 2017 15:57:22 +0200 Subject: [PATCH 552/608] adding easyconfigs: FDS-6.5.3-intel-2017a.eb --- .../f/FDS/FDS-6.5.3-intel-2017a.eb | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 easybuild/easyconfigs/f/FDS/FDS-6.5.3-intel-2017a.eb diff --git a/easybuild/easyconfigs/f/FDS/FDS-6.5.3-intel-2017a.eb b/easybuild/easyconfigs/f/FDS/FDS-6.5.3-intel-2017a.eb new file mode 100644 index 0000000000..00c8e74036 --- /dev/null +++ b/easybuild/easyconfigs/f/FDS/FDS-6.5.3-intel-2017a.eb @@ -0,0 +1,37 @@ +easyblock = 'ConfigureMake' + +name = 'FDS' +version = '6.5.3' + +homepage = 'https://pages.nist.gov/fds-smv/' +description = """Fire Dynamics Simulator (FDS) is a large-eddy simulation (LES) code for low-speed flows, + with an emphasis on smoke and heat transport from fires.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'pic': True, 'usempi': True} + +source_urls = ['https://github.com/firemodels/fds/archive/'] +sources = ['FDS%(version)s.tar.gz'] +checksums = ['e15173651512575967e3769f6730425e616a3deb0291475564db729cf526be13'] + +unpack_options = '--strip-components=1' + +start_dir = 'Build' + +# just run make in the install dir +skipsteps = ['configure', 'install'] +buildininstalldir = True + +target = 'impi_intel_linux_64' +buildopts = '%s FFLAGS="$FFLAGS -fpp" FCOMPL="$FC" obj=fds' % target + +modextrapaths = {'PATH': 'Build'} + +sanity_check_paths = { + 'files': ['Build/fds'], + 'dirs': [], +} + +sanity_check_commands = [("fds 2>&1 | grep 'MPI Enabled;'", '')] + +moduleclass = 'phys' -- GitLab From da954e9fe1afedcf9ed07401e7dae80de69d9bf8 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 7 Aug 2017 16:24:39 +0200 Subject: [PATCH 553/608] adding easyconfigs: Mathematica-11.1.1.eb --- .../m/Mathematica/Mathematica-11.1.1.eb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 easybuild/easyconfigs/m/Mathematica/Mathematica-11.1.1.eb diff --git a/easybuild/easyconfigs/m/Mathematica/Mathematica-11.1.1.eb b/easybuild/easyconfigs/m/Mathematica/Mathematica-11.1.1.eb new file mode 100644 index 0000000000..6bf4ec7171 --- /dev/null +++ b/easybuild/easyconfigs/m/Mathematica/Mathematica-11.1.1.eb @@ -0,0 +1,17 @@ +name = 'Mathematica' +version = '11.1.1' + +homepage = 'http://www.wolfram.com/mathematica' +description = """Mathematica is a computational software program used in many scientific, engineering, mathematical +and computing fields.""" + +toolchain = {'name': 'dummy', 'version': 'dummy'} + +sources = ['Mathematica_%(version)s_LINUX.sh'] +checksums = ['80cb3a25337d809bf865e5405cf5975dccf1dcaa20874ee301c98d41011281ce'] + +license_server = 'license.example.com' + +sanity_check_commands = [('mathematica', '--version')] + +moduleclass = 'math' -- GitLab From 6de68f8401aca249aecb08b9676746e5a5bdca70 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 7 Aug 2017 17:13:48 +0200 Subject: [PATCH 554/608] add checksum for Biopython 1.70 --- .../b/Biopython/Biopython-1.70-intel-2017a-Python-3.6.1.eb | 1 + 1 file changed, 1 insertion(+) diff --git a/easybuild/easyconfigs/b/Biopython/Biopython-1.70-intel-2017a-Python-3.6.1.eb b/easybuild/easyconfigs/b/Biopython/Biopython-1.70-intel-2017a-Python-3.6.1.eb index a9ed1da426..e9f9d1c3f3 100644 --- a/easybuild/easyconfigs/b/Biopython/Biopython-1.70-intel-2017a-Python-3.6.1.eb +++ b/easybuild/easyconfigs/b/Biopython/Biopython-1.70-intel-2017a-Python-3.6.1.eb @@ -23,6 +23,7 @@ toolchain = {'name': 'intel', 'version': '2017a'} source_urls = ['http://biopython.org/DIST'] sources = [SOURCELOWER_TAR_GZ] +checksums = ['4a7c5298f03d1a45523f32bae1fffcff323ea9dce007fb1241af092f5ab2e45b'] dependencies = [ ('Python', '3.6.1') -- GitLab From c82c602516a11e9bd356b4f2e7b05ac36352961d Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 7 Aug 2017 17:38:00 +0200 Subject: [PATCH 555/608] add checksum for CLISP patch --- easybuild/easyconfigs/c/CLISP/CLISP-2.49-GCCcore-6.4.0.eb | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/c/CLISP/CLISP-2.49-GCCcore-6.4.0.eb b/easybuild/easyconfigs/c/CLISP/CLISP-2.49-GCCcore-6.4.0.eb index b37bd540bf..e8a86bb97c 100644 --- a/easybuild/easyconfigs/c/CLISP/CLISP-2.49-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/c/CLISP/CLISP-2.49-GCCcore-6.4.0.eb @@ -16,10 +16,15 @@ toolchain = {'name': 'GCCcore', 'version': '6.4.0'} source_urls = [GNU_SOURCE + '/release/%(version)s'] sources = [SOURCELOWER_TAR_BZ2] -checksums = ['8132ff353afaa70e6b19367a25ae3d5a43627279c25647c220641fed00f8e890'] patches = ['CLISP-%(version)s_fix-readline.patch'] +checksums = [ + '8132ff353afaa70e6b19367a25ae3d5a43627279c25647c220641fed00f8e890', # clisp-2.49.tar.bz2 + '903ca7367721e5bfe216fd8151659c4d127739311fac61f812e0031faec100ea', # CLISP-2.49_fix-readline.patch +] + + builddependencies = [ ('binutils', '2.28'), ] -- GitLab From b01e6bd9091dbe6e941189b25346812e488c0a8c Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 7 Aug 2017 17:42:19 +0200 Subject: [PATCH 556/608] add checksums for rjags and JAGS --- easybuild/easyconfigs/j/JAGS/JAGS-4.2.0-intel-2017a.eb | 1 + easybuild/easyconfigs/r/rjags/rjags-4-6-intel-2017a-R-3.4.0.eb | 1 + 2 files changed, 2 insertions(+) diff --git a/easybuild/easyconfigs/j/JAGS/JAGS-4.2.0-intel-2017a.eb b/easybuild/easyconfigs/j/JAGS/JAGS-4.2.0-intel-2017a.eb index 6b1311fff0..946cc65fab 100644 --- a/easybuild/easyconfigs/j/JAGS/JAGS-4.2.0-intel-2017a.eb +++ b/easybuild/easyconfigs/j/JAGS/JAGS-4.2.0-intel-2017a.eb @@ -16,6 +16,7 @@ toolchain = {'name': 'intel', 'version': '2017a'} source_urls = [('http://sourceforge.net/projects/mcmc-jags/files/JAGS/%(version_major)s.x/Source/', 'download')] sources = [SOURCE_TAR_GZ] +checksums = ['af3e9d2896d3e712f99e2a0c81091c6b08f096650af6aa9d0c631c0790409cf7'] configopts = ' --with-blas="-lmkl" --with-lapack="-lmkl" ' diff --git a/easybuild/easyconfigs/r/rjags/rjags-4-6-intel-2017a-R-3.4.0.eb b/easybuild/easyconfigs/r/rjags/rjags-4-6-intel-2017a-R-3.4.0.eb index 7a91a922a5..2809740b9c 100644 --- a/easybuild/easyconfigs/r/rjags/rjags-4-6-intel-2017a-R-3.4.0.eb +++ b/easybuild/easyconfigs/r/rjags/rjags-4-6-intel-2017a-R-3.4.0.eb @@ -14,6 +14,7 @@ source_urls = [ 'http://cran.r-project.org/src/contrib/Archive/rjags/', ] sources = ['%(name)s_%(version)s.tar.gz'] +checksums = ['cf24bb1e7c8445bafb49097089ad33e5bd5d8efbccf16fc7e32ad230f05f89ad'] dependencies = [ ('R', '3.4.0', '-X11-20170314'), -- GitLab From 354930bb6c724d6d8c42f8c51259d2e252c1d8f8 Mon Sep 17 00:00:00 2001 From: Adam Huffman Date: Mon, 7 Aug 2017 23:07:23 +0100 Subject: [PATCH 557/608] Use slice for variable rather than hardcoding --- easybuild/easyconfigs/b/BWA/BWA-0.7.16a-foss-2016b.eb | 2 +- easybuild/easyconfigs/b/BWA/BWA-0.7.16a-intel-2017a.eb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/b/BWA/BWA-0.7.16a-foss-2016b.eb b/easybuild/easyconfigs/b/BWA/BWA-0.7.16a-foss-2016b.eb index cfc64d5813..e2a6be01fd 100755 --- a/easybuild/easyconfigs/b/BWA/BWA-0.7.16a-foss-2016b.eb +++ b/easybuild/easyconfigs/b/BWA/BWA-0.7.16a-foss-2016b.eb @@ -18,7 +18,7 @@ name = 'BWA' version = '0.7.16a' -subver = '0.7.16' +subver = version[:-1] homepage = 'http://bio-bwa.sourceforge.net/' description = """Burrows-Wheeler Aligner (BWA) is an efficient program that aligns diff --git a/easybuild/easyconfigs/b/BWA/BWA-0.7.16a-intel-2017a.eb b/easybuild/easyconfigs/b/BWA/BWA-0.7.16a-intel-2017a.eb index c1ee916e24..742b3bab04 100755 --- a/easybuild/easyconfigs/b/BWA/BWA-0.7.16a-intel-2017a.eb +++ b/easybuild/easyconfigs/b/BWA/BWA-0.7.16a-intel-2017a.eb @@ -18,7 +18,7 @@ name = 'BWA' version = '0.7.16a' -subver = '0.7.16' +subver = version[:-1] homepage = 'http://bio-bwa.sourceforge.net/' description = """Burrows-Wheeler Aligner (BWA) is an efficient program that aligns -- GitLab From cdec53fa0ba852cfb0fd6cd14fe4a5a01d7940df Mon Sep 17 00:00:00 2001 From: Balazs Hajgato Date: Tue, 8 Aug 2017 09:43:00 +0200 Subject: [PATCH 558/608] Javaver fixed --- easybuild/easyconfigs/t/Trinity/Trinity-2.4.0-foss-2017a.eb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/easybuild/easyconfigs/t/Trinity/Trinity-2.4.0-foss-2017a.eb b/easybuild/easyconfigs/t/Trinity/Trinity-2.4.0-foss-2017a.eb index 167f098cd2..3b41093451 100644 --- a/easybuild/easyconfigs/t/Trinity/Trinity-2.4.0-foss-2017a.eb +++ b/easybuild/easyconfigs/t/Trinity/Trinity-2.4.0-foss-2017a.eb @@ -1,7 +1,5 @@ name = 'Trinity' version = '2.4.0' -java = 'Java' -javaver = '1.8.0_121' homepage = 'http://trinityrnaseq.github.io' description = """Trinity represents a novel method for the efficient and robust de novo reconstruction @@ -24,7 +22,7 @@ builddependencies = [ dependencies = [ (java, javaver, '', True), - ('ant', '1.10.1', '-%s-%s' % (java, javaver), True), + ('ant', '1.10.1', '-Java-%(javaver)s', True), ('Bowtie', '1.1.2'), ('Bowtie2', '2.3.2'), ('ncurses', '6.0'), -- GitLab From f1587543e394dabd680f276d384039a23f147ac0 Mon Sep 17 00:00:00 2001 From: Balazs Hajgato Date: Tue, 8 Aug 2017 09:53:18 +0200 Subject: [PATCH 559/608] Javaver fixed --- easybuild/easyconfigs/t/Trinity/Trinity-2.4.0-foss-2017a.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/t/Trinity/Trinity-2.4.0-foss-2017a.eb b/easybuild/easyconfigs/t/Trinity/Trinity-2.4.0-foss-2017a.eb index 3b41093451..4bcd727913 100644 --- a/easybuild/easyconfigs/t/Trinity/Trinity-2.4.0-foss-2017a.eb +++ b/easybuild/easyconfigs/t/Trinity/Trinity-2.4.0-foss-2017a.eb @@ -21,7 +21,7 @@ builddependencies = [ ] dependencies = [ - (java, javaver, '', True), + (java, '1.8.0_121', '', True), ('ant', '1.10.1', '-Java-%(javaver)s', True), ('Bowtie', '1.1.2'), ('Bowtie2', '2.3.2'), -- GitLab From adf461f774c30062f14e2c396aa88091e1312354 Mon Sep 17 00:00:00 2001 From: Balazs Hajgato Date: Tue, 8 Aug 2017 10:38:38 +0200 Subject: [PATCH 560/608] Java --- easybuild/easyconfigs/t/Trinity/Trinity-2.4.0-foss-2017a.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/t/Trinity/Trinity-2.4.0-foss-2017a.eb b/easybuild/easyconfigs/t/Trinity/Trinity-2.4.0-foss-2017a.eb index 4bcd727913..c700a10e06 100644 --- a/easybuild/easyconfigs/t/Trinity/Trinity-2.4.0-foss-2017a.eb +++ b/easybuild/easyconfigs/t/Trinity/Trinity-2.4.0-foss-2017a.eb @@ -21,7 +21,7 @@ builddependencies = [ ] dependencies = [ - (java, '1.8.0_121', '', True), + ('Java', '1.8.0_121', '', True), ('ant', '1.10.1', '-Java-%(javaver)s', True), ('Bowtie', '1.1.2'), ('Bowtie2', '2.3.2'), -- GitLab From 89f8a5dce9f556ac693ca4d71e57e161d380e1d9 Mon Sep 17 00:00:00 2001 From: Balazs Hajgato Date: Tue, 8 Aug 2017 14:00:52 +0200 Subject: [PATCH 561/608] {chem}[dummy] ORCA 4.0.1 (REVIEW) --- .../o/ORCA/ORCA-4.0.1-OpenMPI-2.0.2.eb | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 easybuild/easyconfigs/o/ORCA/ORCA-4.0.1-OpenMPI-2.0.2.eb diff --git a/easybuild/easyconfigs/o/ORCA/ORCA-4.0.1-OpenMPI-2.0.2.eb b/easybuild/easyconfigs/o/ORCA/ORCA-4.0.1-OpenMPI-2.0.2.eb new file mode 100644 index 0000000000..1ad67b2230 --- /dev/null +++ b/easybuild/easyconfigs/o/ORCA/ORCA-4.0.1-OpenMPI-2.0.2.eb @@ -0,0 +1,37 @@ +easyblock = "PackedBinary" + +name = "ORCA" +version = '4.0.1' + +ompi_ver = '2.0.2' +versionsuffix = '-OpenMPI-%s' % ompi_ver + +homepage = 'http://cec.mpg.de/forum/' +description = """ORCA is a flexible, efficient and easy-to-use general purpose tool for quantum chemistry + with specific emphasis on spectroscopic properties of open-shell molecules. + It features a wide variety of standard quantum chemical methods ranging from semiempirical methods to DFT to single- + and multireference correlated ab initio methods. + It can also treat environmental and relativistic effects.""" + +toolchain = {'name': 'dummy', 'version': ''} + +# Download from https://cec.mpg.de/orcadownload/index.php +sources = ['%%(namelower)s_%s_linux_x86-64_openmpi%s.tar.xz' % (version.replace('.', '_'), ompi_ver.replace('.', ''))] + +checksums = ['49f4e155a5425d9be2b1e90bf2fa7b61'] + +dependencies = [('OpenMPI', ompi_ver, '-GCC-6.3.0-2.27')] + +sanity_check_paths = { + 'files': ['orca_%s%s' % (x, y) for x in ['anoint', 'casscf', 'cis', 'cleanup', 'cpscf', + 'eprnmr', 'gtoint', 'mdci', 'mp2', 'mrci', 'pc', + 'rocis', 'scf', 'scfgrad', 'soc'] for y in ['', '_mpi']] + + ['orca_%s' % x for x in ['2mkl', 'asa', 'chelpg', 'ciprep', 'eca', 'ecplib', + 'euler', 'fci', 'fitpes', 'gstep', 'loc', 'mapspc', + 'md', 'mergefrag', 'ndoint', 'numfreq', 'plot', + 'pltvib', 'pop', 'rel', 'vib', 'vpot']] + + ['orca'], + 'dirs': [], +} + +moduleclass = 'chem' -- GitLab From a93ff0b4ad83d46f404a81522d02762f99e38f44 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 8 Aug 2017 18:17:17 +0200 Subject: [PATCH 562/608] adding easyconfigs: HDF5-1.10.1-foss-2017a.eb --- .../h/HDF5/HDF5-1.10.1-foss-2017a.eb | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 easybuild/easyconfigs/h/HDF5/HDF5-1.10.1-foss-2017a.eb diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.10.1-foss-2017a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.10.1-foss-2017a.eb new file mode 100644 index 0000000000..6701351463 --- /dev/null +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.10.1-foss-2017a.eb @@ -0,0 +1,20 @@ +name = 'HDF5' +version = '1.10.1' + +homepage = 'https://support.hdfgroup.org/HDF5/' +description = """HDF5 is a unique technology suite that makes possible the management of + extremely large and complex data collections.""" + +toolchain = {'name': 'foss', 'version': '2017a'} +toolchainopts = {'pic': True, 'usempi': True} + +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['43a2f9466702fb1db31df98ae6677f15'] + +dependencies = [ + ('zlib', '1.2.11'), + ('Szip', '2.1'), +] + +moduleclass = 'data' -- GitLab From 97df9bca46a1e6ea25f9b6871dd8b250a374ca59 Mon Sep 17 00:00:00 2001 From: Adam Huffman Date: Tue, 8 Aug 2017 17:45:30 +0100 Subject: [PATCH 563/608] adding easyconfigs: minimap2-2.0rc1-foss-2016b.eb --- .../m/minimap2/minimap2-2.0rc1-foss-2016b.eb | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100755 easybuild/easyconfigs/m/minimap2/minimap2-2.0rc1-foss-2016b.eb diff --git a/easybuild/easyconfigs/m/minimap2/minimap2-2.0rc1-foss-2016b.eb b/easybuild/easyconfigs/m/minimap2/minimap2-2.0rc1-foss-2016b.eb new file mode 100755 index 0000000000..446f7da053 --- /dev/null +++ b/easybuild/easyconfigs/m/minimap2/minimap2-2.0rc1-foss-2016b.eb @@ -0,0 +1,34 @@ +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild +# Adam Huffman +# The Francis Crick Institute +# adam.huffman@crick.ac.uk + +easyblock = 'MakeCp' + +name = 'minimap2' +version = '2.0rc1' + +homepage = 'https://github.com/lh3/minimap2' +description = """Minimap2 is a fast sequence mapping and alignment program that can find overlaps between + long noisy reads, or map long reads or their assemblies to a reference genome optionally with detailed + alignment (i.e. CIGAR). At present, it works efficiently with query sequences from a few kilobases to + ~100 megabases in length at an error rate ~15%. Minimap2 outputs in the PAF or the SAM format. On limited + test data sets, minimap2 is over 20 times faster than most other long-read aligners. It will replace + BWA-MEM for long reads and contig alignment.""" + +toolchain = {'name': 'foss', 'version': '2016b'} + +sources = ['%(name)s-%(version)s.tar.bz2'] +source_urls = ['https://github.com/lh3/%(name)s/releases/download/v%(version)s/'] +checksums = ['452a13d7e944da941b6f1996392890dbe4b7f4256954dd06c99ea69939446a5b'] + +files_to_copy = [(['%(name)s'], 'bin'), 'LICENSE.txt', 'NEWS.md', 'README.md', '%(name)s.1'] + +sanity_check_paths = { + 'files': ['bin/%(name)s'], + 'dirs': [] +} + +modextrapaths = {'MANPATH': ''} + +moduleclass = 'bio' -- GitLab From a1d8e577eecf7df5e448e2661b030bdb370f4227 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Tue, 8 Aug 2017 19:05:55 +0200 Subject: [PATCH 564/608] also add checksums to Perl 5.24.1 easyconfig using intel/2017a --- .../p/Perl/Perl-5.24.1-intel-2017a.eb | 223 ++++++++++++++++++ 1 file changed, 223 insertions(+) diff --git a/easybuild/easyconfigs/p/Perl/Perl-5.24.1-intel-2017a.eb b/easybuild/easyconfigs/p/Perl/Perl-5.24.1-intel-2017a.eb index 4dc5dd9a5c..e827a0f69a 100644 --- a/easybuild/easyconfigs/p/Perl/Perl-5.24.1-intel-2017a.eb +++ b/easybuild/easyconfigs/p/Perl/Perl-5.24.1-intel-2017a.eb @@ -9,6 +9,7 @@ toolchainopts = {'pic': True} source_urls = ['http://www.cpan.org/src/%(version_major)s.0'] sources = [SOURCELOWER_TAR_GZ] +checksums = ['e6c185c9b09bdb3f1b13f678999050c639859a7ef39c8cad418448075f5918af'] # !! order of extensions is important !! # extensions updated on April 4th 2017 @@ -16,891 +17,1113 @@ exts_list = [ ('Config::General', '2.63', { 'source_tmpl': 'Config-General-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TL/TLINDEN'], + 'checksums': ['0a9bf977b8aabe76343e88095d2296c8a422410fd2a05a1901f2b20e2e1f6fad'], }), ('File::Listing', '6.04', { 'source_tmpl': 'File-Listing-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + 'checksums': ['1e0050fcd6789a2179ec0db282bf1e90fb92be35d1171588bd9c47d52d959cf5'], }), ('ExtUtils::InstallPaths', '0.011', { 'source_tmpl': 'ExtUtils-InstallPaths-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/L/LE/LEONT'], + 'checksums': ['7609fa048cdcf1451cad5b1d7d494f30e3d5bad0672d15404f1ea60e1df0067c'], }), ('ExtUtils::Helpers', '0.026', { 'source_tmpl': 'ExtUtils-Helpers-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/L/LE/LEONT'], + 'checksums': ['de901b6790a4557cf4ec908149e035783b125bf115eb9640feb1bc1c24c33416'], }), ('Test::Harness', '3.38', { 'source_tmpl': 'Test-Harness-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/L/LE/LEONT'], + 'checksums': ['af906dd279217a6db5064a058658f2b1d5aa1d307ed6f142d96ac4d339754c01'], }), ('ExtUtils::Config', '0.008', { 'source_tmpl': 'ExtUtils-Config-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/L/LE/LEONT'], + 'checksums': ['ae5104f634650dce8a79b7ed13fb59d67a39c213a6776cfdaa3ee749e62f1a8c'], }), ('Module::Build::Tiny', '0.039', { 'source_tmpl': 'Module-Build-Tiny-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/L/LE/LEONT'], + 'checksums': ['7d580ff6ace0cbe555bf36b86dc8ea232581530cbeaaea09bccb57b55797f11c'], }), ('aliased', '0.34', { 'source_tmpl': 'aliased-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + 'checksums': ['c350524507cd827fab864e5d4c2cc350b1babaa12fa95aec0ca00843fcc7deeb'], }), ('Text::Glob', '0.11', { 'source_tmpl': 'Text-Glob-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RC/RCLAMP'], + 'checksums': ['069ccd49d3f0a2dedb115f4bdc9fbac07a83592840953d1fcdfc39eb9d305287'], }), ('Regexp::Common', '2016060801', { 'source_tmpl': 'Regexp-Common-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AB/ABIGAIL'], + 'checksums': ['fc2fc178facf0292974d6511bad677dd038fe60d7ac118e3b83a1ca9e98a8403'], }), ('GO::Utils', '0.15', { 'source_tmpl': 'go-perl-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/C/CM/CMUNGALL'], + 'checksums': ['423d26155ee85ca51ab2270cee59f4e85b193e57ac3a29aff827298c0a396b12'], }), ('Module::Pluggable', '5.2', { 'source_tmpl': 'Module-Pluggable-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SI/SIMONW'], + 'checksums': ['b3f2ad45e4fd10b3fb90d912d78d8b795ab295480db56dc64e86b9fa75c5a6df'], }), ('Test::Fatal', '0.014', { 'source_tmpl': 'Test-Fatal-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['bcdcef5c7b2790a187ebca810b0a08221a63256062cfab3c3b98685d91d1cbb0'], }), ('Test::Warnings', '0.026', { 'source_tmpl': 'Test-Warnings-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + 'checksums': ['ae2b68b1b5616704598ce07f5118efe42dc4605834453b7b2be14e26f9cc9a08'], }), ('File::ShareDir::Install', '0.11', { 'source_tmpl': 'File-ShareDir-Install-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + 'checksums': ['32bf8772e9fea60866074b27ff31ab5bc3f88972d61915e84cbbb98455e00cc8'], }), ('DateTime::Locale', '1.16', { 'source_tmpl': 'DateTime-Locale-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DR/DROLSKY'], + 'checksums': ['dfaf4c42149c0622e80721773b8d7229d7785280503585895c9fe9f51e076cfe'], }), ('DateTime::TimeZone', '2.11', { 'source_tmpl': 'DateTime-TimeZone-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DR/DROLSKY'], + 'checksums': ['a7c0b2581d2bf6d5cc535364099a67678a9f6ee608e5042dff9ef9c4c577ea6b'], }), ('Test::Requires', '0.10', { 'source_tmpl': 'Test-Requires-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TO/TOKUHIROM'], + 'checksums': ['2768a391d50ab94b95cefe540b9232d7046c13ee86d01859e04c044903222eb5'], }), ('Module::Implementation', '0.09', { 'source_tmpl': 'Module-Implementation-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DR/DROLSKY'], + 'checksums': ['c15f1a12f0c2130c9efff3c2e1afe5887b08ccd033bd132186d1e7d5087fd66d'], }), ('Module::Build', '0.4222', { 'source_tmpl': 'Module-Build-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/L/LE/LEONT'], + 'checksums': ['e74b45d9a74736472b74830599cec0d1123f992760f9cd97104f94bee800b160'], }), ('Module::Runtime', '0.014', { 'source_tmpl': 'Module-Runtime-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/Z/ZE/ZEFRAM'], + 'checksums': ['4c44fe0ea255a9fd00741ee545063f6692d2a28e7ef2fbaad1b24a92803362a4'], }), ('Try::Tiny', '0.28', { 'source_tmpl': 'Try-Tiny-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + 'checksums': ['f1d166be8aa19942c4504c9111dade7aacb981bc5b3a2a5c5f6019646db8c146'], }), ('Params::Validate', '1.26', { 'source_tmpl': 'Params-Validate-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DR/DROLSKY'], + 'checksums': ['821ac3cfa9715b94f60926faf316b9ff722785594b37036202371ad2303a72ed'], }), ('List::MoreUtils', '0.418', { 'source_tmpl': 'List-MoreUtils-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RE/REHSACK'], + 'checksums': ['365651edea4e0c806576e4dcfc3dfb98bb4cbb343bc5c3e04cdc7b5b71ed4988'], }), ('Exporter::Tiny', '0.044', { 'source_tmpl': 'Exporter-Tiny-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TO/TOBYINK'], + 'checksums': ['eda868cc2da094b685ceace4245b83de11f439feb98e0ec8246cfbb9109c88ab'], }), ('Class::Singleton', '1.5', { 'source_tmpl': 'Class-Singleton-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SH/SHAY'], + 'checksums': ['38220d04f02e3a803193c2575a1644cce0b95ad4b95c19eb932b94e2647ef678'], }), ('DateTime', '1.42', { 'source_tmpl': 'DateTime-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DR/DROLSKY'], + 'checksums': ['efa4badf07365d1b03ee5527fc79baaf7d8b449bf7baad13599f04177232416e'], }), ('File::Find::Rule::Perl', '1.15', { 'source_tmpl': 'File-Find-Rule-Perl-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + 'checksums': ['9a48433f86e08ce18e03526e2982de52162eb909d19735460f07eefcaf463ea6'], }), ('Readonly', '2.05', { 'source_tmpl': 'Readonly-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SA/SANKO'], + 'checksums': ['4b23542491af010d44a5c7c861244738acc74ababae6b8838d354dfb19462b5e'], }), ('Git', '0.41', { 'source_tmpl': 'Git-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MS/MSOUTH'], + 'checksums': ['9d4de21612253a1d3252ff7657d7e832dcf3cc2a748a8c84f73de618a3a38239'], }), ('Tree::DAG_Node', '1.29', { 'source_tmpl': 'Tree-DAG_Node-%(version)s.tgz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RS/RSAVAGE'], + 'checksums': ['2d04eb011aa06cee633c367d1f322b8d937020fde5d5393fad6a26c93725c4a8'], }), ('Template', '2.26', { 'source_tmpl': 'Template-Toolkit-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AB/ABW'], + 'checksums': ['e7e1cf36026f1ef96d8233e18a3fb39e1eafe9109edc639ecf25b20651cd76be'], }), ('FreezeThaw', '0.5001', { 'source_tmpl': 'FreezeThaw-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/I/IL/ILYAZ/modules'], + 'checksums': ['3c5e08329106f9cee3ab444b81331c5935f83084a151d88505e7a465da540f41'], }), ('DBI', '1.636', { 'source_tmpl': 'DBI-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TI/TIMB'], + 'checksums': ['8f7ddce97c04b4b7a000e65e5d05f679c964d62c8b02c94c1a7d815bb2dd676c'], }), ('DBD::SQLite', '1.54', { 'source_tmpl': 'DBD-SQLite-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/I/IS/ISHIGAKI'], + 'checksums': ['3929a6dbd8d71630f0cb57f85dcef9588cd7ac4c9fa12db79df77b9d3a4d7269'], }), ('Math::Bezier', '0.01', { 'source_tmpl': 'Math-Bezier-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AB/ABW'], + 'checksums': ['11a815fc45fdf0efabb1822ab77faad8b9eea162572c5f0940c8ed7d56e6b8b8'], }), ('Archive::Extract', '0.80', { 'source_tmpl': 'Archive-Extract-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BI/BINGOS'], + 'checksums': ['25cbc2d5626c14d39a0b5e4fe8383941e085c9a7e0aa873d86e81b6e709025f4'], }), ('DBIx::Simple', '1.35', { 'source_tmpl': 'DBIx-Simple-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/J/JU/JUERD'], + 'checksums': ['445535b3dfab88140c7a0d2776b1e78f254dc7e9c81072d5a01afc95a5db499a'], }), ('Shell', '0.73', { 'source_tmpl': 'Shell-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/F/FE/FERREIRA'], + 'checksums': ['f7dbebf65261ed0e5abd0f57052b64d665a1a830bab4c8bbc220f235bd39caf5'], }), ('File::Spec', '3.62', { 'source_tmpl': 'PathTools-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['36350e12f58871437ba03391f80a506e447e3c6630cc37d0625bc25ff1c7b4d2'], }), ('Test::Simple', '1.302078', { 'source_tmpl': 'Test-Simple-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/EX/EXODIST'], + 'checksums': ['ab47f3a980ad9aedb78a731719a0487f02a7bc30c17b65457e6dfc3a89a04c15'], }), ('Set::Scalar', '1.29', { 'source_tmpl': 'Set-Scalar-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DA/DAVIDO'], + 'checksums': ['a3dc1526f3dde72d3c64ea00007b86ce608cdcd93567cf6e6e42dc10fdc4511d'], }), ('IO::Stringy', '2.111', { 'source_tmpl': 'IO-stringy-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DS/DSKOLL'], + 'checksums': ['8c67fd6608c3c4e74f7324f1404a856c331dbf48d9deda6aaa8296ea41bf199d'], }), ('Encode::Locale', '1.05', { 'source_tmpl': 'Encode-Locale-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + 'checksums': ['176fa02771f542a4efb1dbc2a4c928e8f4391bf4078473bd6040d8f11adb0ec1'], }), ('XML::SAX::Base', '1.09', { 'source_tmpl': 'XML-SAX-Base-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GR/GRANTM'], + 'checksums': ['66cb355ba4ef47c10ca738bd35999723644386ac853abbeb5132841f5e8a2ad0'], }), ('XML::NamespaceSupport', '1.12', { 'source_tmpl': 'XML-NamespaceSupport-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/P/PE/PERIGRIN'], + 'checksums': ['47e995859f8dd0413aa3f22d350c4a62da652e854267aa0586ae544ae2bae5ef'], }), ('XML::SAX', '0.99', { 'source_tmpl': 'XML-SAX-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GR/GRANTM'], + 'checksums': ['32b04b8e36b6cc4cfc486de2d859d87af5386dd930f2383c49347050d6f5ad84'], }), ('Test::LeakTrace', '0.15', { 'source_tmpl': 'Test-LeakTrace-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GF/GFUJI'], + 'checksums': ['efb8b58b6981efc6c9c4b4a3b550728f8c179f3c8d57c05724873011c08de65e'], }), ('Test::Exception', '0.43', { 'source_tmpl': 'Test-Exception-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/EX/EXODIST'], + 'checksums': ['156b13f07764f766d8b45a43728f2439af81a3512625438deab783b7883eb533'], }), ('Text::Table', '1.132', { 'source_tmpl': 'Text-Table-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF'], + 'checksums': ['cd601742ee526a9c54b9fe0a4c051e1b09a23b75e2c97de14305218116aba516'], }), ('MIME::Types', '2.13', { 'source_tmpl': 'MIME-Types-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MA/MARKOV'], + 'checksums': ['99c3376357bbe22cc8b6c78f560aa18d81621287695cd629008a6c4e66b77bf8'], }), ('Module::Build::XSUtil', '0.16', { 'source_tmpl': 'Module-Build-XSUtil-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/H/HI/HIDEAKIO'], + 'checksums': ['15762fa4e43b41302cff261c7ad75aacdc874f416981f206d783f20acd023adb'], }), ('Tie::Function', '0.02', { 'source_tmpl': 'Tie-Function-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DA/DAVIDNICO/handy_tied_functions'], + 'checksums': ['0b1617af218dfab911ba0fbd72210529a246efe140332da77fe3e03d11000117'], }), ('Template::Plugin::Number::Format', '1.06', { 'source_tmpl': 'Template-Plugin-Number-Format-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DA/DARREN'], + 'checksums': ['0865836a1bcbc34d4a0ee34b5ccc14d7b511f1fd300bf390f002dac349539843'], }), ('HTML::Parser', '3.72', { 'source_tmpl': 'HTML-Parser-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + 'checksums': ['ec28c7e1d9e67c45eca197077f7cdc41ead1bb4c538c7f02a3296a4bb92f608b'], }), ('Date::Handler', '1.2', { 'source_tmpl': 'Date-Handler-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BB/BBEAUSEJ'], + 'checksums': ['c36fd2b68d48c2e17417bf2873c78820f3ae02460fdf5976b8eeab887d59e16c'], }), ('Params::Util', '1.07', { 'source_tmpl': 'Params-Util-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AD/ADAMK'], + 'checksums': ['30f1ec3f2cf9ff66ae96f973333f23c5f558915bb6266881eac7423f52d7c76c'], }), ('IO::HTML', '1.001', { 'source_tmpl': 'IO-HTML-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/C/CJ/CJM'], + 'checksums': ['ea78d2d743794adc028bc9589538eb867174b4e165d7d8b5f63486e6b828e7e0'], }), ('Data::Grove', '0.08', { 'source_tmpl': 'libxml-perl-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/K/KM/KMACLEOD'], + 'checksums': ['4571059b7b5d48b7ce52b01389e95d798bf5cf2020523c153ff27b498153c9cb'], }), ('Class::ISA', '0.36', { 'source_tmpl': 'Class-ISA-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SM/SMUELLER'], + 'checksums': ['8816f34e9a38e849a10df756030dccf9fe061a196c11ac3faafd7113c929b964'], }), ('URI', '1.71', { 'source_tmpl': 'URI-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + 'checksums': ['9c8eca0d7f39e74bbc14706293e653b699238eeb1a7690cc9c136fb8c2644115'], }), ('Ima::DBI', '0.35', { 'source_tmpl': 'Ima-DBI-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/P/PE/PERRIN'], + 'checksums': ['8b481ceedbf0ae4a83effb80581550008bfdd3885ef01145e3733c7097c00a08'], }), ('Tie::IxHash', '1.23', { 'source_tmpl': 'Tie-IxHash-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/C/CH/CHORNY'], + 'checksums': ['fabb0b8c97e67c9b34b6cc18ed66f6c5e01c55b257dcf007555e0b027d4caf56'], }), ('GO', '0.04', { 'source_tmpl': 'go-db-perl-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SJ/SJCARBON'], + 'checksums': ['8eb73d591ad767e7cf26def40cffd84833875f1ad51e456960b9ed73dc23641b'], }), ('Class::DBI::SQLite', '0.11', { 'source_tmpl': 'Class-DBI-SQLite-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MI/MIYAGAWA'], + 'checksums': ['c4661b00afb7e53c97ac36e13f34dde43c1a93540a2f4ff97e6182b0c731e4e7'], }), ('Pod::POM', '2.01', { 'source_tmpl': 'Pod-POM-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/N/NE/NEILB'], + 'checksums': ['1b50fba9bbdde3ead192beeba0eaddd0c614e3afb1743fa6fff805f57c56f7f4'], }), ('Math::Round', '0.07', { 'source_tmpl': 'Math-Round-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GR/GROMMEL'], + 'checksums': ['73a7329a86e54a5c29a440382e5803095b58f33129e61a1df0093b4824de9327'], }), ('Text::Diff', '1.44', { 'source_tmpl': 'Text-Diff-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/N/NE/NEILB'], + 'checksums': ['57f7a0bed7d085d34a3ffab3a68140d7b816737c87b831086b4c0945bf483b10'], }), ('Log::Message::Simple', '0.10', { 'source_tmpl': 'Log-Message-Simple-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BI/BINGOS'], + 'checksums': ['aa12d1a4c0ac260b94d448fa01feba242a8a85cb6cbfdc66432e3b5b468add96'], }), ('IO::Socket::SSL', '2.047', { 'source_tmpl': 'IO-Socket-SSL-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SU/SULLR'], + 'checksums': ['c5ad8e14174863194ad43c23a38c77e0b202a989cac9d3e13fb30efcf1d41158'], }), ('Fennec::Lite', '0.004', { 'source_tmpl': 'Fennec-Lite-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/EX/EXODIST'], + 'checksums': ['dce28e3932762c2ff92aa52d90405c06e898e81cb7b164ccae8966ae77f1dcab'], }), ('Sub::Uplevel', '0.2800', { 'source_tmpl': 'Sub-Uplevel-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN'], + 'checksums': ['b4f3f63b80f680a421332d8851ddbe5a8e72fcaa74d5d1d98f3c8cc4a3ece293'], }), ('Meta::Builder', '0.003', { 'source_tmpl': 'Meta-Builder-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/EX/EXODIST'], + 'checksums': ['e7ac289b88d1662e87708d716877ac66a1a8414660996fe58c1db96d834a5375'], }), ('Exporter::Declare', '0.114', { 'source_tmpl': 'Exporter-Declare-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/EX/EXODIST'], + 'checksums': ['4bd70d6ca76f6f6ba7e4c618d4ac93b8593a58f1233ccbe18b10f5f204f1d4e4'], }), ('Getopt::Long', '2.49.1', { 'source_tmpl': 'Getopt-Long-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/J/JV/JV'], + 'checksums': ['98fad4235509aa24608d9ef895b5c60fe2acd2bca70ebdf1acaf6824e17a882f'], }), ('Log::Message', '0.08', { 'source_tmpl': 'Log-Message-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BI/BINGOS'], + 'checksums': ['bd697dd62aaf26d118e9f0a0813429deb1c544e4501559879b61fcbdfe99fe46'], }), ('Mouse', 'v2.4.9', { 'source_tmpl': 'Mouse-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SY/SYOHEX'], + 'checksums': ['9640aae77bfee2fa9c739640c8da41482c183890f0901663f004867e12d540f8'], }), ('Test::Version', '2.05', { 'source_tmpl': 'Test-Version-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/P/PL/PLICEASE'], + 'checksums': ['39c0ec02663da0e56962bdafaef6790cf83d12b4d90e8a4cdc971d57d869d63f'], }), ('DBIx::Admin::TableInfo', '3.03', { 'source_tmpl': 'DBIx-Admin-TableInfo-%(version)s.tgz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RS/RSAVAGE'], + 'checksums': ['a852530f95957a43aa794f2edf5f3fe4ecec35bd20150c38136d4c23d85328b6'], }), ('Net::HTTP', '6.13', { 'source_tmpl': 'Net-HTTP-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/O/OA/OALDERS'], + 'checksums': ['2d25e696c5239c8a4aa5a97f07ecaa77cf908cc72bbeef7fa6573570af31ce87'], }), ('Test::Deep', '1.126', { 'source_tmpl': 'Test-Deep-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['159b42451e4018d9da97994f4ac46d5166abf9b6f343db30071c8fd1cfe0c7c2'], }), ('Test::Warn', '0.32', { 'source_tmpl': 'Test-Warn-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BI/BIGJ'], + 'checksums': ['2fc516e71f9ef453be22a4619d91eb3f78df414a57dfa0fd745d3bff50bf73d2'], }), ('MRO::Compat', '0.13', { 'source_tmpl': 'MRO-Compat-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/H/HA/HAARG'], + 'checksums': ['8a2c3b6ccc19328d5579d02a7d91285e2afd85d801f49d423a8eb16f323da4f8'], }), ('Moo', '2.003002', { 'source_tmpl': 'Moo-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/H/HA/HAARG'], + 'checksums': ['f3e9741e79baa63e89f5a08706cd80d18c0a5a37e3d898847e002310e06582f1'], }), ('Hash::Merge', '0.200', { 'source_tmpl': 'Hash-Merge-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RE/REHSACK'], + 'checksums': ['47f9f03330b7595c94e73bdd17dc6682ba59d1cc89e63f4e319617f4bb122a64'], }), ('SQL::Abstract', '1.84', { 'source_tmpl': 'SQL-Abstract-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/I/IL/ILMARI'], + 'checksums': ['655f4aa3d4ea7ca0a7bafb2beff84010d5c77f0ee4413baa0c86456bf6db5e75'], }), ('HTML::Form', '6.03', { 'source_tmpl': 'HTML-Form-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + 'checksums': ['68c01d94f005d5ca9c4d55ad2a1bf3a8d034a5fc6db187d91a4c42f3fdc9fc36'], }), ('File::Copy::Recursive', '0.38', { 'source_tmpl': 'File-Copy-Recursive-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DM/DMUEY'], + 'checksums': ['84ccbddf3894a88a2c2b6be68ff6ef8960037803bb36aa228b31944cfdf6deeb'], }), ('Number::Compare', '0.03', { 'source_tmpl': 'Number-Compare-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RC/RCLAMP'], + 'checksums': ['83293737e803b43112830443fb5208ec5208a2e6ea512ed54ef8e4dd2b880827'], }), ('IPC::Run', '0.94', { 'source_tmpl': 'IPC-Run-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TO/TODDR'], + 'checksums': ['2eb336c91a2b7ea61f98e5b2282d91020d39a484f16041e2365ffd30f8a5605b'], }), ('HTML::Entities::Interpolate', '1.10', { 'source_tmpl': 'HTML-Entities-Interpolate-%(version)s.tgz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RS/RSAVAGE'], + 'checksums': ['f15a9df92c282419f7010964aca1ada844ddfae7afc735cd2ba1bb20883e955c'], }), ('Test::ClassAPI', '1.06', { 'source_tmpl': 'Test-ClassAPI-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AD/ADAMK'], + 'checksums': ['06f82d076501701d78b8dc40b7688507bcc6c58b1beafd559e05bb0644df00a2'], }), ('Test::Most', '0.35', { 'source_tmpl': 'Test-Most-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/O/OV/OVID'], + 'checksums': ['9897a6f4d751598d2ed1047e01c1554b01d0f8c96c45e7e845229782bf6f657f'], }), ('Class::Accessor', '0.34', { 'source_tmpl': 'Class-Accessor-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/K/KA/KASEI'], + 'checksums': ['cdb1e0cdf8380fb9b63b44c33ce5afc1068736d55ac5904bf0eaa1efc1c3cefc'], }), ('Test::Differences', '0.64', { 'source_tmpl': 'Test-Differences-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DC/DCANTRELL'], + 'checksums': ['9f459dd9c2302a0a73e2f5528a0ce7d09d6766f073187ae2c69e603adf2eb276'], }), ('HTTP::Tiny', '0.070', { 'source_tmpl': 'HTTP-Tiny-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN'], + 'checksums': ['74f385d1e96de887a4df5a222d93afdc7d81ea9ad721a56ff3d8449bb12f7733'], }), ('Package::DeprecationManager', '0.17', { 'source_tmpl': 'Package-DeprecationManager-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DR/DROLSKY'], + 'checksums': ['1d743ada482b5c9871d894966e87d4c20edc96931bb949fb2638b000ddd6684b'], }), ('Digest::SHA1', '2.13', { 'source_tmpl': 'Digest-SHA1-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + 'checksums': ['68c1dac2187421f0eb7abf71452a06f190181b8fc4b28ededf5b90296fb943cc'], }), ('Date::Language', '2.30', { 'source_tmpl': 'TimeDate-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GB/GBARR'], + 'checksums': ['75bd254871cb5853a6aa0403ac0be270cdd75c9d1b6639f18ecba63c15298e86'], }), ('version', '0.9917', { 'source_tmpl': 'version-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/J/JP/JPEACOCK'], + 'checksums': ['d9ecb20dc5d7877b1f6cb1b1d2fb4149b1b25a8ec2d5fa09f1b5fbc62668b4c6'], }), ('Sub::Uplevel', '0.2800', { 'source_tmpl': 'Sub-Uplevel-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN'], + 'checksums': ['b4f3f63b80f680a421332d8851ddbe5a8e72fcaa74d5d1d98f3c8cc4a3ece293'], }), ('XML::Bare', '0.53', { 'source_tmpl': 'XML-Bare-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/C/CO/CODECHILD'], + 'checksums': ['865e198e98d904be1683ef5a53a4948f02dabdacde59fc554a082ffbcc5baefd'], 'patches': ['XML-Bare-0.53_icc.patch'], }), ('Dist::CheckConflicts', '0.11', { 'source_tmpl': 'Dist-CheckConflicts-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DO/DOY'], + 'checksums': ['ea844b9686c94d666d9d444321d764490b2cde2f985c4165b4c2c77665caedc4'], }), ('Sub::Name', '0.21', { 'source_tmpl': 'Sub-Name-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + 'checksums': ['bd32e9dee07047c10ae474c9f17d458b6e9885a6db69474c7a494ccc34c27117'], }), ('Time::Piece', '1.31', { 'source_tmpl': 'Time-Piece-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ES/ESAYM'], + 'checksums': ['05084024dc6fcec9ea5218038d1933e9c2cc5aa5f769d70404480e977cd167b9'], }), ('Digest::HMAC', '1.03', { 'source_tmpl': 'Digest-HMAC-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + 'checksums': ['3bc72c6d3ff144d73aefb90e9a78d33612d58cf1cd1631ecfb8985ba96da4a59'], }), ('HTTP::Negotiate', '6.01', { 'source_tmpl': 'HTTP-Negotiate-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + 'checksums': ['1c729c1ea63100e878405cda7d66f9adfd3ed4f1d6cacaca0ee9152df728e016'], }), ('MIME::Lite', '3.030', { 'source_tmpl': 'MIME-Lite-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['8f39901bc580bc3dce69e10415305e4435ff90264c63d29f707b4566460be962'], }), ('Crypt::Rijndael', '1.13', { 'source_tmpl': 'Crypt-Rijndael-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/L/LE/LEONT'], + 'checksums': ['cd7209a6dfe0a3dc8caffe1aa2233b0e6effec7572d76a7a93feefffe636214e'], }), ('B::Lint', '1.20', { 'source_tmpl': 'B-Lint-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['dc49408964fd8b7963859c92e013f0b9f92f74be5a7c2a78e3996279827c10b3'], }), ('Canary::Stability', '2012', { 'source_tmpl': 'Canary-Stability-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN'], + 'checksums': ['fd240b111d834dbae9630c59b42fae2145ca35addc1965ea311edf0d07817107'], }), ('AnyEvent', '7.13', { 'source_tmpl': 'AnyEvent-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN'], + 'checksums': ['a4103f4def9687b5545b3e6be1f29a5a24b59ff9a817b1afc27fb9bc268d04ad'], }), ('Object::Accessor', '0.48', { 'source_tmpl': 'Object-Accessor-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BI/BINGOS'], + 'checksums': ['76cb824a27b6b4e560409fcf6fd5b3bfbbd38b72f1f3d37ed0b54bd9c0baeade'], }), ('Data::UUID', '1.221', { 'source_tmpl': 'Data-UUID-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['3cc7b2a3a7b74b45a059e013f7fd878078500ea4b7269036f84556b022078667'], }), ('Test::Pod', '1.51', { 'source_tmpl': 'Test-Pod-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + 'checksums': ['c1a1d3cedf4a579e3aad89c36f9878a8542b6656dbe71f1581420f49582d7efb'], }), ('AppConfig', '1.71', { 'source_tmpl': 'AppConfig-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/N/NE/NEILB'], + 'checksums': ['1177027025ecb09ee64d9f9f255615c04db5e14f7536c344af632032eb887b0f'], }), ('Net::SMTP::SSL', '1.04', { 'source_tmpl': 'Net-SMTP-SSL-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['7b29c45add19d3d5084b751f7ba89a8e40479a446ce21cfd9cc741e558332a00'], }), ('XML::Tiny', '2.06', { 'source_tmpl': 'XML-Tiny-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DC/DCANTRELL'], + 'checksums': ['d2ca40496b96f6ff08e4f858c3a813a081983f5b5aa6ae76357e2b9a88886eea'], }), ('HTML::Tagset', '3.20', { 'source_tmpl': 'HTML-Tagset-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/P/PE/PETDANCE'], + 'checksums': ['adb17dac9e36cd011f5243881c9739417fd102fce760f8de4e9be4c7131108e2'], }), ('HTML::Tree', '5.03', { 'source_tmpl': 'HTML-Tree-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/C/CJ/CJM'], + 'checksums': ['7d6d73fca622aa74855a8b088faa39454a0f91b7af83c9ec0387f01eefc2148f'], }), ('Devel::GlobalDestruction', '0.14', { 'source_tmpl': 'Devel-GlobalDestruction-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/H/HA/HAARG'], + 'checksums': ['34b8a5f29991311468fe6913cadaba75fd5d2b0b3ee3bb41fe5b53efab9154ab'], }), ('WWW::RobotRules', '6.02', { 'source_tmpl': 'WWW-RobotRules-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + 'checksums': ['46b502e7a288d559429891eeb5d979461dd3ecc6a5c491ead85d165b6e03a51e'], }), ('Expect', '1.33', { 'source_tmpl': 'Expect-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/J/JA/JACOBY'], + 'checksums': ['fddfea6980c4f6771d979472e3e084fb55ca9b92bd39ebabdb2522594bf05ff2'], }), ('Term::UI', '0.46', { 'source_tmpl': 'Term-UI-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BI/BINGOS'], + 'checksums': ['91946c80d7f4aab0ca4bfedc3bbe0a75b37cab1a29bd7bca3b3b7456d417e9a6'], }), ('Net::SNMP', 'v6.0.1', { 'source_tmpl': 'Net-SNMP-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DT/DTOWN'], + 'checksums': ['14c37bc1cbb3f3cdc7d6c13e0f27a859f14cdcfd5ea54a0467a88bc259b0b741'], }), ('XML::SAX::Writer', '0.56', { 'source_tmpl': 'XML-SAX-Writer-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/P/PE/PERIGRIN'], + 'checksums': ['d073f7a25072c8150317b86b99d07031316a15bffab99e63e5afe591c8217d03'], }), ('Statistics::Descriptive', '3.0612', { 'source_tmpl': 'Statistics-Descriptive-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF'], + 'checksums': ['772413148e5e00efb32f277c4254aa78b9112490a896208dcd0025813afdbf7a'], }), ('Class::Load', '0.23', { 'source_tmpl': 'Class-Load-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + 'checksums': ['f2bca579e72ea96c6b1c5ebc86dfa1929062c412443277f0bc0437e50874b28f'], }), ('LWP::Simple', '6.25', { 'source_tmpl': 'libwww-perl-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/O/OA/OALDERS'], + 'checksums': ['49c0110ef38d27a8963a082cf61ce245447871676b85ec9f2b9b41d6c2f37f33'], }), ('Time::Piece::MySQL', '0.06', { 'source_tmpl': 'Time-Piece-MySQL-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/K/KA/KASEI'], + 'checksums': ['319601feec17fae344988a5ee91cfc6a0bcfe742af77dba254724c3268b2a60f'], }), ('Package::Stash::XS', '0.28', { 'source_tmpl': 'Package-Stash-XS-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DO/DOY'], + 'checksums': ['23d8c5c25768ef1dc0ce53b975796762df0d6e244445d06e48d794886c32d486'], }), ('GD::Graph', '1.54', { 'source_tmpl': 'GDGraph-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RU/RUZ'], + 'checksums': ['b96f5c10b656c17d16ab65a1777c908297b028d3b6815f6d54b2337f006bfa4f'], }), ('Set::Array', '0.30', { 'source_tmpl': 'Set-Array-%(version)s.tgz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RS/RSAVAGE'], + 'checksums': ['d9f024c8e3637feccdebcf6479b6754b6c92f1209f567feaf0c23818af31ee3c'], }), ('boolean', '0.46', { 'source_tmpl': 'boolean-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/I/IN/INGY'], + 'checksums': ['95c088085c3e83bf680fe6ce16d8264ec26310490f7d1680e416ea7a118f156a'], }), ('Number::Format', '1.75', { 'source_tmpl': 'Number-Format-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/W/WR/WRW'], + 'checksums': ['82d659cb16461764fd44d11a9ce9e6a4f5e8767dc1069eb03467c6e55de257f3'], }), ('Data::Stag', '0.14', { 'source_tmpl': 'Data-Stag-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/C/CM/CMUNGALL'], + 'checksums': ['4ab122508d2fb86d171a15f4006e5cf896d5facfa65219c0b243a89906258e59'], }), ('Test::NoWarnings', '1.04', { 'source_tmpl': 'Test-NoWarnings-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AD/ADAMK'], + 'checksums': ['638a57658cb119af1fe5b15e73d47c2544dcfef84af0c6b1b2e97f08202b686c'], }), ('Crypt::DES', '2.07', { 'source_tmpl': 'Crypt-DES-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DP/DPARIS'], + 'checksums': ['2db1ebb5837b4cb20051c0ee5b733b4453e3137df0a92306034c867621edd7e7'], }), ('Exporter', '5.72', { 'source_tmpl': 'Exporter-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TO/TODDR'], + 'checksums': ['cd13b7a0e91e8505a0ce4b25f40fab2c92bb28a99ef0d03da1001d95a32f0291'], }), ('Class::Inspector', '1.31', { 'source_tmpl': 'Class-Inspector-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/P/PL/PLICEASE'], + 'checksums': ['065f649f1f7a676f0496c37dc155cf4812edb77bdbb0e95d28c985deff930eeb'], }), ('Parse::RecDescent', '1.967014', { 'source_tmpl': 'Parse-RecDescent-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/J/JT/JTBRAUN'], + 'checksums': ['7041c483431fefd08eb66944fb5f8f7fb0fc595c08b33ed2f4c7037b8acccdcd'], }), ('Carp', '1.38', { 'source_tmpl': 'Carp-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['a5a9ce3cbb959dfefa8c2dd16552567199b286d39b0e55053ca247c038977101'], }), ('XML::XPath', '1.40', { 'source_tmpl': 'XML-XPath-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MA/MANWAR'], + 'checksums': ['2bf66f51fa786e3ce9273bfac6c842d0dd8dbaf5126a7964456a4a41e802ea1e'], }), ('Capture::Tiny', '0.46', { 'source_tmpl': 'Capture-Tiny-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN'], + 'checksums': ['5d7a6a830cf7f2b2960bf8b8afaac16a537ede64f3023827acea5bd24ca77015'], }), ('JSON', '2.90', { 'source_tmpl': 'JSON-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MA/MAKAMAKA'], + 'checksums': ['4ddbb3cb985a79f69a34e7c26cde1c81120d03487e87366f9a119f90f7bdfe88'], }), ('Sub::Exporter', '0.987', { 'source_tmpl': 'Sub-Exporter-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['543cb2e803ab913d44272c7da6a70bb62c19e467f3b12aaac4c9523259b083d6'], }), ('Class::Load::XS', '0.09', { 'source_tmpl': 'Class-Load-XS-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + 'checksums': ['bbec3b916df9e48827950a297bf53ef4dd59ed6376142099504307a42b553baa'], }), ('Set::IntSpan::Fast', '1.15', { 'source_tmpl': 'Set-IntSpan-Fast-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AN/ANDYA'], + 'checksums': ['cfb1768c24f55208e87405b17f537f0f303fa141891d0b22d509a941aa57e24e'], }), ('Sub::Exporter::Progressive', '0.001013', { 'source_tmpl': 'Sub-Exporter-Progressive-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/F/FR/FREW'], + 'checksums': ['d535b7954d64da1ac1305b1fadf98202769e3599376854b2ced90c382beac056'], }), ('Data::Dumper::Concise', '2.022', { 'source_tmpl': 'Data-Dumper-Concise-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/F/FR/FREW'], + 'checksums': ['4c0f30edf539665f708db40d085bd1c4252c8ff3bad518ef177c0a17e6ebfb7c'], }), ('File::Slurp::Tiny', '0.004', { 'source_tmpl': 'File-Slurp-Tiny-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/L/LE/LEONT'], + 'checksums': ['452995beeabf0e923e65fdc627a725dbb12c9e10c00d8018c16d10ba62757f1e'], }), ('Algorithm::Diff', '1.1903', { 'source_tmpl': 'Algorithm-Diff-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TY/TYEMQ'], + 'checksums': ['30e84ac4b31d40b66293f7b1221331c5a50561a39d580d85004d9c1fff991751'], }), ('AnyData', '0.12', { 'source_tmpl': 'AnyData-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RE/REHSACK'], + 'checksums': ['be6a957f04a2feba9b305536b132deceba1f455db295b221a63e75567fadbcfc'], }), ('Text::Iconv', '1.7', { 'source_tmpl': 'Text-Iconv-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MP/MPIOTR'], + 'checksums': ['5b80b7d5e709d34393bcba88971864a17b44a5bf0f9e4bcee383d029e7d2d5c3'], }), ('Class::Data::Inheritable', '0.08', { 'source_tmpl': 'Class-Data-Inheritable-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TM/TMTM'], + 'checksums': ['9967feceea15227e442ec818723163eb6d73b8947e31f16ab806f6e2391af14a'], }), ('Text::Balanced', '2.03', { 'source_tmpl': 'Text-Balanced-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SH/SHAY'], + 'checksums': ['057753f8f0568b53921f66a60a89c30092b73329bcc61a2c43339ab70c9792c8'], }), ('strictures', '2.000003', { 'source_tmpl': 'strictures-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/H/HA/HAARG'], + 'checksums': ['27f8ea096a521e9754d36ea32889c2cda28346d04e3e399e7ea118d182dbaf22'], }), ('Switch', '2.17', { 'source_tmpl': 'Switch-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/C/CH/CHORNY'], + 'checksums': ['31354975140fe6235ac130a109496491ad33dd42f9c62189e23f49f75f936d75'], }), ('File::Which', '1.21', { 'source_tmpl': 'File-Which-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/P/PL/PLICEASE'], + 'checksums': ['9def5f10316bfd944e56b7f8a2501be1d44c288325309462aa9345e340854bcc'], }), ('Email::Date::Format', '1.005', { 'source_tmpl': 'Email-Date-Format-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['579c617e303b9d874411c7b61b46b59d36f815718625074ae6832e7bb9db5104'], }), ('Error', '0.17024', { 'source_tmpl': 'Error-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF'], + 'checksums': ['074db7c783a67b0667eca64a4f6a0c3de94998afc92c01d6453163eb04b9150d'], }), ('Mock::Quick', '1.111', { 'source_tmpl': 'Mock-Quick-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/EX/EXODIST'], + 'checksums': ['ff786008bf8c022064ececd3b7ed89c76b35e8d1eac6cf472a9f51771c1c9f2c'], }), ('Text::CSV', '1.92', { 'source_tmpl': 'Text-CSV-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/I/IS/ISHIGAKI'], + 'checksums': ['c705804519ab5ed9bfad7767704ec7725d8eb57f7c67af855353b7708ade6585'], }), ('Test::Output', '1.031', { 'source_tmpl': 'Test-Output-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BD/BDFOY'], + 'checksums': ['f8b8f37185717872727d06f6c078fa77db794410faf2f6da4d37b0b7650f7ea4'], }), ('Class::DBI', 'v3.0.17', { 'source_tmpl': 'Class-DBI-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TM/TMTM'], + 'checksums': ['541354fe361c56850cb11261f6ca089a14573fa764792447444ff736ae626206'], }), ('List::AllUtils', '0.14', { 'source_tmpl': 'List-AllUtils-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DR/DROLSKY'], + 'checksums': ['e45aa65927ae1975a000cc2fed14274627fa5e2bd09bab826a5f2c41d17ef6cd'], }), ('UNIVERSAL::moniker', '0.08', { 'source_tmpl': 'UNIVERSAL-moniker-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/K/KA/KASEI'], + 'checksums': ['94ce27a546cd57cb52e080a8f2533a7cc2350028388582485bd1039a37871f9c'], }), ('Exception::Class', '1.42', { 'source_tmpl': 'Exception-Class-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DR/DROLSKY'], + 'checksums': ['8bb4ee64d3770d6812bda36890ef5df418573287eb8eccbb106f04c981dea22b'], }), ('File::CheckTree', '4.42', { 'source_tmpl': 'File-CheckTree-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['66fb417f8ff8a5e5b7ea25606156e70e204861c59fa8c3831925b4dd3f155f8a'], }), ('Math::VecStat', '0.08', { 'source_tmpl': 'Math-VecStat-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AS/ASPINELLI'], + 'checksums': ['409a8e0e4b1025c8e80f628f65a9778aa77ab285161406ca4a6c097b13656d0d'], }), ('Pod::LaTeX', '0.61', { 'source_tmpl': 'Pod-LaTeX-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TJ/TJENNESS'], + 'checksums': ['15a840ea1c8a76cd3c865fbbf2fec33b03615c0daa50f9c800c54e0cf0659d46'], }), ('Eval::Closure', '0.14', { 'source_tmpl': 'Eval-Closure-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DO/DOY'], + 'checksums': ['ea0944f2f5ec98d895bef6d503e6e4a376fea6383a6bc64c7670d46ff2218cad'], }), ('HTTP::Request', '6.11', { 'source_tmpl': 'HTTP-Message-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + 'checksums': ['e7b368077ae6a188d99920411d8f52a8e5acfb39574d4f5c24f46fd22533d81b'], }), ('XML::Twig', '3.52', { 'source_tmpl': 'XML-Twig-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MI/MIROD'], + 'checksums': ['fef75826c24f2b877d0a0d2645212fc4fb9756ed4d2711614ac15c497e8680ad'], }), ('IO::String', '1.08', { 'source_tmpl': 'IO-String-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + 'checksums': ['2a3f4ad8442d9070780e58ef43722d19d1ee21a803bf7c8206877a10482de5a0'], }), ('XML::Simple', '2.22', { 'source_tmpl': 'XML-Simple-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GR/GRANTM'], + 'checksums': ['b9450ef22ea9644ae5d6ada086dc4300fa105be050a2030ebd4efd28c198eb49'], }), ('Sub::Install', '0.928', { 'source_tmpl': 'Sub-Install-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['61e567a7679588887b7b86d427bc476ea6d77fffe7e0d17d640f89007d98ef0f'], }), ('HTTP::Cookies', '6.03', { 'source_tmpl': 'HTTP-Cookies-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/O/OA/OALDERS'], + 'checksums': ['05051f2761832317554b0be4b74012c35fd278f6af2c9d218f055e0de891457c'], }), ('Pod::Plainer', '1.04', { 'source_tmpl': 'Pod-Plainer-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RM/RMBARKER'], + 'checksums': ['1bbfbf7d1d4871e5a83bab2137e22d089078206815190eb1d5c1260a3499456f'], }), ('Test::Exception::LessClever', '0.009', { 'source_tmpl': 'Test-Exception-LessClever-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + 'checksums': ['3b2731a44956a11f74b46b3ecf0734fab651e1c0bcf120f8b407aa1b4d43ac34'], }), ('LWP::MediaTypes', '6.02', { 'source_tmpl': 'LWP-MediaTypes-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + 'checksums': ['18790b0cc5f0a51468495c3847b16738f785a2d460403595001e0b932e5db676'], }), ('Scalar::Util', '1.47', { 'source_tmpl': 'Scalar-List-Utils-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/P/PE/PEVANS'], + 'checksums': ['c483347372a96972d61fd186522a9dafc2da899ef2951964513b7e8efb37efe1'], }), ('Data::Section::Simple', '0.07', { 'source_tmpl': 'Data-Section-Simple-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MI/MIYAGAWA'], + 'checksums': ['0b3035ffdb909aa1f7ded6b608fa9d894421c82c097d51e7171170d67579a9cb'], }), ('Class::Trigger', '0.14', { 'source_tmpl': 'Class-Trigger-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MI/MIYAGAWA'], + 'checksums': ['6b1e45acc561e0708e00a2fcf16e157cad8b8963d1bf73726f77dd809b8aebc4'], }), ('HTTP::Daemon', '6.01', { 'source_tmpl': 'HTTP-Daemon-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + 'checksums': ['43fd867742701a3f9fcc7bd59838ab72c6490c0ebaf66901068ec6997514adc2'], }), ('File::HomeDir', '1.00', { 'source_tmpl': 'File-HomeDir-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AD/ADAMK'], + 'checksums': ['85b94f3513093ec0a25b91f9f2571918519ae6f2b7a1e8546f8f78d09a877143'], }), ('HTTP::Date', '6.02', { 'source_tmpl': 'HTTP-Date-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GAAS'], + 'checksums': ['e8b9941da0f9f0c9c01068401a5e81341f0e3707d1c754f8e11f42a7e629e333'], }), ('Authen::SASL', '2.16', { 'source_tmpl': 'Authen-SASL-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GB/GBARR'], + 'checksums': ['6614fa7518f094f853741b63c73f3627168c5d3aca89b1d02b1016dc32854e09'], }), ('Clone', '0.38', { 'source_tmpl': 'Clone-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/G/GA/GARU'], + 'checksums': ['9fb0534bb7ef6ca1f6cc1dc3f29750d6d424394d14c40efdc77832fad3cebde8'], }), ('Data::Types', '0.09', { 'source_tmpl': 'Data-Types-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DW/DWHEELER'], + 'checksums': ['b2296fdcf9addc8e8fc39e15eb2c3d81145f6355258438bc783b12b02c41cb81'], }), ('Import::Into', '1.002005', { 'source_tmpl': 'Import-Into-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/H/HA/HAARG'], + 'checksums': ['bd9e77a3fb662b40b43b18d3280cd352edf9fad8d94283e518181cc1ce9f0567'], }), ('DateTime::Tiny', '1.06', { 'source_tmpl': 'DateTime-Tiny-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN'], + 'checksums': ['bd725df481d7223ee787e154c116098b08a129f55e0763194b07ebea3dda33ec'], }), ('DBD::AnyData', '0.110', { 'source_tmpl': 'DBD-AnyData-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RE/REHSACK'], + 'checksums': ['247f0d88e55076fd3f6c7bf3fd527989d62fcc1ef9bde9bf2ee11c280adcaeab'], }), ('Text::Format', '0.60', { 'source_tmpl': 'Text-Format-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF'], + 'checksums': ['664f313570604624ff9e1fc9b26b6d04e06897b3e4eac83089fc0905a692a2b8'], }), ('Devel::CheckCompiler', '0.07', { 'source_tmpl': 'Devel-CheckCompiler-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SY/SYOHEX'], + 'checksums': ['768b7697b4b8d4d372c7507b65e9dd26aa4223f7100183bbb4d3af46d43869b5'], }), ('Log::Handler', '0.88', { 'source_tmpl': 'Log-Handler-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BL/BLOONIX'], + 'checksums': ['45bf540ab2138ed3ff93afc205b0516dc75755b86acdcc5e75c41347833c293d'], }), ('DBIx::ContextualFetch', '1.03', { 'source_tmpl': 'DBIx-ContextualFetch-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TM/TMTM'], + 'checksums': ['85e2f805bfc81cd738c294316b27a515397036f397a0ff1c6c8d754c38530306'], }), ('Devel::StackTrace', '2.02', { 'source_tmpl': 'Devel-StackTrace-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DR/DROLSKY'], + 'checksums': ['cbbd96db0ecf194ed140198090eaea0e327d9a378a4aa15f9a34b3138a91931f'], }), ('Term::ReadKey', '2.14', { 'source_tmpl': 'TermReadKey-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/K/KJ/KJALB'], + 'checksums': ['6009158cd9889f8c00da78af99847ace5052f1ca04fa30eb3411fdc26d54c9a8'], }), ('Set::IntSpan', '1.19', { 'source_tmpl': 'Set-IntSpan-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SW/SWMCD'], + 'checksums': ['11b7549b13ec5d87cc695dd4c777cd02983dd5fe9866012877fb530f48b3dfd0'], }), ('Moose', '2.2004', { 'source_tmpl': 'Moose-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/E/ET/ETHER'], + 'checksums': ['e4c881bf8d8fd5821aea8a8c7c57ed850c2373d4800949798a55c06ca9e8d2b0'], }), ('Algorithm::Dependency', '1.110', { 'source_tmpl': 'Algorithm-Dependency-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AD/ADAMK'], + 'checksums': ['f27733e8d89cf2ab621284c2584da90ab0cb743ba2295ee739fe51bf92561e37'], }), ('Font::TTF', '1.06', { 'source_tmpl': 'Font-TTF-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BH/BHALLISSY'], + 'checksums': ['4b697d444259759ea02d2c442c9bffe5ffe14c9214084a01f743693a944cc293'], }), ('IPC::Run3', '0.048', { 'source_tmpl': 'IPC-Run3-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['3d81c3cc1b5cff69cca9361e2c6e38df0352251ae7b41e2ff3febc850e463565'], }), ('File::Find::Rule', '0.34', { 'source_tmpl': 'File-Find-Rule-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RC/RCLAMP'], + 'checksums': ['7e6f16cc33eb1f29ff25bee51d513f4b8a84947bbfa18edb2d3cc40a2d64cafe'], }), ('SQL::Statement', '1.410', { 'source_tmpl': 'SQL-Statement-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RE/REHSACK'], + 'checksums': ['7367fcda896367c96d98416cad423c9f98adb7e04b793c5c7deb3052a1213182'], }), ('File::Slurp', '9999.19', { 'source_tmpl': 'File-Slurp-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/U/UR/URI'], + 'checksums': ['ce29ebe995097ebd6e9bc03284714cdfa0c46dc94f6b14a56980747ea3253643'], }), ('Package::Stash', '0.37', { 'source_tmpl': 'Package-Stash-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DO/DOY'], + 'checksums': ['06ab05388f9130cd377c0e1d3e3bafeed6ef6a1e22104571a9e1d7bfac787b2c'], }), ('Data::OptList', '0.110', { 'source_tmpl': 'Data-OptList-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['366117cb2966473f2559f2f4575ff6ae69e84c69a0f30a0773e1b51a457ef5c3'], }), ('CPANPLUS', '0.9164', { 'source_tmpl': 'CPANPLUS-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BI/BINGOS'], + 'checksums': ['3fcd8c7bb1973df484236fc3d59ed17c8a35057f56546ba44bfc780b97fec0a8'], }), ('IO::Tty', '1.12', { 'source_tmpl': 'IO-Tty-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/T/TO/TODDR'], + 'checksums': ['a2ef8770d3309178203f8c8ac25e623e63cf76e97830fd3be280ade1a555290d'], }), ('Text::Soundex', '3.05', { 'source_tmpl': 'Text-Soundex-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RJ/RJBS'], + 'checksums': ['f6dd55b4280b25dea978221839864382560074e1d6933395faee2510c2db60ed'], }), ('Lingua::EN::PluralToSingular', '0.19', { 'source_tmpl': 'Lingua-EN-PluralToSingular-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/B/BK/BKB'], + 'checksums': ['c71b6c1aec01aae9c42aef0d9f147a437e91a7cc5cea6e4abbc35440638f299e'], }), ('Want', '0.29', { 'source_tmpl': 'Want-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RO/ROBIN'], + 'checksums': ['b4e4740b8d4cb783591273c636bd68304892e28d89e88abf9273b1de17f552f7'], }), ('Cwd::Guard', '0.05', { 'source_tmpl': 'Cwd-Guard-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/K/KA/KAZEBURO'], + 'checksums': ['7afc7ca2b9502e440241938ad97a3e7ebd550180ebd6142e1db394186b268e77'], }), ('Bundle::BioPerl', '2.1.9', { 'source_tmpl': 'Bundle-BioPerl-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/C/CJ/CJFIELDS'], + 'checksums': ['c343ba97f49d86e7fb14aef4cfe3124992e2a5c3168e53a54606dd611d73e5c7'], }), ('Mail::Util', '2.18', { 'source_tmpl': 'MailTools-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MA/MARKOV'], + 'checksums': ['dfee9e770257371112f20d978e637759e81bc4f19e97b083585c71ecab37b527'], }), ('Text::Template', '1.47', { 'source_tmpl': 'Text-Template-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MS/MSCHOUT'], + 'checksums': ['50d742c74482478aa01008d468290fcfbc0b9a1219cfe1284076f1f31f0be8fc'], }), ('PDF::API2', '2.031', { 'source_tmpl': 'PDF-API2-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SS/SSIMMS'], + 'checksums': ['6ea5d38f99dfb1e8acf57c9c7579659b3eee84944295a135f90e607e0a3f43e9'], }), ('Devel::CheckLib', '1.11', { 'source_tmpl': 'Devel-CheckLib-%(version)s.tar.gz', 'source_urls': ['https://cpan.metacpan.org/authors/id/M/MA/MATTN'], + 'checksums': ['bd6d1c187e80be6de1f0d37add441ba8f14950c7bc1f54e764770ed484b232c1'], }), ('SVG', '2.77', { 'source_tmpl': 'SVG-2.77.tar.gz', 'source_urls': ['http://search.cpan.org/CPAN/authors/id/M/MA/MANWAR/'], + 'checksums': ['1f01cf2dc666a2ba3bf5219ec9e2290143e5e569747431412c8423916a9846c5'], }), ('Statistics::Basic', '1.6611', { 'source_tmpl': 'Statistics-Basic-1.6611.tar.gz', 'source_urls': ['http://search.cpan.org/CPAN/authors/id/J/JE/JETTERO/'], + 'checksums': ['6855ce5615fd3e1af4cfc451a9bf44ff29a3140b4e7130034f1f0af2511a94fb'], }), ] -- GitLab From e64985bc522c497005df71667ff3648f08f42a4b Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 9 Aug 2017 12:00:46 +0200 Subject: [PATCH 565/608] adding easyconfigs: xarray-0.9.6-intel-2017a-Python-2.7.13.eb --- .../xarray-0.9.6-intel-2017a-Python-2.7.13.eb | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 easybuild/easyconfigs/x/xarray/xarray-0.9.6-intel-2017a-Python-2.7.13.eb diff --git a/easybuild/easyconfigs/x/xarray/xarray-0.9.6-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/x/xarray/xarray-0.9.6-intel-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..d49636fa5c --- /dev/null +++ b/easybuild/easyconfigs/x/xarray/xarray-0.9.6-intel-2017a-Python-2.7.13.eb @@ -0,0 +1,25 @@ +easyblock = 'PythonPackage' + +name = 'xarray' +version = '0.9.6' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'https://github.com/pydata/xarray' +description = """xarray (formerly xray) is an open source project and Python package that aims to bring + the labeled data power of pandas to the physical sciences, by providing N-dimensional variants of the + core pandas data structures.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [PYPI_SOURCE] +sources = [SOURCE_TAR_GZ] +checksums = ['f649a41d43b5a6c64bdcbd57e994932656b689f9593a86dd0be95778a2b47494'] + +dependencies = [('Python', '2.7.13')] + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages'], +} + +moduleclass = 'data' -- GitLab From f669fbe3b50e4a1de9b7610c5913b49ed79204ae Mon Sep 17 00:00:00 2001 From: Maxime Boissonneault Date: Wed, 9 Aug 2017 13:03:43 +0000 Subject: [PATCH 566/608] added checksum --- .../a/Armadillo/Armadillo-7.950.1-intel-2016b-Python-2.7.12.eb | 1 + 1 file changed, 1 insertion(+) diff --git a/easybuild/easyconfigs/a/Armadillo/Armadillo-7.950.1-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/a/Armadillo/Armadillo-7.950.1-intel-2016b-Python-2.7.12.eb index ca56813122..ee8b4d3fb7 100644 --- a/easybuild/easyconfigs/a/Armadillo/Armadillo-7.950.1-intel-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/a/Armadillo/Armadillo-7.950.1-intel-2016b-Python-2.7.12.eb @@ -11,6 +11,7 @@ toolchain = {'name': 'intel', 'version': '2016b'} sources = [SOURCELOWER_TAR_XZ] source_urls = ['http://sourceforge.net/projects/arma/files'] +checksums = ['a32da32a0ea420b8397a53e4b40ed279c1a5fc791dd492a2ced81ffb14ad0d1b'] dependencies = [ ('Boost', '1.63.0', versionsuffix), -- GitLab From e3b33c0fc35d2eb3b1c189bfecd1a32ded1c9921 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 9 Aug 2017 15:50:13 +0200 Subject: [PATCH 567/608] adding easyconfigs: UNAFold-3.8-intel-2017a-Perl-5.24.1.eb --- .../UNAFold-3.8-intel-2017a-Perl-5.24.1.eb | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 easybuild/easyconfigs/u/UNAFold/UNAFold-3.8-intel-2017a-Perl-5.24.1.eb diff --git a/easybuild/easyconfigs/u/UNAFold/UNAFold-3.8-intel-2017a-Perl-5.24.1.eb b/easybuild/easyconfigs/u/UNAFold/UNAFold-3.8-intel-2017a-Perl-5.24.1.eb new file mode 100644 index 0000000000..1cc07a9de0 --- /dev/null +++ b/easybuild/easyconfigs/u/UNAFold/UNAFold-3.8-intel-2017a-Perl-5.24.1.eb @@ -0,0 +1,27 @@ +easyblock = 'ConfigureMake' + +name = 'UNAFold' +version = '3.8' +versionsuffix = '-Perl-%(perlver)s' + +homepage='http://mfold.rna.albany.edu/?q=DINAMelt/software' +description = """The UNAFold package contains several programs for performing energy minimization and partition + function calculations on nucleic acid sequences.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +sources = [SOURCELOWER_TAR_GZ] +#patches = ["ictce_inf.patch"] +checksums = ['f9392621762a74b02eb026caceb69568ea65b0cf0891ba25a805da721a90a275'] + +dependencies = [ + ('gnuplot', '5.0.6'), + ('Perl', '5.24.1'), +] + +sanity_check_paths = { + 'files': ['bin/concentration', 'bin/ct-energy', 'bin/hybrid', 'bin/hybrid2-min.pl', 'bin/sbs'], + 'dirs': [], +} + +moduleclass = 'bio' -- GitLab From dd03b8c02555b7ec6542fc96944b3bd7e5e69767 Mon Sep 17 00:00:00 2001 From: Balazs Hajgato Date: Wed, 9 Aug 2017 15:52:10 +0200 Subject: [PATCH 568/608] md5->sha256 --- easybuild/easyconfigs/o/ORCA/ORCA-4.0.1-OpenMPI-2.0.2.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/o/ORCA/ORCA-4.0.1-OpenMPI-2.0.2.eb b/easybuild/easyconfigs/o/ORCA/ORCA-4.0.1-OpenMPI-2.0.2.eb index 1ad67b2230..b28cb7f1c0 100644 --- a/easybuild/easyconfigs/o/ORCA/ORCA-4.0.1-OpenMPI-2.0.2.eb +++ b/easybuild/easyconfigs/o/ORCA/ORCA-4.0.1-OpenMPI-2.0.2.eb @@ -18,7 +18,7 @@ toolchain = {'name': 'dummy', 'version': ''} # Download from https://cec.mpg.de/orcadownload/index.php sources = ['%%(namelower)s_%s_linux_x86-64_openmpi%s.tar.xz' % (version.replace('.', '_'), ompi_ver.replace('.', ''))] -checksums = ['49f4e155a5425d9be2b1e90bf2fa7b61'] +checksums = ['6644b95fdb16e117b870fd9e5cea8b4f829f1547d5df4e87d52ef08e3f1ee310'] dependencies = [('OpenMPI', ompi_ver, '-GCC-6.3.0-2.27')] -- GitLab From 21ed5c9c1b985d640ea548781d2fd222e2f23043 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 9 Aug 2017 17:00:56 +0200 Subject: [PATCH 569/608] fix style issues --- .../u/UNAFold/UNAFold-3.8-intel-2017a-Perl-5.24.1.eb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/u/UNAFold/UNAFold-3.8-intel-2017a-Perl-5.24.1.eb b/easybuild/easyconfigs/u/UNAFold/UNAFold-3.8-intel-2017a-Perl-5.24.1.eb index 1cc07a9de0..91df69c67f 100644 --- a/easybuild/easyconfigs/u/UNAFold/UNAFold-3.8-intel-2017a-Perl-5.24.1.eb +++ b/easybuild/easyconfigs/u/UNAFold/UNAFold-3.8-intel-2017a-Perl-5.24.1.eb @@ -4,14 +4,13 @@ name = 'UNAFold' version = '3.8' versionsuffix = '-Perl-%(perlver)s' -homepage='http://mfold.rna.albany.edu/?q=DINAMelt/software' +homepage = 'http://mfold.rna.albany.edu/?q=DINAMelt/software' description = """The UNAFold package contains several programs for performing energy minimization and partition function calculations on nucleic acid sequences.""" toolchain = {'name': 'intel', 'version': '2017a'} sources = [SOURCELOWER_TAR_GZ] -#patches = ["ictce_inf.patch"] checksums = ['f9392621762a74b02eb026caceb69568ea65b0cf0891ba25a805da721a90a275'] dependencies = [ -- GitLab From 9df0f5a2642c08b44ce6cbf62202fc285e927df2 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 9 Aug 2017 21:01:01 +0200 Subject: [PATCH 570/608] add zlib as depedency to recent util-linux easyconfigs --- .../easyconfigs/u/util-linux/util-linux-2.29-foss-2016b.eb | 5 ++++- .../easyconfigs/u/util-linux/util-linux-2.29-intel-2016b.eb | 5 ++++- .../u/util-linux/util-linux-2.30-GCCcore-6.4.0.eb | 1 + 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/u/util-linux/util-linux-2.29-foss-2016b.eb b/easybuild/easyconfigs/u/util-linux/util-linux-2.29-foss-2016b.eb index 27b08c5298..246ed0de3f 100644 --- a/easybuild/easyconfigs/u/util-linux/util-linux-2.29-foss-2016b.eb +++ b/easybuild/easyconfigs/u/util-linux/util-linux-2.29-foss-2016b.eb @@ -23,7 +23,10 @@ configopts += "--with-bashcompletiondir='${prefix}/share/bash-completion/complet # disable building Python bindings (since we don't include Python as a dep) configopts += "--without-python " -dependencies = [('ncurses', '6.0')] +dependencies = [ + ('ncurses', '6.0'), + ('zlib', '1.2.8'), +] sanity_check_paths = { 'files': ['lib/lib%s.a' % x for x in ['blkid', 'mount', 'uuid']], diff --git a/easybuild/easyconfigs/u/util-linux/util-linux-2.29-intel-2016b.eb b/easybuild/easyconfigs/u/util-linux/util-linux-2.29-intel-2016b.eb index b5ac58a535..c4419d6080 100644 --- a/easybuild/easyconfigs/u/util-linux/util-linux-2.29-intel-2016b.eb +++ b/easybuild/easyconfigs/u/util-linux/util-linux-2.29-intel-2016b.eb @@ -23,7 +23,10 @@ configopts += "--with-bashcompletiondir='${prefix}/share/bash-completion/complet # disable building Python bindings (since we don't include Python as a dep) configopts += "--without-python " -dependencies = [('ncurses', '6.0')] +dependencies = [ + ('ncurses', '6.0'), + ('zlib', '1.2.8'), +] sanity_check_paths = { 'files': ['lib/lib%s.a' % x for x in ['blkid', 'mount', 'uuid']], diff --git a/easybuild/easyconfigs/u/util-linux/util-linux-2.30-GCCcore-6.4.0.eb b/easybuild/easyconfigs/u/util-linux/util-linux-2.30-GCCcore-6.4.0.eb index 3556edda8d..64826e9aa5 100644 --- a/easybuild/easyconfigs/u/util-linux/util-linux-2.30-GCCcore-6.4.0.eb +++ b/easybuild/easyconfigs/u/util-linux/util-linux-2.30-GCCcore-6.4.0.eb @@ -32,6 +32,7 @@ builddependencies = [ dependencies = [ ('ncurses', '6.0'), + ('zlib', '1.2.11'), ] sanity_check_paths = { -- GitLab From a9d45090544d26746dd5e5a7f459d19dbd401906 Mon Sep 17 00:00:00 2001 From: Adam Huffman Date: Thu, 10 Aug 2017 06:11:12 +0100 Subject: [PATCH 571/608] Fix manpage placement --- .../easyconfigs/m/minimap2/minimap2-2.0rc1-foss-2016b.eb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/easybuild/easyconfigs/m/minimap2/minimap2-2.0rc1-foss-2016b.eb b/easybuild/easyconfigs/m/minimap2/minimap2-2.0rc1-foss-2016b.eb index 446f7da053..0e029fec25 100755 --- a/easybuild/easyconfigs/m/minimap2/minimap2-2.0rc1-foss-2016b.eb +++ b/easybuild/easyconfigs/m/minimap2/minimap2-2.0rc1-foss-2016b.eb @@ -22,13 +22,11 @@ sources = ['%(name)s-%(version)s.tar.bz2'] source_urls = ['https://github.com/lh3/%(name)s/releases/download/v%(version)s/'] checksums = ['452a13d7e944da941b6f1996392890dbe4b7f4256954dd06c99ea69939446a5b'] -files_to_copy = [(['%(name)s'], 'bin'), 'LICENSE.txt', 'NEWS.md', 'README.md', '%(name)s.1'] +files_to_copy = [(['%(name)s'], 'bin'), 'LICENSE.txt', 'NEWS.md', 'README.md', (['%(name)s.1'], 'share/man/man1')] sanity_check_paths = { 'files': ['bin/%(name)s'], 'dirs': [] } -modextrapaths = {'MANPATH': ''} - moduleclass = 'bio' -- GitLab From 37398674ade437e0a7add592eeb9cb1c15ab1900 Mon Sep 17 00:00:00 2001 From: Adam Huffman Date: Thu, 10 Aug 2017 06:20:28 +0100 Subject: [PATCH 572/608] Fix hardcoded version for patch --- easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-foss-2016b.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-foss-2016b.eb b/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-foss-2016b.eb index 2126725d43..aecff4c2cf 100755 --- a/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-foss-2016b.eb +++ b/easybuild/easyconfigs/b/BFAST/BFAST-0.7.0a-foss-2016b.eb @@ -32,7 +32,7 @@ checksums = ['ed8de49693165a87d5dbef352207c424b1bf6f670a83acf49a4f4f188444995e'] dependencies = [('bzip2', '1.0.6')] -patches = ['BFAST-0.7.0a-inline.patch'] +patches = ['BFAST-%(version)s-inline.patch'] sanity_check_paths = { 'files': ["bin/bfast"], -- GitLab From 21354990e4e6b4ca169b93d563091db4c6b2693e Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 10 Aug 2017 13:20:12 +0200 Subject: [PATCH 573/608] adding easyconfigs: netcdf4-python-1.2.9-intel-2017a-Python-2.7.13.eb, netCDF-4.4.1.1-intel-2017a-HDF5-1.10.1.eb --- .../netCDF-4.4.1.1-intel-2017a-HDF5-1.10.1.eb | 35 +++++++++++++++++++ ...-python-1.2.9-intel-2017a-Python-2.7.13.eb | 23 ++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 easybuild/easyconfigs/n/netCDF/netCDF-4.4.1.1-intel-2017a-HDF5-1.10.1.eb create mode 100644 easybuild/easyconfigs/n/netcdf4-python/netcdf4-python-1.2.9-intel-2017a-Python-2.7.13.eb diff --git a/easybuild/easyconfigs/n/netCDF/netCDF-4.4.1.1-intel-2017a-HDF5-1.10.1.eb b/easybuild/easyconfigs/n/netCDF/netCDF-4.4.1.1-intel-2017a-HDF5-1.10.1.eb new file mode 100644 index 0000000000..713953985c --- /dev/null +++ b/easybuild/easyconfigs/n/netCDF/netCDF-4.4.1.1-intel-2017a-HDF5-1.10.1.eb @@ -0,0 +1,35 @@ +name = 'netCDF' +version = '4.4.1.1' +hdf5_ver = '1.10.1' +versionsuffix = '-HDF5-%s' % hdf5_ver + +homepage = 'http://www.unidata.ucar.edu/software/netcdf/' +description = """NetCDF (network Common Data Form) is a set of software libraries + and machine-independent data formats that support the creation, access, and sharing of array-oriented + scientific data.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'pic': True, 'usempi': True} + +source_urls = ['https://github.com/Unidata/netcdf-c/archive/'] +sources = ['v%(version)s.tar.gz'] +checksums = ['7f040a0542ed3f6d27f3002b074e509614e18d6c515b2005d1537fec01b24909'] + +dependencies = [ + ('HDF5', hdf5_ver), + ('cURL', '7.54.0'), + ('Szip', '2.1'), +] + +builddependencies = [ + ('CMake', '3.8.2'), + ('Doxygen', '1.8.13'), +] + +# make sure both static and shared libs are built +configopts = [ + "-DBUILD_SHARED_LIBS=OFF ", + "-DBUILD_SHARED_LIBS=ON ", +] + +moduleclass = 'data' diff --git a/easybuild/easyconfigs/n/netcdf4-python/netcdf4-python-1.2.9-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/n/netcdf4-python/netcdf4-python-1.2.9-intel-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..4f52ebe137 --- /dev/null +++ b/easybuild/easyconfigs/n/netcdf4-python/netcdf4-python-1.2.9-intel-2017a-Python-2.7.13.eb @@ -0,0 +1,23 @@ +name = 'netcdf4-python' +version = '1.2.9' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'https://unidata.github.io/netcdf4-python/' +description = """Python/numpy interface to netCDF.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'usempi': True} + +source_urls = ['https://github.com/Unidata/netcdf4-python/archive/'] +sources = ['v%(version)srel.tar.gz'] +checksums = ['bbb6d40d33f5fe8fbf211b5706ff4af9484a91a5ab50d9f6607858bd34c1d10c'] + +patches = ['netcdf4-python-1.1.8-avoid-diskless-test.patch'] + +dependencies = [ + ('Python', '2.7.13'), + ('netCDF', '4.4.1.1', '-HDF5-1.10.1'), + ('cURL', '7.54.0'), +] + +moduleclass = 'data' -- GitLab From 5453a56c6d90a1a4c156518f456915812d0b4b33 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 10 Aug 2017 13:30:14 +0200 Subject: [PATCH 574/608] adding easyconfigs: HDF5-1.8.19-intel-2017a.eb --- .../h/HDF5/HDF5-1.8.19-intel-2017a.eb | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 easybuild/easyconfigs/h/HDF5/HDF5-1.8.19-intel-2017a.eb diff --git a/easybuild/easyconfigs/h/HDF5/HDF5-1.8.19-intel-2017a.eb b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.19-intel-2017a.eb new file mode 100644 index 0000000000..a3a8e59731 --- /dev/null +++ b/easybuild/easyconfigs/h/HDF5/HDF5-1.8.19-intel-2017a.eb @@ -0,0 +1,21 @@ +name = 'HDF5' +version = '1.8.19' + +homepage = 'https://support.hdfgroup.org/HDF5/' +description = """HDF5 is a unique technology suite that makes possible the management of + extremely large and complex data collections.""" + +toolchain = {'name': 'intel', 'version': '2017a'} +toolchainopts = {'pic': True, 'usempi': True} + +source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src'] + +sources = [SOURCELOWER_TAR_GZ] +checksums = ['a4335849f19fae88c264fd0df046bc321a78c536b2548fc508627a790564dc38'] + +dependencies = [ + ('zlib', '1.2.11'), + ('Szip', '2.1'), +] + +moduleclass = 'data' -- GitLab From 04bd562e08f6a7330a2d959010258bb85a2dd54c Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 10 Aug 2017 13:47:57 +0200 Subject: [PATCH 575/608] adding easyconfigs: Pysam-0.8.4-intel-2016b-Python-2.7.12.eb --- .../Pysam-0.8.4-intel-2016b-Python-2.7.12.eb | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 easybuild/easyconfigs/p/Pysam/Pysam-0.8.4-intel-2016b-Python-2.7.12.eb diff --git a/easybuild/easyconfigs/p/Pysam/Pysam-0.8.4-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/p/Pysam/Pysam-0.8.4-intel-2016b-Python-2.7.12.eb new file mode 100644 index 0000000000..76d42a604f --- /dev/null +++ b/easybuild/easyconfigs/p/Pysam/Pysam-0.8.4-intel-2016b-Python-2.7.12.eb @@ -0,0 +1,37 @@ +# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild +# Author: Pablo Escobar Lopez +# sciCORE - University of Basel +# SIB Swiss Institute of Bioinformatics +# 0.9.1.4: +# Modified by: Adam Huffman +# The Francis Crick Institute + +easyblock = 'PythonPackage' + +name = 'Pysam' +version = '0.8.4' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'https://github.com/pysam-developers/pysam' +description = """Pysam is a python module for reading and manipulating Samfiles. + It's a lightweight wrapper of the samtools C-API. Pysam also includes an interface for tabix.""" + +toolchain = {'name': 'intel', 'version': '2016b'} + +source_urls = ['https://github.com/pysam-developers/pysam/archive/'] +sources = ['v%(version)s.tar.gz'] +checksums = ['4acbfe4b15b1db2417094ea64836d416a66e368e6c0e3031b597509f21e8c021'] + +dependencies = [ + ('Python', '2.7.12'), + ('ncurses', '6.0'), + ('zlib', '1.2.8'), + ('cURL', '7.52.1'), +] + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages'], +} + +moduleclass = 'bio' -- GitLab From 1d000e9562d0b02e7d8a045ae63870054a6892b9 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 10 Aug 2017 17:52:55 +0200 Subject: [PATCH 576/608] also fix URLs in PLINK-1.07-x86_64.eb --- easybuild/easyconfigs/p/PLINK/PLINK-1.07-x86_64.eb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/p/PLINK/PLINK-1.07-x86_64.eb b/easybuild/easyconfigs/p/PLINK/PLINK-1.07-x86_64.eb index 7f7c8b29a2..f2b5d4628b 100644 --- a/easybuild/easyconfigs/p/PLINK/PLINK-1.07-x86_64.eb +++ b/easybuild/easyconfigs/p/PLINK/PLINK-1.07-x86_64.eb @@ -3,13 +3,13 @@ easyblock = 'PackedBinary' name = 'PLINK' version = '1.07-x86_64' -homepage = 'http://pngu.mgh.harvard.edu/~purcell/plink/' +homepage = 'http://zzz.bwh.harvard.edu/plink/dist' description = 'plink-1.07-src: Whole-genome association analysis toolset' toolchain = {'name': 'dummy', 'version': 'dummy'} sources = ['%(namelower)s-%(version)s.zip'] -source_urls = ['http://pngu.mgh.harvard.edu/~purcell/plink/dist/'] +source_urls = ['http://zzz.bwh.harvard.edu/plink/dist'] checksums = ['fd0bafeda42151b20534e4f97b0d97df'] -- GitLab From 063ff68e3f102c4615441176dcd1edf058882a2b Mon Sep 17 00:00:00 2001 From: Jack Perdue Date: Thu, 10 Aug 2017 13:29:44 -0500 Subject: [PATCH 577/608] cleanup --- easybuild/easyconfigs/h/htop/htop-2.0.1.eb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/easybuild/easyconfigs/h/htop/htop-2.0.1.eb b/easybuild/easyconfigs/h/htop/htop-2.0.1.eb index c7e830f3a7..8c6054d0f4 100644 --- a/easybuild/easyconfigs/h/htop/htop-2.0.1.eb +++ b/easybuild/easyconfigs/h/htop/htop-2.0.1.eb @@ -17,9 +17,7 @@ dependencies = [ ('ncurses', '6.0'), ] -prebuildopts = """ - sed -e 's/^LIBS = -lncursesw -lm/LIBS = -lncursesw -lm -ltinfo/' -i.eb Makefile -""" +preconfigopts = 'LIBS="$LIBS -ltinfo"' sanity_check_paths = { 'files': ['bin/htop'], -- GitLab From a37a797d1ed63a7aa476594905721ff09741053f Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 10 Aug 2017 22:49:19 +0200 Subject: [PATCH 578/608] add additional extensions for R 3.4.0 and Bioconductor 3.5 bundle --- .../R-bundle-Bioconductor-3.5-intel-2017a-R-3.4.0.eb | 2 ++ .../easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb | 9 +++++++++ 2 files changed, 11 insertions(+) diff --git a/easybuild/easyconfigs/r/R-bundle-Bioconductor/R-bundle-Bioconductor-3.5-intel-2017a-R-3.4.0.eb b/easybuild/easyconfigs/r/R-bundle-Bioconductor/R-bundle-Bioconductor-3.5-intel-2017a-R-3.4.0.eb index 9125415482..07b8eb5010 100644 --- a/easybuild/easyconfigs/r/R-bundle-Bioconductor/R-bundle-Bioconductor-3.5-intel-2017a-R-3.4.0.eb +++ b/easybuild/easyconfigs/r/R-bundle-Bioconductor/R-bundle-Bioconductor-3.5-intel-2017a-R-3.4.0.eb @@ -157,6 +157,8 @@ exts_list = [ ('RcppParallel', '4.3.20', ext_options), ('dada2', '1.4.0', bioconductor_options), ('LEA', '1.8.1', bioconductor_options), + ('scran', '1.4.5', bioconductor_options), + ('scater', '1.4.0', bioconductor_options), ] modextrapaths = {'R_LIBS': ''} diff --git a/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb b/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb index 10a1470cb3..70f5a7c2e7 100644 --- a/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb +++ b/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb @@ -535,6 +535,15 @@ exts_list = [ ('sn', '1.5-0', ext_options), ('tclust', '1.2-7', ext_options), ('ranger', '0.8.0', ext_options), + ('hexbin', '1.27.1', ext_options), + ('crosstalk', '1.0.0', ext_options), + ('pryr', '0.1.2', ext_options), + ('moments', '0.14', ext_options), + ('forcats', '0.2.0', ext_options), + ('laeken', '0.4.6', ext_options), + ('VIM', '4.7.0', ext_options), + ('proxy', '0.4-17', ext_options), + ('smoother', '1.1', ext_options), ] moduleclass = 'lang' -- GitLab From 7b7b1cade8d5be8a93f3129e67a2130bef171f15 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 10 Aug 2017 22:51:46 +0200 Subject: [PATCH 579/608] adding easyconfigs: SCnorm-0.99.7-intel-2017a-R-3.4.0.eb --- .../SCnorm-0.99.7-intel-2017a-R-3.4.0.eb | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 easybuild/easyconfigs/s/SCnorm/SCnorm-0.99.7-intel-2017a-R-3.4.0.eb diff --git a/easybuild/easyconfigs/s/SCnorm/SCnorm-0.99.7-intel-2017a-R-3.4.0.eb b/easybuild/easyconfigs/s/SCnorm/SCnorm-0.99.7-intel-2017a-R-3.4.0.eb new file mode 100644 index 0000000000..b7ba7c4828 --- /dev/null +++ b/easybuild/easyconfigs/s/SCnorm/SCnorm-0.99.7-intel-2017a-R-3.4.0.eb @@ -0,0 +1,28 @@ +easyblock = 'RPackage' + +name = 'SCnorm' +version = '0.99.7' +versionsuffix = '-R-%(rver)s' + +homepage = 'https://bioconductor.org/packages/SCnorm' +description = "This package implements SCnorm — a method to normalize single-cell RNA-seq data." + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [ + 'http://bioconductor.org/packages/release/bioc/src/contrib/', + 'https://bioconductor.org/packages/devel/bioc/src/contrib/', +] +sources = ['%(name)s_%(version)s.tar.gz'] + +dependencies = [ + ('R', '3.4.0', '-X11-20170314'), + ('R-bundle-Bioconductor', '3.5', versionsuffix), +] + +sanity_check_paths = { + 'files': [], + 'dirs': [name], +} + +moduleclass = 'data' -- GitLab From 8e46bc68bfe866049dd2214cb1c44a8635fc26aa Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 10 Aug 2017 22:53:44 +0200 Subject: [PATCH 580/608] adding easyconfigs: destiny-2.5.6-intel-2017a-R-3.4.0.eb --- .../destiny-2.5.6-intel-2017a-R-3.4.0.eb | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 easybuild/easyconfigs/d/destiny/destiny-2.5.6-intel-2017a-R-3.4.0.eb diff --git a/easybuild/easyconfigs/d/destiny/destiny-2.5.6-intel-2017a-R-3.4.0.eb b/easybuild/easyconfigs/d/destiny/destiny-2.5.6-intel-2017a-R-3.4.0.eb new file mode 100644 index 0000000000..6dc1fa57a7 --- /dev/null +++ b/easybuild/easyconfigs/d/destiny/destiny-2.5.6-intel-2017a-R-3.4.0.eb @@ -0,0 +1,28 @@ +easyblock = 'RPackage' + +name = 'destiny' +version = '2.5.6' +versionsuffix = '-R-%(rver)s' + +homepage = 'https://bioconductor.org/packages/destiny' +description = "R packages to create and plot diffusion maps." + +toolchain = {'name': 'intel', 'version': '2017a'} + +source_urls = [ + 'http://bioconductor.org/packages/release/bioc/src/contrib/', + 'https://bioconductor.org/packages/devel/bioc/src/contrib/', +] +sources = ['%(name)s_%(version)s.tar.gz'] + +dependencies = [ + ('R', '3.4.0', '-X11-20170314'), + ('R-bundle-Bioconductor', '3.5', versionsuffix), +] + +sanity_check_paths = { + 'files': [], + 'dirs': [name], +} + +moduleclass = 'data' -- GitLab From a38c44f0e2a456b2eb06f29407dc748ba106f658 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 10 Aug 2017 22:54:10 +0200 Subject: [PATCH 581/608] adding easyconfigs: plotly-4.7.1-intel-2017a-R-3.4.0.eb --- .../plotly-4.7.1-intel-2017a-R-3.4.0.eb | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 easybuild/easyconfigs/p/plotly/plotly-4.7.1-intel-2017a-R-3.4.0.eb diff --git a/easybuild/easyconfigs/p/plotly/plotly-4.7.1-intel-2017a-R-3.4.0.eb b/easybuild/easyconfigs/p/plotly/plotly-4.7.1-intel-2017a-R-3.4.0.eb new file mode 100644 index 0000000000..c2e0909198 --- /dev/null +++ b/easybuild/easyconfigs/p/plotly/plotly-4.7.1-intel-2017a-R-3.4.0.eb @@ -0,0 +1,38 @@ +easyblock = 'Bundle' + +name = 'plotly' +version = '4.7.1' +versionsuffix = '-R-%(rver)s' + +homepage = 'https://cran.r-project.org/web/packages/plotly' +description = """Easily translate 'ggplot2' graphs to an interactive web-based version and/or + create custom web-based visualizations directly from R.""" + +toolchain = {'name': 'intel', 'version': '2017a'} + +dependencies = [('R', '3.4.0', '-X11-20170314')] + +exts_defaultclass = 'RPackage' +exts_list = [ + ('htmlwidgets', '0.9', { + 'source_urls': [ + 'http://cran.r-project.org/src/contrib/Archive/%(name)s', + 'http://cran.r-project.org/src/contrib/', + ], + 'source_tmpl': '%(name)s_%(version)s.tar.gz', + }), + (name, version, { + 'source_urls': [ + 'http://cran.r-project.org/src/contrib/Archive/%(name)s', + 'http://cran.r-project.org/src/contrib/', + ], + 'source_tmpl': '%(name)s_%(version)s.tar.gz', + }), +] + +sanity_check_paths = { + 'files': [], + 'dirs': [name], +} + +moduleclass = 'vis' -- GitLab From 568217f792d953a8833fe22941faa8700938b69c Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Fri, 11 Aug 2017 10:46:06 +0200 Subject: [PATCH 582/608] add additional extensions for R 3.4.0 and Bioconductor 3.5 --- .../R-bundle-Bioconductor-3.5-intel-2017a-R-3.4.0.eb | 3 ++- .../easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb | 6 ++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/r/R-bundle-Bioconductor/R-bundle-Bioconductor-3.5-intel-2017a-R-3.4.0.eb b/easybuild/easyconfigs/r/R-bundle-Bioconductor/R-bundle-Bioconductor-3.5-intel-2017a-R-3.4.0.eb index 07b8eb5010..b8dbe2076f 100644 --- a/easybuild/easyconfigs/r/R-bundle-Bioconductor/R-bundle-Bioconductor-3.5-intel-2017a-R-3.4.0.eb +++ b/easybuild/easyconfigs/r/R-bundle-Bioconductor/R-bundle-Bioconductor-3.5-intel-2017a-R-3.4.0.eb @@ -157,8 +157,9 @@ exts_list = [ ('RcppParallel', '4.3.20', ext_options), ('dada2', '1.4.0', bioconductor_options), ('LEA', '1.8.1', bioconductor_options), - ('scran', '1.4.5', bioconductor_options), + ('tximport', '1.4.0', bioconductor_options), ('scater', '1.4.0', bioconductor_options), + ('scran', '1.4.5', bioconductor_options), ] modextrapaths = {'R_LIBS': ''} diff --git a/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb b/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb index 70f5a7c2e7..920853bd95 100644 --- a/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb +++ b/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb @@ -544,6 +544,12 @@ exts_list = [ ('VIM', '4.7.0', ext_options), ('proxy', '0.4-17', ext_options), ('smoother', '1.1', ext_options), + ('dynamicTreeCut', '1.63-1', ext_options), + ('DT', '0.2', ext_options), + ('beeswarm', '0.2.3', ext_options), + ('vipor', '0.4.5', ext_options), + ('ggbeeswarm', '0.6.0', ext_options), + ('shinydashboard', '0.6.1', ext_options), ] moduleclass = 'lang' -- GitLab From 8c5dcfc0c83ac997c9f551de2363e74b68fae460 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Fri, 11 Aug 2017 11:13:20 +0200 Subject: [PATCH 583/608] fix moduleclass for SCnorm --- .../easyconfigs/s/SCnorm/SCnorm-0.99.7-intel-2017a-R-3.4.0.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/s/SCnorm/SCnorm-0.99.7-intel-2017a-R-3.4.0.eb b/easybuild/easyconfigs/s/SCnorm/SCnorm-0.99.7-intel-2017a-R-3.4.0.eb index b7ba7c4828..4f521d3b57 100644 --- a/easybuild/easyconfigs/s/SCnorm/SCnorm-0.99.7-intel-2017a-R-3.4.0.eb +++ b/easybuild/easyconfigs/s/SCnorm/SCnorm-0.99.7-intel-2017a-R-3.4.0.eb @@ -25,4 +25,4 @@ sanity_check_paths = { 'dirs': [name], } -moduleclass = 'data' +moduleclass = 'bio' -- GitLab From f24db278a0010dc402c794bd3579b0ee166c8a0b Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Fri, 11 Aug 2017 11:19:03 +0200 Subject: [PATCH 584/608] add SHA256 checksum for SCnorm --- .../easyconfigs/s/SCnorm/SCnorm-0.99.7-intel-2017a-R-3.4.0.eb | 1 + 1 file changed, 1 insertion(+) diff --git a/easybuild/easyconfigs/s/SCnorm/SCnorm-0.99.7-intel-2017a-R-3.4.0.eb b/easybuild/easyconfigs/s/SCnorm/SCnorm-0.99.7-intel-2017a-R-3.4.0.eb index 4f521d3b57..9f1e6bee57 100644 --- a/easybuild/easyconfigs/s/SCnorm/SCnorm-0.99.7-intel-2017a-R-3.4.0.eb +++ b/easybuild/easyconfigs/s/SCnorm/SCnorm-0.99.7-intel-2017a-R-3.4.0.eb @@ -14,6 +14,7 @@ source_urls = [ 'https://bioconductor.org/packages/devel/bioc/src/contrib/', ] sources = ['%(name)s_%(version)s.tar.gz'] +checksums = ['f7f6b63aade398ab8f7860ca895914c7bd8161bf2387f2727fe44a897124ae02'] dependencies = [ ('R', '3.4.0', '-X11-20170314'), -- GitLab From a4bf421e4dd983aedbc04c259a2e1c252312e741 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Fri, 11 Aug 2017 11:19:47 +0200 Subject: [PATCH 585/608] add SHA256 checksum for destiny --- .../easyconfigs/d/destiny/destiny-2.5.6-intel-2017a-R-3.4.0.eb | 1 + 1 file changed, 1 insertion(+) diff --git a/easybuild/easyconfigs/d/destiny/destiny-2.5.6-intel-2017a-R-3.4.0.eb b/easybuild/easyconfigs/d/destiny/destiny-2.5.6-intel-2017a-R-3.4.0.eb index 6dc1fa57a7..9e4e09b90c 100644 --- a/easybuild/easyconfigs/d/destiny/destiny-2.5.6-intel-2017a-R-3.4.0.eb +++ b/easybuild/easyconfigs/d/destiny/destiny-2.5.6-intel-2017a-R-3.4.0.eb @@ -14,6 +14,7 @@ source_urls = [ 'https://bioconductor.org/packages/devel/bioc/src/contrib/', ] sources = ['%(name)s_%(version)s.tar.gz'] +checksums = ['134210f9b8d6d58309a1f886065175c723e2612b4be819beb9e9fe5707b0f2ac'] dependencies = [ ('R', '3.4.0', '-X11-20170314'), -- GitLab From 30fc3680fb66269fbf1955204e82c8ea89161e75 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Fri, 11 Aug 2017 11:21:33 +0200 Subject: [PATCH 586/608] add SHA256 checksums for plotly --- .../easyconfigs/p/plotly/plotly-4.7.1-intel-2017a-R-3.4.0.eb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/easybuild/easyconfigs/p/plotly/plotly-4.7.1-intel-2017a-R-3.4.0.eb b/easybuild/easyconfigs/p/plotly/plotly-4.7.1-intel-2017a-R-3.4.0.eb index c2e0909198..ba3ed319ce 100644 --- a/easybuild/easyconfigs/p/plotly/plotly-4.7.1-intel-2017a-R-3.4.0.eb +++ b/easybuild/easyconfigs/p/plotly/plotly-4.7.1-intel-2017a-R-3.4.0.eb @@ -20,6 +20,7 @@ exts_list = [ 'http://cran.r-project.org/src/contrib/', ], 'source_tmpl': '%(name)s_%(version)s.tar.gz', + 'checksums': ['1154b541ccd868e41d3cf0d7f188f7275ec99f61fe2c7de21c8a05edb19b985e'], }), (name, version, { 'source_urls': [ @@ -27,6 +28,7 @@ exts_list = [ 'http://cran.r-project.org/src/contrib/', ], 'source_tmpl': '%(name)s_%(version)s.tar.gz', + 'checksums': ['7cd4b040f9bfd9356a8a2aba59ccf318cae6b5d94ded7463e2e823c10fa74972'], }), ] -- GitLab From baa269209e82059dceeafea96fcd07a260ad2681 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Fri, 11 Aug 2017 12:25:41 +0200 Subject: [PATCH 587/608] adding easyconfigs: Spark-2.2.0-Hadoop-2.6.eb --- .../s/Spark/Spark-2.2.0-Hadoop-2.6.eb | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 easybuild/easyconfigs/s/Spark/Spark-2.2.0-Hadoop-2.6.eb diff --git a/easybuild/easyconfigs/s/Spark/Spark-2.2.0-Hadoop-2.6.eb b/easybuild/easyconfigs/s/Spark/Spark-2.2.0-Hadoop-2.6.eb new file mode 100644 index 0000000000..df2b02e0e1 --- /dev/null +++ b/easybuild/easyconfigs/s/Spark/Spark-2.2.0-Hadoop-2.6.eb @@ -0,0 +1,29 @@ +easyblock = 'Tarball' + +name = 'Spark' +version = '2.2.0' +versionsuffix = '-Hadoop-2.6' + +homepage = 'http://spark.apache.org' +description = """Spark is Hadoop MapReduce done in memory""" + +toolchain = {'name': 'dummy', 'version': ''} + +sources = ['%(namelower)s-%(version)s-bin-hadoop2.6.tgz'] +source_urls = [ + 'http://apache.belnet.be/%(namelower)s/%(namelower)s-%(version)s/', + 'http://www.eu.apache.org/dist/%(namelower)s/%(namelower)s-%(version)s/', + 'http://www.us.apache.org/dist/%(namelower)s/%(namelower)s-%(version)s/', +] +checksums = ['86f33f6f4fe545cb848600004144f09b6e8413af47ce02c1203c3ecda075288d'] + +dependencies = [('Java', '1.8.0_144')] + +sanity_check_paths = { + 'files': ['bin/spark-shell'], + 'dirs': ['python'] +} + +modextrapaths = {'PYTHONPATH': 'python'} + +moduleclass = 'devel' -- GitLab From 209ff80de20a266bbd365799cba52394f82c31dd Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Fri, 11 Aug 2017 12:27:31 +0200 Subject: [PATCH 588/608] adding easyconfigs: CMake-3.9.1.eb, CMake-3.9.1-GCCcore-6.4.0.eb --- .../c/CMake/CMake-3.9.1-GCCcore-6.4.0.eb | 41 +++++++++++++++++++ easybuild/easyconfigs/c/CMake/CMake-3.9.1.eb | 29 +++++++++++++ 2 files changed, 70 insertions(+) create mode 100644 easybuild/easyconfigs/c/CMake/CMake-3.9.1-GCCcore-6.4.0.eb create mode 100644 easybuild/easyconfigs/c/CMake/CMake-3.9.1.eb diff --git a/easybuild/easyconfigs/c/CMake/CMake-3.9.1-GCCcore-6.4.0.eb b/easybuild/easyconfigs/c/CMake/CMake-3.9.1-GCCcore-6.4.0.eb new file mode 100644 index 0000000000..3fbbcb5eaa --- /dev/null +++ b/easybuild/easyconfigs/c/CMake/CMake-3.9.1-GCCcore-6.4.0.eb @@ -0,0 +1,41 @@ +easyblock = 'ConfigureMake' + +name = 'CMake' +version = '3.9.1' + +homepage = 'http://www.cmake.org' + +description = """ + CMake, the cross-platform, open-source build system. CMake is a family of + tools designed to build, test and package software. +""" + +toolchain = {'name': 'GCCcore', 'version': '6.4.0'} + +source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s'] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['d768ee83d217f91bb597b3ca2ac663da7a8603c97e1f1a5184bc01e0ad2b12bb'] + +configopts = '-- -DCMAKE_USE_OPENSSL=1 -DCMAKE_PREFIX_PATH=$EBROOTNCURSES' + +builddependencies = [ + ('binutils', '2.28'), +] + +dependencies = [ + ('ncurses', '6.0'), + # OS dependency should be preferred if the os version is more recent then this version, + # it's nice to have an up to date openssl for security reasons + # ('OpenSSL', '1.1.0c'), +] + +osdependencies = [ + ('openssl-devel', 'libssl-dev', 'libopenssl-devel'), +] + +sanity_check_paths = { + 'files': ["bin/%s" % x for x in ['ccmake', 'cmake', 'cpack', 'ctest']], + 'dirs': [], +} + +moduleclass = 'devel' diff --git a/easybuild/easyconfigs/c/CMake/CMake-3.9.1.eb b/easybuild/easyconfigs/c/CMake/CMake-3.9.1.eb new file mode 100644 index 0000000000..38fdb83b5d --- /dev/null +++ b/easybuild/easyconfigs/c/CMake/CMake-3.9.1.eb @@ -0,0 +1,29 @@ +easyblock = 'ConfigureMake' + +name = 'CMake' +version = '3.9.1' + +homepage = 'http://www.cmake.org' +description = """CMake, the cross-platform, open-source build system. + CMake is a family of tools designed to build, test and package software.""" + +toolchain = {'name': 'dummy', 'version': 'dummy'} + +source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s'] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['d768ee83d217f91bb597b3ca2ac663da7a8603c97e1f1a5184bc01e0ad2b12bb'] + +dependencies = [('ncurses', '6.0')] + +configopts = '-- -DCMAKE_USE_OPENSSL=1' + +# Use OS dependencies in order to ensure that CMake can build software that +# depends on them +osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel'), 'ncurses-devel'] + +sanity_check_paths = { + 'files': ["bin/%s" % x for x in ['ccmake', 'cmake', 'cpack', 'ctest']], + 'dirs': [], +} + +moduleclass = 'devel' -- GitLab From 67baf477eb6391664761b4ef2c3ebe212d016dd1 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Fri, 11 Aug 2017 12:28:38 +0200 Subject: [PATCH 589/608] adding easyconfigs: Maven-3.5.0.eb --- easybuild/easyconfigs/m/Maven/Maven-3.5.0.eb | 23 ++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 easybuild/easyconfigs/m/Maven/Maven-3.5.0.eb diff --git a/easybuild/easyconfigs/m/Maven/Maven-3.5.0.eb b/easybuild/easyconfigs/m/Maven/Maven-3.5.0.eb new file mode 100644 index 0000000000..cae59a3997 --- /dev/null +++ b/easybuild/easyconfigs/m/Maven/Maven-3.5.0.eb @@ -0,0 +1,23 @@ +easyblock = 'PackedBinary' + +name = 'Maven' +version = '3.5.0' + +homepage = 'http://maven.apache.org/index.html' +description = """Binary maven install, Apache Maven is a software project management and comprehension tool. Based on +the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a +central piece of information. +""" + +toolchain = {'name': 'dummy', 'version': 'dummy'} + +sources = ['apache-maven-%(version)s-bin.tar.gz'] +source_urls = ['http://apache.org/dist/maven/maven-%(version_major)s/%(version)s/binaries/'] +checksums = ['beb91419245395bd69a4a6edad5ca3ec1a8b64e41457672dc687c173a495f034'] + +sanity_check_paths = { + 'files': ['bin/mvn'], + 'dirs': [], +} + +moduleclass = 'devel' -- GitLab From ce235fddf743baf427ae5597f72375f0baa7fd6c Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Fri, 11 Aug 2017 12:33:01 +0200 Subject: [PATCH 590/608] remove ncurses dep in dummy easyconfig for CMake 3.9.1 --- easybuild/easyconfigs/c/CMake/CMake-3.9.1.eb | 2 -- 1 file changed, 2 deletions(-) diff --git a/easybuild/easyconfigs/c/CMake/CMake-3.9.1.eb b/easybuild/easyconfigs/c/CMake/CMake-3.9.1.eb index 38fdb83b5d..deece4acb7 100644 --- a/easybuild/easyconfigs/c/CMake/CMake-3.9.1.eb +++ b/easybuild/easyconfigs/c/CMake/CMake-3.9.1.eb @@ -13,8 +13,6 @@ source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s'] sources = [SOURCELOWER_TAR_GZ] checksums = ['d768ee83d217f91bb597b3ca2ac663da7a8603c97e1f1a5184bc01e0ad2b12bb'] -dependencies = [('ncurses', '6.0')] - configopts = '-- -DCMAKE_USE_OPENSSL=1' # Use OS dependencies in order to ensure that CMake can build software that -- GitLab From f76ab46a110c33923437d6b292d8671552b27051 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Fri, 11 Aug 2017 13:34:44 +0200 Subject: [PATCH 591/608] add Java version to versionsuffix for Spark 2.2.0 --- ...0-Hadoop-2.6.eb => Spark-2.2.0-Hadoop-2.6-Java-1.8.0_144.eb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename easybuild/easyconfigs/s/Spark/{Spark-2.2.0-Hadoop-2.6.eb => Spark-2.2.0-Hadoop-2.6-Java-1.8.0_144.eb} (94%) diff --git a/easybuild/easyconfigs/s/Spark/Spark-2.2.0-Hadoop-2.6.eb b/easybuild/easyconfigs/s/Spark/Spark-2.2.0-Hadoop-2.6-Java-1.8.0_144.eb similarity index 94% rename from easybuild/easyconfigs/s/Spark/Spark-2.2.0-Hadoop-2.6.eb rename to easybuild/easyconfigs/s/Spark/Spark-2.2.0-Hadoop-2.6-Java-1.8.0_144.eb index df2b02e0e1..8b3d26f8e7 100644 --- a/easybuild/easyconfigs/s/Spark/Spark-2.2.0-Hadoop-2.6.eb +++ b/easybuild/easyconfigs/s/Spark/Spark-2.2.0-Hadoop-2.6-Java-1.8.0_144.eb @@ -2,7 +2,7 @@ easyblock = 'Tarball' name = 'Spark' version = '2.2.0' -versionsuffix = '-Hadoop-2.6' +versionsuffix = '-Hadoop-2.6-Java-%(javaver)s' homepage = 'http://spark.apache.org' description = """Spark is Hadoop MapReduce done in memory""" -- GitLab From eb9e418eaaaa0cc6345d782158bcc71a22af1735 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Fri, 11 Aug 2017 13:35:52 +0200 Subject: [PATCH 592/608] change moduleclass to bio for destiny --- .../easyconfigs/d/destiny/destiny-2.5.6-intel-2017a-R-3.4.0.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/d/destiny/destiny-2.5.6-intel-2017a-R-3.4.0.eb b/easybuild/easyconfigs/d/destiny/destiny-2.5.6-intel-2017a-R-3.4.0.eb index 9e4e09b90c..7aaefec7f2 100644 --- a/easybuild/easyconfigs/d/destiny/destiny-2.5.6-intel-2017a-R-3.4.0.eb +++ b/easybuild/easyconfigs/d/destiny/destiny-2.5.6-intel-2017a-R-3.4.0.eb @@ -26,4 +26,4 @@ sanity_check_paths = { 'dirs': [name], } -moduleclass = 'data' +moduleclass = 'bio' -- GitLab From efad9cdc6952a22eeed650e8f0e3767217c77abb Mon Sep 17 00:00:00 2001 From: Joachim Hein Date: Fri, 11 Aug 2017 18:06:08 +0200 Subject: [PATCH 593/608] matplotlib for python 2.7.1 in foss 2017a --- ...tplotlib-2.0.2-foss-2017a-Python-2.7.13.eb | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb diff --git a/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..1af6c380d6 --- /dev/null +++ b/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb @@ -0,0 +1,44 @@ +easyblock = 'Bundle' + +name = 'matplotlib' +version = '2.0.2' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://matplotlib.org' +description = """matplotlib is a python 2D plotting library which produces publication quality figures in a variety of + hardcopy formats and interactive environments across platforms. matplotlib can be used in python scripts, the python + and ipython shell, web application servers, and six graphical user interface toolkits.""" + +toolchain = {'name': 'foss', 'version': '2017a'} + +# this is a bundle of Python packages +exts_defaultclass = 'PythonPackage' + +dependencies = [ + ('Python', '2.7.13'), + ('freetype', '2.7.1'), + ('libpng', '1.6.29'), +] + +exts_list = [ + ('Cycler', '0.10.0', { + 'modulename': 'cycler', + 'source_urls': ['https://pypi.python.org/packages/source/C/Cycler'], + 'source_tmpl': 'cycler-%(version)s.tar.gz', + }), + (name, version, { + 'source_urls': ['https://pypi.python.org/packages/source/m/matplotlib'], + }), +] + +# specify that Bundle easyblock should run a full sanity check, rather than just trying to load the module +full_sanity_check = True + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages'], +} + +modextrapaths = {'PYTHONPATH': ['lib/python%(pyshortver)s/site-packages']} + +moduleclass = 'vis' -- GitLab From 1e3e3df517b23c481c5476da00783132f5133c02 Mon Sep 17 00:00:00 2001 From: Joachim Hein Date: Fri, 11 Aug 2017 18:30:19 +0200 Subject: [PATCH 594/608] checksum MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added checksum as of boegel’s request (cut-n-paste from his email) --- .../m/matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb index 1af6c380d6..aa55e74d47 100644 --- a/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb +++ b/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb @@ -25,9 +25,11 @@ exts_list = [ 'modulename': 'cycler', 'source_urls': ['https://pypi.python.org/packages/source/C/Cycler'], 'source_tmpl': 'cycler-%(version)s.tar.gz', + 'checksums': ['cd7b2d1018258d7247a71425e9f26463dfb444d411c39569972f4ce586b0c9d8'], }), (name, version, { 'source_urls': ['https://pypi.python.org/packages/source/m/matplotlib'], + 'checksums': ['0ffbc44faa34a8b1704bc108c451ecf87988f900ef7ce757b8e2e84383121ff1'], }), ] -- GitLab From 4adbd650b01e08315db0e2adb2e3c1a077c4c4bf Mon Sep 17 00:00:00 2001 From: Joachim Hein Date: Fri, 11 Aug 2017 18:44:58 +0200 Subject: [PATCH 595/608] libpng version conflict resolution Working on different png versions in png and freetype dependency in matplotlib --- .../matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb index aa55e74d47..bc892ebed0 100644 --- a/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb +++ b/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb @@ -4,6 +4,8 @@ name = 'matplotlib' version = '2.0.2' versionsuffix = '-Python-%(pyver)s' +libpng_ver = '1.6.29' + homepage = 'http://matplotlib.org' description = """matplotlib is a python 2D plotting library which produces publication quality figures in a variety of hardcopy formats and interactive environments across platforms. matplotlib can be used in python scripts, the python @@ -16,8 +18,8 @@ exts_defaultclass = 'PythonPackage' dependencies = [ ('Python', '2.7.13'), - ('freetype', '2.7.1'), - ('libpng', '1.6.29'), + ('libpng', libpng_ver), + ('freetype', '2.7.1', '-libpng'%s' % libpng_ver), ] exts_list = [ -- GitLab From d6a712a4961e52b2580b1da6b4b413ce63ea8d39 Mon Sep 17 00:00:00 2001 From: Joachim Hein Date: Fri, 11 Aug 2017 18:49:18 +0200 Subject: [PATCH 596/608] typo corrected --- .../m/matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb index bc892ebed0..11e7af5189 100644 --- a/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb +++ b/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb @@ -19,7 +19,7 @@ exts_defaultclass = 'PythonPackage' dependencies = [ ('Python', '2.7.13'), ('libpng', libpng_ver), - ('freetype', '2.7.1', '-libpng'%s' % libpng_ver), + ('freetype', '2.7.1', '-libpng' % libpng_ver), ] exts_list = [ -- GitLab From 56deaf7a03420ed541d937aa1afdc4b9b1014ed3 Mon Sep 17 00:00:00 2001 From: Joachim Hein Date: Fri, 11 Aug 2017 18:53:02 +0200 Subject: [PATCH 597/608] another typo fix --- .../m/matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb index 11e7af5189..b374975f21 100644 --- a/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb +++ b/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb @@ -19,7 +19,7 @@ exts_defaultclass = 'PythonPackage' dependencies = [ ('Python', '2.7.13'), ('libpng', libpng_ver), - ('freetype', '2.7.1', '-libpng' % libpng_ver), + ('freetype', '2.7.1', '-libpng-%s' % libpng_ver), ] exts_list = [ -- GitLab From 72eb37e0763cb87c69cd330e254687d2b6b2c679 Mon Sep 17 00:00:00 2001 From: Joachim Hein Date: Mon, 14 Aug 2017 15:16:13 +0200 Subject: [PATCH 598/608] Fixed indentation --- .../m/matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb index b374975f21..402493847b 100644 --- a/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb +++ b/easybuild/easyconfigs/m/matplotlib/matplotlib-2.0.2-foss-2017a-Python-2.7.13.eb @@ -27,11 +27,11 @@ exts_list = [ 'modulename': 'cycler', 'source_urls': ['https://pypi.python.org/packages/source/C/Cycler'], 'source_tmpl': 'cycler-%(version)s.tar.gz', - 'checksums': ['cd7b2d1018258d7247a71425e9f26463dfb444d411c39569972f4ce586b0c9d8'], + 'checksums': ['cd7b2d1018258d7247a71425e9f26463dfb444d411c39569972f4ce586b0c9d8'], }), (name, version, { 'source_urls': ['https://pypi.python.org/packages/source/m/matplotlib'], - 'checksums': ['0ffbc44faa34a8b1704bc108c451ecf87988f900ef7ce757b8e2e84383121ff1'], + 'checksums': ['0ffbc44faa34a8b1704bc108c451ecf87988f900ef7ce757b8e2e84383121ff1'], }), ] -- GitLab From 86e86853cdb7a3f156a9ceb107040a71923ea63e Mon Sep 17 00:00:00 2001 From: Maarten Bosmans Date: Wed, 16 Aug 2017 12:31:43 +0200 Subject: [PATCH 599/608] iompi: OpenMPI dependency must come after icc/ifort --- easybuild/easyconfigs/i/iompi/iompi-2016.09-GCC-4.9.3-2.25.eb | 2 +- easybuild/easyconfigs/i/iompi/iompi-2016.09-GCC-5.4.0-2.26.eb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/easybuild/easyconfigs/i/iompi/iompi-2016.09-GCC-4.9.3-2.25.eb b/easybuild/easyconfigs/i/iompi/iompi-2016.09-GCC-4.9.3-2.25.eb index 9580ff5296..f69ecfb47a 100644 --- a/easybuild/easyconfigs/i/iompi/iompi-2016.09-GCC-4.9.3-2.25.eb +++ b/easybuild/easyconfigs/i/iompi/iompi-2016.09-GCC-4.9.3-2.25.eb @@ -11,9 +11,9 @@ toolchain = {'name': 'dummy', 'version': 'dummy'} compver = '2016.3.210-GCC-4.9.3-2.25' dependencies = [ - ('OpenMPI', '1.10.4', '', ('iccifort', compver)), ('icc', compver), ('ifort', compver), + ('OpenMPI', '1.10.4', '', ('iccifort', compver)), ] moduleclass = 'toolchain' diff --git a/easybuild/easyconfigs/i/iompi/iompi-2016.09-GCC-5.4.0-2.26.eb b/easybuild/easyconfigs/i/iompi/iompi-2016.09-GCC-5.4.0-2.26.eb index db8c7fb2af..7a279c30c6 100644 --- a/easybuild/easyconfigs/i/iompi/iompi-2016.09-GCC-5.4.0-2.26.eb +++ b/easybuild/easyconfigs/i/iompi/iompi-2016.09-GCC-5.4.0-2.26.eb @@ -11,9 +11,9 @@ toolchain = {'name': 'dummy', 'version': 'dummy'} compver = '2016.3.210-GCC-5.4.0-2.26' dependencies = [ - ('OpenMPI', '1.10.3', '', ('iccifort', compver)), ('icc', compver), ('ifort', compver), + ('OpenMPI', '1.10.3', '', ('iccifort', compver)), ] moduleclass = 'toolchain' -- GitLab From 8f20796ee9e8fa3222d39f036cd01f18d2a1f5d7 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 16 Aug 2017 13:27:11 +0200 Subject: [PATCH 600/608] adding easyconfigs: Qt-4.8.7-foss-2017a.eb, GLib-2.52.0-foss-2017a.eb, libGLU-9.0.0-foss-2017a.eb, Mesa-17.0.2-foss-2017a.eb, PCRE-8.40-foss-2017a.eb, util-linux-2.29.2-foss-2017a.eb, nettle-3.3-foss-2017a.eb, libdrm-2.4.76-foss-2017a.eb, Mako-1.0.6-foss-2017a-Python-2.7.13.eb, libxml2-2.9.4-foss-2017a-Python-2.7.13.eb --- .../g/GLib/GLib-2.52.0-foss-2017a.eb | 35 ++++++++++ .../l/libGLU/libGLU-9.0.0-foss-2017a.eb | 24 +++++++ .../l/libdrm/libdrm-2.4.76-foss-2017a.eb | 24 +++++++ .../libxml2-2.9.4-foss-2017a-Python-2.7.13.eb | 24 +++++++ .../Mako-1.0.6-foss-2017a-Python-2.7.13.eb | 22 +++++++ .../m/Mesa/Mesa-17.0.2-foss-2017a.eb | 66 +++++++++++++++++++ .../n/nettle/nettle-3.3-foss-2017a.eb | 30 +++++++++ .../p/PCRE/PCRE-8.40-foss-2017a.eb | 18 +++++ .../easyconfigs/q/Qt/Qt-4.8.7-foss-2017a.eb | 29 ++++++++ .../util-linux-2.29.2-foss-2017a.eb | 36 ++++++++++ 10 files changed, 308 insertions(+) create mode 100644 easybuild/easyconfigs/g/GLib/GLib-2.52.0-foss-2017a.eb create mode 100644 easybuild/easyconfigs/l/libGLU/libGLU-9.0.0-foss-2017a.eb create mode 100644 easybuild/easyconfigs/l/libdrm/libdrm-2.4.76-foss-2017a.eb create mode 100644 easybuild/easyconfigs/l/libxml2/libxml2-2.9.4-foss-2017a-Python-2.7.13.eb create mode 100644 easybuild/easyconfigs/m/Mako/Mako-1.0.6-foss-2017a-Python-2.7.13.eb create mode 100644 easybuild/easyconfigs/m/Mesa/Mesa-17.0.2-foss-2017a.eb create mode 100644 easybuild/easyconfigs/n/nettle/nettle-3.3-foss-2017a.eb create mode 100644 easybuild/easyconfigs/p/PCRE/PCRE-8.40-foss-2017a.eb create mode 100644 easybuild/easyconfigs/q/Qt/Qt-4.8.7-foss-2017a.eb create mode 100644 easybuild/easyconfigs/u/util-linux/util-linux-2.29.2-foss-2017a.eb diff --git a/easybuild/easyconfigs/g/GLib/GLib-2.52.0-foss-2017a.eb b/easybuild/easyconfigs/g/GLib/GLib-2.52.0-foss-2017a.eb new file mode 100644 index 0000000000..46fb65d7e5 --- /dev/null +++ b/easybuild/easyconfigs/g/GLib/GLib-2.52.0-foss-2017a.eb @@ -0,0 +1,35 @@ +easyblock = 'ConfigureMake' + +name = 'GLib' +version = '2.52.0' + +homepage = 'http://www.gtk.org/' +description = """GLib is one of the base libraries of the GTK+ project""" + +toolchain = {'name': 'foss', 'version': '2017a'} +toolchainopts = {'pic': True} + +source_urls = [FTPGNOME_SOURCE] +sources = [SOURCELOWER_TAR_XZ] + +dependencies = [ + ('libffi', '3.2.1'), + ('gettext', '0.19.8.1'), + ('libxml2', '2.9.4'), + ('PCRE', '8.40'), + ('util-linux', '2.29.2'), +] + +builddependencies = [('Python', '2.7.13')] + +configopts = "--disable-maintainer-mode --disable-silent-rules --disable-libelf --disable-systemtap " +configopts += "--enable-static --enable-shared" + +postinstallcmds = ["sed -i -e 's|#!.*python|#!/usr/bin/env python|' %(installdir)s/bin/*"] + +sanity_check_paths = { + 'files': ['lib/libglib-%(version_major)s.0.a', 'lib/libglib-%%(version_major)s.0.%s' % SHLIB_EXT], + 'dirs': ['bin', 'include'], +} + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/l/libGLU/libGLU-9.0.0-foss-2017a.eb b/easybuild/easyconfigs/l/libGLU/libGLU-9.0.0-foss-2017a.eb new file mode 100644 index 0000000000..ece6ffd732 --- /dev/null +++ b/easybuild/easyconfigs/l/libGLU/libGLU-9.0.0-foss-2017a.eb @@ -0,0 +1,24 @@ +easyblock = 'ConfigureMake' + +name = 'libGLU' +version = '9.0.0' + +homepage = 'ftp://ftp.freedesktop.org/pub/mesa/glu/' +description = """The OpenGL Utility Library (GLU) is a computer graphics library for OpenGL. """ + +toolchain = {'name': 'foss', 'version': '2017a'} +toolchainopts = {'pic': True} + +source_urls = ['ftp://ftp.freedesktop.org/pub/mesa/glu/'] +sources = ['glu-%(version)s.tar.bz2'] + +dependencies = [ + ('Mesa', '17.0.2'), +] + +sanity_check_paths = { + 'files': ['lib/libGLU.so.1'], + 'dirs': [], +} + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/l/libdrm/libdrm-2.4.76-foss-2017a.eb b/easybuild/easyconfigs/l/libdrm/libdrm-2.4.76-foss-2017a.eb new file mode 100644 index 0000000000..854d135004 --- /dev/null +++ b/easybuild/easyconfigs/l/libdrm/libdrm-2.4.76-foss-2017a.eb @@ -0,0 +1,24 @@ +easyblock = 'ConfigureMake' + +name = 'libdrm' +version = '2.4.76' + +homepage = 'http://dri.freedesktop.org' +description = """Direct Rendering Manager runtime library.""" + +source_urls = ['http://dri.freedesktop.org/libdrm/'] +sources = [SOURCELOWER_TAR_GZ] + +toolchain = {'name': 'foss', 'version': '2017a'} + +dependencies = [ + ('X11', '20170314'), +] + +sanity_check_paths = { + 'files': ['include/xf86drm.h', 'include/xf86drmMode.h', 'lib/libdrm_intel.%s' % SHLIB_EXT, + 'lib/libdrm_radeon.%s' % SHLIB_EXT, 'lib/libdrm.%s' % SHLIB_EXT, 'lib/libkms.%s' % SHLIB_EXT], + 'dirs': ['include/libdrm', 'include/libkms', 'lib/pkgconfig'], +} + +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/l/libxml2/libxml2-2.9.4-foss-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/l/libxml2/libxml2-2.9.4-foss-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..78ada08ea7 --- /dev/null +++ b/easybuild/easyconfigs/l/libxml2/libxml2-2.9.4-foss-2017a-Python-2.7.13.eb @@ -0,0 +1,24 @@ +name = 'libxml2' +version = '2.9.4' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://xmlsoft.org/' +description = """Libxml2 is the XML C parser and toolchain developed for the Gnome project (but usable + outside of the Gnome platform).""" + +toolchain = {'name': 'foss', 'version': '2017a'} +toolchainopts = {'pic': True} + +source_urls = [ + 'http://xmlsoft.org/sources/', + 'http://xmlsoft.org/sources/old/' +] +sources = [SOURCELOWER_TAR_GZ] + +dependencies = [ + ('zlib', '1.2.11'), + ('XZ', '5.2.3'), + ('Python', '2.7.13'), +] + +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/m/Mako/Mako-1.0.6-foss-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/m/Mako/Mako-1.0.6-foss-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..c503189159 --- /dev/null +++ b/easybuild/easyconfigs/m/Mako/Mako-1.0.6-foss-2017a-Python-2.7.13.eb @@ -0,0 +1,22 @@ +easyblock = 'PythonPackage' + +name = 'Mako' +version = '1.0.6' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://www.makotemplates.org' +description = """A super-fast templating language that borrows the best ideas from the existing templating languages""" + +toolchain = {'name': 'foss', 'version': '2017a'} + +source_urls = [PYPI_SOURCE] +sources = [SOURCE_TAR_GZ] + +dependencies = [('Python', '2.7.13')] + +sanity_check_paths = { + 'files': ['bin/mako-render'], + 'dirs': ['lib/python%(pyshortver)s/site-packages/%(name)s-%(version)s-py%(pyshortver)s.egg'], +} + +moduleclass = 'devel' diff --git a/easybuild/easyconfigs/m/Mesa/Mesa-17.0.2-foss-2017a.eb b/easybuild/easyconfigs/m/Mesa/Mesa-17.0.2-foss-2017a.eb new file mode 100644 index 0000000000..c658de768c --- /dev/null +++ b/easybuild/easyconfigs/m/Mesa/Mesa-17.0.2-foss-2017a.eb @@ -0,0 +1,66 @@ +# the purpose of the easyconfig is to build a Mesa for software rendering, +# not hardware rendering. This means you want at least SSE4.2. We build: +# - llvmpipe: the high-performance Gallium LLVM driver +# - swr: Intel's OpenSWR +# it will try to use the llvmpipe by default. It you want swr, do: +# GALLIUM_DRIVER=swr + +easyblock = 'ConfigureMake' + +name = 'Mesa' +version = '17.0.2' + +homepage = 'http://www.mesa3d.org/' +description = """Mesa is an open-source implementation of the OpenGL specification - + a system for rendering interactive 3D graphics.""" + +toolchain = {'name': 'foss', 'version': '2017a'} +# swr detects and builds parts specific for AVX and AVX2. If we use +# -xHost, this always gets overwritten and will fail. +toolchainopts = {'optarch': False} + +sources = [SOURCELOWER_TAR_XZ] +source_urls = [ + 'https://mesa.freedesktop.org/archive/', + 'https://mesa.freedesktop.org/archive/%(version)s', + 'ftp://ftp.freedesktop.org/pub/mesa/%(version)s', + 'ftp://ftp.freedesktop.org/pub/mesa/older-versions/%(version_major)s.x/%(version)s', +] +patches = ['Mesa-%(version)s_fix-strip-llvm-flags.patch'] + +builddependencies = [ + ('flex', '2.6.3'), + ('Bison', '3.0.4'), + ('Autotools', '20150215'), + ('pkg-config', '0.29.1'), + ('Mako', '1.0.6', '-Python-2.7.13'), + ('libxml2', '2.9.4', '-Python-2.7.13'), +] + +dependencies = [ + ('zlib', '1.2.11'), + ('nettle', '3.3'), + ('libdrm', '2.4.76'), + ('LLVM', '4.0.0'), + ('X11', '20170314'), +] + +# GLU is not part anymore of Mesa package! +configopts = " --disable-osmesa --enable-gallium-osmesa --enable-gallium-llvm --enable-glx --disable-dri" +configopts += " --disable-gbm --disable-driglx-direct --with-gallium-drivers='swrast,swr' --disable-egl" +configopts += " --with-osmesa-bits=32 --enable-texture-float --enable-llvm-shared-libs " + +buildopts = 'V=1' + +sanity_check_paths = { + 'files': ['lib/libGL.%s' % SHLIB_EXT, 'lib/libOSMesa.%s' % SHLIB_EXT, + 'lib/libGLESv1_CM.%s' % SHLIB_EXT, 'lib/libGLESv2.%s' % SHLIB_EXT, + 'include/GL/glext.h', 'include/GL/gl_mangle.h', + 'include/GL/glx.h', 'include/GL/osmesa.h', + 'include/GL/gl.h', 'include/GL/glxext.h', + 'include/GL/glx_mangle.h', 'include/GLES/gl.h', + 'include/GLES2/gl2.h', 'include/GLES3/gl3.h'], + 'dirs': [] +} + +moduleclass = 'vis' diff --git a/easybuild/easyconfigs/n/nettle/nettle-3.3-foss-2017a.eb b/easybuild/easyconfigs/n/nettle/nettle-3.3-foss-2017a.eb new file mode 100644 index 0000000000..f720881211 --- /dev/null +++ b/easybuild/easyconfigs/n/nettle/nettle-3.3-foss-2017a.eb @@ -0,0 +1,30 @@ +easyblock = 'ConfigureMake' + +name = 'nettle' +version = '3.3' + +homepage = 'http://www.lysator.liu.se/~nisse/nettle/' +description = """Nettle is a cryptographic library that is designed to fit easily + in more or less any context: In crypto toolkits for object-oriented + languages (C++, Python, Pike, ...), in applications like LSH or GNUPG, + or even in kernel space.""" + +toolchain = {'name': 'foss', 'version': '2017a'} + +source_urls = [GNU_SOURCE] +sources = [SOURCE_TAR_GZ] + +dependencies = [ + ('GMP', '6.1.2'), +] + +sanity_check_paths = { + 'files': ['bin/%s' % x for x in ['nettle-hash', 'nettle-lfib-stream', 'pkcs1-conv', 'sexp-conv']] + + [('lib/libhogweed.a', 'lib64/libhogweed.a'), + ('lib/libhogweed.%s' % SHLIB_EXT, 'lib64/libhogweed.%s' % SHLIB_EXT), + ('lib/libnettle.a', 'lib64/libnettle.a'), + ('lib/libnettle.%s' % SHLIB_EXT, 'lib64/libnettle.%s' % SHLIB_EXT)], + 'dirs': ['include/nettle'], +} + +moduleclass = 'lib' diff --git a/easybuild/easyconfigs/p/PCRE/PCRE-8.40-foss-2017a.eb b/easybuild/easyconfigs/p/PCRE/PCRE-8.40-foss-2017a.eb new file mode 100644 index 0000000000..cdea33d837 --- /dev/null +++ b/easybuild/easyconfigs/p/PCRE/PCRE-8.40-foss-2017a.eb @@ -0,0 +1,18 @@ +easyblock = 'ConfigureMake' + +name = 'PCRE' +version = '8.40' + +homepage = 'http://www.pcre.org/' +description = """The PCRE library is a set of functions that implement regular expression pattern matching using + the same syntax and semantics as Perl 5.""" + +toolchain = {'name': 'foss', 'version': '2017a'} +toolchainopts = {'pic': True} + +source_urls = [SOURCEFORGE_SOURCE] +sources = [SOURCELOWER_TAR_GZ] + +configopts = "--with-pic --disable-cpp --enable-utf --enable-unicode-properties" + +moduleclass = 'devel' diff --git a/easybuild/easyconfigs/q/Qt/Qt-4.8.7-foss-2017a.eb b/easybuild/easyconfigs/q/Qt/Qt-4.8.7-foss-2017a.eb new file mode 100644 index 0000000000..0c8d002a4f --- /dev/null +++ b/easybuild/easyconfigs/q/Qt/Qt-4.8.7-foss-2017a.eb @@ -0,0 +1,29 @@ +name = 'Qt' +version = '4.8.7' + +homepage = 'http://qt.io/' +description = "Qt is a comprehensive cross-platform C++ application framework." + +toolchain = {'name': 'foss', 'version': '2017a'} +toolchainopts = {'cstd': 'gnu++98'} + +source_urls = [ + 'http://download.qt.io/official_releases/qt/%(version_major_minor)s/%(version)s/', + 'http://download.qt.io/archive/qt/%(version_major_minor)s/%(version)s/' +] +sources = ['%(namelower)s-everywhere-opensource-src-%(version)s.tar.gz'] + +patches = ['Qt-%(version)s_phonon-export.patch'] + +builddependencies = [ + ('pkg-config', '0.29.2'), +] + +dependencies = [ + ('GLib', '2.52.0'), + ('libpng', '1.6.29'), + ('X11', '20170314'), + ('libGLU', '9.0.0'), +] + +moduleclass = 'devel' diff --git a/easybuild/easyconfigs/u/util-linux/util-linux-2.29.2-foss-2017a.eb b/easybuild/easyconfigs/u/util-linux/util-linux-2.29.2-foss-2017a.eb new file mode 100644 index 0000000000..2f535a4c3c --- /dev/null +++ b/easybuild/easyconfigs/u/util-linux/util-linux-2.29.2-foss-2017a.eb @@ -0,0 +1,36 @@ +easyblock = 'ConfigureMake' + +name = 'util-linux' +version = '2.29.2' + +homepage = 'http://www.kernel.org/pub/linux/utils/util-linux' +description = """Set of Linux utilities""" + +toolchain = {'name': 'foss', 'version': '2017a'} + +source_urls = ['%s/v%%(version_major_minor)s' % homepage] +sources = [SOURCELOWER_TAR_GZ] + +# disable account related utilities (they need OS dependant pam-devel files) +# disable wall and friends (requires group changing permissions for install user) +# install systemd service files in install dir +# install bash completion files in install dir +configopts = "--disable-chfn-chsh --disable-login --disable-su " +configopts += "--disable-wall --disable-use-tty-group " +configopts += "--disable-makeinstall-chown --disable-makeinstall-setuid " +configopts += "--with-systemdsystemunitdir='${prefix}/systemd' " +configopts += "--with-bashcompletiondir='${prefix}/share/bash-completion/completions' " +# disable building Python bindings (since we don't include Python as a dep) +configopts += "--without-python " + +dependencies = [ + ('ncurses', '6.0'), + ('zlib', '1.2.11'), +] + +sanity_check_paths = { + 'files': ['lib/lib%s.a' % x for x in ['blkid', 'mount', 'uuid']], + 'dirs': ['include', 'bin', 'share', 'sbin'], +} + +moduleclass = 'tools' -- GitLab From 45f126c30f716df0bb12f4e3b5685dcc095239f0 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 16 Aug 2017 14:10:51 +0200 Subject: [PATCH 601/608] adding easyconfigs: Eigen-3.3.4.eb --- easybuild/easyconfigs/e/Eigen/Eigen-3.3.4.eb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 easybuild/easyconfigs/e/Eigen/Eigen-3.3.4.eb diff --git a/easybuild/easyconfigs/e/Eigen/Eigen-3.3.4.eb b/easybuild/easyconfigs/e/Eigen/Eigen-3.3.4.eb new file mode 100644 index 0000000000..cb9b1ad328 --- /dev/null +++ b/easybuild/easyconfigs/e/Eigen/Eigen-3.3.4.eb @@ -0,0 +1,17 @@ +name = 'Eigen' +version = '3.3.4' + +homepage = 'http://eigen.tuxfamily.org/index.php?title=Main_Page' + +description = """ + Eigen is a C++ template library for linear algebra: + matrices, vectors, numerical solvers, and related algorithms. +""" + +toolchain = {'name': 'dummy', 'version': 'dummy'} + +source_urls = ['http://bitbucket.org/%(namelower)s/%(namelower)s/get'] +sources = ['%(version)s.tar.bz2'] +checksums = ['dd254beb0bafc695d0f62ae1a222ff85b52dbaa3a16f76e781dce22d0d20a4a6'] + +moduleclass = 'math' -- GitLab From 8afe68f7786e32cc9e033dcda6a54165d661479f Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 16 Aug 2017 14:12:16 +0200 Subject: [PATCH 602/608] adding easyconfigs: MRtrix-3.0_RC2-foss-2017a-Python-2.7.13.eb --- ...MRtrix-3.0_RC2-foss-2017a-Python-2.7.13.eb | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 easybuild/easyconfigs/m/MRtrix/MRtrix-3.0_RC2-foss-2017a-Python-2.7.13.eb diff --git a/easybuild/easyconfigs/m/MRtrix/MRtrix-3.0_RC2-foss-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/m/MRtrix/MRtrix-3.0_RC2-foss-2017a-Python-2.7.13.eb new file mode 100644 index 0000000000..aa0e747a56 --- /dev/null +++ b/easybuild/easyconfigs/m/MRtrix/MRtrix-3.0_RC2-foss-2017a-Python-2.7.13.eb @@ -0,0 +1,26 @@ +name = 'MRtrix' +version = '3.0_RC2' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://www.brain.org.au/software/index.html#mrtrix' +description = """MRtrix provides a set of tools to perform diffusion-weighted MR white-matter tractography in a manner + robust to crossing fibres, using constrained spherical deconvolution (CSD) and probabilistic streamlines.""" + +toolchain = {'name': 'foss', 'version': '2017a'} +toolchainopts = {'cstd': 'c++11'} + +source_urls = ['https://github.com/MRtrix3/mrtrix3/archive/'] +sources = ['%(version)s.tar.gz'] +checksums = ['88187f3498f4ee215b2a51d16acb7f2e6c33217e72403a7d48c2ec5da6e2218b'] + +builddependencies = [ + ('Eigen', '3.3.4', '', True), +] +dependencies = [ + ('zlib', '1.2.11'), + ('Python', '2.7.13'), + ('Mesa', '17.0.2'), + ('Qt', '4.8.7'), +] + +moduleclass = 'bio' -- GitLab From 25bfdc0abccfcc6042e694ff198ae8fff567669e Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 16 Aug 2017 14:23:02 +0200 Subject: [PATCH 603/608] stick to GCCcore toolchain for libxml2 dep for Mesa --- .../libxml2-2.9.4-foss-2017a-Python-2.7.13.eb | 24 ------------------- .../m/Mesa/Mesa-17.0.2-foss-2017a.eb | 2 +- .../m/Mesa/Mesa-17.0.2-intel-2017a.eb | 2 +- 3 files changed, 2 insertions(+), 26 deletions(-) delete mode 100644 easybuild/easyconfigs/l/libxml2/libxml2-2.9.4-foss-2017a-Python-2.7.13.eb diff --git a/easybuild/easyconfigs/l/libxml2/libxml2-2.9.4-foss-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/l/libxml2/libxml2-2.9.4-foss-2017a-Python-2.7.13.eb deleted file mode 100644 index 78ada08ea7..0000000000 --- a/easybuild/easyconfigs/l/libxml2/libxml2-2.9.4-foss-2017a-Python-2.7.13.eb +++ /dev/null @@ -1,24 +0,0 @@ -name = 'libxml2' -version = '2.9.4' -versionsuffix = '-Python-%(pyver)s' - -homepage = 'http://xmlsoft.org/' -description = """Libxml2 is the XML C parser and toolchain developed for the Gnome project (but usable - outside of the Gnome platform).""" - -toolchain = {'name': 'foss', 'version': '2017a'} -toolchainopts = {'pic': True} - -source_urls = [ - 'http://xmlsoft.org/sources/', - 'http://xmlsoft.org/sources/old/' -] -sources = [SOURCELOWER_TAR_GZ] - -dependencies = [ - ('zlib', '1.2.11'), - ('XZ', '5.2.3'), - ('Python', '2.7.13'), -] - -moduleclass = 'lib' diff --git a/easybuild/easyconfigs/m/Mesa/Mesa-17.0.2-foss-2017a.eb b/easybuild/easyconfigs/m/Mesa/Mesa-17.0.2-foss-2017a.eb index c658de768c..57eb46100f 100644 --- a/easybuild/easyconfigs/m/Mesa/Mesa-17.0.2-foss-2017a.eb +++ b/easybuild/easyconfigs/m/Mesa/Mesa-17.0.2-foss-2017a.eb @@ -34,7 +34,7 @@ builddependencies = [ ('Autotools', '20150215'), ('pkg-config', '0.29.1'), ('Mako', '1.0.6', '-Python-2.7.13'), - ('libxml2', '2.9.4', '-Python-2.7.13'), + ('libxml2', '2.9.4'), ] dependencies = [ diff --git a/easybuild/easyconfigs/m/Mesa/Mesa-17.0.2-intel-2017a.eb b/easybuild/easyconfigs/m/Mesa/Mesa-17.0.2-intel-2017a.eb index 8bb12d31a3..89dd517431 100644 --- a/easybuild/easyconfigs/m/Mesa/Mesa-17.0.2-intel-2017a.eb +++ b/easybuild/easyconfigs/m/Mesa/Mesa-17.0.2-intel-2017a.eb @@ -34,7 +34,7 @@ builddependencies = [ ('Autotools', '20150215'), ('pkg-config', '0.29.1'), ('Mako', '1.0.6', '-Python-2.7.13'), - ('libxml2', '2.9.4', '-Python-2.7.13'), + ('libxml2', '2.9.4'), ] dependencies = [ -- GitLab From 8c10f8aff23bfb741fbcb82ffff2f721e50a8bfe Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 16 Aug 2017 15:22:09 +0200 Subject: [PATCH 604/608] stick to GCCcore toolchain for libdrm, nettle, PCRE, util-linux + add SHA256 checksums in touched easyconfigs --- .../g/GLib/GLib-2.52.0-foss-2017a.eb | 3 +++ .../l/libGLU/libGLU-9.0.0-foss-2017a.eb | 3 +++ ...017a.eb => libdrm-2.4.76-GCCcore-6.3.0.eb} | 11 +++++++++-- .../Mako-1.0.6-foss-2017a-Python-2.7.13.eb | 3 +++ .../m/Mesa/Mesa-17.0.2-foss-2017a.eb | 6 +++++- .../m/Mesa/Mesa-17.0.2-intel-2017a.eb | 6 +++++- ...s-2017a.eb => nettle-3.3-GCCcore-6.3.0.eb} | 10 +++++++++- ...ss-2017a.eb => PCRE-8.40-GCCcore-6.3.0.eb} | 10 +++++++++- .../easyconfigs/q/Qt/Qt-4.8.7-foss-2017a.eb | 4 ++++ ....eb => util-linux-2.29.2-GCCcore-6.3.0.eb} | 19 +++++++++++++------ 10 files changed, 63 insertions(+), 12 deletions(-) rename easybuild/easyconfigs/l/libdrm/{libdrm-2.4.76-foss-2017a.eb => libdrm-2.4.76-GCCcore-6.3.0.eb} (67%) rename easybuild/easyconfigs/n/nettle/{nettle-3.3-foss-2017a.eb => nettle-3.3-GCCcore-6.3.0.eb} (75%) rename easybuild/easyconfigs/p/PCRE/{PCRE-8.40-foss-2017a.eb => PCRE-8.40-GCCcore-6.3.0.eb} (60%) rename easybuild/easyconfigs/u/util-linux/{util-linux-2.29.2-foss-2017a.eb => util-linux-2.29.2-GCCcore-6.3.0.eb} (84%) diff --git a/easybuild/easyconfigs/g/GLib/GLib-2.52.0-foss-2017a.eb b/easybuild/easyconfigs/g/GLib/GLib-2.52.0-foss-2017a.eb index 46fb65d7e5..52fb7942b9 100644 --- a/easybuild/easyconfigs/g/GLib/GLib-2.52.0-foss-2017a.eb +++ b/easybuild/easyconfigs/g/GLib/GLib-2.52.0-foss-2017a.eb @@ -11,6 +11,9 @@ toolchainopts = {'pic': True} source_urls = [FTPGNOME_SOURCE] sources = [SOURCELOWER_TAR_XZ] +checksums = [ + '4578e3e077b1b978cafeec8d28b676c680aba0c0475923874c4c993403df311a', # glib-2.52.0.tar.xz +] dependencies = [ ('libffi', '3.2.1'), diff --git a/easybuild/easyconfigs/l/libGLU/libGLU-9.0.0-foss-2017a.eb b/easybuild/easyconfigs/l/libGLU/libGLU-9.0.0-foss-2017a.eb index ece6ffd732..9619bd114d 100644 --- a/easybuild/easyconfigs/l/libGLU/libGLU-9.0.0-foss-2017a.eb +++ b/easybuild/easyconfigs/l/libGLU/libGLU-9.0.0-foss-2017a.eb @@ -11,6 +11,9 @@ toolchainopts = {'pic': True} source_urls = ['ftp://ftp.freedesktop.org/pub/mesa/glu/'] sources = ['glu-%(version)s.tar.bz2'] +checksums = [ + '1f7ad0d379a722fcbd303aa5650c6d7d5544fde83196b42a73d1193568a4df12', # glu-9.0.0.tar.bz2 +] dependencies = [ ('Mesa', '17.0.2'), diff --git a/easybuild/easyconfigs/l/libdrm/libdrm-2.4.76-foss-2017a.eb b/easybuild/easyconfigs/l/libdrm/libdrm-2.4.76-GCCcore-6.3.0.eb similarity index 67% rename from easybuild/easyconfigs/l/libdrm/libdrm-2.4.76-foss-2017a.eb rename to easybuild/easyconfigs/l/libdrm/libdrm-2.4.76-GCCcore-6.3.0.eb index 854d135004..d6e3c7e9a1 100644 --- a/easybuild/easyconfigs/l/libdrm/libdrm-2.4.76-foss-2017a.eb +++ b/easybuild/easyconfigs/l/libdrm/libdrm-2.4.76-GCCcore-6.3.0.eb @@ -6,14 +6,21 @@ version = '2.4.76' homepage = 'http://dri.freedesktop.org' description = """Direct Rendering Manager runtime library.""" +toolchain = {'name': 'GCCcore', 'version': '6.3.0'} + source_urls = ['http://dri.freedesktop.org/libdrm/'] sources = [SOURCELOWER_TAR_GZ] - -toolchain = {'name': 'foss', 'version': '2017a'} +checksums = [ + '6e3fb50d7500acf06f7eed44d5b1d33cda26aef7f5ae6667ddcc626b435c2531', # libdrm-2.4.76.tar.gz +] dependencies = [ ('X11', '20170314'), ] +builddependencies = [ + # use same binutils version that was used when building GCCcore toolchain + ('binutils', '2.27', '', True), +] sanity_check_paths = { 'files': ['include/xf86drm.h', 'include/xf86drmMode.h', 'lib/libdrm_intel.%s' % SHLIB_EXT, diff --git a/easybuild/easyconfigs/m/Mako/Mako-1.0.6-foss-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/m/Mako/Mako-1.0.6-foss-2017a-Python-2.7.13.eb index c503189159..0f724f7b47 100644 --- a/easybuild/easyconfigs/m/Mako/Mako-1.0.6-foss-2017a-Python-2.7.13.eb +++ b/easybuild/easyconfigs/m/Mako/Mako-1.0.6-foss-2017a-Python-2.7.13.eb @@ -11,6 +11,9 @@ toolchain = {'name': 'foss', 'version': '2017a'} source_urls = [PYPI_SOURCE] sources = [SOURCE_TAR_GZ] +checksums = [ + '48559ebd872a8e77f92005884b3d88ffae552812cdf17db6768e5c3be5ebbe0d', # Mako-1.0.6.tar.gz +] dependencies = [('Python', '2.7.13')] diff --git a/easybuild/easyconfigs/m/Mesa/Mesa-17.0.2-foss-2017a.eb b/easybuild/easyconfigs/m/Mesa/Mesa-17.0.2-foss-2017a.eb index 57eb46100f..bf4cca33d3 100644 --- a/easybuild/easyconfigs/m/Mesa/Mesa-17.0.2-foss-2017a.eb +++ b/easybuild/easyconfigs/m/Mesa/Mesa-17.0.2-foss-2017a.eb @@ -19,14 +19,18 @@ toolchain = {'name': 'foss', 'version': '2017a'} # -xHost, this always gets overwritten and will fail. toolchainopts = {'optarch': False} -sources = [SOURCELOWER_TAR_XZ] source_urls = [ 'https://mesa.freedesktop.org/archive/', 'https://mesa.freedesktop.org/archive/%(version)s', 'ftp://ftp.freedesktop.org/pub/mesa/%(version)s', 'ftp://ftp.freedesktop.org/pub/mesa/older-versions/%(version_major)s.x/%(version)s', ] +sources = [SOURCELOWER_TAR_XZ] patches = ['Mesa-%(version)s_fix-strip-llvm-flags.patch'] +checksums = [ + 'f8f191f909e01e65de38d5bdea5fb057f21649a3aed20948be02348e77a689d4', # mesa-17.0.2.tar.xz + '3edd64bc2a42b9065cfb86e872ba7e8a7c74144f7a867c2b5ec62d16078afb36', # Mesa-17.0.2_fix-strip-llvm-flags.patch +] builddependencies = [ ('flex', '2.6.3'), diff --git a/easybuild/easyconfigs/m/Mesa/Mesa-17.0.2-intel-2017a.eb b/easybuild/easyconfigs/m/Mesa/Mesa-17.0.2-intel-2017a.eb index 89dd517431..fb11d4be67 100644 --- a/easybuild/easyconfigs/m/Mesa/Mesa-17.0.2-intel-2017a.eb +++ b/easybuild/easyconfigs/m/Mesa/Mesa-17.0.2-intel-2017a.eb @@ -19,14 +19,18 @@ toolchain = {'name': 'intel', 'version': '2017a'} # -xHost, this always gets overwritten and will fail. toolchainopts = {'optarch': False} -sources = [SOURCELOWER_TAR_XZ] source_urls = [ 'https://mesa.freedesktop.org/archive/', 'https://mesa.freedesktop.org/archive/%(version)s', 'ftp://ftp.freedesktop.org/pub/mesa/%(version)s', 'ftp://ftp.freedesktop.org/pub/mesa/older-versions/%(version_major)s.x/%(version)s', ] +sources = [SOURCELOWER_TAR_XZ] patches = ['Mesa-%(version)s_fix-strip-llvm-flags.patch'] +checksums = [ + 'f8f191f909e01e65de38d5bdea5fb057f21649a3aed20948be02348e77a689d4', # mesa-17.0.2.tar.xz + '3edd64bc2a42b9065cfb86e872ba7e8a7c74144f7a867c2b5ec62d16078afb36', # Mesa-17.0.2_fix-strip-llvm-flags.patch +] builddependencies = [ ('flex', '2.6.3'), diff --git a/easybuild/easyconfigs/n/nettle/nettle-3.3-foss-2017a.eb b/easybuild/easyconfigs/n/nettle/nettle-3.3-GCCcore-6.3.0.eb similarity index 75% rename from easybuild/easyconfigs/n/nettle/nettle-3.3-foss-2017a.eb rename to easybuild/easyconfigs/n/nettle/nettle-3.3-GCCcore-6.3.0.eb index f720881211..29bb670c94 100644 --- a/easybuild/easyconfigs/n/nettle/nettle-3.3-foss-2017a.eb +++ b/easybuild/easyconfigs/n/nettle/nettle-3.3-GCCcore-6.3.0.eb @@ -9,10 +9,18 @@ description = """Nettle is a cryptographic library that is designed to fit easil languages (C++, Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel space.""" -toolchain = {'name': 'foss', 'version': '2017a'} +toolchain = {'name': 'GCCcore', 'version': '6.3.0'} source_urls = [GNU_SOURCE] sources = [SOURCE_TAR_GZ] +checksums = [ + '46942627d5d0ca11720fec18d81fc38f7ef837ea4197c1f630e71ce0d470b11e', # nettle-3.3.tar.gz +] + +builddependencies = [ + # use same binutils version that was used when building GCCcore toolchain + ('binutils', '2.27', '', True), +] dependencies = [ ('GMP', '6.1.2'), diff --git a/easybuild/easyconfigs/p/PCRE/PCRE-8.40-foss-2017a.eb b/easybuild/easyconfigs/p/PCRE/PCRE-8.40-GCCcore-6.3.0.eb similarity index 60% rename from easybuild/easyconfigs/p/PCRE/PCRE-8.40-foss-2017a.eb rename to easybuild/easyconfigs/p/PCRE/PCRE-8.40-GCCcore-6.3.0.eb index cdea33d837..9dc9830554 100644 --- a/easybuild/easyconfigs/p/PCRE/PCRE-8.40-foss-2017a.eb +++ b/easybuild/easyconfigs/p/PCRE/PCRE-8.40-GCCcore-6.3.0.eb @@ -7,11 +7,19 @@ homepage = 'http://www.pcre.org/' description = """The PCRE library is a set of functions that implement regular expression pattern matching using the same syntax and semantics as Perl 5.""" -toolchain = {'name': 'foss', 'version': '2017a'} +toolchain = {'name': 'GCCcore', 'version': '6.3.0'} toolchainopts = {'pic': True} source_urls = [SOURCEFORGE_SOURCE] sources = [SOURCELOWER_TAR_GZ] +checksums = [ + '1d75ce90ea3f81ee080cdc04e68c9c25a9fb984861a0618be7bbf676b18eda3e', # pcre-8.40.tar.gz +] + +builddependencies = [ + # use same binutils version that was used when building GCCcore toolchain + ('binutils', '2.27', '', True), +] configopts = "--with-pic --disable-cpp --enable-utf --enable-unicode-properties" diff --git a/easybuild/easyconfigs/q/Qt/Qt-4.8.7-foss-2017a.eb b/easybuild/easyconfigs/q/Qt/Qt-4.8.7-foss-2017a.eb index 0c8d002a4f..71fe074ee9 100644 --- a/easybuild/easyconfigs/q/Qt/Qt-4.8.7-foss-2017a.eb +++ b/easybuild/easyconfigs/q/Qt/Qt-4.8.7-foss-2017a.eb @@ -12,6 +12,10 @@ source_urls = [ 'http://download.qt.io/archive/qt/%(version_major_minor)s/%(version)s/' ] sources = ['%(namelower)s-everywhere-opensource-src-%(version)s.tar.gz'] +checksums = [ + 'e2882295097e47fe089f8ac741a95fef47e0a73a3f3cdf21b56990638f626ea0', # qt-everywhere-opensource-src-4.8.7.tar.gz + '3853c87c33695bfa57e207ffb0d94cb2565aa462eccdf44d2b2804fd44ecbad6', # Qt-4.8.7_phonon-export.patch +] patches = ['Qt-%(version)s_phonon-export.patch'] diff --git a/easybuild/easyconfigs/u/util-linux/util-linux-2.29.2-foss-2017a.eb b/easybuild/easyconfigs/u/util-linux/util-linux-2.29.2-GCCcore-6.3.0.eb similarity index 84% rename from easybuild/easyconfigs/u/util-linux/util-linux-2.29.2-foss-2017a.eb rename to easybuild/easyconfigs/u/util-linux/util-linux-2.29.2-GCCcore-6.3.0.eb index 2f535a4c3c..5bf5c2a724 100644 --- a/easybuild/easyconfigs/u/util-linux/util-linux-2.29.2-foss-2017a.eb +++ b/easybuild/easyconfigs/u/util-linux/util-linux-2.29.2-GCCcore-6.3.0.eb @@ -6,10 +6,22 @@ version = '2.29.2' homepage = 'http://www.kernel.org/pub/linux/utils/util-linux' description = """Set of Linux utilities""" -toolchain = {'name': 'foss', 'version': '2017a'} +toolchain = {'name': 'GCCcore', 'version': '6.3.0'} source_urls = ['%s/v%%(version_major_minor)s' % homepage] sources = [SOURCELOWER_TAR_GZ] +checksums = [ + '29ccdf91d2c3245dc705f0ad3bf729ac41d8adcdbeff914e797c552ecb04a4c7', # util-linux-2.29.2.tar.gz +] + +builddependencies = [ + ('binutils', '2.27'), +] + +dependencies = [ + ('ncurses', '6.0'), + ('zlib', '1.2.11'), +] # disable account related utilities (they need OS dependant pam-devel files) # disable wall and friends (requires group changing permissions for install user) @@ -23,11 +35,6 @@ configopts += "--with-bashcompletiondir='${prefix}/share/bash-completion/complet # disable building Python bindings (since we don't include Python as a dep) configopts += "--without-python " -dependencies = [ - ('ncurses', '6.0'), - ('zlib', '1.2.11'), -] - sanity_check_paths = { 'files': ['lib/lib%s.a' % x for x in ['blkid', 'mount', 'uuid']], 'dirs': ['include', 'bin', 'share', 'sbin'], -- GitLab From b4c154bb6ff61b86d0a1737fd06f4c9a40998fe0 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 16 Aug 2017 16:54:26 +0200 Subject: [PATCH 605/608] add comment on use of non-dummy toolchain for Eigen --- easybuild/easyconfigs/e/Eigen/Eigen-3.3.4.eb | 1 + 1 file changed, 1 insertion(+) diff --git a/easybuild/easyconfigs/e/Eigen/Eigen-3.3.4.eb b/easybuild/easyconfigs/e/Eigen/Eigen-3.3.4.eb index cb9b1ad328..b82e85a0ae 100644 --- a/easybuild/easyconfigs/e/Eigen/Eigen-3.3.4.eb +++ b/easybuild/easyconfigs/e/Eigen/Eigen-3.3.4.eb @@ -8,6 +8,7 @@ description = """ matrices, vectors, numerical solvers, and related algorithms. """ +# only includes header files, so no need for a non-dummy toolchain toolchain = {'name': 'dummy', 'version': 'dummy'} source_urls = ['http://bitbucket.org/%(namelower)s/%(namelower)s/get'] -- GitLab From ba4309288352b822b4ea059a7819634a90401e8f Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 16 Aug 2017 19:01:41 +0200 Subject: [PATCH 606/608] adding easyconfigs: GCC-7.2.0-2.29.eb --- .../b/Bison/Bison-3.0.4-GCCcore-7.2.0.eb | 28 ++++++++++ .../b/binutils/binutils-2.29-GCCcore-7.2.0.eb | 22 ++++++++ .../easyconfigs/b/binutils/binutils-2.29.eb | 21 ++++++++ .../f/flex/flex-2.6.4-GCCcore-7.2.0.eb | 30 +++++++++++ easybuild/easyconfigs/g/GCC/GCC-7.2.0-2.29.eb | 25 +++++++++ .../easyconfigs/g/GCCcore/GCCcore-7.2.0.eb | 53 +++++++++++++++++++ .../help2man/help2man-1.47.4-GCCcore-7.2.0.eb | 25 +++++++++ .../m/M4/M4-1.4.18-GCCcore-7.2.0.eb | 29 ++++++++++ .../z/zlib/zlib-1.2.11-GCCcore-7.2.0.eb | 26 +++++++++ 9 files changed, 259 insertions(+) create mode 100644 easybuild/easyconfigs/b/Bison/Bison-3.0.4-GCCcore-7.2.0.eb create mode 100644 easybuild/easyconfigs/b/binutils/binutils-2.29-GCCcore-7.2.0.eb create mode 100644 easybuild/easyconfigs/b/binutils/binutils-2.29.eb create mode 100644 easybuild/easyconfigs/f/flex/flex-2.6.4-GCCcore-7.2.0.eb create mode 100644 easybuild/easyconfigs/g/GCC/GCC-7.2.0-2.29.eb create mode 100644 easybuild/easyconfigs/g/GCCcore/GCCcore-7.2.0.eb create mode 100644 easybuild/easyconfigs/h/help2man/help2man-1.47.4-GCCcore-7.2.0.eb create mode 100644 easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-7.2.0.eb create mode 100644 easybuild/easyconfigs/z/zlib/zlib-1.2.11-GCCcore-7.2.0.eb diff --git a/easybuild/easyconfigs/b/Bison/Bison-3.0.4-GCCcore-7.2.0.eb b/easybuild/easyconfigs/b/Bison/Bison-3.0.4-GCCcore-7.2.0.eb new file mode 100644 index 0000000000..0b2a1818c2 --- /dev/null +++ b/easybuild/easyconfigs/b/Bison/Bison-3.0.4-GCCcore-7.2.0.eb @@ -0,0 +1,28 @@ +easyblock = 'ConfigureMake' + +name = 'Bison' +version = '3.0.4' + +homepage = 'http://www.gnu.org/software/bison' +description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar + into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables.""" + +toolchain = {'name': 'GCCcore', 'version': '7.2.0'} + +source_urls = [GNU_SOURCE] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['b67fd2daae7a64b5ba862c66c07c1addb9e6b1b05c5f2049392cfd8a2172952e'] + +builddependencies = [ + ('M4', '1.4.18'), + # use same binutils version that was used when building GCCcore toolchain + ('binutils', '2.29', '', True), +] + + +sanity_check_paths = { + 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"], + 'dirs': [], +} + +moduleclass = 'lang' diff --git a/easybuild/easyconfigs/b/binutils/binutils-2.29-GCCcore-7.2.0.eb b/easybuild/easyconfigs/b/binutils/binutils-2.29-GCCcore-7.2.0.eb new file mode 100644 index 0000000000..2e11b1cadf --- /dev/null +++ b/easybuild/easyconfigs/b/binutils/binutils-2.29-GCCcore-7.2.0.eb @@ -0,0 +1,22 @@ +name = 'binutils' +version = '2.29' + +homepage = 'http://directory.fsf.org/project/binutils/' +description = "binutils: GNU binary utilities" + +toolchain = {'name': 'GCCcore', 'version': '7.2.0'} + +sources = [SOURCE_TAR_GZ] +source_urls = [GNU_SOURCE] +checksums = ['172e8c89472cf52712fd23a9f14e9bca6182727fb45b0f8f482652a83d5a11b4'] + +builddependencies = [ + ('flex', '2.6.4'), + ('Bison', '3.0.4'), + # zlib required, but being linked in statically, so not a runtime dep + ('zlib', '1.2.11'), + # use same binutils version that was used when building GCC toolchain, to 'bootstrap' this binutils + ('binutils', version, '', True) +] + +moduleclass = 'tools' diff --git a/easybuild/easyconfigs/b/binutils/binutils-2.29.eb b/easybuild/easyconfigs/b/binutils/binutils-2.29.eb new file mode 100644 index 0000000000..6efb559b8a --- /dev/null +++ b/easybuild/easyconfigs/b/binutils/binutils-2.29.eb @@ -0,0 +1,21 @@ +name = 'binutils' +version = '2.29' + +homepage = 'http://directory.fsf.org/project/binutils/' + +description = "binutils: GNU binary utilities" + +toolchain = {'name': 'dummy', 'version': ''} + +source_urls = [GNU_SOURCE] +sources = [SOURCE_TAR_GZ] +checksums = ['172e8c89472cf52712fd23a9f14e9bca6182727fb45b0f8f482652a83d5a11b4'] + +builddependencies = [ + ('flex', '2.6.4'), + ('Bison', '3.0.4'), + # zlib required, but being linked in statically, so not a runtime dep + ('zlib', '1.2.11'), +] + +moduleclass = 'tools' diff --git a/easybuild/easyconfigs/f/flex/flex-2.6.4-GCCcore-7.2.0.eb b/easybuild/easyconfigs/f/flex/flex-2.6.4-GCCcore-7.2.0.eb new file mode 100644 index 0000000000..9df6e33418 --- /dev/null +++ b/easybuild/easyconfigs/f/flex/flex-2.6.4-GCCcore-7.2.0.eb @@ -0,0 +1,30 @@ +name = 'flex' +version = '2.6.4' + +homepage = 'http://flex.sourceforge.net/' + +description = """ + Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner, + sometimes called a tokenizer, is a program which recognizes lexical patterns + in text. +""" + +toolchain = {'name': 'GCCcore', 'version': '7.2.0'} +toolchainopts = {'pic': True} + +source_urls = ['https://github.com/westes/flex/releases/download/v%(version)s/'] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['e87aae032bf07c26f85ac0ed3250998c37621d95f8bd748b31f15b33c45ee995'] + +builddependencies = [ + ('Bison', '3.0.4'), + ('help2man', '1.47.4'), + # use same binutils version that was used when building GCC toolchain + ('binutils', '2.29', '', True), +] + +dependencies = [ + ('M4', '1.4.18'), +] + +moduleclass = 'lang' diff --git a/easybuild/easyconfigs/g/GCC/GCC-7.2.0-2.29.eb b/easybuild/easyconfigs/g/GCC/GCC-7.2.0-2.29.eb new file mode 100644 index 0000000000..8e1f8bd616 --- /dev/null +++ b/easybuild/easyconfigs/g/GCC/GCC-7.2.0-2.29.eb @@ -0,0 +1,25 @@ +easyblock = 'Bundle' + +name = 'GCC' +version = '7.2.0' + +binutilsver = '2.29' +versionsuffix = '-%s' % binutilsver + +homepage = 'http://gcc.gnu.org/' +description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, + as well as libraries for these languages (libstdc++, libgcj,...).""" + +toolchain = {'name': 'dummy', 'version': ''} + +dependencies = [ + ('GCCcore', version), + # binutils built on top of GCCcore, which was built on top of (dummy-built) binutils + ('binutils', binutilsver, '', ('GCCcore', version)), +] + +altroot = 'GCCcore' +altversion = 'GCCcore' + +# this bundle serves as a compiler-only toolchain, so it should be marked as compiler (important for HMNS) +moduleclass = 'compiler' diff --git a/easybuild/easyconfigs/g/GCCcore/GCCcore-7.2.0.eb b/easybuild/easyconfigs/g/GCCcore/GCCcore-7.2.0.eb new file mode 100644 index 0000000000..f12a1c7b74 --- /dev/null +++ b/easybuild/easyconfigs/g/GCCcore/GCCcore-7.2.0.eb @@ -0,0 +1,53 @@ +easyblock = 'EB_GCC' + +name = 'GCCcore' +version = '7.2.0' + +homepage = 'http://gcc.gnu.org/' +description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, + as well as libraries for these languages (libstdc++, libgcj,...).""" + +toolchain = {'name': 'dummy', 'version': ''} + +mpfr_version = '3.1.5' + +source_urls = [ + 'http://ftpmirror.gnu.org/gnu/gcc/gcc-%(version)s', # GCC auto-resolving HTTP mirror + 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR + 'http://www.multiprecision.org/mpc/download', # MPC official + 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies + 'http://gcc.cybermirror.org/infrastructure/', # HTTP mirror for GCC dependencies + 'http://isl.gforge.inria.fr/', # original HTTP source for ISL +] +sources = [ + 'gcc-%(version)s.tar.gz', + 'gmp-6.1.2.tar.bz2', + 'mpfr-%s.tar.bz2' % mpfr_version, + 'mpc-1.0.3.tar.gz', + 'isl-0.16.1.tar.bz2', +] +patches = [ + ('mpfr-%s-allpatches-20170801.patch' % mpfr_version, '../mpfr-%s' % mpfr_version), + 'GCCcore-6.2.0-fix-find-isl.patch', +] +checksums = [ + '0153a003d3b433459336a91610cca2995ee0fb3d71131bd72555f2231a6efcfc', # gcc-7.2.0.tar.gz + '5275bb04f4863a13516b2f39392ac5e272f5e1bb8057b18aec1c9b79d73d8fb2', # gmp-6.1.2.tar.bz2 + 'ca498c1c7a74dd37a576f353312d1e68d490978de4395fa28f1cbd46a364e658', # mpfr-3.1.5.tar.bz2 + '617decc6ea09889fb08ede330917a00b16809b8db88c29c31bfbb49cbf88ecc3', # mpc-1.0.3.tar.gz + '412538bb65c799ac98e17e8cfcdacbb257a57362acfaaff254b0fcae970126d2', # isl-0.16.1.tar.bz2 + '62f11d5750a3a2c76f6b33ad581b15c75a0292a575107cabdd8d1f0ccb4e20a1', # mpfr-3.1.5-allpatches-20170801.patch + '5ad909606d17d851c6ad629b4fddb6c1621844218b8d139fed18c502a7696c68', # GCCcore-6.2.0-fix-find-isl.patch +] + +builddependencies = [ + ('M4', '1.4.18'), + ('binutils', '2.29'), +] + +languages = ['c', 'c++', 'fortran'] + +withisl = True + +moduleclass = 'compiler' diff --git a/easybuild/easyconfigs/h/help2man/help2man-1.47.4-GCCcore-7.2.0.eb b/easybuild/easyconfigs/h/help2man/help2man-1.47.4-GCCcore-7.2.0.eb new file mode 100644 index 0000000000..63e4b751a1 --- /dev/null +++ b/easybuild/easyconfigs/h/help2man/help2man-1.47.4-GCCcore-7.2.0.eb @@ -0,0 +1,25 @@ +easyblock = 'ConfigureMake' + +name = 'help2man' +version = '1.47.4' + +homepage = 'https://www.gnu.org/software/help2man/' +description = """help2man produces simple manual pages from the '--help' and '--version' output of other commands.""" + +toolchain = {'name': 'GCCcore', 'version': '7.2.0'} + +source_urls = [GNU_SOURCE] +sources = [SOURCE_TAR_XZ] +checksums = ['d4ecf697d13f14dd1a78c5995f06459bff706fd1ce593d1c02d81667c0207753'] + +builddependencies = [ + # use same binutils version that was used when building GCC toolchain + ('binutils', '2.29', '', True), +] + +sanity_check_paths = { + 'files': ['bin/help2man'], + 'dirs': [], +} + +moduleclass = 'tools' diff --git a/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-7.2.0.eb b/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-7.2.0.eb new file mode 100644 index 0000000000..4605723e36 --- /dev/null +++ b/easybuild/easyconfigs/m/M4/M4-1.4.18-GCCcore-7.2.0.eb @@ -0,0 +1,29 @@ +easyblock = 'ConfigureMake' + +name = 'M4' +version = '1.4.18' + +homepage = 'http://www.gnu.org/software/m4/m4.html' +description = """GNU M4 is an implementation of the traditional Unix macro processor. It is mostly SVR4 compatible + although it has some extensions (for example, handling more than 9 positional parameters to macros). + GNU M4 also has built-in functions for including files, running shell commands, doing arithmetic, etc.""" + +toolchain = {'name': 'GCCcore', 'version': '7.2.0'} + +source_urls = [GNU_SOURCE] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['ab2633921a5cd38e48797bf5521ad259bdc4b979078034a3b790d7fec5493fab'] + +# use same binutils version that was used when building GCC toolchain +builddependencies = [('binutils', '2.29', '', True)] + +# '-fgnu89-inline' is required to avoid linking errors with older glibc's, +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 +configopts = "--enable-cxx CPPFLAGS=-fgnu89-inline" + +sanity_check_paths = { + 'files': ['bin/m4'], + 'dirs': [], +} + +moduleclass = 'devel' diff --git a/easybuild/easyconfigs/z/zlib/zlib-1.2.11-GCCcore-7.2.0.eb b/easybuild/easyconfigs/z/zlib/zlib-1.2.11-GCCcore-7.2.0.eb new file mode 100644 index 0000000000..016a24fff2 --- /dev/null +++ b/easybuild/easyconfigs/z/zlib/zlib-1.2.11-GCCcore-7.2.0.eb @@ -0,0 +1,26 @@ +easyblock = 'ConfigureMake' + +name = 'zlib' +version = '1.2.11' + +homepage = 'http://www.zlib.net/' +description = """zlib is designed to be a free, general-purpose, legally unencumbered -- that is, + not covered by any patents -- lossless data-compression library for use on virtually any + computer hardware and operating system.""" + +toolchain = {'name': 'GCCcore', 'version': '7.2.0'} +toolchainopts = {'pic': True} + +source_urls = ['http://zlib.net/fossils'] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1'] + +# use same binutils version that was used when building GCC toolchain +builddependencies = [('binutils', '2.29', '', True)] + +sanity_check_paths = { + 'files': ['include/zconf.h', 'include/zlib.h', 'lib/libz.a', 'lib/libz.%s' % SHLIB_EXT], + 'dirs': [], +} + +moduleclass = 'lib' -- GitLab From c2cbcf3e1644b9573cef726da3d1b387225cc6aa Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 16 Aug 2017 19:08:01 +0200 Subject: [PATCH 607/608] add missing patch file required by GCCcore-7.2.0.eb --- .../mpfr-3.1.5-allpatches-20170801.patch | 785 ++++++++++++++++++ 1 file changed, 785 insertions(+) create mode 100644 easybuild/easyconfigs/g/GCCcore/mpfr-3.1.5-allpatches-20170801.patch diff --git a/easybuild/easyconfigs/g/GCCcore/mpfr-3.1.5-allpatches-20170801.patch b/easybuild/easyconfigs/g/GCCcore/mpfr-3.1.5-allpatches-20170801.patch new file mode 100644 index 0000000000..fe26596b10 --- /dev/null +++ b/easybuild/easyconfigs/g/GCCcore/mpfr-3.1.5-allpatches-20170801.patch @@ -0,0 +1,785 @@ +# MPFR v3.1.5 patch dated 2017-06-06 +# downloaded via https://gforge.inria.fr/frs/?group_id=136 +diff -Naurd mpfr-3.1.5-a/PATCHES mpfr-3.1.5-b/PATCHES +--- mpfr-3.1.5-a/PATCHES 2016-12-15 08:35:46.476430238 +0000 ++++ mpfr-3.1.5-b/PATCHES 2016-12-15 08:35:46.544430346 +0000 +@@ -0,0 +1 @@ ++vasprintf +diff -Naurd mpfr-3.1.5-a/VERSION mpfr-3.1.5-b/VERSION +--- mpfr-3.1.5-a/VERSION 2016-09-27 07:58:14.000000000 +0000 ++++ mpfr-3.1.5-b/VERSION 2016-12-15 08:35:46.544430346 +0000 +@@ -1 +1 @@ +-3.1.5 ++3.1.5-p1 +diff -Naurd mpfr-3.1.5-a/src/mpfr.h mpfr-3.1.5-b/src/mpfr.h +--- mpfr-3.1.5-a/src/mpfr.h 2016-09-27 07:58:15.000000000 +0000 ++++ mpfr-3.1.5-b/src/mpfr.h 2016-12-15 08:35:46.540430340 +0000 +@@ -27,7 +27,7 @@ + #define MPFR_VERSION_MAJOR 3 + #define MPFR_VERSION_MINOR 1 + #define MPFR_VERSION_PATCHLEVEL 5 +-#define MPFR_VERSION_STRING "3.1.5" ++#define MPFR_VERSION_STRING "3.1.5-p1" + + /* Macros dealing with MPFR VERSION */ + #define MPFR_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c)) +diff -Naurd mpfr-3.1.5-a/src/vasprintf.c mpfr-3.1.5-b/src/vasprintf.c +--- mpfr-3.1.5-a/src/vasprintf.c 2016-09-27 07:58:15.000000000 +0000 ++++ mpfr-3.1.5-b/src/vasprintf.c 2016-12-15 08:35:46.520430308 +0000 +@@ -1593,7 +1593,7 @@ + } + else if (spec.spec == 'f' || spec.spec == 'F') + { +- if (spec.prec == -1) ++ if (spec.prec < 0) + spec.prec = 6; + if (regular_fg (np, p, spec, NULL) == -1) + goto error; +diff -Naurd mpfr-3.1.5-a/src/version.c mpfr-3.1.5-b/src/version.c +--- mpfr-3.1.5-a/src/version.c 2016-09-27 07:58:15.000000000 +0000 ++++ mpfr-3.1.5-b/src/version.c 2016-12-15 08:35:46.544430346 +0000 +@@ -25,5 +25,5 @@ + const char * + mpfr_get_version (void) + { +- return "3.1.5"; ++ return "3.1.5-p1"; + } +diff -Naurd mpfr-3.1.5-a/tests/tsprintf.c mpfr-3.1.5-b/tests/tsprintf.c +--- mpfr-3.1.5-a/tests/tsprintf.c 2016-09-27 07:58:14.000000000 +0000 ++++ mpfr-3.1.5-b/tests/tsprintf.c 2016-12-15 08:35:46.520430308 +0000 +@@ -1251,6 +1251,25 @@ + check_emin_aux (MPFR_EMIN_MIN); + } + ++static void ++test20161214 (void) ++{ ++ mpfr_t x; ++ char buf[32]; ++ const char s[] = "0x0.fffffffffffff8p+1024"; ++ int r; ++ ++ mpfr_init2 (x, 64); ++ mpfr_set_str (x, s, 16, MPFR_RNDN); ++ r = mpfr_snprintf (buf, 32, "%.*RDf", -2, x); ++ MPFR_ASSERTN(r == 316); ++ r = mpfr_snprintf (buf, 32, "%.*RDf", INT_MIN + 1, x); ++ MPFR_ASSERTN(r == 316); ++ r = mpfr_snprintf (buf, 32, "%.*RDf", INT_MIN, x); ++ MPFR_ASSERTN(r == 316); ++ mpfr_clear (x); ++} ++ + int + main (int argc, char **argv) + { +@@ -1271,6 +1290,7 @@ + mixed (); + check_emax (); + check_emin (); ++ test20161214 (); + + #if defined(HAVE_LOCALE_H) && defined(HAVE_SETLOCALE) + #if MPFR_LCONV_DPTS +diff -Naurd mpfr-3.1.5-a/PATCHES mpfr-3.1.5-b/PATCHES +--- mpfr-3.1.5-a/PATCHES 2016-12-19 22:11:17.022676737 +0000 ++++ mpfr-3.1.5-b/PATCHES 2016-12-19 22:11:17.094676820 +0000 +@@ -0,0 +1 @@ ++strtofr +diff -Naurd mpfr-3.1.5-a/VERSION mpfr-3.1.5-b/VERSION +--- mpfr-3.1.5-a/VERSION 2016-12-15 08:35:46.544430346 +0000 ++++ mpfr-3.1.5-b/VERSION 2016-12-19 22:11:17.094676820 +0000 +@@ -1 +1 @@ +-3.1.5-p1 ++3.1.5-p2 +diff -Naurd mpfr-3.1.5-a/src/mpfr.h mpfr-3.1.5-b/src/mpfr.h +--- mpfr-3.1.5-a/src/mpfr.h 2016-12-15 08:35:46.540430340 +0000 ++++ mpfr-3.1.5-b/src/mpfr.h 2016-12-19 22:11:17.090676815 +0000 +@@ -27,7 +27,7 @@ + #define MPFR_VERSION_MAJOR 3 + #define MPFR_VERSION_MINOR 1 + #define MPFR_VERSION_PATCHLEVEL 5 +-#define MPFR_VERSION_STRING "3.1.5-p1" ++#define MPFR_VERSION_STRING "3.1.5-p2" + + /* Macros dealing with MPFR VERSION */ + #define MPFR_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c)) +diff -Naurd mpfr-3.1.5-a/src/strtofr.c mpfr-3.1.5-b/src/strtofr.c +--- mpfr-3.1.5-a/src/strtofr.c 2016-09-27 07:58:15.000000000 +0000 ++++ mpfr-3.1.5-b/src/strtofr.c 2016-12-19 22:11:17.066676788 +0000 +@@ -743,11 +743,14 @@ + of the pstr_size most significant digits of pstr->mant, with + equality in case exact is non-zero. */ + +- /* test if rounding is possible, and if so exit the loop */ +- if (exact || mpfr_can_round_raw (result, ysize, +- (pstr->negative) ? -1 : 1, +- ysize_bits - err - 1, +- MPFR_RNDN, rnd, MPFR_PREC(x))) ++ /* test if rounding is possible, and if so exit the loop. ++ Note: we also need to be able to determine the correct ternary value, ++ thus we use the MPFR_PREC(x) + (rnd == MPFR_RNDN) trick. ++ For example if result = xxx...xxx111...111 and rnd = RNDN, ++ then we know the correct rounding is xxx...xx(x+1), but we cannot know ++ the correct ternary value. */ ++ if (exact || mpfr_round_p (result, ysize, ysize_bits - err - 1, ++ MPFR_PREC(x) + (rnd == MPFR_RNDN))) + break; + + next_loop: +diff -Naurd mpfr-3.1.5-a/src/version.c mpfr-3.1.5-b/src/version.c +--- mpfr-3.1.5-a/src/version.c 2016-12-15 08:35:46.544430346 +0000 ++++ mpfr-3.1.5-b/src/version.c 2016-12-19 22:11:17.094676820 +0000 +@@ -25,5 +25,5 @@ + const char * + mpfr_get_version (void) + { +- return "3.1.5-p1"; ++ return "3.1.5-p2"; + } +diff -Naurd mpfr-3.1.5-a/tests/tstrtofr.c mpfr-3.1.5-b/tests/tstrtofr.c +--- mpfr-3.1.5-a/tests/tstrtofr.c 2016-09-27 07:58:14.000000000 +0000 ++++ mpfr-3.1.5-b/tests/tstrtofr.c 2016-12-19 22:11:17.066676788 +0000 +@@ -1191,6 +1191,24 @@ + mpfr_clears (e, x1, x2, (mpfr_ptr) 0); + } + ++/* Note: the number is 5^47/2^9. */ ++static void ++bug20161217 (void) ++{ ++ mpfr_t fp, z; ++ static const char * num = "0.1387778780781445675529539585113525390625e31"; ++ int inex; ++ ++ mpfr_init2 (fp, 110); ++ mpfr_init2 (z, 110); ++ inex = mpfr_strtofr (fp, num, NULL, 10, MPFR_RNDN); ++ MPFR_ASSERTN(inex == 0); ++ mpfr_set_str_binary (z, "10001100001000010011110110011101101001010000001011011110010001010100010100100110111101000010001011001100001101E-9"); ++ MPFR_ASSERTN(mpfr_equal_p (fp, z)); ++ mpfr_clear (fp); ++ mpfr_clear (z); ++} ++ + int + main (int argc, char *argv[]) + { +@@ -1205,6 +1223,7 @@ + test20100310 (); + bug20120814 (); + bug20120829 (); ++ bug20161217 (); + + tests_end_mpfr (); + return 0; +diff -Naurd mpfr-3.1.5-a/PATCHES mpfr-3.1.5-b/PATCHES +--- mpfr-3.1.5-a/PATCHES 2017-06-06 19:21:17.580843571 +0000 ++++ mpfr-3.1.5-b/PATCHES 2017-06-06 19:21:17.604843293 +0000 +@@ -0,0 +1 @@ ++ret-macro +diff -Naurd mpfr-3.1.5-a/VERSION mpfr-3.1.5-b/VERSION +--- mpfr-3.1.5-a/VERSION 2016-12-19 22:11:17.094676820 +0000 ++++ mpfr-3.1.5-b/VERSION 2017-06-06 19:21:17.604843293 +0000 +@@ -1 +1 @@ +-3.1.5-p2 ++3.1.5-p3 +diff -Naurd mpfr-3.1.5-a/src/mpfr-impl.h mpfr-3.1.5-b/src/mpfr-impl.h +--- mpfr-3.1.5-a/src/mpfr-impl.h 2016-09-27 07:58:15.000000000 +0000 ++++ mpfr-3.1.5-b/src/mpfr-impl.h 2017-06-06 19:21:17.592843433 +0000 +@@ -873,7 +873,7 @@ + following two macros, unless the flag comes from another function + returning the ternary inexact value */ + #define MPFR_RET(I) return \ +- (I) ? ((__gmpfr_flags |= MPFR_FLAGS_INEXACT), (I)) : 0 ++ (I) != 0 ? ((__gmpfr_flags |= MPFR_FLAGS_INEXACT), (I)) : 0 + #define MPFR_RET_NAN return (__gmpfr_flags |= MPFR_FLAGS_NAN), 0 + + #define MPFR_SET_ERANGE() (__gmpfr_flags |= MPFR_FLAGS_ERANGE) +diff -Naurd mpfr-3.1.5-a/src/mpfr.h mpfr-3.1.5-b/src/mpfr.h +--- mpfr-3.1.5-a/src/mpfr.h 2016-12-19 22:11:17.090676815 +0000 ++++ mpfr-3.1.5-b/src/mpfr.h 2017-06-06 19:21:17.600843340 +0000 +@@ -27,7 +27,7 @@ + #define MPFR_VERSION_MAJOR 3 + #define MPFR_VERSION_MINOR 1 + #define MPFR_VERSION_PATCHLEVEL 5 +-#define MPFR_VERSION_STRING "3.1.5-p2" ++#define MPFR_VERSION_STRING "3.1.5-p3" + + /* Macros dealing with MPFR VERSION */ + #define MPFR_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c)) +diff -Naurd mpfr-3.1.5-a/src/version.c mpfr-3.1.5-b/src/version.c +--- mpfr-3.1.5-a/src/version.c 2016-12-19 22:11:17.094676820 +0000 ++++ mpfr-3.1.5-b/src/version.c 2017-06-06 19:21:17.604843293 +0000 +@@ -25,5 +25,5 @@ + const char * + mpfr_get_version (void) + { +- return "3.1.5-p2"; ++ return "3.1.5-p3"; + } +diff -Naurd mpfr-3.1.5-a/PATCHES mpfr-3.1.5-b/PATCHES +--- mpfr-3.1.5-a/PATCHES 2017-06-06 19:50:30.708438500 +0000 ++++ mpfr-3.1.5-b/PATCHES 2017-06-06 19:50:30.736438175 +0000 +@@ -0,0 +1 @@ ++tests-buffer-size +diff -Naurd mpfr-3.1.5-a/VERSION mpfr-3.1.5-b/VERSION +--- mpfr-3.1.5-a/VERSION 2017-06-06 19:21:17.604843293 +0000 ++++ mpfr-3.1.5-b/VERSION 2017-06-06 19:50:30.736438175 +0000 +@@ -1 +1 @@ +-3.1.5-p3 ++3.1.5-p4 +diff -Naurd mpfr-3.1.5-a/src/mpfr.h mpfr-3.1.5-b/src/mpfr.h +--- mpfr-3.1.5-a/src/mpfr.h 2017-06-06 19:21:17.600843340 +0000 ++++ mpfr-3.1.5-b/src/mpfr.h 2017-06-06 19:50:30.732438221 +0000 +@@ -27,7 +27,7 @@ + #define MPFR_VERSION_MAJOR 3 + #define MPFR_VERSION_MINOR 1 + #define MPFR_VERSION_PATCHLEVEL 5 +-#define MPFR_VERSION_STRING "3.1.5-p3" ++#define MPFR_VERSION_STRING "3.1.5-p4" + + /* Macros dealing with MPFR VERSION */ + #define MPFR_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c)) +diff -Naurd mpfr-3.1.5-a/src/version.c mpfr-3.1.5-b/src/version.c +--- mpfr-3.1.5-a/src/version.c 2017-06-06 19:21:17.604843293 +0000 ++++ mpfr-3.1.5-b/src/version.c 2017-06-06 19:50:30.736438175 +0000 +@@ -25,5 +25,5 @@ + const char * + mpfr_get_version (void) + { +- return "3.1.5-p3"; ++ return "3.1.5-p4"; + } +diff -Naurd mpfr-3.1.5-a/tests/tl2b.c mpfr-3.1.5-b/tests/tl2b.c +--- mpfr-3.1.5-a/tests/tl2b.c 2016-09-27 07:58:14.000000000 +0000 ++++ mpfr-3.1.5-b/tests/tl2b.c 2017-06-06 19:50:30.724438314 +0000 +@@ -83,7 +83,7 @@ + mpfr_srcptr t; + int beta, i; + int error = 0; +- char buffer[30]; ++ char buffer[256]; /* larger than needed, for maintainability */ + + for (beta = 2; beta <= BASE_MAX; beta++) + { +diff -Naurd mpfr-3.1.5-a/tests/tpow_all.c mpfr-3.1.5-b/tests/tpow_all.c +--- mpfr-3.1.5-a/tests/tpow_all.c 2016-09-27 07:58:14.000000000 +0000 ++++ mpfr-3.1.5-b/tests/tpow_all.c 2017-06-06 19:50:30.724438314 +0000 +@@ -498,7 +498,7 @@ + for (i = 0; i <= 12; i++) + { + unsigned int flags = 0; +- char sy[16]; ++ char sy[256]; /* larger than needed, for maintainability */ + + /* Test 2^(emin - i/4). + * --> Underflow iff i > 4. +diff -Naurd mpfr-3.1.5-a/PATCHES mpfr-3.1.5-b/PATCHES +--- mpfr-3.1.5-a/PATCHES 2017-06-06 19:57:01.947910247 +0000 ++++ mpfr-3.1.5-b/PATCHES 2017-06-06 19:57:01.971909970 +0000 +@@ -0,0 +1 @@ ++vasprintf-overflow-check +diff -Naurd mpfr-3.1.5-a/VERSION mpfr-3.1.5-b/VERSION +--- mpfr-3.1.5-a/VERSION 2017-06-06 19:50:30.736438175 +0000 ++++ mpfr-3.1.5-b/VERSION 2017-06-06 19:57:01.971909970 +0000 +@@ -1 +1 @@ +-3.1.5-p4 ++3.1.5-p5 +diff -Naurd mpfr-3.1.5-a/src/mpfr.h mpfr-3.1.5-b/src/mpfr.h +--- mpfr-3.1.5-a/src/mpfr.h 2017-06-06 19:50:30.732438221 +0000 ++++ mpfr-3.1.5-b/src/mpfr.h 2017-06-06 19:57:01.971909970 +0000 +@@ -27,7 +27,7 @@ + #define MPFR_VERSION_MAJOR 3 + #define MPFR_VERSION_MINOR 1 + #define MPFR_VERSION_PATCHLEVEL 5 +-#define MPFR_VERSION_STRING "3.1.5-p4" ++#define MPFR_VERSION_STRING "3.1.5-p5" + + /* Macros dealing with MPFR VERSION */ + #define MPFR_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c)) +diff -Naurd mpfr-3.1.5-a/src/vasprintf.c mpfr-3.1.5-b/src/vasprintf.c +--- mpfr-3.1.5-a/src/vasprintf.c 2016-12-15 08:35:46.520430308 +0000 ++++ mpfr-3.1.5-b/src/vasprintf.c 2017-06-06 19:57:01.963910062 +0000 +@@ -1452,7 +1452,7 @@ + struct printf_spec spec) + { + char *str; +- long total; ++ unsigned int total; /* can hold the sum of two non-negative int's + 1 */ + int uppercase; + + /* WARNING: left justification means right space padding */ +@@ -1645,43 +1645,43 @@ + + /* compute the number of characters to be written verifying it is not too + much */ ++ ++#define INCR_TOTAL(v) \ ++ do { \ ++ MPFR_ASSERTD ((v) >= 0); \ ++ if (MPFR_UNLIKELY ((v) > INT_MAX)) \ ++ goto error; \ ++ total += (v); \ ++ if (MPFR_UNLIKELY (total > INT_MAX)) \ ++ goto error; \ ++ } while (0) ++ + total = np->sign ? 1 : 0; +- total += np->prefix_size; +- total += np->ip_size; +- if (MPFR_UNLIKELY (total < 0 || total > INT_MAX)) +- goto error; +- total += np->ip_trailing_zeros; +- if (MPFR_UNLIKELY (total < 0 || total > INT_MAX)) +- goto error; ++ INCR_TOTAL (np->prefix_size); ++ INCR_TOTAL (np->ip_size); ++ INCR_TOTAL (np->ip_trailing_zeros); ++ MPFR_ASSERTD (np->ip_size + np->ip_trailing_zeros >= 1); + if (np->thousands_sep) + /* ' flag, style f and the thousands separator in current locale is not + reduced to the null character */ +- total += (np->ip_size + np->ip_trailing_zeros) / 3; +- if (MPFR_UNLIKELY (total < 0 || total > INT_MAX)) +- goto error; ++ INCR_TOTAL ((np->ip_size + np->ip_trailing_zeros - 1) / 3); + if (np->point) + ++total; +- total += np->fp_leading_zeros; +- if (MPFR_UNLIKELY (total < 0 || total > INT_MAX)) +- goto error; +- total += np->fp_size; +- if (MPFR_UNLIKELY (total < 0 || total > INT_MAX)) +- goto error; +- total += np->fp_trailing_zeros; +- if (MPFR_UNLIKELY (total < 0 || total > INT_MAX)) +- goto error; +- total += np->exp_size; +- if (MPFR_UNLIKELY (total < 0 || total > INT_MAX)) +- goto error; ++ INCR_TOTAL (np->fp_leading_zeros); ++ INCR_TOTAL (np->fp_size); ++ INCR_TOTAL (np->fp_trailing_zeros); ++ INCR_TOTAL (np->exp_size); + + if (spec.width > total) + /* pad with spaces or zeros depending on np->pad_type */ + { + np->pad_size = spec.width - total; + total += np->pad_size; /* here total == spec.width, +- so 0 < total < INT_MAX */ ++ so 0 < total <= INT_MAX */ ++ MPFR_ASSERTD (total == spec.width); + } + ++ MPFR_ASSERTD (total > 0 && total <= INT_MAX); + return total; + + error: +diff -Naurd mpfr-3.1.5-a/src/version.c mpfr-3.1.5-b/src/version.c +--- mpfr-3.1.5-a/src/version.c 2017-06-06 19:50:30.736438175 +0000 ++++ mpfr-3.1.5-b/src/version.c 2017-06-06 19:57:01.971909970 +0000 +@@ -25,5 +25,5 @@ + const char * + mpfr_get_version (void) + { +- return "3.1.5-p4"; ++ return "3.1.5-p5"; + } +diff -Naurd mpfr-3.1.5-a/PATCHES mpfr-3.1.5-b/PATCHES +--- mpfr-3.1.5-a/PATCHES 2017-06-06 20:17:02.489704106 +0000 ++++ mpfr-3.1.5-b/PATCHES 2017-06-06 20:17:02.513703814 +0000 +@@ -0,0 +1 @@ ++printf-errno +diff -Naurd mpfr-3.1.5-a/VERSION mpfr-3.1.5-b/VERSION +--- mpfr-3.1.5-a/VERSION 2017-06-06 19:57:01.971909970 +0000 ++++ mpfr-3.1.5-b/VERSION 2017-06-06 20:17:02.513703814 +0000 +@@ -1 +1 @@ +-3.1.5-p5 ++3.1.5-p6 +diff -Naurd mpfr-3.1.5-a/src/mpfr.h mpfr-3.1.5-b/src/mpfr.h +--- mpfr-3.1.5-a/src/mpfr.h 2017-06-06 19:57:01.971909970 +0000 ++++ mpfr-3.1.5-b/src/mpfr.h 2017-06-06 20:17:02.513703814 +0000 +@@ -27,7 +27,7 @@ + #define MPFR_VERSION_MAJOR 3 + #define MPFR_VERSION_MINOR 1 + #define MPFR_VERSION_PATCHLEVEL 5 +-#define MPFR_VERSION_STRING "3.1.5-p5" ++#define MPFR_VERSION_STRING "3.1.5-p6" + + /* Macros dealing with MPFR VERSION */ + #define MPFR_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c)) +diff -Naurd mpfr-3.1.5-a/src/printf.c mpfr-3.1.5-b/src/printf.c +--- mpfr-3.1.5-a/src/printf.c 2016-09-27 07:58:15.000000000 +0000 ++++ mpfr-3.1.5-b/src/printf.c 2017-06-06 20:17:02.501703960 +0000 +@@ -40,7 +40,6 @@ + # endif /* HAVE___VA_COPY */ + #endif /* HAVE_VA_COPY */ + +-#include + #include "mpfr-impl.h" + + #ifdef _MPFR_H_HAVE_FILE +diff -Naurd mpfr-3.1.5-a/src/vasprintf.c mpfr-3.1.5-b/src/vasprintf.c +--- mpfr-3.1.5-a/src/vasprintf.c 2017-06-06 19:57:01.963910062 +0000 ++++ mpfr-3.1.5-b/src/vasprintf.c 2017-06-06 20:17:02.501703960 +0000 +@@ -52,6 +52,8 @@ + #include /* for ptrdiff_t */ + #endif + ++#include ++ + #define MPFR_NEED_LONGLONG_H + #include "mpfr-intmax.h" + #include "mpfr-impl.h" +diff -Naurd mpfr-3.1.5-a/src/version.c mpfr-3.1.5-b/src/version.c +--- mpfr-3.1.5-a/src/version.c 2017-06-06 19:57:01.971909970 +0000 ++++ mpfr-3.1.5-b/src/version.c 2017-06-06 20:17:02.513703814 +0000 +@@ -25,5 +25,5 @@ + const char * + mpfr_get_version (void) + { +- return "3.1.5-p5"; ++ return "3.1.5-p6"; + } +diff -Naurd mpfr-3.1.5-a/tests/tprintf.c mpfr-3.1.5-b/tests/tprintf.c +--- mpfr-3.1.5-a/tests/tprintf.c 2016-09-27 07:58:14.000000000 +0000 ++++ mpfr-3.1.5-b/tests/tprintf.c 2017-06-06 20:17:02.501703960 +0000 +@@ -26,6 +26,7 @@ + #include + #include + #include ++#include + + #include "mpfr-intmax.h" + #include "mpfr-test.h" +@@ -109,6 +110,33 @@ + } + + static void ++check_vprintf_overflow (const char *fmt, ...) ++{ ++ va_list ap; ++ int r, e; ++ ++ va_start (ap, fmt); ++ errno = 0; ++ r = mpfr_vprintf (fmt, ap); ++ e = errno; ++ va_end (ap); ++ ++ if (r != -1 ++#ifdef EOVERFLOW ++ || e != EOVERFLOW ++#endif ++ ) ++ { ++ putchar ('\n'); ++ fprintf (stderr, "Error in mpfr_vprintf(\"%s\", ...)\n" ++ "Got r = %d, errno = %d\n", fmt, r, e); ++ exit (1); ++ } ++ ++ putchar ('\n'); ++} ++ ++static void + check_invalid_format (void) + { + int i = 0; +@@ -167,8 +195,8 @@ + mpfr_set_ui (x, 1, MPFR_RNDN); + mpfr_nextabove (x); + +- check_vprintf_failure ("%Rb", x); +- check_vprintf_failure ("%RA %RA %Ra %Ra", x, x, x, x); ++ check_vprintf_overflow ("%Rb", x); ++ check_vprintf_overflow ("%RA %RA %Ra %Ra", x, x, x, x); + + mpfr_clear (x); + } +diff -Naurd mpfr-3.1.5-a/PATCHES mpfr-3.1.5-b/PATCHES +--- mpfr-3.1.5-a/PATCHES 2017-06-06 20:24:00.580702002 +0000 ++++ mpfr-3.1.5-b/PATCHES 2017-06-06 20:24:00.604701719 +0000 +@@ -0,0 +1 @@ ++tsprintf-setlocale +diff -Naurd mpfr-3.1.5-a/VERSION mpfr-3.1.5-b/VERSION +--- mpfr-3.1.5-a/VERSION 2017-06-06 20:17:02.513703814 +0000 ++++ mpfr-3.1.5-b/VERSION 2017-06-06 20:24:00.604701719 +0000 +@@ -1 +1 @@ +-3.1.5-p6 ++3.1.5-p7 +diff -Naurd mpfr-3.1.5-a/src/mpfr.h mpfr-3.1.5-b/src/mpfr.h +--- mpfr-3.1.5-a/src/mpfr.h 2017-06-06 20:17:02.513703814 +0000 ++++ mpfr-3.1.5-b/src/mpfr.h 2017-06-06 20:24:00.604701719 +0000 +@@ -27,7 +27,7 @@ + #define MPFR_VERSION_MAJOR 3 + #define MPFR_VERSION_MINOR 1 + #define MPFR_VERSION_PATCHLEVEL 5 +-#define MPFR_VERSION_STRING "3.1.5-p6" ++#define MPFR_VERSION_STRING "3.1.5-p7" + + /* Macros dealing with MPFR VERSION */ + #define MPFR_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c)) +diff -Naurd mpfr-3.1.5-a/src/version.c mpfr-3.1.5-b/src/version.c +--- mpfr-3.1.5-a/src/version.c 2017-06-06 20:17:02.513703814 +0000 ++++ mpfr-3.1.5-b/src/version.c 2017-06-06 20:24:00.604701719 +0000 +@@ -25,5 +25,5 @@ + const char * + mpfr_get_version (void) + { +- return "3.1.5-p6"; ++ return "3.1.5-p7"; + } +diff -Naurd mpfr-3.1.5-a/tests/tsprintf.c mpfr-3.1.5-b/tests/tsprintf.c +--- mpfr-3.1.5-a/tests/tsprintf.c 2016-12-15 08:35:46.520430308 +0000 ++++ mpfr-3.1.5-b/tests/tsprintf.c 2017-06-06 20:24:00.596701813 +0000 +@@ -1273,13 +1273,12 @@ + int + main (int argc, char **argv) + { +- char *locale; + + tests_start_mpfr (); + + #if defined(HAVE_LOCALE_H) && defined(HAVE_SETLOCALE) + /* currently, we just check with 'C' locale */ +- locale = setlocale (LC_ALL, "C"); ++ setlocale (LC_ALL, "C"); + #endif + + bug20111102 (); +@@ -1297,7 +1296,7 @@ + locale_da_DK (); + /* Avoid a warning by doing the setlocale outside of this #if */ + #endif +- setlocale (LC_ALL, locale); ++ setlocale (LC_ALL, "C"); + #endif + + if (getenv ("MPFR_CHECK_LIBC_PRINTF")) +diff -Naurd mpfr-3.1.5-a/PATCHES mpfr-3.1.5-b/PATCHES +--- mpfr-3.1.5-a/PATCHES 2017-06-06 20:31:35.919341495 +0000 ++++ mpfr-3.1.5-b/PATCHES 2017-06-06 20:31:35.943341213 +0000 +@@ -0,0 +1 @@ ++mpf-compat-signed +diff -Naurd mpfr-3.1.5-a/VERSION mpfr-3.1.5-b/VERSION +--- mpfr-3.1.5-a/VERSION 2017-06-06 20:24:00.604701719 +0000 ++++ mpfr-3.1.5-b/VERSION 2017-06-06 20:31:35.943341213 +0000 +@@ -1 +1 @@ +-3.1.5-p7 ++3.1.5-p8 +diff -Naurd mpfr-3.1.5-a/src/mpf2mpfr.h mpfr-3.1.5-b/src/mpf2mpfr.h +--- mpfr-3.1.5-a/src/mpf2mpfr.h 2016-09-27 07:58:15.000000000 +0000 ++++ mpfr-3.1.5-b/src/mpf2mpfr.h 2017-06-06 20:31:35.931341353 +0000 +@@ -93,15 +93,15 @@ + #undef mpf_div_2exp + #define mpf_div_2exp(x,y,z) mpfr_div_2exp(x,y,z,MPFR_DEFAULT_RND) + #undef mpf_fits_slong_p +-#define mpf_fits_slong_p(x) mpfr_fits_ulong_p(x,MPFR_DEFAULT_RND) ++#define mpf_fits_slong_p(x) mpfr_fits_slong_p(x,MPFR_DEFAULT_RND) + #undef mpf_fits_ulong_p + #define mpf_fits_ulong_p(x) mpfr_fits_ulong_p(x,MPFR_DEFAULT_RND) + #undef mpf_fits_sint_p +-#define mpf_fits_sint_p(x) mpfr_fits_uint_p(x,MPFR_DEFAULT_RND) ++#define mpf_fits_sint_p(x) mpfr_fits_sint_p(x,MPFR_DEFAULT_RND) + #undef mpf_fits_uint_p + #define mpf_fits_uint_p(x) mpfr_fits_uint_p(x,MPFR_DEFAULT_RND) + #undef mpf_fits_sshort_p +-#define mpf_fits_sshort_p(x) mpfr_fits_ushort_p(x,MPFR_DEFAULT_RND) ++#define mpf_fits_sshort_p(x) mpfr_fits_sshort_p(x,MPFR_DEFAULT_RND) + #undef mpf_fits_ushort_p + #define mpf_fits_ushort_p(x) mpfr_fits_ushort_p(x,MPFR_DEFAULT_RND) + #undef mpf_get_str +@@ -113,7 +113,7 @@ + #undef mpf_get_ui + #define mpf_get_ui(x) mpfr_get_ui(x,MPFR_DEFAULT_RND) + #undef mpf_get_si +-#define mpf_get_si(x) mpfr_get_ui(x,MPFR_DEFAULT_RND) ++#define mpf_get_si(x) mpfr_get_si(x,MPFR_DEFAULT_RND) + #undef mpf_inp_str + #define mpf_inp_str(x,y,z) mpfr_inp_str(x,y,z,MPFR_DEFAULT_RND) + #undef mpf_set_str +diff -Naurd mpfr-3.1.5-a/src/mpfr-impl.h mpfr-3.1.5-b/src/mpfr-impl.h +--- mpfr-3.1.5-a/src/mpfr-impl.h 2017-06-06 19:21:17.592843433 +0000 ++++ mpfr-3.1.5-b/src/mpfr-impl.h 2017-06-06 20:31:35.931341353 +0000 +@@ -342,11 +342,15 @@ + #define MPFR_FLAGS_DIVBY0 32 + #define MPFR_FLAGS_ALL 63 + +-/* Replace some common functions for direct access to the global vars */ +-#define mpfr_get_emin() (__gmpfr_emin + 0) +-#define mpfr_get_emax() (__gmpfr_emax + 0) +-#define mpfr_get_default_rounding_mode() (__gmpfr_default_rounding_mode + 0) +-#define mpfr_get_default_prec() (__gmpfr_default_fp_bit_precision + 0) ++/* Replace some common functions for direct access to the global vars. ++ The casts prevent these macros from being used as a lvalue (and this ++ method makes sure that the expressions have the correct type). */ ++#define mpfr_get_emin() ((mpfr_exp_t) __gmpfr_emin) ++#define mpfr_get_emax() ((mpfr_exp_t) __gmpfr_emax) ++#define mpfr_get_default_rounding_mode() \ ++ ((mpfr_rnd_t) __gmpfr_default_rounding_mode) ++#define mpfr_get_default_prec() \ ++ ((mpfr_prec_t) __gmpfr_default_fp_bit_precision) + + #define mpfr_clear_flags() \ + ((void) (__gmpfr_flags = 0)) +diff -Naurd mpfr-3.1.5-a/src/mpfr.h mpfr-3.1.5-b/src/mpfr.h +--- mpfr-3.1.5-a/src/mpfr.h 2017-06-06 20:24:00.604701719 +0000 ++++ mpfr-3.1.5-b/src/mpfr.h 2017-06-06 20:31:35.939341259 +0000 +@@ -27,7 +27,7 @@ + #define MPFR_VERSION_MAJOR 3 + #define MPFR_VERSION_MINOR 1 + #define MPFR_VERSION_PATCHLEVEL 5 +-#define MPFR_VERSION_STRING "3.1.5-p7" ++#define MPFR_VERSION_STRING "3.1.5-p8" + + /* Macros dealing with MPFR VERSION */ + #define MPFR_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c)) +diff -Naurd mpfr-3.1.5-a/src/version.c mpfr-3.1.5-b/src/version.c +--- mpfr-3.1.5-a/src/version.c 2017-06-06 20:24:00.604701719 +0000 ++++ mpfr-3.1.5-b/src/version.c 2017-06-06 20:31:35.943341213 +0000 +@@ -25,5 +25,5 @@ + const char * + mpfr_get_version (void) + { +- return "3.1.5-p7"; ++ return "3.1.5-p8"; + } +diff -Naurd mpfr-3.1.5-a/tests/mpf_compat.h mpfr-3.1.5-b/tests/mpf_compat.h +--- mpfr-3.1.5-a/tests/mpf_compat.h 2016-09-27 07:58:14.000000000 +0000 ++++ mpfr-3.1.5-b/tests/mpf_compat.h 2017-06-06 20:31:35.931341353 +0000 +@@ -20,16 +20,10 @@ + http://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc., + 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ + +-#if defined (__cplusplus) +-#include +-#else +-#include +-#endif + #include +-#include + +-#include "gmp.h" +-#include "mpfr.h" ++#include "mpfr-impl.h" ++ + #ifdef MPFR + #include "mpf2mpfr.h" + #endif +@@ -228,6 +222,16 @@ + exit (1); + } + ++ /* non-regression tests for bugs fixed in revision 11565 */ ++ mpf_set_si (x, -1); ++ MPFR_ASSERTN(mpf_fits_ulong_p (x) == 0); ++ MPFR_ASSERTN(mpf_fits_slong_p (x) != 0); ++ MPFR_ASSERTN(mpf_fits_uint_p (x) == 0); ++ MPFR_ASSERTN(mpf_fits_sint_p (x) != 0); ++ MPFR_ASSERTN(mpf_fits_ushort_p (x) == 0); ++ MPFR_ASSERTN(mpf_fits_sshort_p (x) != 0); ++ MPFR_ASSERTN(mpf_get_si (x) == -1); ++ + /* clear all variables */ + mpf_clear (y); + mpf_clear (x); +diff -Naurd mpfr-3.1.5-a/PATCHES mpfr-3.1.5-b/PATCHES +--- mpfr-3.1.5-a/PATCHES 2017-07-21 09:17:42.675157685 +0000 ++++ mpfr-3.1.5-b/PATCHES 2017-07-21 09:17:42.699157421 +0000 +@@ -0,0 +1 @@ ++sincos-overflow +diff -Naurd mpfr-3.1.5-a/VERSION mpfr-3.1.5-b/VERSION +--- mpfr-3.1.5-a/VERSION 2017-06-06 20:31:35.943341213 +0000 ++++ mpfr-3.1.5-b/VERSION 2017-07-21 09:17:42.699157421 +0000 +@@ -1 +1 @@ +-3.1.5-p8 ++3.1.5-p9 +diff -Naurd mpfr-3.1.5-a/src/mpfr.h mpfr-3.1.5-b/src/mpfr.h +--- mpfr-3.1.5-a/src/mpfr.h 2017-06-06 20:31:35.939341259 +0000 ++++ mpfr-3.1.5-b/src/mpfr.h 2017-07-21 09:17:42.699157421 +0000 +@@ -27,7 +27,7 @@ + #define MPFR_VERSION_MAJOR 3 + #define MPFR_VERSION_MINOR 1 + #define MPFR_VERSION_PATCHLEVEL 5 +-#define MPFR_VERSION_STRING "3.1.5-p8" ++#define MPFR_VERSION_STRING "3.1.5-p9" + + /* Macros dealing with MPFR VERSION */ + #define MPFR_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c)) +diff -Naurd mpfr-3.1.5-a/src/sin_cos.c mpfr-3.1.5-b/src/sin_cos.c +--- mpfr-3.1.5-a/src/sin_cos.c 2016-09-27 07:58:15.000000000 +0000 ++++ mpfr-3.1.5-b/src/sin_cos.c 2017-07-21 09:17:42.691157510 +0000 +@@ -350,10 +350,12 @@ + which reduces to T[k] = (2*i+2)*(2*i+3)*2^r-pp, + Q[k] = (2*i)*(2*i+1)*(2*i+2)*(2*i+3). */ + log2_nb_terms[k] = 1; +- mpz_set_ui (Q[k], (2 * i + 2) * (2 * i + 3)); ++ mpz_set_ui (Q[k], 2 * i + 2); ++ mpz_mul_ui (Q[k], Q[k], 2 * i + 3); + mpz_mul_2exp (T[k], Q[k], r); + mpz_sub (T[k], T[k], pp); +- mpz_mul_ui (Q[k], Q[k], (2 * i) * (2 * i + 1)); ++ mpz_mul_ui (Q[k], Q[k], 2 * i); ++ mpz_mul_ui (Q[k], Q[k], 2 * i + 1); + /* the next term of the series is divided by Q[k] and multiplied + by pp^2/2^(2r), thus the mult. factor < 1/2^mult[k] */ + mult[k] = mpz_sizeinbase (Q[k], 2) + 2 * r - size_ptoj[1] - 1; +diff -Naurd mpfr-3.1.5-a/src/version.c mpfr-3.1.5-b/src/version.c +--- mpfr-3.1.5-a/src/version.c 2017-06-06 20:31:35.943341213 +0000 ++++ mpfr-3.1.5-b/src/version.c 2017-07-21 09:17:42.699157421 +0000 +@@ -25,5 +25,5 @@ + const char * + mpfr_get_version (void) + { +- return "3.1.5-p8"; ++ return "3.1.5-p9"; + } +diff -Naurd mpfr-3.1.5-a/PATCHES mpfr-3.1.5-b/PATCHES +--- mpfr-3.1.5-a/PATCHES 2017-08-01 11:59:56.775365596 +0000 ++++ mpfr-3.1.5-b/PATCHES 2017-08-01 11:59:56.803365172 +0000 +@@ -0,0 +1 @@ ++mpf-compat-header +diff -Naurd mpfr-3.1.5-a/VERSION mpfr-3.1.5-b/VERSION +--- mpfr-3.1.5-a/VERSION 2017-07-21 09:17:42.699157421 +0000 ++++ mpfr-3.1.5-b/VERSION 2017-08-01 11:59:56.803365172 +0000 +@@ -1 +1 @@ +-3.1.5-p9 ++3.1.5-p10 +diff -Naurd mpfr-3.1.5-a/src/mpfr.h mpfr-3.1.5-b/src/mpfr.h +--- mpfr-3.1.5-a/src/mpfr.h 2017-07-21 09:17:42.699157421 +0000 ++++ mpfr-3.1.5-b/src/mpfr.h 2017-08-01 11:59:56.799365233 +0000 +@@ -27,7 +27,7 @@ + #define MPFR_VERSION_MAJOR 3 + #define MPFR_VERSION_MINOR 1 + #define MPFR_VERSION_PATCHLEVEL 5 +-#define MPFR_VERSION_STRING "3.1.5-p9" ++#define MPFR_VERSION_STRING "3.1.5-p10" + + /* Macros dealing with MPFR VERSION */ + #define MPFR_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c)) +diff -Naurd mpfr-3.1.5-a/src/version.c mpfr-3.1.5-b/src/version.c +--- mpfr-3.1.5-a/src/version.c 2017-07-21 09:17:42.699157421 +0000 ++++ mpfr-3.1.5-b/src/version.c 2017-08-01 11:59:56.803365172 +0000 +@@ -25,5 +25,5 @@ + const char * + mpfr_get_version (void) + { +- return "3.1.5-p9"; ++ return "3.1.5-p10"; + } +diff -Naurd mpfr-3.1.5-a/tests/mpf_compat.h mpfr-3.1.5-b/tests/mpf_compat.h +--- mpfr-3.1.5-a/tests/mpf_compat.h 2017-06-06 20:31:35.931341353 +0000 ++++ mpfr-3.1.5-b/tests/mpf_compat.h 2017-08-01 11:59:56.791365354 +0000 +@@ -22,7 +22,7 @@ + + #include + +-#include "mpfr-impl.h" ++#include "mpfr-test.h" + + #ifdef MPFR + #include "mpf2mpfr.h" -- GitLab From 8d8fca9a350521b543216f8709fe7cb481238b75 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Thu, 17 Aug 2017 10:19:27 +0200 Subject: [PATCH 608/608] add SC3 extension into bundle for Bioconductor 3.5 (+ dep extesions in R easyconfig) --- .../R-bundle-Bioconductor-3.5-intel-2017a-R-3.4.0.eb | 1 + easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb | 2 ++ 2 files changed, 3 insertions(+) diff --git a/easybuild/easyconfigs/r/R-bundle-Bioconductor/R-bundle-Bioconductor-3.5-intel-2017a-R-3.4.0.eb b/easybuild/easyconfigs/r/R-bundle-Bioconductor/R-bundle-Bioconductor-3.5-intel-2017a-R-3.4.0.eb index b8dbe2076f..43f571de80 100644 --- a/easybuild/easyconfigs/r/R-bundle-Bioconductor/R-bundle-Bioconductor-3.5-intel-2017a-R-3.4.0.eb +++ b/easybuild/easyconfigs/r/R-bundle-Bioconductor/R-bundle-Bioconductor-3.5-intel-2017a-R-3.4.0.eb @@ -160,6 +160,7 @@ exts_list = [ ('tximport', '1.4.0', bioconductor_options), ('scater', '1.4.0', bioconductor_options), ('scran', '1.4.5', bioconductor_options), + ('SC3', '1.4.2', bioconductor_options), ] modextrapaths = {'R_LIBS': ''} diff --git a/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb b/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb index 920853bd95..1f364643eb 100644 --- a/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb +++ b/easybuild/easyconfigs/r/R/R-3.4.0-intel-2017a-X11-20170314.eb @@ -550,6 +550,8 @@ exts_list = [ ('vipor', '0.4.5', ext_options), ('ggbeeswarm', '0.6.0', ext_options), ('shinydashboard', '0.6.1', ext_options), + ('rrcov', '1.4-3', ext_options), + ('WriteXLS', '4.0.0', ext_options), ] moduleclass = 'lang' -- GitLab