Skip to content

Commit

Permalink
Merge branch 'fangohr:main' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
lang-m authored Feb 27, 2024
2 parents dc3eecf + cc13a90 commit 743b37b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions spack/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ class Octopus(AutotoolsPackage, CudaPackage):
depends_on("libvdwxc+mpi", when="+libvdwxc")
depends_on("arpack-ng+mpi", when="+arpack")
depends_on("elpa+mpi", when="+elpa")
depends_on("netcdf-fortran ^netcdf-c+mpi", when="+netcdf")
depends_on("netcdf-fortran", when="+netcdf")
depends_on("netcdf-c+mpi", when="+netcdf")
depends_on("[email protected]+mpi", when="+berkeleygw")

with when("~mpi"): # list all the serial dependencies
Expand All @@ -108,7 +109,8 @@ class Octopus(AutotoolsPackage, CudaPackage):
depends_on("libvdwxc~mpi", when="+libvdwxc")
depends_on("arpack-ng~mpi", when="+arpack")
depends_on("elpa~mpi", when="+elpa")
depends_on("netcdf-fortran ^netcdf-c~~mpi", when="+netcdf")
depends_on("netcdf-fortran", when="+netcdf")
depends_on("netcdf-c~~mpi", when="+netcdf")
depends_on("[email protected]~mpi", when="+berkeleygw")

depends_on("etsf-io", when="+etsf-io")
Expand Down

0 comments on commit 743b37b

Please sign in to comment.