GNU bug report logs - #49286
[PATCH 0/1] Add emacs-ripgrep.

Previous Next

Package: guix-patches;

Reported by: Dhruvin Gandhi <contact <at> dhruvin.dev>

Date: Wed, 30 Jun 2021 07:28:02 UTC

Severity: normal

Tags: patch

Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 49286 in the body.
You can then email your comments to 49286 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#49286; Package guix-patches. (Wed, 30 Jun 2021 07:28:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Dhruvin Gandhi <contact <at> dhruvin.dev>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 30 Jun 2021 07:28:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Dhruvin Gandhi <contact <at> dhruvin.dev>
To: guix-patches <at> gnu.org
Cc: Dhruvin Gandhi <contact <at> dhruvin.dev>
Subject: [PATCH 0/1] Add emacs-ripgrep.
Date: Wed, 30 Jun 2021 12:56:01 +0530
emacs-projectile has support for searching with ripgrep, using ripgrep.el
package.  It is not yet in guix repo. This patch adds emacs-ripgrep package.

Dhruvin Gandhi (1):
  gnu: Add emacs-ripgrep.

 gnu/packages/emacs-xyz.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

-- 
2.32.0





Information forwarded to guix-patches <at> gnu.org:
bug#49286; Package guix-patches. (Wed, 30 Jun 2021 07:30:01 GMT) Full text and rfc822 format available.

Message #8 received at 49286 <at> debbugs.gnu.org (full text, mbox):

From: Dhruvin Gandhi <contact <at> dhruvin.dev>
To: 49286 <at> debbugs.gnu.org
Cc: Dhruvin Gandhi <contact <at> dhruvin.dev>
Subject: [PATCH 1/1] gnu: Add emacs-ripgrep.
Date: Wed, 30 Jun 2021 12:59:11 +0530
* gnu/packages/emacs-xyz.scm (emacs-ripgrep): New variable.
---
 gnu/packages/emacs-xyz.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index d8c1f86207..bf0ab5910d 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -99,6 +99,7 @@
 ;;; Copyright © 2021 Eugene Klimov <lipklim <at> mailbox.org>
 ;;; Copyright © 2021 Zheng Junjie <873216071 <at> qq.com>
 ;;; Copyright © 2021 David Dashyan <mail <at> davie.li>
+;;; Copyright © 2021 Dhruvin Gandhi <contact <at> dhruvin.dev>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -4404,6 +4405,37 @@ column by drawing a thin line down the length of the editing window.")
 result.")
     (license license:gpl3+)))
 
+(define-public emacs-ripgrep
+  (package
+    (name "emacs-ripgrep")
+    (version "0.4.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/nlamirault/ripgrep.el")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1a5rdpmvsgsjlc9sywism9pq7jd6n9qbcdsvpbfkq1npwhpifkbj"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("ripgrep" ,ripgrep)))
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         ;; The repository contains both ripgrep and projectile-ripgrep
+         ;; packages. The latter has been merged into projectile itself.
+         (add-after 'unpack 'delete-projectile-ripgrep
+           (lambda _
+             (delete-file "projectile-ripgrep.el")
+             #t)))))
+    (home-page "https://github.com/nlamirault/ripgrep.el")
+    (synopsis "Search using ripgrep from inside Emacs")
+    (description "@code{ripgrep} is an Emacs search package based on the
+@code{ripgrep} command line tool.")
+    (license license:gpl2+)))
+
 (define-public emacs-rg
   (package
     (name "emacs-rg")
-- 
2.32.0





Information forwarded to guix-patches <at> gnu.org:
bug#49286; Package guix-patches. (Fri, 02 Jul 2021 07:24:02 GMT) Full text and rfc822 format available.

Message #11 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: Dhruvin Gandhi via Guix-patches via <guix-patches <at> gnu.org>
Cc: 49286-done <at> debbugs.gnu.org, Dhruvin Gandhi <contact <at> dhruvin.dev>
Subject: Re: [bug#49286] [PATCH 1/1] gnu: Add emacs-ripgrep.
Date: Fri, 02 Jul 2021 09:23:18 +0200
Hello,

Dhruvin Gandhi via Guix-patches via <guix-patches <at> gnu.org> writes:

> * gnu/packages/emacs-xyz.scm (emacs-ripgrep): New variable.

I removed #t from a phase and applied your patch.

Thank you.

Regards,
-- 
Nicolas Goaziou




Reply sent to Nicolas Goaziou <mail <at> nicolasgoaziou.fr>:
You have taken responsibility. (Fri, 02 Jul 2021 07:24:02 GMT) Full text and rfc822 format available.

Notification sent to Dhruvin Gandhi <contact <at> dhruvin.dev>:
bug acknowledged by developer. (Fri, 02 Jul 2021 07:24:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 30 Jul 2021 11:24:09 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 264 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.