summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorJim Edwards <jedwards@ucar.edu>2023-08-29 14:44:54 -0600
committerGitHub <noreply@github.com>2023-08-29 13:44:54 -0700
commitfcd03adc0295a5f699d717f4974acae542beca30 (patch)
treecf2fd8f1d3a7383ec6cef5f6c38eaf8fac6b7233 /var
parent0620b954be00274f4a1264c3a51ad7f1a313a449 (diff)
downloadspack-fcd03adc0295a5f699d717f4974acae542beca30.tar.gz
spack-fcd03adc0295a5f699d717f4974acae542beca30.tar.bz2
spack-fcd03adc0295a5f699d717f4974acae542beca30.tar.xz
spack-fcd03adc0295a5f699d717f4974acae542beca30.zip
Jedwards/parallelio262 (#39676)
* add parallelio@2.6.2 * add comments
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/parallelio/package.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/parallelio/package.py b/var/spack/repos/builtin/packages/parallelio/package.py
index 459c55b0e6..f3bcbaa99a 100644
--- a/var/spack/repos/builtin/packages/parallelio/package.py
+++ b/var/spack/repos/builtin/packages/parallelio/package.py
@@ -17,6 +17,7 @@ class Parallelio(CMakePackage):
maintainers("jedwards4b")
+ version("2.6.2", sha256="c318894f0230197458917e932ec66301b4407a744df481e9c6a6d9d85f7e5ab1")
version("2.6.1", sha256="83d3108d2b9db8219aa6b6ee333cfc12b2a588bcfc781587df5f8b24a716a6eb")
version("2.6.0", sha256="e56a980c71c7f57f396a88beae08f1670d4adf59be6411cd573fe85868ef98c0")
version("2.5.10", sha256="fac694827c81434a7766976711ba7179940e361e8ed0c189c7b397fd44d401de")
@@ -37,13 +38,13 @@ class Parallelio(CMakePackage):
)
variant("mpi", default=True, description="Use mpi to build, otherwise use mpi-serial")
- # This patch addresses building pio2.6.1 with serial netcdf, again the issue is netcdf filters
+ # This patch addresses building pio2.6.1 with serial netcdf, the issue is netcdf filters
patch("serial261.patch", when="@2.6.1")
+ patch("remove_redefinition_of_mpi_offset.patch", when="@:2.5.6")
# This patch addresses an issue when compiling pio2.6.0 with a serial netcdf library.
# netcdf4 filters are only available with the parallel build of netcdf.
patch("pio_260.patch", when="@2.6.0")
- patch("remove_redefinition_of_mpi_offset.patch", when="@:2.5.6")
depends_on("cmake@3.7:", type="build")
depends_on("mpi", when="+mpi")