emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#45500: closed ([PATCH] gnu: borg: Install shell completions.)


From: GNU bug Tracking System
Subject: bug#45500: closed ([PATCH] gnu: borg: Install shell completions.)
Date: Wed, 30 Dec 2020 22:56:01 +0000

Your message dated Wed, 30 Dec 2020 17:55:33 -0500
with message-id <X+0FZSqz/j6l+7px@jasmine.lan>
and subject line Re: [bug#45500] [PATCH] gnu: borg: Install shell completions.
has caused the debbugs.gnu.org bug report #45500,
regarding [PATCH] gnu: borg: Install shell completions.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
45500: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=45500
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: borg: Install shell completions. Date: Mon, 28 Dec 2020 14:36:22 +0100
* gnu/packages/backup.scm (borg)[arguments]: Add phase to install shell 
completions.
---
 gnu/packages/backup.scm | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm
index 892b92dc2f..0db2c47b2d 100644
--- a/gnu/packages/backup.scm
+++ b/gnu/packages/backup.scm
@@ -17,6 +17,7 @@
 ;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
 ;;; Copyright © 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
 ;;; Copyright © 2020 Marcin Karpezo <sirmacik@wioo.waw.pl>
+;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -670,6 +671,19 @@ detection, and lossless compression.")
                            "docs/misc/internals-picture.txt"
                            "docs/misc/prune-example.txt"))
                (copy-recursively "docs/man" man)
+               #t)))
+         (add-after 'install-docs 'install-shell-completions
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (etc (string-append out "/etc"))
+                    (share (string-append out "/share")))
+               (with-directory-excursion "scripts/shell_completions"
+                 (install-file "bash/borg"
+                               (string-append etc "/bash_completion.d"))
+                 (install-file "zsh/_borg"
+                               (string-append share "/zsh/site-functions"))
+                 (install-file "fish/borg.fish"
+                               (string-append share 
"/fish/vendor_completions.d")))
                #t))))))
     (native-inputs
      `(("python-cython" ,python-cython)
-- 
2.29.2




--- End Message ---
--- Begin Message --- Subject: Re: [bug#45500] [PATCH] gnu: borg: Install shell completions. Date: Wed, 30 Dec 2020 17:55:33 -0500
On Mon, Dec 28, 2020 at 02:36:22PM +0100, Michael Rohleder wrote:
> * gnu/packages/backup.scm (borg)[arguments]: Add phase to install shell 
> completions.

Thanks! Pushed as 9d6863de245fc061f24693b58ce87e73fe299d31


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]