From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59165) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dkS5y-00016t-Hi for guix-patches@gnu.org; Wed, 23 Aug 2017 05:37:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dkS5u-0005yx-JO for guix-patches@gnu.org; Wed, 23 Aug 2017 05:37:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:41668) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dkS5u-0005yp-GJ for guix-patches@gnu.org; Wed, 23 Aug 2017 05:37:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dkS5u-0001nb-9u for guix-patches@gnu.org; Wed, 23 Aug 2017 05:37:02 -0400 Subject: [bug#28201] [PATCH] gnu: Add emacs-wgrep. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58962) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dkS51-0000eW-Ep for guix-patches@gnu.org; Wed, 23 Aug 2017 05:36:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dkS50-0005Wc-B6 for guix-patches@gnu.org; Wed, 23 Aug 2017 05:36:07 -0400 Received: from li622-129.members.linode.com ([212.71.249.129]:33633 helo=mira.cbaines.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dkS50-0005WK-5E for guix-patches@gnu.org; Wed, 23 Aug 2017 05:36:06 -0400 Received: from localhost (cpc102582-walt20-2-0-cust14.13-2.cable.virginm.net [86.27.34.15]) by mira.cbaines.net (Postfix) with ESMTPSA id 833391474DA for ; Wed, 23 Aug 2017 10:36:05 +0100 (BST) Received: from localhost.localdomain (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id e01e8d0a for ; Wed, 23 Aug 2017 09:36:05 +0000 (UTC) From: Christopher Baines Date: Wed, 23 Aug 2017 10:36:05 +0100 Message-Id: <20170823093605.8868-1-mail@cbaines.net> 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: 28201@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-wgrep): New variable. --- gnu/packages/emacs.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 140a53205..2a3914770 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -3447,6 +3447,33 @@ Dust.js, React/JSX, Angularjs, ejs, etc.") (home-page "http://web-mode.org/") (license license:gpl3+))) +(define-public emacs-wgrep + (package + (name "emacs-wgrep") + (version "2.1.10") + (source (origin + (method url-fetch) + (uri (string-append + "https://github.com/mhayashi1120/Emacs-wgrep/archive/" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1r2bpypar70xg6dsx12x1k74f39ww930rday7rgqpyknzsx1k4l1")))) + (build-system emacs-build-system) + (home-page "https://github.com/mhayashi1120/Emacs-wgrep") + (synopsis "Edit a grep buffer and apply those changes to the files") + (description + "Emacs wgrep allows you to edit a grep buffer and apply those changes to +the file buffer. + +Activate by using: + +@example +(require 'wgrep) +@end example") + (license license:gpl3+))) + (define-public emacs-helm (package (name "emacs-helm") -- 2.14.1