GNU bug report logs - #47725
[PATCH 0/1] Update emacs-counsel-projectile (api change)

Previous Next

Package: guix-patches;

Reported by: David Dashyan <mail <at> davie.li>

Date: Mon, 12 Apr 2021 13:18: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 47725 in the body.
You can then email your comments to 47725 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#47725; Package guix-patches. (Mon, 12 Apr 2021 13:18:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to David Dashyan <mail <at> davie.li>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Mon, 12 Apr 2021 13:18:02 GMT) Full text and rfc822 format available.

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

From: David Dashyan <mail <at> davie.li>
To: guix-patches <at> gnu.org
Cc: David Dashyan <mail <at> davie.li>
Subject: [PATCH 0/1] Update emacs-counsel-projectile (api change)
Date: Mon, 12 Apr 2021 16:17:05 +0300
Hello Guix!

Recently my counsel-projectile stopped working because of swiper update I
guess.

Problem was in ivy api change, more specifically
ivy--display-transformers-list function which is missing in recent version of
swiper.

counsel-projectile upstream commit fixing this issue:
https://github.com/ericdanan/counsel-projectile/commit/a9331c1fadc3b4975faac54dfe6492540180c29b

I'm using updated version now.

David Dashyan (1):
  gnu: emacs-counsel-projectile: Update to 0.3.1-0.06b03c1

 gnu/packages/emacs-xyz.scm | 45 ++++++++++++++++++++------------------
 1 file changed, 24 insertions(+), 21 deletions(-)


base-commit: 8615e21a8cfb01882b4785c950ccb89edc9c4bcc
-- 
2.31.1





Information forwarded to guix-patches <at> gnu.org:
bug#47725; Package guix-patches. (Mon, 12 Apr 2021 13:21:01 GMT) Full text and rfc822 format available.

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

From: David Dashyan <mail <at> davie.li>
To: 47725 <at> debbugs.gnu.org
Cc: David Dashyan <mail <at> davie.li>
Subject: [PATCH 1/1] gnu: emacs-counsel-projectile: Update to 0.3.1-0.06b03c1
Date: Mon, 12 Apr 2021 16:19:53 +0300
---
 gnu/packages/emacs-xyz.scm | 45 ++++++++++++++++++++------------------
 1 file changed, 24 insertions(+), 21 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index ca1daaeb82..19b61e721d 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -96,6 +96,7 @@
 ;;; Copyright © 2021 Xinglu Chen <public <at> yoctocell.xyz>
 ;;; Copyright © 2021 Stefan Reichör <stefan <at> xsteve.at>
 ;;; Copyright © 2021 Simon Tournier <zimon.toutoune <at> gmail.com>
+;;; Copyright © 2021 David Dashyan <mail <at> davie.li>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -8491,28 +8492,30 @@ asynchronously, with Counsel and Ivy.  Simply call
       (license license:gpl3+))))
 
 (define-public emacs-counsel-projectile
-  (package
-    (name "emacs-counsel-projectile")
-    (version "0.3.1")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://github.com/ericdanan/counsel-projectile")
-                    (commit version)))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "1k4n5lw6wwbgpwv0dg9dw0bjzi0hvbgkzrs1zmq36yhfz6y8gwnh"))))
-    (build-system emacs-build-system)
-    (propagated-inputs
-     `(("emacs-counsel" ,emacs-counsel)
-       ("emacs-projectile" ,emacs-projectile)))
-    (home-page "https://github.com/ericdanan/counsel-projectile")
-    (synopsis "Enhance Projectile with Ivy")
-    (description
-     "This package uses Ivy to provide additional actions for Projectile
+  (let ((commit "06b03c1080d3ccc3fa9b9c41b1ccbcf13f058e4b")
+        (revision "0"))
+    (package
+      (name "emacs-counsel-projectile")
+      (version (git-version "0.3.1" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/ericdanan/counsel-projectile")
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "10afil6grwxj1x8fxd3ar7ikw3s3hzrkjsjin8wzchbz04389l7s"))))
+      (build-system emacs-build-system)
+      (propagated-inputs
+       `(("emacs-counsel" ,emacs-counsel)
+         ("emacs-projectile" ,emacs-projectile)))
+      (home-page "https://github.com/ericdanan/counsel-projectile")
+      (synopsis "Enhance Projectile with Ivy")
+      (description
+       "This package uses Ivy to provide additional actions for Projectile
 commands and replacements for existing functions.")
-    (license license:gpl3+)))
+      (license license:gpl3+))))
 
 (define-public emacs-qml-mode
   (package
-- 
2.31.1





Reply sent to Nicolas Goaziou <mail <at> nicolasgoaziou.fr>:
You have taken responsibility. (Mon, 26 Apr 2021 19:10:02 GMT) Full text and rfc822 format available.

Notification sent to David Dashyan <mail <at> davie.li>:
bug acknowledged by developer. (Mon, 26 Apr 2021 19:10:02 GMT) Full text and rfc822 format available.

Message #13 received at 47725-done <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: David Dashyan <mail <at> davie.li>
Cc: 47725-done <at> debbugs.gnu.org
Subject: Re: [bug#47725] [PATCH 1/1] gnu: emacs-counsel-projectile: Update
 to 0.3.1-0.06b03c1
Date: Mon, 26 Apr 2021 21:09:12 +0200
Hello,

David Dashyan <mail <at> davie.li> writes:

> +  (let ((commit "06b03c1080d3ccc3fa9b9c41b1ccbcf13f058e4b")
> +        (revision "0"))
> +    (package
> +      (name "emacs-counsel-projectile")
> +      (version (git-version "0.3.1" revision commit))

Thank you.

I added a proper commit message to the patch, and a comment explaining
why we're not using stable release anymore.

Applied.

Regards,
-- 
Nicolas Goaziou




Information forwarded to guix-patches <at> gnu.org:
bug#47725; Package guix-patches. (Tue, 27 Apr 2021 17:13:02 GMT) Full text and rfc822 format available.

Message #16 received at 47725-done <at> debbugs.gnu.org (full text, mbox):

From: David Dashyan <mail <at> davie.li>
To: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
Cc: 47725-done <at> debbugs.gnu.org
Subject: Re: [bug#47725] [PATCH 1/1] gnu: emacs-counsel-projectile: Update
 to 0.3.1-0.06b03c1
Date: Tue, 27 Apr 2021 18:57:01 +0300
Thanks! I'll include comments next time :)

Nicolas Goaziou writes:

> Hello,
>
> David Dashyan <mail <at> davie.li> writes:
>
>> +  (let ((commit "06b03c1080d3ccc3fa9b9c41b1ccbcf13f058e4b")
>> +        (revision "0"))
>> +    (package
>> +      (name "emacs-counsel-projectile")
>> +      (version (git-version "0.3.1" revision commit))
>
> Thank you.
>
> I added a proper commit message to the patch, and a comment explaining
> why we're not using stable release anymore.
>
> Applied.
>
> Regards,


-- 
David aka zzappie




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

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

Previous Next


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