|
86 | 86 | from easybuild.tools.filetools import get_cwd, get_source_tarball_from_git, is_alt_pypi_url |
87 | 87 | from easybuild.tools.filetools import is_binary, is_sha256_checksum, mkdir, move_file, move_logs, read_file, remove_dir |
88 | 88 | from easybuild.tools.filetools import remove_file, remove_lock, verify_checksum, weld_paths, write_file, symlink |
89 | | -from easybuild.tools.hooks import BUILD_STEP, CLEANUP_STEP, CONFIGURE_STEP, EXTENSIONS_STEP, FETCH_STEP, INSTALL_STEP |
90 | | -from easybuild.tools.hooks import MODULE_STEP, MODULE_WRITE, PACKAGE_STEP, PATCH_STEP, PERMISSIONS_STEP, POSTITER_STEP |
91 | | -from easybuild.tools.hooks import POSTPROC_STEP, PREPARE_STEP, READY_STEP, SANITYCHECK_STEP, SOURCE_STEP |
92 | | -from easybuild.tools.hooks import SINGLE_EXTENSION, TEST_STEP, TESTCASES_STEP, load_hooks, run_hook |
| 89 | +from easybuild.tools.hooks import ( |
| 90 | + BUILD_STEP, CLEANUP_STEP, CONFIGURE_STEP, EXTENSIONS_STEP, EXTRACT_STEP, FETCH_STEP, INSTALL_STEP, MODULE_STEP, |
| 91 | + MODULE_WRITE, PACKAGE_STEP, PATCH_STEP, PERMISSIONS_STEP, POSTITER_STEP, POSTPROC_STEP, PREPARE_STEP, READY_STEP, |
| 92 | + SANITYCHECK_STEP, SINGLE_EXTENSION, TEST_STEP, TESTCASES_STEP, load_hooks, run_hook, |
| 93 | +) |
93 | 94 | from easybuild.tools.run import RunShellCmdError, raise_run_shell_cmd_error, run_shell_cmd |
94 | 95 | from easybuild.tools.jenkins import write_to_xml |
95 | 96 | from easybuild.tools.module_generator import ModuleGeneratorLua, ModuleGeneratorTcl, module_generator, dependencies_for |
@@ -4156,7 +4157,7 @@ def install_step_spec(initial): |
4156 | 4157 | # format for step specifications: (step_name, description, list of functions, skippable) |
4157 | 4158 |
|
4158 | 4159 | # core steps that are part of the iterated loop |
4159 | | - extract_step_spec = (SOURCE_STEP, "unpacking", [lambda x: x.extract_step], True) |
| 4160 | + extract_step_spec = (EXTRACT_STEP, "unpacking", [lambda x: x.extract_step], True) |
4160 | 4161 | patch_step_spec = (PATCH_STEP, 'patching', [lambda x: x.patch_step], True) |
4161 | 4162 | prepare_step_spec = (PREPARE_STEP, 'preparing', [lambda x: x.prepare_step], False) |
4162 | 4163 | configure_step_spec = (CONFIGURE_STEP, 'configuring', [lambda x: x.configure_step], True) |
|
0 commit comments