From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:52814) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i7hHT-0002Ty-W5 for guix-patches@gnu.org; Tue, 10 Sep 2019 10:38:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i7hHS-0001v1-0S for guix-patches@gnu.org; Tue, 10 Sep 2019 10:38:07 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:60958) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1i7hHP-0001u4-1k for guix-patches@gnu.org; Tue, 10 Sep 2019 10:38:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1i7hHO-0007fs-GL for guix-patches@gnu.org; Tue, 10 Sep 2019 10:38:02 -0400 Subject: [bug#37365] [PATCH] - Amendment #2: and copyright line and sign message with gpg References: <87tv9k3ks0.fsf@rekahsoft.ca> In-Reply-To: <87tv9k3ks0.fsf@rekahsoft.ca> Resent-Message-ID: From: "Collin J. Doering" Date: Tue, 10 Sep 2019 10:37:10 -0400 Message-ID: <87r24o2p61.fsf@rekahsoft.ca> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 37365@debbugs.gnu.org --=-=-= Content-Type: text/plain I apologize for the churn on this patch. I had forgotten a Copyright line at the top of the modified file. Kind regards, --=-=-= Content-Type: multipart/signed; boundary="==-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" --==-=-= Content-Type: text/plain --==-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEE+NVG868371PRtki+e03rkyErMCIFAl13tRYACgkQe03rkyEr MCKdCwf+Ntu4se6+SRzdXywhExMgYcKMrT5ESNroXYCjc/K+Nv7kX6khPLqkNYIK 3LSw92jEni/V3/+yX5dNbnu36iVEZn0OjhmQ+Hdf9F+D4p0rAZaUyd8oGAuAhUxa betRxy4UZ6PBFHADuJogFAgmOEK35rcfH9/RyXJyXvAXGyZNRIodceic+Rw8mpyh vA5Whh6p4V9YQR4QGO5TtvYf/XWcx2k3aR1lE3tBW9S3wd1jHapQOLqPiDkzBnr9 d2yO7I5gZZG3Cwt+oiAxl7ml8dPa5akTO9pkqxF3CoFZqJHxKOW/31MXt218ByOe CsMk4g2H8TGsqLU6QeqwYv7shTzLEA== =XKdF -----END PGP SIGNATURE----- --==-=-=-- --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: attachment; filename=0001-gnu-Add-zsh-autosuggestions.patch Content-Transfer-Encoding: quoted-printable Content-Description: zsh-autosuggestions package patch (Ammendment 2) [1/1] >From 54f0a4c9daae8ee38e3e575264fee1c5ffcfe54a Mon Sep 17 00:00:00 2001 From: "Collin J. Doering" 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 --- 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 =C2=A9 2017 Stefan Reich=C3=B6r ;;; Copyright =C2=A9 2018 Tobias Geerinckx-Rice ;;; Copyright =C2=A9 2018 Benjamin Slade +;;; Copyright =C2=A9 2019 Collin J. Doering ;;; ;;; This file is part of GNU Guix. ;;; @@ -228,3 +229,38 @@ commands that are obsolete or contain a piece of sensi= tive 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-autosuggest= ions"))) + (mkdir-p install-path) + (invoke "make" "all") + (copy-file "zsh-autosuggestions.zsh" + (string-append install-path "/zsh-autosuggestion= s.zsh")))))))) + (synopsis "Fish-like autosuggestions for zsh") + (description + "Fish-like fast/unobtrusive autosuggestions for zsh. It suggests com= mands +as you type.") + (home-page "https://github.com/zsh-users/zsh-autosuggestions.git") + (license license:expat))) --=20 2.23.0 --=-=-= Content-Type: text/plain -- Collin J. Doering http://rekahsoft.ca http://blog.rekahsoft.ca http://git.rekahsoft.ca --=-=-=--