diff options
author | Hadrien G <grasland@lal.in2p3.fr> | 2022-04-05 20:34:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-05 12:34:42 -0600 |
commit | 6a3c0825e328674e8f545f58643b1e22e6769a1c (patch) | |
tree | c34b415c8fd27f10668a531da58f2c190032afbc /var | |
parent | 935faeb0c0e7e6f8284da360a5b1deb2441edf8e (diff) | |
download | spack-6a3c0825e328674e8f545f58643b1e22e6769a1c.tar.gz spack-6a3c0825e328674e8f545f58643b1e22e6769a1c.tar.bz2 spack-6a3c0825e328674e8f545f58643b1e22e6769a1c.tar.xz spack-6a3c0825e328674e8f545f58643b1e22e6769a1c.zip |
It's already established that we want Boost +python above (#29894)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/geant4/package.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/var/spack/repos/builtin/packages/geant4/package.py b/var/spack/repos/builtin/packages/geant4/package.py index d3658bfe59..817aff23cf 100644 --- a/var/spack/repos/builtin/packages/geant4/package.py +++ b/var/spack/repos/builtin/packages/geant4/package.py @@ -4,7 +4,6 @@ # SPDX-License-Identifier: (Apache-2.0 OR MIT) from spack import * -from spack.pkg.builtin.boost import Boost class Geant4(CMakePackage): @@ -110,11 +109,6 @@ class Geant4(CMakePackage): depends_on('boost@1.70: +python cxxstd=' + std, when='+python cxxstd=' + std) - # TODO: replace this with an explicit list of components of Boost, - # for instance depends_on('boost +filesystem') - # See https://github.com/spack/spack/pull/22303 for reference - depends_on(Boost.with_default_variants, when='+python') - # Visualization driver dependencies depends_on("gl", when='+opengl') depends_on("glu", when='+opengl') |