summaryrefslogblamecommitdiff
path: root/var/spack/repos/builtin.mock/packages/dep-with-variants/package.py
blob: 84637c227192682eac45c26b97fb61fc62c17eed (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                                                         


                                                                         


                           



                                                                   
 

                                 
                  
 


                                                     
# 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 DepWithVariants(Package):
    """Package that has a variant which adds a dependency forced to
    use non default values.
    """

    homepage = "https://dev.null"

    version("1.0")

    variant("foo", default=False, description="nope")
    variant("bar", default=False, description="nope")
    variant("baz", default=False, description="nope")