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.
|
2016-05-12 12:22:25 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2014-08-01 07:59:23 +08:00
|
|
|
from spack import *
|
|
|
|
|
2016-08-10 16:50:00 +08:00
|
|
|
|
2017-01-19 02:34:09 +08:00
|
|
|
class Lwgrp(AutotoolsPackage):
|
2014-08-04 03:30:08 +08:00
|
|
|
"""Thie light-weight group library provides process group
|
|
|
|
representations using O(log N) space and time."""
|
2014-08-01 07:59:23 +08:00
|
|
|
|
|
|
|
homepage = "https://github.com/hpc/lwgrp"
|
|
|
|
url = "https://github.com/hpc/lwgrp/releases/download/v1.0.2/lwgrp-1.0.2.tar.gz"
|
|
|
|
|
2014-08-04 03:30:08 +08:00
|
|
|
version('1.0.2', 'ab7ba3bdd8534a651da5076f47f27d8a')
|
2014-08-01 07:59:23 +08:00
|
|
|
|
|
|
|
depends_on('mpi')
|