From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47477) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fVGZI-0001uW-1Y for guix-patches@gnu.org; Tue, 19 Jun 2018 09:21:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fVGZC-0004UF-6Z for guix-patches@gnu.org; Tue, 19 Jun 2018 09:21:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:48123) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fVGZC-0004U1-1W for guix-patches@gnu.org; Tue, 19 Jun 2018 09:21:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fVGZB-0008Qy-SG for guix-patches@gnu.org; Tue, 19 Jun 2018 09:21:01 -0400 Subject: [bug#31899] [PATCH] gnu: emacs-evil: Update to 20180517. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45892) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fVGXP-0000bo-SC for guix-patches@gnu.org; Tue, 19 Jun 2018 09:19:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fVGXA-0003Ge-Gx for guix-patches@gnu.org; Tue, 19 Jun 2018 09:19:11 -0400 Received: from mail-wr0-x22e.google.com ([2a00:1450:400c:c0c::22e]:38080) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fVGX9-0003FA-Vh for guix-patches@gnu.org; Tue, 19 Jun 2018 09:18:56 -0400 Received: by mail-wr0-x22e.google.com with SMTP id e18-v6so20556394wrs.5 for ; Tue, 19 Jun 2018 06:18:55 -0700 (PDT) Received: from localhost.localdomain ([92.184.104.234]) by smtp.gmail.com with ESMTPSA id c11-v6sm18836848wri.49.2018.06.19.06.18.53 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 19 Jun 2018 06:18:54 -0700 (PDT) From: Pierre Neidhardt Date: Tue, 19 Jun 2018 15:17:38 +0200 Message-Id: <20180619131738.22710-1-ambrevar@gmail.com> 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: 31899@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-evil): Update to 20180517. --- gnu/packages/emacs.scm | 44 ++++++++++++++++++++++-------------------- 1 file changed, 23 insertions(+), 21 deletions(-) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index a0ae045ab..cb1b34c73 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -4727,29 +4727,31 @@ news items, openrc and runscripts.") (license license:gpl2+))) (define-public emacs-evil - (package - (name "emacs-evil") - (version "1.2.13") - (source - (origin - (method url-fetch) - (uri (string-append "https://github.com/emacs-evil/evil/archive/" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "1z63zsxmsc6mh74wv6065carwqmgs7b7lz5044s12xvgsjfbwi8h")))) - (build-system emacs-build-system) - (propagated-inputs - `(("emacs-undo-tree" ,emacs-undo-tree) - ("emacs-goto-chg" ,emacs-goto-chg))) - (home-page "https://github.com/emacs-evil/evil") - (synopsis "Extensible Vi layer for Emacs") - (description - "Evil is an extensible vi layer for Emacs. It emulates the + (let ((commit "230b87212c81aaa68ef5547a6b998d9c365fe139")) + (package + (name "emacs-evil") + (version (git-version "1.2.13" "1" commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emacs-evil/evil") + (commit commit))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "0c9zy3bpck10gcrv79kd3h7i4ygd5bgbgy773n0lg7a2r5kwn1gx")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-undo-tree" ,emacs-undo-tree) + ("emacs-goto-chg" ,emacs-goto-chg))) + (home-page "https://github.com/emacs-evil/evil") + (synopsis "Extensible Vi layer for Emacs") + (description + "Evil is an extensible vi layer for Emacs. It emulates the main features of Vim, and provides facilities for writing custom extensions.") - (license license:gpl3+))) + (license license:gpl3+)))) (define-public emacs-evil-collection (let ((commit "f40704a57fd33b4bfad64147a2b771fc8961fdfc") -- 2.17.1