diff options
author | Stephen Nicholas Swatman <stephen@v25.nl> | 2024-09-01 17:54:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-01 10:54:20 -0500 |
commit | 395491815acb20e48050b77dca457aa7cc340ca1 (patch) | |
tree | 6a697c40d59f2fc92f7cdf815ba8f0bb99a59520 /var | |
parent | fd98ebed9d5f095f2b2682a54161592648615139 (diff) | |
download | spack-395491815acb20e48050b77dca457aa7cc340ca1.tar.gz spack-395491815acb20e48050b77dca457aa7cc340ca1.tar.bz2 spack-395491815acb20e48050b77dca457aa7cc340ca1.tar.xz spack-395491815acb20e48050b77dca457aa7cc340ca1.zip |
dd4hep: mark conflict with root@6.31.1: (#45855)
dd4hep versions up to and including 1.27 had a conflict with root
versions starting from 6.31.1, as shown in
https://github.com/AIDASoft/DD4hep/issues/1210. This PR explicitly adds
that conflict to the spec.
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/dd4hep/package.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/dd4hep/package.py b/var/spack/repos/builtin/packages/dd4hep/package.py index e7deeba0d9..35199f9c91 100644 --- a/var/spack/repos/builtin/packages/dd4hep/package.py +++ b/var/spack/repos/builtin/packages/dd4hep/package.py @@ -140,6 +140,9 @@ class Dd4hep(CMakePackage): # See https://github.com/AIDASoft/DD4hep/pull/1191 conflicts("^geant4 cxxstd=11", when="+ddg4") + # See https://github.com/AIDASoft/DD4hep/issues/1210 + conflicts("^root@6.31.1:", when="@:1.27") + @property def libs(self): # We need to override libs here, because we don't build a libdd4hep so |