forked from easybuilders/easybuild-easyconfigs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from Flamefire/pyiron
Improve PyIron branch
- Loading branch information
Showing
529 changed files
with
28,195 additions
and
265 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
easybuild/easyconfigs/__archive__/f/f90nml/f90nml-1.4.4-GCCcore-10.2.0.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
easyblock = 'PythonPackage' | ||
|
||
name = 'f90nml' | ||
version = '1.4.4' | ||
|
||
homepage = 'https://github.com/marshallward/f90nml' | ||
description = """A Python module and command line tool for parsing | ||
Fortran namelist files""" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '10.2.0'} | ||
|
||
sources = [SOURCE_TAR_GZ] | ||
checksums = ['65e8e135779895245238cbf6be5b1b80d6c2b8c9350c9cdce6183a31bdfd7622'] | ||
|
||
builddependencies = [ | ||
('binutils', '2.35'), | ||
] | ||
dependencies = [ | ||
('Python', '3.8.6'), | ||
('PyYAML', '5.3.1') | ||
] | ||
|
||
use_pip = True | ||
download_dep_fail = True | ||
sanity_pip_check = True | ||
|
||
moduleclass = 'tools' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
easyblock = 'CMakeMake' | ||
|
||
name = 'ALL' | ||
version = '0.9.2' | ||
|
||
homepage = 'https://gitlab.jsc.fz-juelich.de/SLMS/loadbalancing' | ||
description = """A Load Balancing Library (ALL) aims to provide an easy way to include dynamic | ||
domain-based load balancing into particle based simulation codes. The library | ||
is developed in the Simulation Laboratory Molecular Systems of the Jülich | ||
Supercomputing Centre at Forschungszentrum Jülich.""" | ||
|
||
toolchain = {'name': 'foss', 'version': '2023a'} | ||
toolchainopts = {'usempi': True} | ||
|
||
source_urls = ["https://gitlab.jsc.fz-juelich.de/SLMS/loadbalancing/-/archive/v%(version)s/"] | ||
sources = ['loadbalancing-v%(version)s.tar.gz'] | ||
checksums = ['2b4ef52c604c3c0c467712d0912a33c82177610b67edc14df1e034779c6ddb71'] | ||
|
||
builddependencies = [ | ||
('CMake', '3.26.3'), | ||
('Boost', '1.82.0'), # only needed for tests | ||
] | ||
|
||
dependencies = [ | ||
('VTK', '9.3.0'), | ||
] | ||
|
||
configopts = '-DCM_ALL_FORTRAN=ON -DCM_ALL_USE_F08=ON -DCM_ALL_VORONOI=ON -DCM_ALL_VTK_OUTPUT=ON ' | ||
configopts += '-DCM_ALL_TESTS=ON -DCM_ALL_AUTO_DOC=OFF -DVTK_DIR=$EBROOTVTK ' | ||
|
||
runtest = 'test' | ||
|
||
sanity_check_paths = { | ||
'files': [ | ||
'include/ALL.hpp', 'include/ALL_Voronoi.hpp', 'lib/all_module.mod', | ||
'lib/libALL.a', 'lib/libALL_fortran.a' | ||
], | ||
'dirs': ['lib/cmake'], | ||
} | ||
|
||
moduleclass = 'lib' |
47 changes: 47 additions & 0 deletions
47
easybuild/easyconfigs/a/AMS/AMS-2023.104-iimpi-2022b-intelmpi.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
easyblock = 'Tarball' | ||
|
||
name = 'AMS' | ||
version = '2023.104' | ||
versionsuffix = '-intelmpi' | ||
|
||
homepage = 'https://www.scm.com/amsterdam-modeling-suite/' | ||
description = """ | ||
The Amsterdam Modeling Suite (AMS) provides a comprehensive set of modules for | ||
computational chemistry and materials science, from quantum mechanics to fluid | ||
thermodynamics. | ||
""" | ||
|
||
toolchain = {'name': 'iimpi', 'version': '2022b'} | ||
|
||
sources = ['ams%(version)s.pc64_linux.intelmpi.bin.tgz'] | ||
checksums = ['c977014f14291f7f210be7e48bc28f71ab0a076a5af257e92f2c873f54d208af'] | ||
|
||
dependencies = [('libGLU', '9.0.2')] | ||
|
||
keepsymlinks = True | ||
|
||
sanity_check_paths = { | ||
'files': [], | ||
'dirs': ['atomicdata', 'bin', 'examples'], | ||
} | ||
|
||
# check if license file is installed | ||
# sanity_check_commands = ['dirac check'] | ||
|
||
modextrapaths = { | ||
'AMSHOME': '', | ||
'AMSBIN': 'bin', | ||
'AMSRESOURCES': 'atomicdata', | ||
} | ||
|
||
modextravars = { | ||
# use Intel MPI from EasyBuild | ||
'SCM_USE_LOCAL_IMPI': '1', | ||
} | ||
|
||
modloadmsg = """These environment variables need to be defined before using AMS: | ||
* $SCMLICENSE: path to AMS license file | ||
* $SCM_TMPDIR: path to user scratch directory | ||
""" | ||
|
||
moduleclass = 'chem' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
easybuild/easyconfigs/a/Arrow/Arrow-8.0.0_fix-BaseExtensionType-arrow-ext-methods.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
fix for: | ||
AttributeError: 'pyarrow.lib.BaseExtensionType' object has no attribute '__arrow_ext_class__' | ||
see https://github.com/apache/arrow/pull/33802 | ||
diff -u python/pyarrow/types.pxi.orig python/pyarrow/types.pxi | ||
--- python/pyarrow/types.pxi.orig 2022-05-03 18:59:12.000000000 +0200 | ||
+++ python/pyarrow/types.pxi 2024-01-09 13:15:20.313755064 +0100 | ||
@@ -760,6 +836,18 @@ | ||
DataType.init(self, type) | ||
self.ext_type = <const CExtensionType*> type.get() | ||
|
||
+ def __arrow_ext_class__(self): | ||
+ """ | ||
+ The associated array extension class | ||
+ """ | ||
+ return ExtensionArray | ||
+ | ||
+ def __arrow_ext_scalar_class__(self): | ||
+ """ | ||
+ The associated scalar class | ||
+ """ | ||
+ return ExtensionScalar | ||
+ | ||
@property | ||
def extension_name(self): | ||
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.