summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/unconstrainable-conflict/package.py
blob: 19be98b3a5212223156711fc7675d6047f45d2f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2013-2024 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 UnconstrainableConflict(Package):
    """Package with a conflict whose trigger cannot constrain its constraint."""

    homepage = "http://www.realurl.com"
    url = "http://www.realurl.com/unconstrainable-conflict-1.0.tar.gz"

    version("1.0", sha256="2e34cc4505556d1c1f085758e26f2f8eea0972db9382f051b2dcfb1d7d9e1825")

    # Two conflicts so there's always one that is not the current platform
    conflicts("target=x86_64", when="platform=darwin")
    conflicts("target=aarch64", when="platform=linux")