From f5d8fe87a918a40192d2b7d9e2c9f499a3970fda Mon Sep 17 00:00:00 2001 From: arkdavy <92488001+arkdavy@users.noreply.github.com> Date: Tue, 4 Jan 2022 16:38:29 +0000 Subject: [PATCH] Delete yaff-1.6.0-foss-2020b.eb --- .../y/yaff/yaff-1.6.0-foss-2020b.eb | 41 ------------------- 1 file changed, 41 deletions(-) delete mode 100644 easybuild/easyconfigs/y/yaff/yaff-1.6.0-foss-2020b.eb diff --git a/easybuild/easyconfigs/y/yaff/yaff-1.6.0-foss-2020b.eb b/easybuild/easyconfigs/y/yaff/yaff-1.6.0-foss-2020b.eb deleted file mode 100644 index d6d6836dd63..00000000000 --- a/easybuild/easyconfigs/y/yaff/yaff-1.6.0-foss-2020b.eb +++ /dev/null @@ -1,41 +0,0 @@ -# Updated from previous config -# Author: Pavel Grochal (INUITS) -# License: GPLv2 -# -# Building this in interactive Slurm session will result in freeze during either -# runtest phase or sanity_check_commands phase (python -c 'import yaff') -# -# If you submit this as non-interactive Slurm job, it will build just fine. -# Possibly root cause: https://github.com/h5py/h5py/issues/917 -# -easyblock = 'PythonPackage' - -name = 'yaff' -version = '1.6.0' - -homepage = 'https://molmod.github.io/yaff/' -description = """Yaff stands for 'Yet another force field'. It is a pythonic force-field code.""" - -toolchain = {'name': 'foss', 'version': '2020b'} - -source_urls = ['https://github.com/molmod/yaff/releases/download/%(version)s'] -sources = [SOURCE_TAR_GZ] -checksums = ['a266ab032778e37bb2e93152aefb67f396827aa728151651403984429c74ceaa'] - -dependencies = [ - ('Python', '3.8.6'), - ('h5py', '2.10.0'), - ('molmod', '1.4.5'), -] - -use_pip = True -download_dep_fail = True -sanity_pip_check = True - -# required because we're building a Python package using Intel compilers on top of Python built with GCC -check_ldshared = True - -runtest = "export MATPLOTLIBRC=$PWD; echo 'backend: agg' > $MATPLOTLIBRC/matplotlibrc; " -runtest += "python setup.py build_ext -i; nosetests -v" - -moduleclass = 'chem'