From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42442) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f2KEX-0005Jw-NR for guix-patches@gnu.org; Sat, 31 Mar 2018 13:24:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f2KEU-0004MC-Ir for guix-patches@gnu.org; Sat, 31 Mar 2018 13:24:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:53522) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1f2KEU-0004Lx-Ea for guix-patches@gnu.org; Sat, 31 Mar 2018 13:24:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1f2KEU-00073i-73 for guix-patches@gnu.org; Sat, 31 Mar 2018 13:24:02 -0400 Subject: bug#31004: [PATCH] gnu: Add emacs-anzu Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20180331145049.GA7955@sam> Date: Sat, 31 Mar 2018 19:23:03 +0200 In-Reply-To: <20180331145049.GA7955@sam> (Sohom Bhattacharjee's message of "Sat, 31 Mar 2018 20:20:49 +0530") Message-ID: <87y3i8i2h4.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: Sohom Bhattacharjee Cc: 31004-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello, Sohom Bhattacharjee skribis: > * gnu/packages/emacs.scm (emacs-anzu): New variable. Applied with the cosmetic changes below. Thank you! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 07e195654..ce9b1a66a 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -32,6 +32,7 @@ ;;; Copyright =C2=A9 2017 Tobias Geerinckx-Rice ;;; Copyright =C2=A9 2017 Mike Gerwitz ;;; Copyright =C2=A9 2017, 2018 Maxim Cournoyer +;;; Copyright =C2=A9 2018 Sohom Bhattacharjee ;;; ;;; This file is part of GNU Guix. ;;; @@ -7419,18 +7420,19 @@ directories of plain text notes, inspired by Notati= onal Velocity.") (package (name "emacs-anzu") (version "0.62") - (source=20 + (source (origin (method url-fetch) (uri (string-append "http://stable.melpa.org/packages/anzu-" version ".el")) - (sha256 + (sha256 (base32 "1h3p1x2h2830n83dzvkh8p2892n34a95x7aavhi10p7vfjk406fd")))) (build-system emacs-build-system) (home-page "https://github.com/syohex/emacs-anzu") (synopsis "Show number of matches in mode-line while searching") (description - "Anzu provides a minor mode which displays 'current match/total -matches' in the mode-line in various search modes. Emacs port of Anzu.zim") + "Anzu provides a minor mode which displays \"current match/total +matches\" in the mode line in various search modes. This is an Emacs port= of +Anzu.zim.") (license license:gpl3+))) --=-=-=--