summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/libcudf/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/libcudf/package.py')
-rw-r--r--var/spack/repos/builtin/packages/libcudf/package.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/libcudf/package.py b/var/spack/repos/builtin/packages/libcudf/package.py
index 3d36589531..d32e6f03e8 100644
--- a/var/spack/repos/builtin/packages/libcudf/package.py
+++ b/var/spack/repos/builtin/packages/libcudf/package.py
@@ -4,6 +4,7 @@
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack import *
+from spack.pkg.builtin.boost import Boost
class Libcudf(CMakePackage):
@@ -18,7 +19,11 @@ class Libcudf(CMakePackage):
depends_on('cmake@3.14:', type='build')
depends_on('cuda@10.0:')
- depends_on('boost')
+
+ # 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)
depends_on('arrow+cuda+orc+parquet')
depends_on('librmm')
depends_on('dlpack')