summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--var/spack/repos/builtin/packages/root/package.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/root/package.py b/var/spack/repos/builtin/packages/root/package.py
index 09a585104a..a400051e92 100644
--- a/var/spack/repos/builtin/packages/root/package.py
+++ b/var/spack/repos/builtin/packages/root/package.py
@@ -22,7 +22,9 @@ class Root(CMakePackage):
tags = ["hep"]
- maintainers("greenc-FNAL", "HadrienG2", "drbenmorgan", "vvolkl")
+ maintainers(
+ "drbenmorgan", "gartung", "greenc-FNAL", "HadrienG2", "marcmengel", "vitodb", "vvolkl"
+ )
# ###################### Versions ##########################
@@ -32,6 +34,7 @@ class Root(CMakePackage):
# Development version (when more recent than production).
# Production version
+ version("6.28.04", sha256="70f7f86a0cd5e3f2a0befdc59942dd50140d990ab264e8e56c7f17f6bfe9c965")
version("6.28.02", sha256="6643c07710e68972b00227c68b20b1016fec16f3fba5f44a571fa1ce5bb42faa")
version("6.28.00", sha256="afa1c5c06d0915411cb9492e474ea9ab12b09961a358e7e559013ed63b5d8084")
version("6.26.10", sha256="8e56bec397104017aa54f9eb554de7a1a134474fe0b3bb0f43a70fc4fabd625f")
@@ -313,8 +316,8 @@ class Root(CMakePackage):
conflicts("+tmva", when="~gsl", msg="TVMA requires GSL")
conflicts("+tmva", when="~mlp", msg="TVMA requires MLP")
conflicts("cxxstd=11", when="+root7", msg="root7 requires at least C++14")
- conflicts("cxxstd=11", when="@6.25.02:", msg="This version of root " "requires at least C++14")
- conflicts("cxxstd=20", when="@:6.25.01", msg="C++20 support was added " "in 6.25.02")
+ conflicts("cxxstd=11", when="@6.25.02:", msg="This version of root requires at least C++14")
+ conflicts("cxxstd=20", when="@:6.28.02", msg="C++20 support requires at least version 6.28.04")
# See https://github.com/root-project/root/issues/11128
conflicts("%clang@16:", when="@:6.26.07", msg="clang 16+ support was added in 6.26.08")