From 7e2251527ccd990ad2e5202b61bd1cafee33c6e3 Mon Sep 17 00:00:00 2001 From: Lukas Krupcik Date: Thu, 26 Aug 2021 09:39:30 +0200 Subject: [PATCH] new file: p/Py/Py-3.8-opr0019.eb new file: p/pyparsing/pyparsing-2.2.0-Py-3.8.eb --- p/Py/Py-3.8-opr0019.eb | 18 ++++++++++++++++++ p/pyparsing/pyparsing-2.2.0-Py-3.8.eb | 21 +++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 p/Py/Py-3.8-opr0019.eb create mode 100644 p/pyparsing/pyparsing-2.2.0-Py-3.8.eb diff --git a/p/Py/Py-3.8-opr0019.eb b/p/Py/Py-3.8-opr0019.eb new file mode 100644 index 00000000..70fb998b --- /dev/null +++ b/p/Py/Py-3.8-opr0019.eb @@ -0,0 +1,18 @@ +# IT4Innovations 2021 + +easyblock = "Toolchain" + +name = 'Py' +version = '3.8' + +homepage = 'https://www.python.org' +description = """Python 3.8 toolchain""" + +toolchain = SYSTEM + +dependencies = [ + ('Python', '3.8.2', '', ('GCCcore', '9.3.0')), + ('GCC', '9.3.0'), +] + +moduleclass = 'toolchain' diff --git a/p/pyparsing/pyparsing-2.2.0-Py-3.8.eb b/p/pyparsing/pyparsing-2.2.0-Py-3.8.eb new file mode 100644 index 00000000..c1a2b52e --- /dev/null +++ b/p/pyparsing/pyparsing-2.2.0-Py-3.8.eb @@ -0,0 +1,21 @@ +#IT4Innovations 2020 + +easyblock = "PythonPackage" +name = 'pyparsing' +version = '2.2.0' + +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': 'Py', 'version': '3.8'} + +source_urls = [PYPI_SOURCE] +sources = [SOURCE_TAR_GZ] + +sanity_check_paths = { + 'files': ['lib/python3.8/site-packages/%(name)s-%(version)s-py3.8.egg'], + 'dirs': [], +} + +moduleclass = 'python'