summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/abyss/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/abyss/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/abyss/package.py')
-rw-r--r--var/spack/repos/builtin/packages/abyss/package.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/abyss/package.py b/var/spack/repos/builtin/packages/abyss/package.py
index 7494eb0514..efba4eb25e 100644
--- a/var/spack/repos/builtin/packages/abyss/package.py
+++ b/var/spack/repos/builtin/packages/abyss/package.py
@@ -6,6 +6,7 @@
import numbers
from spack import *
+from spack.pkg.builtin.boost import Boost
def is_multiple_32(x):
@@ -42,6 +43,8 @@ class Abyss(AutotoolsPackage):
depends_on('mpi')
depends_on('boost@:1.50.0,1.53.0:', when='@2.0.2:')
depends_on('boost@:1.50.0,1.53.0:1.59.0', when='@:1.5.2')
+ # Maintainers: Is boost really a dependency? In what conditions?
+ depends_on(Boost.with_default_variants)
depends_on('sparsehash')
depends_on('sqlite')
depends_on('libtool')