
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
39 lines
1.4 KiB
Python
39 lines
1.4 KiB
Python
# Copyright 2013-2021 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 Mrnet(AutotoolsPackage):
|
|
"""The MRNet Multi-Cast Reduction Network."""
|
|
|
|
homepage = "http://paradyn.org/mrnet"
|
|
url = "http://ftp.cs.wisc.edu/pub/paradyn/mrnet/mrnet_5.0.1.tar.gz"
|
|
git = "https://github.com/dyninst/mrnet.git"
|
|
list_url = "http://ftp.cs.wisc.edu/paradyn/mrnet"
|
|
|
|
version('5.0.1-3', branch='master')
|
|
version('5.0.1-2', commit='20b1eacfc6d680d9f6472146d2dfaa0f900cc2e9')
|
|
version('5.0.1', sha256='df0bab4c4c462d0c32df4fd97bf2546f32439f31ca96b54ebbbadd33dd6bc107')
|
|
version('4.1.0', sha256='94758191ac46a9dbfea931a8e61167fe7e8a5f880caa418305c44f1d12af5e45')
|
|
version('4.0.0', sha256='7207c6d493b3f17c386667cfefa81364c96b9c8b831c67442d218d77813c5d38')
|
|
|
|
variant('lwthreads', default=False,
|
|
description="Also build the MRNet LW threadsafe libraries")
|
|
parallel = False
|
|
|
|
depends_on("boost")
|
|
|
|
def configure_args(self):
|
|
spec = self.spec
|
|
config_args = ['--enable-shared']
|
|
|
|
# Build the MRNet LW thread safe libraries when the
|
|
# lwthreads variant is present
|
|
if '+lwthreads' in spec:
|
|
config_args.append('--enable-ltwt-threadsafe')
|
|
|
|
return config_args
|