
Before this PR, variant were not propagated to leaf nodes that could accept the propagated value, if some intermediate node couldn't accept it. This PR fixes that issue by marking nodes as "candidate" for propagation and by setting the variant only if it can be accepted by the node. Co-authored-by: Massimiliano Culpo <massimiliano.culpo@gmail.com>
22 lines
759 B
Python
22 lines
759 B
Python
# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack.package import *
|
|
|
|
|
|
class Ascent(Package):
|
|
"""This packagae has the variants shared, defaulted
|
|
to True and adios2 defaulted to False"""
|
|
|
|
homepage = "https://github.com/Alpine-DAV/ascent"
|
|
url = "http://www.example.com/ascent-1.0.tar.gz"
|
|
|
|
version("0.9.2", sha256="44cd954aa5db478ab40042cd54fd6fcedf25000c3bb510ca23fcff8090531b91")
|
|
|
|
variant("adios2", default=False, description="Build Adios2 filter support")
|
|
variant("shared", default=True, description="Build Ascent as shared libs")
|
|
|
|
depends_on("adios2", when="+adios2")
|