summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/aspcud/package.py
diff options
context:
space:
mode:
authorAbhik Sarkar <62109745+asarkar-parsys@users.noreply.github.com>2022-03-22 12:42:15 -0700
committerGitHub <noreply@github.com>2022-03-22 13:42:15 -0600
commiteda5b854a540cf55037977655b0b77eb92ca5704 (patch)
tree1dc53468941f1ee8e206e0320799becaf17e63bd /var/spack/repos/builtin/packages/aspcud/package.py
parent6760175289e620fb4af6ff61d3a98116315af8e4 (diff)
downloadspack-eda5b854a540cf55037977655b0b77eb92ca5704.tar.gz
spack-eda5b854a540cf55037977655b0b77eb92ca5704.tar.bz2
spack-eda5b854a540cf55037977655b0b77eb92ca5704.tar.xz
spack-eda5b854a540cf55037977655b0b77eb92ca5704.zip
Feature/composed boost pkg deps p1 (#28959)
* This commit removes the Boost.with_default_variants to variants that packages are precisely dependant upon. This is the first batch of 20 packages with modified boost dependencies. * Style fixes * Tested bridger: works for gcc-4.9.3 and gcc-8.3.1
Diffstat (limited to 'var/spack/repos/builtin/packages/aspcud/package.py')
-rw-r--r--var/spack/repos/builtin/packages/aspcud/package.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/var/spack/repos/builtin/packages/aspcud/package.py b/var/spack/repos/builtin/packages/aspcud/package.py
index 6422dc7771..6b2457f9fd 100644
--- a/var/spack/repos/builtin/packages/aspcud/package.py
+++ b/var/spack/repos/builtin/packages/aspcud/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 Aspcud(CMakePackage):
@@ -22,12 +21,7 @@ class Aspcud(CMakePackage):
version('1.9.5', sha256='9cd3a9490d377163d87b16fa1a10cc7254bc2dbb9f60e846961ac8233f3835cf')
version('1.9.4', sha256='3645f08b079e1cc80e24cd2d7ae5172a52476d84e3ec5e6a6c0034492a6ea885')
- depends_on('boost@1.74:', type=('build'), when='@1.9.5:')
-
- # 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, type=('build'), when='@1.9.5:')
+ depends_on('boost@1.74:+exception+serialization+container', type=('build'), when='@1.9.5:')
depends_on('cmake', type=('build'))
depends_on('re2c', type=('build'))
depends_on('clingo')