summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/external-common-python
diff options
context:
space:
mode:
authorMichael Kuron <mkuron@users.noreply.github.com>2021-02-26 00:42:40 +0100
committerGitHub <noreply@github.com>2021-02-25 15:42:40 -0800
commit44530588628d4a7b12e76b332d03b5b5cab60378 (patch)
tree5293b37c3e4b8af38b7955fff075146dfc258881 /var/spack/repos/builtin.mock/packages/external-common-python
parent476444c59244125aed5b1522fdcb33c2cd2f0f9b (diff)
downloadspack-44530588628d4a7b12e76b332d03b5b5cab60378.tar.gz
spack-44530588628d4a7b12e76b332d03b5b5cab60378.tar.bz2
spack-44530588628d4a7b12e76b332d03b5b5cab60378.tar.xz
spack-44530588628d4a7b12e76b332d03b5b5cab60378.zip
Old concretizer: prevent unexpected propagation of external config (#20976)
When using an external package with the old concretizer, all dependencies of that external package were severed. This was not performed bidirectionally though, so for an external package W with a dependency on Z, if some other package Y depended on Z, Z could still pull properties (e.g. compiler) from W since it was not severed as a parent dependency. This performs the severing bidirectionally, and adds tests to confirm expected behavior when using config from DAG-adjacent packages during concretization.
Diffstat (limited to 'var/spack/repos/builtin.mock/packages/external-common-python')
-rw-r--r--var/spack/repos/builtin.mock/packages/external-common-python/package.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/var/spack/repos/builtin.mock/packages/external-common-python/package.py b/var/spack/repos/builtin.mock/packages/external-common-python/package.py
new file mode 100644
index 0000000000..900f375d0d
--- /dev/null
+++ b/var/spack/repos/builtin.mock/packages/external-common-python/package.py
@@ -0,0 +1,15 @@
+# Copyright 2013-2021 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 import *
+
+
+class ExternalCommonPython(Package):
+ homepage = "http://www.python.org"
+ url = "http://www.python.org/ftp/python/3.8.7/Python-3.8.7.tgz"
+
+ version('3.8.7', 'be78e48cdfc1a7ad90efff146dce6cfe')
+ depends_on('external-common-openssl')
+ depends_on('external-common-gdbm')