diff options
author | Greg Becker <becker33@llnl.gov> | 2020-06-29 11:15:56 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-29 11:15:56 -0500 |
commit | d71fdc9719f716347bb4d61e26e00368466f3aa4 (patch) | |
tree | 9a375d8ae3c6c476da914d2657ff48b456ea4664 /lib | |
parent | b07d38b3be43391186ee785f634ec73eab50c4e9 (diff) | |
download | spack-d71fdc9719f716347bb4d61e26e00368466f3aa4.tar.gz spack-d71fdc9719f716347bb4d61e26e00368466f3aa4.tar.bz2 spack-d71fdc9719f716347bb4d61e26e00368466f3aa4.tar.xz spack-d71fdc9719f716347bb4d61e26e00368466f3aa4.zip |
remove three commands that have been deprecated since v0.13.0 (#17291)
* remove three commands that have been deprecated since v0.13.0
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/cmd/build.py | 45 | ||||
-rw-r--r-- | lib/spack/spack/cmd/configure.py | 85 | ||||
-rw-r--r-- | lib/spack/spack/cmd/diy.py | 20 |
3 files changed, 0 insertions, 150 deletions
diff --git a/lib/spack/spack/cmd/build.py b/lib/spack/spack/cmd/build.py deleted file mode 100644 index a56c37fdd4..0000000000 --- a/lib/spack/spack/cmd/build.py +++ /dev/null @@ -1,45 +0,0 @@ -# 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) - -import spack.cmd.configure as cfg -import llnl.util.tty as tty - -from spack.build_systems.autotools import AutotoolsPackage -from spack.build_systems.cmake import CMakePackage -from spack.build_systems.qmake import QMakePackage -from spack.build_systems.scons import SConsPackage -from spack.build_systems.waf import WafPackage -from spack.build_systems.python import PythonPackage -from spack.build_systems.perl import PerlPackage -from spack.build_systems.meson import MesonPackage -from spack.build_systems.sip import SIPPackage - -description = 'DEPRECATED: stops at build stage when installing a package' -section = "build" -level = "long" - - -build_system_to_phase = { - AutotoolsPackage: 'build', - CMakePackage: 'build', - QMakePackage: 'build', - SConsPackage: 'build', - WafPackage: 'build', - PythonPackage: 'build', - PerlPackage: 'build', - MesonPackage: 'build', - SIPPackage: 'build', -} - - -def setup_parser(subparser): - cfg.setup_parser(subparser) - - -def build(parser, args): - tty.warn("This command is deprecated. Use `spack install --until` to" - " select an end phase instead. The `spack build` command will be" - " removed in a future version of Spack") - cfg._stop_at_phase_during_install(args, build, build_system_to_phase) diff --git a/lib/spack/spack/cmd/configure.py b/lib/spack/spack/cmd/configure.py deleted file mode 100644 index 3df3c87413..0000000000 --- a/lib/spack/spack/cmd/configure.py +++ /dev/null @@ -1,85 +0,0 @@ -# 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) - -import argparse - -import llnl.util.tty as tty -import spack.cmd -import spack.cmd.common.arguments as arguments -import spack.cmd.install as inst - -from spack.build_systems.autotools import AutotoolsPackage -from spack.build_systems.cmake import CMakePackage -from spack.build_systems.qmake import QMakePackage -from spack.build_systems.waf import WafPackage -from spack.build_systems.perl import PerlPackage -from spack.build_systems.intel import IntelPackage -from spack.build_systems.meson import MesonPackage -from spack.build_systems.sip import SIPPackage - -description = 'DEPRECATED: stage and configure a package but do not install' -section = "build" -level = "long" - - -build_system_to_phase = { - AutotoolsPackage: 'configure', - CMakePackage: 'cmake', - QMakePackage: 'qmake', - WafPackage: 'configure', - PerlPackage: 'configure', - IntelPackage: 'configure', - MesonPackage: 'meson', - SIPPackage: 'configure', -} - - -def setup_parser(subparser): - subparser.add_argument( - '-v', '--verbose', - action='store_true', - help="print additional output during builds" - ) - arguments.add_common_arguments(subparser, ['spec']) - - -def _stop_at_phase_during_install(args, calling_fn, phase_mapping): - if not args.package: - tty.die("configure requires at least one package argument") - - # TODO: to be refactored with code in install - specs = spack.cmd.parse_specs(args.package, concretize=True) - if len(specs) != 1: - tty.error('only one spec can be installed at a time.') - spec = specs.pop() - pkg = spec.package - try: - key = [cls for cls in phase_mapping if isinstance(pkg, cls)].pop() - phase = phase_mapping[key] - # Install package dependencies if needed - parser = argparse.ArgumentParser() - inst.setup_parser(parser) - tty.msg('Checking dependencies for {0}'.format(args.spec[0])) - cli_args = ['-v'] if args.verbose else [] - install_args = parser.parse_args(cli_args + ['--only=dependencies']) - install_args.spec = args.spec - inst.install(parser, install_args) - # Install package and stop at the given phase - cli_args = ['-v'] if args.verbose else [] - install_args = parser.parse_args(cli_args + ['--only=package']) - install_args.spec = args.spec - inst.install(parser, install_args, stop_at=phase) - except IndexError: - tty.error( - 'Package {0} has no {1} phase, or its {1} phase is not separated from install'.format( # NOQA: ignore=E501 - spec.name, calling_fn.__name__) - ) - - -def configure(parser, args): - tty.warn("This command is deprecated. Use `spack install --until` to" - " select an end phase instead. The `spack configure` command will" - " be removed in a future version of Spack.") - _stop_at_phase_during_install(args, configure, build_system_to_phase) diff --git a/lib/spack/spack/cmd/diy.py b/lib/spack/spack/cmd/diy.py deleted file mode 100644 index 186745d80c..0000000000 --- a/lib/spack/spack/cmd/diy.py +++ /dev/null @@ -1,20 +0,0 @@ -# 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) -import spack.cmd.dev_build -import llnl.util.tty as tty - -description = "DEPRECATED: do-it-yourself: build from local source directory" -section = "build" -level = "long" - - -def setup_parser(subparser): - spack.cmd.dev_build.setup_parser(subparser) - - -def diy(self, args): - tty.warn("`spack diy` has been renamed to `spack dev-build`." - "The `diy` command will be removed in a future version of Spack") - spack.cmd.dev_build.dev_build(self, args) |