From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:48346) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i8hHH-0006WB-PP for guix-patches@gnu.org; Fri, 13 Sep 2019 04:50:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i8hHG-00060s-N0 for guix-patches@gnu.org; Fri, 13 Sep 2019 04:50:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:35494) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1i8hHG-00060k-Fl for guix-patches@gnu.org; Fri, 13 Sep 2019 04:50:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1i8hHG-0003Rg-Br for guix-patches@gnu.org; Fri, 13 Sep 2019 04:50:02 -0400 Subject: [bug#37364] [PATCH 1/1] gnu: Add z for zsh Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <87woeg3mcy.fsf@rekahsoft.ca> <87v9u03m3m.fsf@rekahsoft.ca> <87d0g7vx6y.fsf@gnu.org> <87lfuu2on5.fsf@rekahsoft.ca> Date: Fri, 13 Sep 2019 10:47:45 +0200 In-Reply-To: <87lfuu2on5.fsf@rekahsoft.ca> (Collin J. Doering's message of "Wed, 11 Sep 2019 23:13:02 -0400") Message-ID: <87r24k8tvy.fsf@gnu.org> 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: "Collin J. Doering" Cc: 37364@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello, "Collin J. Doering" skribis: > From f5fd56da740cd2576def4c01c3cc7003f1c9f2d7 Mon Sep 17 00:00:00 2001 > From: "Collin J. Doering" > Date: Wed, 11 Sep 2019 23:08:37 -0400 > Subject: [PATCH] gnu: Add sh-z shell tool > > * gnu/packages/shellutils.scm (sh-z): New variable. > > Signed-off-by: Collin J. Doering Applied with the tiny changes below. Note: We reserve =E2=80=98Signed-off-by=E2=80=99 for those who commit on yo= ur behalf, so you don=E2=80=99t need to provide it. Thank you, Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/shellutils.scm b/gnu/packages/shellutils.scm index bbdfd0dadd..f901eaaa8f 100644 --- a/gnu/packages/shellutils.scm +++ b/gnu/packages/shellutils.scm @@ -34,7 +34,6 @@ #:use-module (gnu packages ncurses) #:use-module (gnu packages readline) #:use-module (gnu packages pkg-config) - #:use-module (gnu packages compression) #:use-module (guix utils) #:use-module (guix build-system gnu) #:use-module (guix build-system go) @@ -67,12 +66,13 @@ (bin (string-append out "/bin"))) (install-file "z.sh" bin) (chmod (string-append bin "/z.sh") #o755) - (install-file "z.1" man))))))) + (install-file "z.1" man) + #t)))))) (synopsis "Jump about directories") (description "Tracks your most used directories, based on ``frecency''. After a short learning phase, z will take you to the most ``frecent'' directory that matches -ALL of the regexes given on the command line in order.") +all of the regexes given on the command line in order.") (home-page "https://github.com/rupa/z") (license license:expat))) --=-=-=--