easybuild-easyblocks
easybuild-easyblocks copied to clipboard
Collection of easyblocks that implement support for building and installing software with EasyBuild.
We need to make sure we trip when unknown configure options are being used. The autoconf `configure` script will only issue a warning, but will happily continue, e.g. when using...
I am cracking my head over getting a newer version (2.13.0) of QScintilla installed. QScintilla has its own EasyBlock specifically for this package `qscintilla.py` and I guess something in the...
So I tried to install the latest version of GAMESS-US by creating a new easyconfig using the foss-2020b toolchain and failed. I figured out that there are a few problems...
Trying to build Mesa 21.1.1 on a somewhat aged x86_64 system w/o AVX fails during the configuration step, since the custom Easyblock passes `-Dgallium-drivers=swrast,swr -Dswr-arches=` to `meson` (note the empty...
In relation to #145: We would like cuda.py to support also CUDA samples, v4.x and future versions too. It basically implies that the easyconfig should have the freedom to define...
In the `boost.py` EasyBlock, this code was added recently by @branfosj, @lexming and @boegel ``` > lib_mt_suffix = '-mt' > # MT libraries gained an extra suffix from v1.69.0 onwards...
I am trying to install TensorRT, which supports multiple versions of python. I want to use `multi_deps` The problem is that the `tensorrt.py` EasyBlock is based on a binary. Extracting...
Support for running `pip check` at the end of the installation of a Python Package was recently added after a serious issue was detected in TensorFlow where mismatching dependencies led...
NWChem currently does all its testing after installing the software and writing the module. The problem here is that the module is available for people to use, even if there's...
We tend to set ``` download_dep_fail = True use_pip = True sanity_pip_check = True ``` for all PythonPackage ECs nowadays and pip should be the default to install PythonPackages as...