From ad92fa970299543044dd86fe1a3407d7ef237e2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Krup=C4=8D=C3=ADk?= Date: Wed, 3 Jan 2018 12:13:18 +0100 Subject: [PATCH] modified: a/ASE/ASE-3.15.0-Python-3.6.2-base.eb new file: m/matplotlib/matplotlib-2.1.1-Python-3.6.2-base.eb new file: p/pyparsing/pyparsing-2.2.0-Python-3.6.2-base.eb new file: p/python-dateutil/python-dateutil-2.6.1-Python-3.6.2-base.eb modified: s/scipy/scipy-1.0.0-Python-3.6.2-base.eb new file: s/six/six-1.11.0-Python-3.6.2-base.eb deleted: a/ASE/.ASE-3.15.0-Python-3.6.2-base.eb.swp --- a/ASE/.ASE-3.15.0-Python-3.6.2-base.eb.swp | Bin 12288 -> 0 bytes a/ASE/ASE-3.15.0-Python-3.6.2-base.eb | 2 +- .../matplotlib-2.1.1-Python-3.6.2-base.eb | 33 ++++++++++++++++++ .../pyparsing-2.2.0-Python-3.6.2-base.eb | 26 ++++++++++++++ ...python-dateutil-2.6.1-Python-3.6.2-base.eb | 28 +++++++++++++++ s/scipy/scipy-1.0.0-Python-3.6.2-base.eb | 3 -- s/six/six-1.11.0-Python-3.6.2-base.eb | 25 +++++++++++++ 7 files changed, 113 insertions(+), 4 deletions(-) delete mode 100644 a/ASE/.ASE-3.15.0-Python-3.6.2-base.eb.swp create mode 100644 m/matplotlib/matplotlib-2.1.1-Python-3.6.2-base.eb create mode 100644 p/pyparsing/pyparsing-2.2.0-Python-3.6.2-base.eb create mode 100644 p/python-dateutil/python-dateutil-2.6.1-Python-3.6.2-base.eb create mode 100644 s/six/six-1.11.0-Python-3.6.2-base.eb diff --git a/a/ASE/.ASE-3.15.0-Python-3.6.2-base.eb.swp b/a/ASE/.ASE-3.15.0-Python-3.6.2-base.eb.swp deleted file mode 100644 index d51c9536b2a4e106be85dba9abbfaf2c2a1f4fc0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 12288 zcmeI2&yUka6vqe71*-NBUQc79IU*kb8Y7m z9e6zg?NdVjzV+=vKw3ZlHX}rEGmk2nC2s9K&6Km?JSJ}(O6AA7BPu~w-Zo3^w) z>2rT;f7_|u^@6_FY46VML@OArdtp1`MtCARc847#fCN62KxNbR@C@mOLC0;m*t$SJ z|Lp3A?nXN#fCP{L5=;D{r|uG{y#cL$V<>O&{NP8&?C^VpkF}O zK(Edc@(<`a=ppC<=q~6c=p5)Q==B*wUV#1r-2>eO{Qx=yeGNK-bN>YW0eTE_ar_R# zh6IoR5>v$n_AW$QRn)FiS5h-LFcF1NiBPc=F5nx4 z)Hg6yUJqGcgkiF=9z;Pm2t?Y8c$f^k{cw;D;&{;O4SB@lVVrJ6Nsf;%4 pINTWG2TyfreWv57n`#K`HopK^yhwMh^mdfevpQZw!%i?D{{r3tO`re( diff --git a/a/ASE/ASE-3.15.0-Python-3.6.2-base.eb b/a/ASE/ASE-3.15.0-Python-3.6.2-base.eb index bf4f3b10..e5a57c9d 100644 --- a/a/ASE/ASE-3.15.0-Python-3.6.2-base.eb +++ b/a/ASE/ASE-3.15.0-Python-3.6.2-base.eb @@ -20,7 +20,7 @@ dependencies = [ ('Python', '2.6.2', '-base'), ('numpy', '1.13.3', versionsuffix), ('scipy', '1.0.0', versionsuffix), - ('matplotlib', '2.0.2', versionsuffix), + ('matplotlib', '2.1.1', versionsuffix), ] sanity_check_paths = { diff --git a/m/matplotlib/matplotlib-2.1.1-Python-3.6.2-base.eb b/m/matplotlib/matplotlib-2.1.1-Python-3.6.2-base.eb new file mode 100644 index 00000000..d417059c --- /dev/null +++ b/m/matplotlib/matplotlib-2.1.1-Python-3.6.2-base.eb @@ -0,0 +1,33 @@ +# IT4Innovations 2018 + +easyblock = "PythonPackage" +name = 'matplotlib' +version = '2.1.1' +versionsuffix = "-Python-%(pyver)s-base" + +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': 'dummy', 'version': ''} + +source_urls = ['https://github.com/matplotlib/matplotlib/archive/'] +sources = ['v%(version)s.tar.gz'] + +dependencies = [ + ('Python', '3.6.2', '-base'), + ('freetype', '2.8'), + ('libpng', '1.6.29'), + ('python-dateutil', '2.6.1', versionsuffix), + ('numpy', '1.13.3', versionsuffix), + ('pyparsing', '2.2.0', versionsuffix), + ('six', '1.11.0', versionsuffix), +] + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python3.6/site-packages/%(name)s-%(version)s-py3.6-linux-x86_64.egg/%(name)s'], +} + +moduleclass = 'vis' diff --git a/p/pyparsing/pyparsing-2.2.0-Python-3.6.2-base.eb b/p/pyparsing/pyparsing-2.2.0-Python-3.6.2-base.eb new file mode 100644 index 00000000..6bef6c09 --- /dev/null +++ b/p/pyparsing/pyparsing-2.2.0-Python-3.6.2-base.eb @@ -0,0 +1,26 @@ +# IT4Innovations 2018 + +easyblock = "PythonPackage" +name = 'pyparsing' +version = '2.2.0' +versionsuffix = "-Python-%(pyver)s-base" + +homepage = 'http://pyparsing.wikispaces.com' +description = """The pyparsing module provides a library of classes + that client code uses to construct the grammar directly in Python code.""" + +toolchain = {'name': 'dummy', 'version': ''} + +source_urls = ['https://pypi.python.org/packages/3c/ec/a94f8cf7274ea60b5413df054f82a8980523efd712ec55a59e7c3357cf7c/'] +sources = [SOURCE_TAR_GZ] + +dependencies = [ + ('Python', '3.6.2', '-base'), +] + +sanity_check_paths = { + 'files': ['lib/python3.6/site-packages/%(name)s-%(version)s-py3.6.egg'], + 'dirs': [], +} + +moduleclass = 'vis' diff --git a/p/python-dateutil/python-dateutil-2.6.1-Python-3.6.2-base.eb b/p/python-dateutil/python-dateutil-2.6.1-Python-3.6.2-base.eb new file mode 100644 index 00000000..5e7ab485 --- /dev/null +++ b/p/python-dateutil/python-dateutil-2.6.1-Python-3.6.2-base.eb @@ -0,0 +1,28 @@ +# IT4Innovations 2018 + +easyblock = "PythonPackage" +name = 'python-dateutil' +version = '2.6.1' +versionsuffix = "-Python-%(pyver)s-base" + +homepage = 'https://github.com/dateutil/dateutil' +description = 'Useful extensions to the standard Python datetime features' + +toolchain = {'name': 'dummy', 'version': ''} + +source_urls = ['https://github.com/dateutil/dateutil/releases/download/%(version)s'] +sources = [SOURCE_TAR_GZ] + +dependencies = [ + ('Python', '3.6.2', '-base'), + ('six', '1.11.0', versionsuffix), +] + +options = {'modulename': 'dateutil'} + +sanity_check_paths = { + 'files': ['lib/python3.6/site-packages/python_dateutil-%(version)s-py3.6.egg'], + 'dirs': [], +} + +moduleclass = 'vis' diff --git a/s/scipy/scipy-1.0.0-Python-3.6.2-base.eb b/s/scipy/scipy-1.0.0-Python-3.6.2-base.eb index 62672a17..1f9db699 100644 --- a/s/scipy/scipy-1.0.0-Python-3.6.2-base.eb +++ b/s/scipy/scipy-1.0.0-Python-3.6.2-base.eb @@ -24,9 +24,6 @@ builddependencies = [ ('imkl', '2017.1.132', '-iimpi-2017a'), ] -#use_pip = True -#unpack_sources = False - sanity_check_paths = { 'files': [], 'dirs': ['lib/python%(pyshortver)s/site-packages/scipy-1.0.0-py3.6-linux-x86_64.egg/scipy'], diff --git a/s/six/six-1.11.0-Python-3.6.2-base.eb b/s/six/six-1.11.0-Python-3.6.2-base.eb new file mode 100644 index 00000000..75bf7ddc --- /dev/null +++ b/s/six/six-1.11.0-Python-3.6.2-base.eb @@ -0,0 +1,25 @@ +# IT4Innovations 2018 + +easyblock = "PythonPackage" +name = 'six' +version = '1.11.0' +versionsuffix = "-Python-%(pyver)s-base" + +homepage = 'https://github.com/benjaminp/six' +description = 'Python 2 and 3 compatibility library.' + +toolchain = {'name': 'dummy', 'version': ''} + +source_urls = ['https://github.com/benjaminp/six/archive/'] +sources = ['%(version)s.tar.gz'] + +dependencies = [ + ('Python', '3.6.2', '-base'), +] + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python3.6/site-packages/%(name)s-%(version)s-py3.6.egg'], +} + +moduleclass = 'vis'