Skip to content

Commit

Permalink
Octopus 14.1 : Add new version hash (#44083)
Browse files Browse the repository at this point in the history
* octopus: add hash for new version
* octopus: add --enable-silent-deprecation flag when @14.1:
  • Loading branch information
iamashwin99 committed May 9, 2024
1 parent 24cd0da commit 86a1342
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions var/spack/repos/builtin/packages/octopus/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ class Octopus(AutotoolsPackage, CudaPackage):

license("Apache-2.0")

version("14.1", sha256="6955f4020e69f038650a24509ff19ef35de4fd34e181539f92fa432db9b66ca7")
version("14.0", sha256="3cf6ef571ff97cc2c226016815d2ac4aa1e00ae3fb0cc693e0aff5620b80373e")
version("13.0", sha256="b4d0fd496c31a9c4aa4677360e631765049373131e61f396b00048235057aeb1")
version("12.2", sha256="e919e07703696eadb4ba59352d7a2678a9191b4586cb9da538661615e765a5a2")
Expand Down Expand Up @@ -300,6 +301,11 @@ def configure_args(self):
args.append(f"{cxxflags} {gcc10_extra}")
args.append(f"{cflags} {gcc10_extra}")

# for octopus 14.1 and above autotools is deprecated in favour of cmake
# inorder to continue using autotools we pass `--enable-silent-deprecation`
if spec.satisfies("@14.1:"):
args.append("--enable-silent-deprecation")

# Disable flags
#
# disable gdlib explicitly to avoid
Expand Down

0 comments on commit 86a1342

Please sign in to comment.