gnu: emacs-bash-completion: Update to 3.1.1.

* gnu/packages/emacs-xyz.scm (emacs-bash-completion): Update to 3.1.1.
[description]: Use proper capitalization.
This commit is contained in:
Nicolas Goaziou 2023-01-27 22:40:52 +01:00
parent f6b0023be5
commit 25a9a26e0f
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -19072,43 +19072,38 @@ Slack client.")
(license license:gpl3+)))) (license license:gpl3+))))
(define-public emacs-bash-completion (define-public emacs-bash-completion
;; Need to use a newer commit than the latest version in order to support (package
;; completion interfaces that alters the candidate list provided by the (name "emacs-bash-completion")
;; package (version "3.1.1")
(let ((commit "c5eaeed156ab906190c662d491269230967104b1") (source
(revision "0")) (origin
(package (method git-fetch)
(name "emacs-bash-completion") (uri (git-reference
(version (git-version "3.1.0" revision commit)) (url "https://github.com/szermatt/emacs-bash-completion")
(source (commit (string-append "v" version))))
(origin (file-name (git-file-name name version))
(method git-fetch) (sha256
(uri (git-reference (base32 "0cly0m6msn8xv9857nv4syw8fldqzvsa4kciq7av40y26a61hvrh"))))
(url "https://github.com/szermatt/emacs-bash-completion") (build-system emacs-build-system)
(commit commit))) (arguments
(file-name (git-file-name name version)) (list
(sha256 #:phases
(base32 "0r221iirqsbz13s76r68i496izbirrvcw8ql3wsh205zmxa3jqg1")))) #~(modify-phases %standard-phases
(inputs (list bash)) (add-after 'unpack 'make-git-checkout-writable
(build-system emacs-build-system) (λ _
(arguments (for-each make-file-writable (find-files "."))))
(list (add-before 'install 'configure
#:phases (lambda* (#:key inputs #:allow-other-keys)
#~(modify-phases %standard-phases (emacs-substitute-variables "bash-completion.el"
(add-after 'unpack 'make-git-checkout-writable ("bash-completion-prog"
(λ _ (search-input-file inputs "/bin/bash"))))))))
(for-each make-file-writable (find-files ".")))) (inputs (list bash))
(add-before 'install 'configure (home-page "https://github.com/szermatt/emacs-bash-completion")
(lambda* (#:key inputs #:allow-other-keys) (synopsis "Bash completion for the shell buffer")
(emacs-substitute-variables "bash-completion.el" (description
("bash-completion-prog" "Bash Completion defines dynamic completion hooks for Shell mode and
(search-input-file inputs "/bin/bash")))))))) @code{shell-command} prompts that are based on Bash completion.")
(home-page "https://github.com/szermatt/emacs-bash-completion") (license license:gpl2+)))
(synopsis "Bash completion for the shell buffer")
(description
"@code{bash-completion} defines dynamic completion hooks for shell-mode
and shell-command prompts that are based on Bash completion.")
(license license:gpl2+))))
(define-public emacs-easy-kill (define-public emacs-easy-kill
(package (package