summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/view-dir-file/package.py
diff options
context:
space:
mode:
authorHarmen Stoppels <harmenstoppels@gmail.com>2022-03-24 10:54:33 +0100
committerGitHub <noreply@github.com>2022-03-24 03:54:33 -0600
commit59e522e8154e28d7af3f0cc8538e5a94d1345352 (patch)
tree04b4ce3b4cb81c1a0f5bf8cbec11dc98e01a1051 /var/spack/repos/builtin.mock/packages/view-dir-file/package.py
parent011a8b3f3ec044ab906597ca39e53639a6bf1df6 (diff)
downloadspack-59e522e8154e28d7af3f0cc8538e5a94d1345352.tar.gz
spack-59e522e8154e28d7af3f0cc8538e5a94d1345352.tar.bz2
spack-59e522e8154e28d7af3f0cc8538e5a94d1345352.tar.xz
spack-59e522e8154e28d7af3f0cc8538e5a94d1345352.zip
environment views: single pass view generation (#29443)
Reduces the number of stat calls to a bare minimum: - Single pass over src prefixes - Handle projection clashes in memory Symlinked directories in the src prefixes are now conditionally transformed into directories with symlinks in the dst dir. Notably `intel-mkl`, `cuda` and `qt` has top-level symlinked directories that previously resulted in empty directories in the view. We now avoid cycles and possible exponential blowup by only expanding symlinks that: - point to dirs deeper in the folder structure; - are a fixed depth of 2.
Diffstat (limited to 'var/spack/repos/builtin.mock/packages/view-dir-file/package.py')
-rw-r--r--var/spack/repos/builtin.mock/packages/view-dir-file/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin.mock/packages/view-dir-file/package.py b/var/spack/repos/builtin.mock/packages/view-dir-file/package.py
new file mode 100644
index 0000000000..a47e02ca24
--- /dev/null
+++ b/var/spack/repos/builtin.mock/packages/view-dir-file/package.py
@@ -0,0 +1,20 @@
+# 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)
+
+import os
+
+
+class ViewDirFile(Package):
+ """Installs a <prefix>/bin/x where x is a file, in contrast to view-dir-dir"""
+ homepage = "http://www.spack.org"
+ url = "http://www.spack.org/downloads/aml-1.0.tar.gz"
+ has_code = False
+
+ version('0.1.0', sha256='cc89a8768693f1f11539378b21cdca9f0ce3fc5cb564f9b3e4154a051dcea69b')
+
+ def install(self, spec, prefix):
+ os.mkdir(os.path.join(prefix, 'bin'))
+ with open(os.path.join(prefix, 'bin', 'x'), 'wb') as f:
+ f.write(b'file')