From 7e1ee444ddff62180666d46e0f4ab50c8a36bec4 Mon Sep 17 00:00:00 2001 From: Ward Poelmans Date: Wed, 30 Nov 2016 14:39:57 +0100 Subject: [PATCH 1/2] {geo} [intel/2016b] SimPEG/0.3.0 --- .../SimPEG-0.3.0-intel-2016b-Python-2.7.12.eb | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 easybuild/easyconfigs/s/SimPEG/SimPEG-0.3.0-intel-2016b-Python-2.7.12.eb diff --git a/easybuild/easyconfigs/s/SimPEG/SimPEG-0.3.0-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/s/SimPEG/SimPEG-0.3.0-intel-2016b-Python-2.7.12.eb new file mode 100644 index 00000000000..4b2df190b59 --- /dev/null +++ b/easybuild/easyconfigs/s/SimPEG/SimPEG-0.3.0-intel-2016b-Python-2.7.12.eb @@ -0,0 +1,28 @@ +easyblock = 'PythonPackage' + +name = 'SimPEG' +version = '0.3.0' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'http://simpeg.xyz' +description = """Simulation and Parameter Estimation in Geophysics: a python package for simulation and gradient +based parameter estimation in the context of geophysical applications.""" + +toolchain = {'name': 'intel', 'version': '2016b'} + +sources = ['v%(version)s.tar.gz'] +source_urls = ['https://github.com/simpeg/simpeg/archive/'] + +dependencies = [ + ('Python', '2.7.12'), + ('matplotlib', '1.5.3', versionsuffix), +] + +options = {'modulename': 'SimPEG'} + +sanity_check_paths = { + 'files': ['bin/TreeUtils.pyx'], + 'dirs': ['lib/python%(pyshortver)s/site-packages'], +} + +moduleclass = 'geo' From 41825bb1b2167a97cd7b2779bef7656a5d0bb9e4 Mon Sep 17 00:00:00 2001 From: Ward Poelmans Date: Wed, 30 Nov 2016 16:42:34 +0100 Subject: [PATCH 2/2] Switch to Pypi and use latest release for SimPEG --- ...-2.7.12.eb => SimPEG-0.3.1-intel-2016b-Python-2.7.12.eb} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename easybuild/easyconfigs/s/SimPEG/{SimPEG-0.3.0-intel-2016b-Python-2.7.12.eb => SimPEG-0.3.1-intel-2016b-Python-2.7.12.eb} (84%) diff --git a/easybuild/easyconfigs/s/SimPEG/SimPEG-0.3.0-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/s/SimPEG/SimPEG-0.3.1-intel-2016b-Python-2.7.12.eb similarity index 84% rename from easybuild/easyconfigs/s/SimPEG/SimPEG-0.3.0-intel-2016b-Python-2.7.12.eb rename to easybuild/easyconfigs/s/SimPEG/SimPEG-0.3.1-intel-2016b-Python-2.7.12.eb index 4b2df190b59..d9e07f44c50 100644 --- a/easybuild/easyconfigs/s/SimPEG/SimPEG-0.3.0-intel-2016b-Python-2.7.12.eb +++ b/easybuild/easyconfigs/s/SimPEG/SimPEG-0.3.1-intel-2016b-Python-2.7.12.eb @@ -1,7 +1,7 @@ easyblock = 'PythonPackage' name = 'SimPEG' -version = '0.3.0' +version = '0.3.1' versionsuffix = '-Python-%(pyver)s' homepage = 'http://simpeg.xyz' @@ -10,8 +10,8 @@ based parameter estimation in the context of geophysical applications.""" toolchain = {'name': 'intel', 'version': '2016b'} -sources = ['v%(version)s.tar.gz'] -source_urls = ['https://github.com/simpeg/simpeg/archive/'] +sources = [SOURCE_TAR_GZ] +source_urls = [PYPI_SOURCE] dependencies = [ ('Python', '2.7.12'),