From 4a78fe201f066ae54408aca9201b91dbad914910 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Krup=C4=8D=C3=ADk?= Date: Mon, 8 Jan 2018 13:53:38 +0100 Subject: [PATCH] new file: a/attrs/attrs-14.4.0-Py-3.6.eb new file: p/pluggy/pluggy-0.6.0-Py-3.6.eb new file: p/pytest/pytest-3.3.2-Py-3.6.eb modified: s/scipy/scipy-1.0.0-Py-3.6.eb --- a/attrs/attrs-14.4.0-Py-3.6.eb | 23 +++++++++++++++++++++++ p/pluggy/pluggy-0.6.0-Py-3.6.eb | 21 +++++++++++++++++++++ p/pytest/pytest-3.3.2-Py-3.6.eb | 27 +++++++++++++++++++++++++++ s/scipy/scipy-1.0.0-Py-3.6.eb | 4 ++++ 4 files changed, 75 insertions(+) create mode 100644 a/attrs/attrs-14.4.0-Py-3.6.eb create mode 100644 p/pluggy/pluggy-0.6.0-Py-3.6.eb create mode 100644 p/pytest/pytest-3.3.2-Py-3.6.eb diff --git a/a/attrs/attrs-14.4.0-Py-3.6.eb b/a/attrs/attrs-14.4.0-Py-3.6.eb new file mode 100644 index 00000000..e59f32ab --- /dev/null +++ b/a/attrs/attrs-14.4.0-Py-3.6.eb @@ -0,0 +1,23 @@ +# IT4Innovations 2018 + +easyblock = 'PythonPackage' + +name = 'attrs' +version = '17.4.0' + +homepage = 'http://www.attrs.org/' +description = 'Classes Without Boilerplate' + +toolchain = {'name': 'Py', 'version': '3.6'} + +source_urls = [PYPI_SOURCE] +sources = [SOURCE_TAR_GZ] + +options = {'modulename': 'attr'} + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python3.6/site-packages/%(name)s-%(version)s-py3.6.egg'], +} + +moduleclass = 'python' diff --git a/p/pluggy/pluggy-0.6.0-Py-3.6.eb b/p/pluggy/pluggy-0.6.0-Py-3.6.eb new file mode 100644 index 00000000..5574fb26 --- /dev/null +++ b/p/pluggy/pluggy-0.6.0-Py-3.6.eb @@ -0,0 +1,21 @@ +# IT4Innovations 2018 + +easyblock = 'PythonPackage' + +name = 'pluggy' +version = '0.6.0' + +homepage = 'https://github.com/pytest-dev/pluggy' +description = 'Plugin and hook calling mechanisms for python.' + +toolchain = {'name': 'Py', 'version': '3.6'} + +source_urls = [PYPI_SOURCE] +sources = [SOURCE_TAR_GZ] + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python3.6/site-packages/%(name)s-%(version)s-py3.6.egg'], +} + +moduleclass = 'python' diff --git a/p/pytest/pytest-3.3.2-Py-3.6.eb b/p/pytest/pytest-3.3.2-Py-3.6.eb new file mode 100644 index 00000000..e51e69e3 --- /dev/null +++ b/p/pytest/pytest-3.3.2-Py-3.6.eb @@ -0,0 +1,27 @@ +# IT4Innovations 2018 + +easyblock = 'PythonPackage' + +name = 'pytest' +version = '3.3.2' + +homepage = 'http://pytest.org' +description = 'Simple powerful testing with Python' + +toolchain = {'name': 'Py', 'version': '3.6'} + +source_urls = [PYPI_SOURCE] +sources = [SOURCE_TAR_GZ] + +dependencies = [ + ('six', '1.11.0'), + ('pluggy', '0.6.0'), + ('attrs', '17.4.0'), +] + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python3.6/site-packages/%(name)s-%(version)s-py3.6.egg'], +} + +moduleclass = 'python' diff --git a/s/scipy/scipy-1.0.0-Py-3.6.eb b/s/scipy/scipy-1.0.0-Py-3.6.eb index 9551cf2c..5a6af9ec 100644 --- a/s/scipy/scipy-1.0.0-Py-3.6.eb +++ b/s/scipy/scipy-1.0.0-Py-3.6.eb @@ -11,6 +11,8 @@ description = """SciPy (pronounced 'Sigh Pie') is open-source software for mathe image processing, ODE solvers, and more.""" toolchain = {'name': 'Py', 'version': '3.6'} +toolchainopts = {'pic': True} + source_urls = [PYPI_SOURCE] sources = [SOURCELOWER_TAR_GZ] @@ -19,6 +21,8 @@ dependencies = [ ('mkl', '2017.4.239', '', True), ] +prebuildopts = 'unset LDFLAGS && ' + sanity_check_paths = { 'files': [], 'dirs': ['lib/python3.6/site-packages/%(name)s-%(version)s-py3.6-linux-x86_64.egg/scipy'],