From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:51793) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hG47P-0007Ph-Vp for guix-patches@gnu.org; Mon, 15 Apr 2019 12:06:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hG47O-000385-SV for guix-patches@gnu.org; Mon, 15 Apr 2019 12:06:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:49953) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hG47O-00037R-O4 for guix-patches@gnu.org; Mon, 15 Apr 2019 12:06:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hG47O-0002l4-Ix for guix-patches@gnu.org; Mon, 15 Apr 2019 12:06:02 -0400 Subject: bug#35278: Add emacs-ace-jump-mode Resent-To: guix-patches@gnu.org Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <878swch19u.fsf@yahoo.de> Date: Mon, 15 Apr 2019 18:05:36 +0200 In-Reply-To: <878swch19u.fsf@yahoo.de> (Tim Gesthuizen's message of "Sun, 14 Apr 2019 20:47:41 +0200") Message-ID: <877ebvi78v.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: Tim Gesthuizen Cc: 35278-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi Tim, Tim Gesthuizen skribis: > I packaged emacs-ace-jump-mode, a small package for navigation in > Emacs. It would be nice if we could add to Guix. However: The licensing > notice in the source file is copied out of Emacs. I don't know whether > that is ok. I think it=E2=80=99s OK. > From 3ee0e4071e8063f6404f8e7c43f175a80f652112 Mon Sep 17 00:00:00 2001 > From: Tim Gesthuizen > Date: Sat, 13 Apr 2019 13:46:05 +0200 > Subject: [PATCH] gnu: Add emacs-ace-jump-mode > > * gnu/packages/emacs-xyz.scm (emacs-ace-jump-mode): New variable. I made the adjustments below to satisfy =E2=80=98guix lint=E2=80=99 and to = fix a couple of wording issues in the description and committed. Thanks! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 2c0106efbf..9d69938683 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -727,20 +727,21 @@ index is considered the key).") (name "emacs-ace-jump-mode") (version "2.0") (home-page "https://github.com/winterTTr/ace-jump-mode") - (source - (origin - (method git-fetch) - (uri (git-reference - (url (string-append - home-page ".git")) - (commit (string-append "v" version)))) - (sha256 (base32 "1bwvzh056ls2v7y26a0s4j5mj582dmds04lx4x6iqihs04ss74bb")))) + (source (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit (string-append "v" version)))) + (sha256 + (base32 + "1bwvzh056ls2v7y26a0s4j5mj582dmds04lx4x6iqihs04ss74bb")) + (file-name (git-file-name name version)))) (build-system emacs-build-system) (synopsis "Cursor location minor mode for fast navigation") - (description "ace-jump-mode is a fast/direct cursor location minor -mode. It will create the N-Branch search tree internal and marks all -the possible position with predefined keys in within the whole emacs -view. Allowing you to move to the character/word/line almost + (description "Ace-jump-mode is a fast/direct cursor location minor +mode. It creates an N-Branch search tree internally and marks all +the possible position with predefined keys in within the whole Emacs +view. This allows you to move to the character, word, or line almost directly.") (license license:gpl3+))) --=-=-=--