spack.hooks package¶
This package contains modules with hooks for various stages in the Spack install process. You can add modules here and they’ll be executed by package at various times during the package lifecycle.
Each hook is just a function that takes a package as a parameter. Hooks are not executed in any particular order.
Currently the following hooks are supported:
pre_install(spec)post_install(spec, explicit)pre_uninstall(spec)post_uninstall(spec)
This can be used to implement support for things like module systems (e.g. modules, lmod, etc.) or to add other custom features.
Submodules¶
spack.hooks.absolutify_elf_sonames module¶
Bases:
BaseDirectoryVisitorVisitor that collects all shared libraries in a prefix, with the exception of an exclude list.
Return True from this function to recurse into the directory at os.path.join(root, rel_path). Return False in order not to recurse further.
- Parameters:
root – root directory
rel_path – relative path to current directory from
rootdepth – depth of current directory from the
rootdirectory
- Returns:
Truewhen the directory should be recursed into.Falsewhen not- Return type:
Return
Trueto recurse into the symlinked directory andFalsein order not to. Note:rel_pathis the path to the symlink itself. Following symlinked directories blindly can cause infinite recursion due to cycles.- Parameters:
root – root directory
rel_path – relative path to current symlink from
rootdepth – depth of current symlink from the
rootdirectory
- Returns:
Truewhen the directory should be recursed into.Falsewhen not- Return type:
Get the libraries that should be patched, with the excluded libraries removed.
Handle the non-symlink file at
os.path.join(root, rel_path)- Parameters:
root – root directory
rel_path – relative path to current file from
rootdepth (int) – depth of current file from the
rootdirectory
Handle the symlink to a file at
os.path.join(root, rel_path). Note:rel_pathis the location of the symlink, not to what it is pointing to. The symlink may be dangling.- Parameters:
root – root directory
rel_path – relative path to current symlink from
rootdepth – depth of current symlink from the
rootdirectory
Return true if filepath is most a shared library. Our definition of a shared library for ELF requires: 1. a dynamic section, 2. a soname OR lack of interpreter. The problem is that PIE objects (default on Ubuntu) are ET_DYN too, and not all shared libraries have a soname… no interpreter is typically the best indicator then.
spack.hooks.autopush module¶
spack.hooks.drop_redundant_rpaths module¶
- class spack.hooks.drop_redundant_rpaths.ElfFilesWithRPathVisitor[source]¶
Bases:
BaseDirectoryVisitorVisitor that collects all elf files that have an rpath
- before_visit_dir(root, rel_path, depth)[source]¶
Return True from this function to recurse into the directory at os.path.join(root, rel_path). Return False in order not to recurse further.
- Parameters:
root – root directory
rel_path – relative path to current directory from
rootdepth – depth of current directory from the
rootdirectory
- Returns:
Truewhen the directory should be recursed into.Falsewhen not- Return type:
- before_visit_symlinked_dir(root, rel_path, depth)[source]¶
Return
Trueto recurse into the symlinked directory andFalsein order not to. Note:rel_pathis the path to the symlink itself. Following symlinked directories blindly can cause infinite recursion due to cycles.- Parameters:
root – root directory
rel_path – relative path to current symlink from
rootdepth – depth of current symlink from the
rootdirectory
- Returns:
Truewhen the directory should be recursed into.Falsewhen not- Return type:
- visit_file(root, rel_path, depth)[source]¶
Handle the non-symlink file at
os.path.join(root, rel_path)- Parameters:
root – root directory
rel_path – relative path to current file from
rootdepth (int) – depth of current file from the
rootdirectory
- visit_symlinked_file(root, rel_path, depth)[source]¶
Handle the symlink to a file at
os.path.join(root, rel_path). Note:rel_pathis the location of the symlink, not to what it is pointing to. The symlink may be dangling.- Parameters:
root – root directory
rel_path – relative path to current symlink from
rootdepth – depth of current symlink from the
rootdirectory
spack.hooks.licensing module¶
- spack.hooks.licensing.post_install(spec, explicit=None)[source]¶
This hook symlinks local licenses to the global license for licensed software.
- spack.hooks.licensing.pre_install(spec)[source]¶
This hook handles global license setup for licensed software.
- spack.hooks.licensing.set_up_license(pkg)[source]¶
Prompt the user, letting them know that a license is required.
For packages that rely on license files, a global license file is created and opened for editing.
For packages that rely on environment variables to point to a license, a warning message is printed.
For all other packages, documentation on how to set up a license is printed.
spack.hooks.module_file_generation module¶
spack.hooks.permissions_setters module¶
spack.hooks.sbang module¶
- exception spack.hooks.sbang.SbangPathError(message: str, long_message: str | None = None)[source]¶
Bases:
SpackErrorRaised when the install tree root is too long for sbang to work.
- spack.hooks.sbang.filter_shebang(path)[source]¶
Adds a second shebang line, using sbang, at the beginning of a file, if necessary. Note: Spack imposes a relaxed shebang line limit, meaning that a newline or end of file must occur before
spack_shebang_limitbytes. If not, the file is not patched.
- spack.hooks.sbang.post_install(spec, explicit=None)[source]¶
This hook edits scripts so that they call /bin/bash $spack_prefix/bin/sbang instead of something longer than the shebang limit.
- spack.hooks.sbang.sbang_install_path()[source]¶
Location sbang is installed within the install tree.
- spack.hooks.sbang.sbang_shebang_line()[source]¶
Full shebang line that should be prepended to files to use sbang.
The line returned does not have a final newline (caller should add it if needed).
This should be the only place in Spack that knows about what interpreter we use for
sbang.
- spack.hooks.sbang.spack_shebang_limit¶
Spack itself also limits the shebang line to at most 4KB, which should be plenty.