2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2018-04-25 23:29:29 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2018-04-25 23:29:29 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class Fabtests(AutotoolsPackage):
|
2019-04-21 06:03:18 +08:00
|
|
|
"""Fabtests provides a set of examples that uses libfabric.
|
|
|
|
|
|
|
|
DEPRECATED. Fabtests has merged with the libfabric git repo."""
|
2018-04-25 23:29:29 +08:00
|
|
|
|
|
|
|
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')
|
|
|
|
|
2019-04-21 06:03:18 +08:00
|
|
|
depends_on('libfabric@1.6.0', when='@1.6.0')
|
|
|
|
depends_on('libfabric@1.5.3', when='@1.5.3')
|