summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Grein <stephan@syntaktischer-zucker.de>2023-07-12 20:24:26 +0200
committerGitHub <noreply@github.com>2023-07-12 11:24:26 -0700
commit0ca11d7033e36d4347ae5d274f809bd71dba55ac (patch)
tree792beda4610e9f706a97fc1f98230d8810c96d4d
parent4fa7dc03aedab65ef13d9045e3a85f72bed8ca69 (diff)
downloadspack-0ca11d7033e36d4347ae5d274f809bd71dba55ac.tar.gz
spack-0ca11d7033e36d4347ae5d274f809bd71dba55ac.tar.bz2
spack-0ca11d7033e36d4347ae5d274f809bd71dba55ac.tar.xz
spack-0ca11d7033e36d4347ae5d274f809bd71dba55ac.zip
Fix fmt and spdlog versions for micromamba. (#38739)
The spdlog project precisely states/depends which fmt version should be used for compatibility. Latest version 1.11.0 depends explictly on fmt 9.1.0. Without fixed version micromamba build fails when using spack install micromamba on e.g. Rockylinux 8.5.
-rw-r--r--var/spack/repos/builtin/packages/micromamba/package.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/micromamba/package.py b/var/spack/repos/builtin/packages/micromamba/package.py
index 58523ccc95..71af405940 100644
--- a/var/spack/repos/builtin/packages/micromamba/package.py
+++ b/var/spack/repos/builtin/packages/micromamba/package.py
@@ -45,8 +45,8 @@ class Micromamba(CMakePackage):
depends_on("yaml-cpp", type="link")
depends_on("libreproc+cxx+shared", type="link")
depends_on("tl-expected@2022-11-24", type="link")
- depends_on("fmt", type="link")
- depends_on("spdlog", type="link")
+ depends_on("fmt@9.1.0", type="link")
+ depends_on("spdlog@1.11.0", type="link")
# https://github.com/mamba-org/mamba/blob/micromamba-1.0.0/libmamba/include/mamba/core/validate.hpp#L13
depends_on("nlohmann-json", type="link")
@@ -78,8 +78,8 @@ class Micromamba(CMakePackage):
depends_on("yaml-cpp", type="link")
depends_on("libreproc+cxx", type="link")
depends_on("tl-expected@2022-11-24", type="link")
- depends_on("fmt", type="link")
- depends_on("spdlog", type="link")
+ depends_on("fmt@9.1.0", type="link")
+ depends_on("spdlog@1.11.0", type="link")
depends_on("nlohmann-json", type="link")
depends_on("cpp-termcolor", type="link")
depends_on("cli11@2.2:", type="link")