summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorMassimiliano Culpo <massimiliano.culpo@gmail.com>2020-12-04 16:27:03 +0100
committerGitHub <noreply@github.com>2020-12-04 16:27:03 +0100
commit8b74b50cff03e584844de82225e7ae9e46addbcc (patch)
treedff644d92e3f2629106c5acdaf5fb826c5a9ce24 /var
parent98517af024d9fb2d51c1ebbd02b1030a3f9a5ea9 (diff)
downloadspack-8b74b50cff03e584844de82225e7ae9e46addbcc.tar.gz
spack-8b74b50cff03e584844de82225e7ae9e46addbcc.tar.bz2
spack-8b74b50cff03e584844de82225e7ae9e46addbcc.tar.xz
spack-8b74b50cff03e584844de82225e7ae9e46addbcc.zip
concretizer: restrict maximizing variant values to MV variants (#20194)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin.mock/packages/dep-with-variants-if-develop-root/package.py11
-rw-r--r--var/spack/repos/builtin.mock/packages/dep-with-variants-if-develop/package.py12
2 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin.mock/packages/dep-with-variants-if-develop-root/package.py b/var/spack/repos/builtin.mock/packages/dep-with-variants-if-develop-root/package.py
new file mode 100644
index 0000000000..00162ee200
--- /dev/null
+++ b/var/spack/repos/builtin.mock/packages/dep-with-variants-if-develop-root/package.py
@@ -0,0 +1,11 @@
+# Copyright 2013-2020 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)
+class DepWithVariantsIfDevelopRoot(Package):
+ """Package that adds a dependency with many variants only at @develop"""
+ homepage = "https://dev.null"
+
+ version('1.0')
+
+ depends_on('dep-with-variants-if-develop')
diff --git a/var/spack/repos/builtin.mock/packages/dep-with-variants-if-develop/package.py b/var/spack/repos/builtin.mock/packages/dep-with-variants-if-develop/package.py
new file mode 100644
index 0000000000..ecb11224b3
--- /dev/null
+++ b/var/spack/repos/builtin.mock/packages/dep-with-variants-if-develop/package.py
@@ -0,0 +1,12 @@
+# Copyright 2013-2020 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)
+class DepWithVariantsIfDevelop(Package):
+ """Package that adds a dependency with many variants only at @develop"""
+ homepage = "https://dev.null"
+
+ version('develop')
+ version('1.0')
+
+ depends_on('dep-with-variants', when='@develop')