diff options
author | RĂ©mi Lacroix <remi.lacroix@idris.fr> | 2023-02-06 13:05:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-06 13:05:13 +0100 |
commit | f0d835524820f42766e146284862b929322c9de5 (patch) | |
tree | 8a6ab54dd0c0cb00104fadd77ef02b689e86cc6e | |
parent | 01c21d0496ad40957270a6d5dc0c25e99e42e2b7 (diff) | |
download | spack-f0d835524820f42766e146284862b929322c9de5.tar.gz spack-f0d835524820f42766e146284862b929322c9de5.tar.bz2 spack-f0d835524820f42766e146284862b929322c9de5.tar.xz spack-f0d835524820f42766e146284862b929322c9de5.zip |
libxc 6.0.0: fix a bug affecting CP2K (#35347)
The patch fixes a missing comma at end of line in mgga_xc_b97mv.c.
-rw-r--r-- | var/spack/repos/builtin/packages/libxc/package.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libxc/package.py b/var/spack/repos/builtin/packages/libxc/package.py index 4d5253528d..c7011243d9 100644 --- a/var/spack/repos/builtin/packages/libxc/package.py +++ b/var/spack/repos/builtin/packages/libxc/package.py @@ -39,6 +39,11 @@ class Libxc(AutotoolsPackage, CudaPackage): patch("0001-Bugfix-avoid-implicit-pointer-cast-to-make-libxc-com.patch", when="@5.0.0") patch("0002-Mark-xc_erfcx-a-GPU_FUNCTION.patch", when="@5.0.0") + patch( + "https://raw.githubusercontent.com/cp2k/cp2k/d9e473979eaef93bf16d7abafb9f21845af16eb8/tools/toolchain/scripts/stage3/libxc-6.0.0_mgga_xc_b97mv.patch", + sha256="938113a697ee14988ccff153e1a8287fdb78072adc4f388a0af434261082fee5", + when="@6.0.0", + ) patch("nvhpc-configure.patch", when="%nvhpc") patch("nvhpc-libtool.patch", when="@develop %nvhpc") |