unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#47725] [PATCH 0/1] Update emacs-counsel-projectile (api change)
@ 2021-04-12 13:17 David Dashyan
  2021-04-12 13:19 ` [bug#47725] [PATCH 1/1] gnu: emacs-counsel-projectile: Update to 0.3.1-0.06b03c1 David Dashyan
  0 siblings, 1 reply; 4+ messages in thread
From: David Dashyan @ 2021-04-12 13:17 UTC (permalink / raw)
  To: 47725; +Cc: David Dashyan

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





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#47725] [PATCH 1/1] gnu: emacs-counsel-projectile: Update to 0.3.1-0.06b03c1
  2021-04-12 13:17 [bug#47725] [PATCH 0/1] Update emacs-counsel-projectile (api change) David Dashyan
@ 2021-04-12 13:19 ` David Dashyan
  2021-04-26 19:09   ` bug#47725: " Nicolas Goaziou
  0 siblings, 1 reply; 4+ messages in thread
From: David Dashyan @ 2021-04-12 13:19 UTC (permalink / raw)
  To: 47725; +Cc: David Dashyan

---
 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@yoctocell.xyz>
 ;;; Copyright © 2021 Stefan Reichör <stefan@xsteve.at>
 ;;; Copyright © 2021 Simon Tournier <zimon.toutoune@gmail.com>
+;;; Copyright © 2021 David Dashyan <mail@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





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#47725: [PATCH 1/1] gnu: emacs-counsel-projectile: Update to 0.3.1-0.06b03c1
  2021-04-12 13:19 ` [bug#47725] [PATCH 1/1] gnu: emacs-counsel-projectile: Update to 0.3.1-0.06b03c1 David Dashyan
@ 2021-04-26 19:09   ` Nicolas Goaziou
  2021-04-27 15:57     ` [bug#47725] " David Dashyan
  0 siblings, 1 reply; 4+ messages in thread
From: Nicolas Goaziou @ 2021-04-26 19:09 UTC (permalink / raw)
  To: David Dashyan; +Cc: 47725-done

Hello,

David Dashyan <mail@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




^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#47725] [PATCH 1/1] gnu: emacs-counsel-projectile: Update to 0.3.1-0.06b03c1
  2021-04-26 19:09   ` bug#47725: " Nicolas Goaziou
@ 2021-04-27 15:57     ` David Dashyan
  0 siblings, 0 replies; 4+ messages in thread
From: David Dashyan @ 2021-04-27 15:57 UTC (permalink / raw)
  To: Nicolas Goaziou; +Cc: 47725-done


Thanks! I'll include comments next time :)

Nicolas Goaziou writes:

> Hello,
>
> David Dashyan <mail@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




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-04-27 17:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-12 13:17 [bug#47725] [PATCH 0/1] Update emacs-counsel-projectile (api change) David Dashyan
2021-04-12 13:19 ` [bug#47725] [PATCH 1/1] gnu: emacs-counsel-projectile: Update to 0.3.1-0.06b03c1 David Dashyan
2021-04-26 19:09   ` bug#47725: " Nicolas Goaziou
2021-04-27 15:57     ` [bug#47725] " David Dashyan

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).