diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2021-02-09 12:51:18 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-09 13:51:18 -0500 |
commit | 7ccb9992a626b6292bb1b8d9a4dee42004dc74c9 (patch) | |
tree | b8a498cc3f6d8953d4e4c90ae137699b09713ed4 /share | |
parent | e5ab686d77d857a26311aadbc63e897419af7770 (diff) | |
download | spack-7ccb9992a626b6292bb1b8d9a4dee42004dc74c9.tar.gz spack-7ccb9992a626b6292bb1b8d9a4dee42004dc74c9.tar.bz2 spack-7ccb9992a626b6292bb1b8d9a4dee42004dc74c9.tar.xz spack-7ccb9992a626b6292bb1b8d9a4dee42004dc74c9.zip |
Procedure to deprecate old versions of software (#20767)
* Procedure to deprecate old versions of software
* Add documentation
* Fix bug in logic
* Update tab completion
* Deprecate legacy packages
* Deprecate old mxnet as well
* More explicit docs
Diffstat (limited to 'share')
-rwxr-xr-x | share/spack/spack-completion.bash | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/share/spack/spack-completion.bash b/share/spack/spack-completion.bash index 4a76c2898c..ea4a630691 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -732,7 +732,7 @@ _spack_deprecate() { _spack_dev_build() { if $list_options then - SPACK_COMPREPLY="-h --help -j --jobs -d --source-path -i --ignore-dependencies -n --no-checksum --keep-prefix --skip-patch -q --quiet --drop-in --test -b --before -u --until --clean --dirty" + SPACK_COMPREPLY="-h --help -j --jobs -d --source-path -i --ignore-dependencies -n --no-checksum --deprecated --keep-prefix --skip-patch -q --quiet --drop-in --test -b --before -u --until --clean --dirty" else _all_packages fi @@ -895,7 +895,7 @@ _spack_external_list() { _spack_fetch() { if $list_options then - SPACK_COMPREPLY="-h --help -n --no-checksum -m --missing -D --dependencies" + SPACK_COMPREPLY="-h --help -n --no-checksum --deprecated -m --missing -D --dependencies" else _all_packages fi @@ -1033,7 +1033,7 @@ _spack_info() { _spack_install() { if $list_options then - SPACK_COMPREPLY="-h --help --only -u --until -j --jobs --overwrite --fail-fast --keep-prefix --keep-stage --dont-restage --use-cache --no-cache --cache-only --include-build-deps --no-check-signature --require-full-hash-match --show-log-on-error --source -n --no-checksum -v --verbose --fake --only-concrete -f --file --clean --dirty --test --run-tests --log-format --log-file --help-cdash --cdash-upload-url --cdash-build --cdash-site --cdash-track --cdash-buildstamp -y --yes-to-all" + SPACK_COMPREPLY="-h --help --only -u --until -j --jobs --overwrite --fail-fast --keep-prefix --keep-stage --dont-restage --use-cache --no-cache --cache-only --include-build-deps --no-check-signature --require-full-hash-match --show-log-on-error --source -n --no-checksum --deprecated -v --verbose --fake --only-concrete -f --file --clean --dirty --test --run-tests --log-format --log-file --help-cdash --cdash-upload-url --cdash-build --cdash-site --cdash-track --cdash-buildstamp -y --yes-to-all" else _all_packages fi @@ -1117,7 +1117,7 @@ _spack_mark() { _spack_mirror() { if $list_options then - SPACK_COMPREPLY="-h --help -n --no-checksum" + SPACK_COMPREPLY="-h --help -n --no-checksum --deprecated" else SPACK_COMPREPLY="create add remove rm set-url list" fi @@ -1283,7 +1283,7 @@ _spack_module_tcl_loads() { _spack_patch() { if $list_options then - SPACK_COMPREPLY="-h --help -n --no-checksum" + SPACK_COMPREPLY="-h --help -n --no-checksum --deprecated" else _all_packages fi @@ -1502,7 +1502,7 @@ _spack_spec() { _spack_stage() { if $list_options then - SPACK_COMPREPLY="-h --help -n --no-checksum -p --path" + SPACK_COMPREPLY="-h --help -n --no-checksum --deprecated -p --path" else _all_packages fi |