2023-01-19 06:30:17 +08:00
|
|
|
# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
|
2020-10-21 23:46:50 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2022-05-29 00:55:44 +08:00
|
|
|
from spack.package import *
|
2020-10-21 23:46:50 +08:00
|
|
|
|
|
|
|
|
|
|
|
class Coinutils(AutotoolsPackage):
|
|
|
|
"""CoinUtils is an open-source collection of classes and helper
|
|
|
|
functions that are generally useful to multiple COIN-OR
|
|
|
|
projects."""
|
|
|
|
|
|
|
|
homepage = "https://projects.coin-or.org/Coinutils"
|
|
|
|
url = "https://github.com/coin-or/CoinUtils/archive/releases/2.11.4.tar.gz"
|
|
|
|
|
2023-05-16 05:41:25 +08:00
|
|
|
version("2.11.9", sha256="15d572ace4cd3b7c8ce117081b65a2bd5b5a4ebaba54fadc99c7a244160f88b8")
|
2023-03-14 19:53:26 +08:00
|
|
|
version("2.11.6", sha256="6ea31d5214f7eb27fa3ffb2bdad7ec96499dd2aaaeb4a7d0abd90ef852fc79ca")
|
2020-10-21 23:46:50 +08:00
|
|
|
version("2.11.4", sha256="d4effff4452e73356eed9f889efd9c44fe9cd68bd37b608a5ebb2c58bd45ef81")
|
|
|
|
|
|
|
|
build_directory = "spack-build"
|