diff options
author | Eric Bavier <bavier@member.fsf.org> | 2019-02-06 15:32:22 -0600 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2019-02-07 21:20:47 -0600 |
commit | 7fedc3fdfb5fba8098c08d04a7d0cb7131c24a79 (patch) | |
tree | d132c2c422d7e3013f2418e6c6fb82488ad2cc39 /gnu/packages/maths.scm | |
parent | 2bdf26f1c8964b3937fa695f7867b09c750ec9b8 (diff) | |
download | patches-7fedc3fdfb5fba8098c08d04a7d0cb7131c24a79.tar patches-7fedc3fdfb5fba8098c08d04a7d0cb7131c24a79.tar.gz |
gnu: hdf5: Remove use of deprecated MPI1 symbols.
* gnu/packages/patches/hdf5-1.8-mpi-deprecations.patch,
gnu/packages/patches/hdf5-mpi-deprecations.patch: New files.
* gnu/local.mk (dist_patch_DATA): Add them.
* gnu/packages/maths.scm (hdf5, hdf5-1.10)[source]: Use them.
Diffstat (limited to 'gnu/packages/maths.scm')
-rw-r--r-- | gnu/packages/maths.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 10b0978ba0..402b53ca0e 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -764,7 +764,8 @@ incompatible with HDF5.") "/src/hdf5-" version ".tar.bz2"))) (sha256 (base32 "0f3jfbqpaaq21ighi40qzs52nb52kc2d2yjk541rjmsx20b3ih2r")) - (patches (list (search-patch "hdf5-config-date.patch"))))) + (patches (search-patches "hdf5-config-date.patch" + "hdf5-1.8-mpi-deprecations.patch")))) (build-system gnu-build-system) (inputs `(("zlib" ,zlib))) @@ -877,7 +878,8 @@ extremely large and complex data collections.") "/src/hdf5-" version ".tar.bz2"))) (sha256 (base32 "1pr85fa1sh2ky6ai2hs3f21lp252grl2cq3wbyi4rh7dm83gyrqj")) - (patches (list (search-patch "hdf5-config-date.patch"))))))) + (patches (search-patches "hdf5-config-date.patch" + "hdf5-mpi-deprecations.patch")))))) (define-public hdf-java (package |