mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: bash-completion: Remove util-linux overrides.
These completions are deprecated or removed upstream, and bash-completion defers to upstream completions. * gnu/packages/bash.scm (bash-completion)[native-inputs]: Remove field. [arguments]: Remove field.
This commit is contained in:
parent
675c5c9bbd
commit
decdb5a59d
1 changed files with 1 additions and 28 deletions
|
@ -310,35 +310,8 @@ (define-public bash-completion
|
|||
(patches
|
||||
(search-patches "bash-completion-directories.patch"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs (list util-linux))
|
||||
(arguments
|
||||
`(#:tests? #f ; Unclear how to make tests pass.
|
||||
#:phases (modify-phases %standard-phases
|
||||
(add-after
|
||||
'install 'remove-redundant-completions
|
||||
(lambda* (#:key
|
||||
inputs native-inputs
|
||||
outputs #:allow-other-keys)
|
||||
;; Util-linux comes with a bunch of completion files for
|
||||
;; its own commands which are more sophisticated and
|
||||
;; up-to-date than those of bash-completion. Remove those
|
||||
;; from bash-completion.
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(util-linux (assoc-ref (or native-inputs inputs)
|
||||
"util-linux"))
|
||||
(completions (string-append out
|
||||
"/share/bash-completion"
|
||||
"/completions"))
|
||||
(already (find-files
|
||||
(string-append
|
||||
util-linux
|
||||
"/etc/bash_completion.d"))))
|
||||
(with-directory-excursion completions
|
||||
(for-each (lambda (file)
|
||||
(when (file-exists? file)
|
||||
(delete-file file)))
|
||||
(map basename already)))
|
||||
#t))))))
|
||||
`(#:tests? #f)) ; Unclear how to make tests pass.
|
||||
(synopsis "Bash completions for common commands")
|
||||
(description
|
||||
"This package provides extensions that allow Bash to provide adapted
|
||||
|
|
Loading…
Reference in a new issue