From 225be45687fceb130b465691cd5958800c13fade Mon Sep 17 00:00:00 2001 From: Tim Haines Date: Wed, 23 Oct 2024 23:38:34 -0500 Subject: [PATCH] dire: Update Boost dependency (#47129) * dire: Update Boost dependency The only version currently available is 2.004, and it does not use Boost. * Remove unused Boost import --- var/spack/repos/builtin/packages/dire/package.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/var/spack/repos/builtin/packages/dire/package.py b/var/spack/repos/builtin/packages/dire/package.py index b819f019e79..fb7849a032b 100644 --- a/var/spack/repos/builtin/packages/dire/package.py +++ b/var/spack/repos/builtin/packages/dire/package.py @@ -4,7 +4,6 @@ # SPDX-License-Identifier: (Apache-2.0 OR MIT) from spack.package import * -from spack.pkg.builtin.boost import Boost class Dire(Package): @@ -27,10 +26,6 @@ class Dire(Package): depends_on("zlib-api") - # 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("lhapdf") depends_on("hepmc") depends_on("pythia8@8.226:")