From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:45446) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ixzO5-0002tB-4A for guix-patches@gnu.org; Sat, 01 Feb 2020 15:29:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ixzO2-0000Vj-QW for guix-patches@gnu.org; Sat, 01 Feb 2020 15:29:05 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:33403) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ixzO2-0000VG-MT for guix-patches@gnu.org; Sat, 01 Feb 2020 15:29:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ixzO2-0007lt-Gh for guix-patches@gnu.org; Sat, 01 Feb 2020 15:29:02 -0500 Subject: [bug#39384] [PATCH] gnu: Add emacs-rg. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:45380) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ixzNo-0002sl-93 for guix-patches@gnu.org; Sat, 01 Feb 2020 15:28:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ixzNm-0008SQ-F2 for guix-patches@gnu.org; Sat, 01 Feb 2020 15:28:47 -0500 Received: from mx.kolabnow.com ([95.128.36.41]:42446) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ixzNm-0008Lt-2f for guix-patches@gnu.org; Sat, 01 Feb 2020 15:28:46 -0500 Received: from localhost (unknown [127.0.0.1]) by ext-mx-out002.mykolab.com (Postfix) with ESMTP id 0217D6AE for ; Sat, 1 Feb 2020 21:28:43 +0100 (CET) Received: from mx.kolabnow.com ([127.0.0.1]) by localhost (ext-mx-out002.mykolab.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id BwkQGRFGlWVK for ; Sat, 1 Feb 2020 21:28:42 +0100 (CET) Received: from int-mx003.mykolab.com (unknown [10.9.13.3]) by ext-mx-out002.mykolab.com (Postfix) with ESMTPS id 614F6273 for ; Sat, 1 Feb 2020 21:28:42 +0100 (CET) Received: from ext-subm002.mykolab.com (unknown [10.9.6.2]) by int-mx003.mykolab.com (Postfix) with ESMTPS id 27249105B for ; Sat, 1 Feb 2020 21:28:42 +0100 (CET) From: "LaFreniere\, Joseph" Date: Sat, 01 Feb 2020 14:28:37 -0600 Message-ID: <87v9oqrr0q.fsf@lafreniere.xyz> 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: 39384@debbugs.gnu.org --=-=-= Content-Type: text/plain; format=flowed Patch file is attached to package https://github.com/dajva/rg.el.git. -- Joseph LaFreniere --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: attachment; filename=0001-gnu-Add-emacs-rg.patch Content-Transfer-Encoding: quoted-printable >From d3e76096a6c44764d51ef06aedb171682f92c85e Mon Sep 17 00:00:00 2001 From: Joseph LaFreniere Date: Sat, 1 Feb 2020 14:23:36 -0600 Subject: [PATCH] gnu: Add emacs-rg. * gnu/packages/emacs-xyz.scm (emacs-rg): New variable. --- gnu/packages/emacs-xyz.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index f95ad26e4b..c8b87ce712 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -2751,6 +2751,35 @@ column by drawing a thin line down the length of the= editing window.") "This Emacs package allows managing multiple grep buffers.") (license license:gpl3+))) =20 +(define-public emacs-rg + (package + (name "emacs-rg") + (version "1.8.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dajva/rg.el.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0k7x5z7mh9flwih35cqy8chs54rack3nswdcpw5wcpgv6xim227y")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-s" ,emacs-s) + ("emacs-wgrep" ,emacs-wgrep) + ("ripgrep" ,ripgrep))) + (home-page "https://rgel.readthedocs.io/en/latest/") + (synopsis "A search tool based on @code{ripgrep}") + (description + "An Emacs search package based on the @code{ripgrep} command line +tool. It allows you to interactively create searches, doing automatic sear= ches +based on the editing context, refining and modifying search results and mu= ch +more. It is also highly configurable to be able to fit different users=E2= =80=99 +needs.") + (license license:gpl3+))) + (define-public emacs-inf-ruby (package (name "emacs-inf-ruby") --=20 2.25.0 --=-=-=--