diff options
author | Dom Heinzeller <dom.heinzeller@icloud.com> | 2022-08-25 09:52:54 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-25 08:52:54 -0700 |
commit | b332c1055c242108c660596c1ac4c40fe2d91941 (patch) | |
tree | 40d56cea1db9d8ff0601ecd21fb215dd8e2143d8 | |
parent | 7e0d8fce895f5feaa89af67fd99e0c3a16f2ba00 (diff) | |
download | spack-b332c1055c242108c660596c1ac4c40fe2d91941.tar.gz spack-b332c1055c242108c660596c1ac4c40fe2d91941.tar.bz2 spack-b332c1055c242108c660596c1ac4c40fe2d91941.tar.xz spack-b332c1055c242108c660596c1ac4c40fe2d91941.zip |
Update ESMF: bug fix for esmf@8.3.0b09 with PIO (#32360)
-rw-r--r-- | var/spack/repos/builtin/packages/esmf/package.py | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/esmf/package.py b/var/spack/repos/builtin/packages/esmf/package.py index d3189a9b9c..a381fa1658 100644 --- a/var/spack/repos/builtin/packages/esmf/package.py +++ b/var/spack/repos/builtin/packages/esmf/package.py @@ -19,7 +19,7 @@ class Esmf(MakefilePackage): url = "https://github.com/esmf-org/esmf/archive/ESMF_8_0_1.tar.gz" git = "https://github.com/esmf-org/esmf.git" - maintainers = ["climbfuji"] + maintainers = ["climbfuji", "jedwards4b"] # Develop is a special name for spack and is always considered the newest version version("develop", branch="develop") @@ -65,11 +65,23 @@ class Esmf(MakefilePackage): when="@8.3:", ) variant( + "parallelio", + default=False, + description="Build with external parallelio library", + when="@8.3.b09", + ) + variant( "pio", default=True, description="Enable Internal ParallelIO support", when="@:8.2.99", ) + variant( + "pio", + default=True, + description="Enable Internal ParallelIO support", + when="@8.3.0b09", + ) variant("debug", default=False, description="Make a debuggable version of the library") # Required dependencies |