
* Add Mercury version 1.0.1 * Remove cci and bmi dependency requirements: these are not currently defined in Spack. If +bmi is enabled, the effect is that it may use a system install of bmi * Add a note that fabtests is deprecated and has been folded into the libfabric package. Add the fabtests resource to the libfabric package * Add CMake option settings to Mercury based on variant settings * Mercury: Set OFI testing protocol depending on how libfabric was built * Mercury: add version constraints to dependencies
22 lines
738 B
Python
22 lines
738 B
Python
# Copyright 2013-2019 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 import *
|
|
|
|
|
|
class Fabtests(AutotoolsPackage):
|
|
"""Fabtests provides a set of examples that uses libfabric.
|
|
|
|
DEPRECATED. Fabtests has merged with the libfabric git repo."""
|
|
|
|
homepage = "http://libfabric.org"
|
|
url = "https://github.com/ofiwg/fabtests/releases/download/v1.5.3/fabtests-1.5.3.tar.gz"
|
|
|
|
version('1.6.0', '0441aa0aeda391b1bf1eb71250a4afbc')
|
|
version('1.5.3', 'f60cb95843ebf62e4eaa128e08ccdc7d')
|
|
|
|
depends_on('libfabric@1.6.0', when='@1.6.0')
|
|
depends_on('libfabric@1.5.3', when='@1.5.3')
|