summaryrefslogtreecommitdiff
path: root/var/spack/repos/edges.test/packages/blas-only-client/package.py
diff options
context:
space:
mode:
authorMassimiliano Culpo <massimiliano.culpo@gmail.com>2023-11-03 12:56:37 +0100
committerGitHub <noreply@github.com>2023-11-03 12:56:37 +0100
commitdb16335aec9add0ce838f9fcd4eb426352e35b07 (patch)
tree3ebb714fcb129f89757440b49e1cc01d9ffb6045 /var/spack/repos/edges.test/packages/blas-only-client/package.py
parent3082ce6a22b1c1356da533a26225150298264a4b (diff)
downloadspack-db16335aec9add0ce838f9fcd4eb426352e35b07.tar.gz
spack-db16335aec9add0ce838f9fcd4eb426352e35b07.tar.bz2
spack-db16335aec9add0ce838f9fcd4eb426352e35b07.tar.xz
spack-db16335aec9add0ce838f9fcd4eb426352e35b07.zip
ASP-based solver: fix for unsplittable providers (#40859)
Some providers must provide virtuals "together", i.e. if they provide one virtual of a set, they must be the providers also of the others. There was a bug though, where we were not checking if the other virtuals in the set were needed at all in the DAG. This commit fixes the bug.
Diffstat (limited to 'var/spack/repos/edges.test/packages/blas-only-client/package.py')
-rw-r--r--var/spack/repos/edges.test/packages/blas-only-client/package.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/edges.test/packages/blas-only-client/package.py b/var/spack/repos/edges.test/packages/blas-only-client/package.py
new file mode 100644
index 0000000000..9e9652a752
--- /dev/null
+++ b/var/spack/repos/edges.test/packages/blas-only-client/package.py
@@ -0,0 +1,19 @@
+# Copyright 2013-2023 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 BlasOnlyClient(Package):
+ """This package depends on the 'blas' virtual only, but should be able to use also provider
+ that provide e.g. 'blas' together with 'lapack'.
+ """
+
+ homepage = "http://www.openblas.net"
+ url = "http://github.com/xianyi/OpenBLAS/archive/v0.2.15.tar.gz"
+
+ version("0.2.16", md5="b1190f3d3471685f17cfd1ec1d252ac9")
+
+ depends_on("blas")