From: "Collin J. Doering" <collin@rekahsoft.ca>
To: 37365@debbugs.gnu.org
Subject: [bug#37365] [PATCH] - Amendment #2: and copyright line and sign message with gpg
Date: Tue, 10 Sep 2019 10:37:10 -0400 [thread overview]
Message-ID: <87r24o2p61.fsf@rekahsoft.ca> (raw)
In-Reply-To: <87tv9k3ks0.fsf@rekahsoft.ca>
[-- Attachment #1: Type: text/plain, Size: 123 bytes --]
I apologize for the churn on this patch. I had forgotten a Copyright
line at the top of the modified file.
Kind regards,
[-- Attachment #2.1: Type: text/plain, Size: 0 bytes --]
[-- Attachment #2.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]
[-- Attachment #3: zsh-autosuggestions package patch (Ammendment 2) [1/1] --]
[-- Type: text/x-patch, Size: 2661 bytes --]
From 54f0a4c9daae8ee38e3e575264fee1c5ffcfe54a Mon Sep 17 00:00:00 2001
From: "Collin J. Doering" <collin@rekahsoft.ca>
Date: Tue, 10 Sep 2019 10:31:34 -0400
Subject: [PATCH] gnu: Add zsh-autosuggestions
* gnu/packages/shellutils.scm (zsh-autosuggestions): New variable.
Signed-off-by: Collin J. Doering <collin@rekahsoft.ca>
---
gnu/packages/shellutils.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/shellutils.scm b/gnu/packages/shellutils.scm
index f7542ea759..f8227424e3 100644
--- a/gnu/packages/shellutils.scm
+++ b/gnu/packages/shellutils.scm
@@ -5,6 +5,7 @@
;;; Copyright © 2017 Stefan Reichör <stefan@xsteve.at>
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2018 Benjamin Slade <slade@jnanam.net>
+;;; Copyright © 2019 Collin J. Doering <collin@rekahsoft.ca>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -228,3 +229,38 @@ commands that are obsolete or contain a piece of sensitive information) or
bookmark your favourite commands.")
(home-page "http://me.mindforger.com/projects/hh.html")
(license license:asl2.0)))
+
+(define-public zsh-autosuggestions
+ (package
+ (name "zsh-autosuggestions")
+ (version "0.6.3")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/zsh-users/zsh-autosuggestions.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1h8h2mz9wpjpymgl2p7pc146c1jgb3dggpvzwm9ln3in336wl95c"))))
+ (build-system gnu-build-system)
+ (arguments
+ '(#:phases
+ (modify-phases %standard-phases
+ (delete 'configure)
+ (delete 'check)
+ (replace 'install
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (install-path (string-append
+ out "/share/zsh/plugins/zsh-autosuggestions")))
+ (mkdir-p install-path)
+ (invoke "make" "all")
+ (copy-file "zsh-autosuggestions.zsh"
+ (string-append install-path "/zsh-autosuggestions.zsh"))))))))
+ (synopsis "Fish-like autosuggestions for zsh")
+ (description
+ "Fish-like fast/unobtrusive autosuggestions for zsh. It suggests commands
+as you type.")
+ (home-page "https://github.com/zsh-users/zsh-autosuggestions.git")
+ (license license:expat)))
--
2.23.0
[-- Attachment #4: Type: text/plain, Size: 92 bytes --]
--
Collin J. Doering
http://rekahsoft.ca
http://blog.rekahsoft.ca
http://git.rekahsoft.ca
next prev parent reply other threads:[~2019-09-10 14:38 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-09-10 3:14 [bug#37365] [PATCH] Add package zsh-autosuggestions Collin J. Doering
2019-09-10 3:27 ` [bug#37365] [PATCH] Ammendment - zsh-autosuggestions Collin J. Doering
2019-09-10 14:37 ` Collin J. Doering [this message]
2019-09-11 3:18 ` [bug#37365] [PATCH] - Amendment: Enable tests Collin J. Doering
2019-09-11 7:37 ` Efraim Flashner
2019-09-12 21:15 ` Collin J. Doering
2019-09-13 12:47 ` bug#37365: " Efraim Flashner
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87r24o2p61.fsf@rekahsoft.ca \
--to=collin@rekahsoft.ca \
--cc=37365@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.