summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/openblas/package.py
blob: 5b8637aca2ccfb1c5e94bd37ce8210e4f2b7debe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2022 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.package import *


class Openblas(Package):
    """OpenBLAS: An optimized BLAS library"""

    homepage = "http://www.openblas.net"
    url = "http://github.com/xianyi/OpenBLAS/archive/v0.2.15.tar.gz"

    version("0.2.15", "b1190f3d3471685f17cfd1ec1d252ac9")
    version("0.2.14", "b1190f3d3471685f17cfd1ec1d252ac9")
    version("0.2.13", "b1190f3d3471685f17cfd1ec1d252ac9")

    # See #20019 for this conflict
    conflicts("%gcc@:4.4", when="@0.2.14:")

    provides("blas")