diff options
-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 |