From c41b6cc38e63d89363eca30470291041a944321a Mon Sep 17 00:00:00 2001 From: meesters Date: Tue, 17 Dec 2019 10:10:59 +0100 Subject: [PATCH 1/3] adding easyconfigs: GSL-2.5-GCCcore-8.3.0.eb --- .../g/GSL/GSL-2.5-GCCcore-8.3.0.eb | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 easybuild/easyconfigs/g/GSL/GSL-2.5-GCCcore-8.3.0.eb diff --git a/easybuild/easyconfigs/g/GSL/GSL-2.5-GCCcore-8.3.0.eb b/easybuild/easyconfigs/g/GSL/GSL-2.5-GCCcore-8.3.0.eb new file mode 100755 index 000000000000..96bbafce2335 --- /dev/null +++ b/easybuild/easyconfigs/g/GSL/GSL-2.5-GCCcore-8.3.0.eb @@ -0,0 +1,25 @@ +easyblock = 'ConfigureMake' + +name = 'GSL' +version = '2.5' + +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': '8.3.0'} +toolchainopts = {'unroll': True, 'pic': True} + +source_urls = [GNU_SOURCE] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['0460ad7c2542caaddc6729762952d345374784100223995eb14d614861f2258d'] + +sanity_check_paths = { + 'files': ['bin/%s' % x for x in ['gsl-config', 'gsl-histogram', 'gsl-randist']] + + ['include/gsl/gsl_types.h'] + + ['lib/lib%s.%s' % (x, SHLIB_EXT) for x in ['gsl', 'gslcblas']], + 'dirs': [], +} + +moduleclass = 'numlib' \ No newline at end of file From 25ca80af785014538e4faec1555370c76b4d2d86 Mon Sep 17 00:00:00 2001 From: meesters Date: Tue, 17 Dec 2019 13:23:06 +0100 Subject: [PATCH 2/3] erasted build statistics to comply with code style --- easybuild/easyconfigs/g/GSL/GSL-2.5-GCCcore-8.3.0.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/g/GSL/GSL-2.5-GCCcore-8.3.0.eb b/easybuild/easyconfigs/g/GSL/GSL-2.5-GCCcore-8.3.0.eb index 96bbafce2335..1a795d735bf7 100755 --- a/easybuild/easyconfigs/g/GSL/GSL-2.5-GCCcore-8.3.0.eb +++ b/easybuild/easyconfigs/g/GSL/GSL-2.5-GCCcore-8.3.0.eb @@ -22,4 +22,4 @@ sanity_check_paths = { 'dirs': [], } -moduleclass = 'numlib' \ No newline at end of file +moduleclass = 'numlib' From bf5310681481d5c6e0053e6251baebcf38a81b73 Mon Sep 17 00:00:00 2001 From: meesters Date: Tue, 17 Dec 2019 13:53:41 +0100 Subject: [PATCH 3/3] https instead of http --- easybuild/easyconfigs/g/GSL/GSL-2.5-GCCcore-8.3.0.eb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyconfigs/g/GSL/GSL-2.5-GCCcore-8.3.0.eb b/easybuild/easyconfigs/g/GSL/GSL-2.5-GCCcore-8.3.0.eb index 1a795d735bf7..06ef71713050 100755 --- a/easybuild/easyconfigs/g/GSL/GSL-2.5-GCCcore-8.3.0.eb +++ b/easybuild/easyconfigs/g/GSL/GSL-2.5-GCCcore-8.3.0.eb @@ -3,7 +3,7 @@ easyblock = 'ConfigureMake' name = 'GSL' version = '2.5' -homepage = 'http://www.gnu.org/software/gsl/' +homepage = 'https://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."""