Octopus: branch for Octopus development is now "main" (#34128)

Historically, development of the Octopus code was done on the "develop" branch
on https://gitlab.com/octopus-code/octopus but now development takes place on
"main" (since Q3 2022).

The suggestion in this PR to solve the issue is to keep the spack label
`octopus@develop` as this better indicates this is the development branch on git
than `octopus@main`, but of course to use the `main` branch (there is no choice
here - the `develop` branch is not touched anymore). Sticking to
`octopus@develop` as the version label also keeps backwards compatibility.
This commit is contained in:
Hans Fangohr 2022-11-26 16:29:49 -06:00 committed by GitHub
parent ce71a38703
commit 17ca86a309
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,7 +36,7 @@ class Octopus(AutotoolsPackage, CudaPackage):
version("6.0", sha256="4a802ee86c1e06846aa7fa317bd2216c6170871632c9e03d020d7970a08a8198") version("6.0", sha256="4a802ee86c1e06846aa7fa317bd2216c6170871632c9e03d020d7970a08a8198")
version("5.0.1", sha256="3423049729e03f25512b1b315d9d62691cd0a6bd2722c7373a61d51bfbee14e0") version("5.0.1", sha256="3423049729e03f25512b1b315d9d62691cd0a6bd2722c7373a61d51bfbee14e0")
version("develop", branch="develop") version("develop", branch="main")
variant("mpi", default=True, description="Build with MPI support") variant("mpi", default=True, description="Build with MPI support")
variant("scalapack", default=False, description="Compile with Scalapack") variant("scalapack", default=False, description="Compile with Scalapack")