unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#69623] Update emacs-evil-collection to 0.0.10
@ 2024-03-08  3:10 Apoorv via Guix-patches via
  2024-03-09 12:40 ` ziyed mstph
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Apoorv via Guix-patches via @ 2024-03-08  3:10 UTC (permalink / raw)
  To: 69623


[-- Attachment #1.1: Type: text/plain, Size: 455 bytes --]

evil-mode was causing issues because of corfu. Looking around it seems like the issue is because of some change in evil-collection, which in Guix ATM is pretty outdated. So I created this issue on their repo, https://github.com/emacs-evil/evil-collection/issues/786

and they have a new tag up now, I created this patch to update emacs-evil-collection package to the latest tag now.

-- 
 Sent with Tuta; enjoy secure & ad-free emails: 
 https://tuta.com

[-- Attachment #1.2: Type: text/html, Size: 1165 bytes --]

[-- Attachment #2: update_emacs_evil_collection_0_0_10.patch --]
[-- Type: text/x-patch, Size: 786 bytes --]

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 7fa5df9202..4093af9747 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -16298,7 +16298,7 @@ (define-public emacs-evil
 (define-public emacs-evil-collection
   (package
     (name "emacs-evil-collection")
-    (version "0.0.9")
+    (version "0.0.10")
     (source
      (origin
        (method git-fetch)
@@ -16307,7 +16307,7 @@ (define-public emacs-evil-collection
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1y1ig4shqaaiiwqm5pv8hvh8ynr6irhffkgmpyzmhdaaicxnfazc"))))
+        (base32 "09hnxb8nh3g0hi93fz9f1y164gv9iyh5994wfn6fsq2v1xdz8phm"))))
     (build-system emacs-build-system)
     (arguments
      (list

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

* [bug#69623] Update emacs-evil-collection to 0.0.10
  2024-03-08  3:10 [bug#69623] Update emacs-evil-collection to 0.0.10 Apoorv via Guix-patches via
@ 2024-03-09 12:40 ` ziyed mstph
  2024-03-10  4:05 ` Apoorv via Guix-patches via
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: ziyed mstph @ 2024-03-09 12:40 UTC (permalink / raw)
  To: 69623

[-- Attachment #1: Type: text/plain, Size: 243 bytes --]

Could you please describe your bug with corfu and evil?
I encountered some issues as well after recently running guix pull: once I
corfu-complete, I cannot go back to normal mode with Esc.
Updating emacs-evil-collection 0.0.10 did not fix it.

[-- Attachment #2: Type: text/html, Size: 305 bytes --]

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

* [bug#69623] Update emacs-evil-collection to 0.0.10
  2024-03-08  3:10 [bug#69623] Update emacs-evil-collection to 0.0.10 Apoorv via Guix-patches via
  2024-03-09 12:40 ` ziyed mstph
@ 2024-03-10  4:05 ` Apoorv via Guix-patches via
  2024-03-19 20:12 ` Jelle Licht
  2024-03-20  2:25 ` [bug#69623] [PATCH] " Apoorv via Guix-patches via
  3 siblings, 0 replies; 6+ messages in thread
From: Apoorv via Guix-patches via @ 2024-03-10  4:05 UTC (permalink / raw)
  To: 69623

[-- Attachment #1: Type: text/plain, Size: 121 bytes --]

Yes, that is the issue that I am facing as well.

-- 
 Sent with Tuta; enjoy secure & ad-free emails: 
 https://tuta.com

[-- Attachment #2: Type: text/html, Size: 375 bytes --]

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

* [bug#69623] Update emacs-evil-collection to 0.0.10
  2024-03-08  3:10 [bug#69623] Update emacs-evil-collection to 0.0.10 Apoorv via Guix-patches via
  2024-03-09 12:40 ` ziyed mstph
  2024-03-10  4:05 ` Apoorv via Guix-patches via
@ 2024-03-19 20:12 ` Jelle Licht
  2024-03-20  2:25 ` [bug#69623] [PATCH] " Apoorv via Guix-patches via
  3 siblings, 0 replies; 6+ messages in thread
From: Jelle Licht @ 2024-03-19 20:12 UTC (permalink / raw)
  To: Apoorv, 69623

Hi Apoorv,

Apoorv via Guix-patches via <guix-patches@gnu.org> writes:

> evil-mode was causing issues because of corfu. Looking around it seems like the issue is because of some change in evil-collection, which in Guix ATM is pretty outdated. So I created this issue on their repo, https://github.com/emacs-evil/evil-collection/issues/786
>
> and they have a new tag up now, I created this patch to update emacs-evil-collection package to the latest tag now.

I don't know if this tagged version addresses your issue with corfu, but
there is definitely value in synchronizing the version of the
evil-collection package in guix to a more recent tag.

Could you please re-send the patch using git send-email, or by sending a
git format-patch generated patch as an attachment?

Kind regards,
- Jelle






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

* [bug#69623] [PATCH] Update emacs-evil-collection to 0.0.10
  2024-03-08  3:10 [bug#69623] Update emacs-evil-collection to 0.0.10 Apoorv via Guix-patches via
                   ` (2 preceding siblings ...)
  2024-03-19 20:12 ` Jelle Licht
@ 2024-03-20  2:25 ` Apoorv via Guix-patches via
  2024-03-20 17:45   ` Christopher Baines
  3 siblings, 1 reply; 6+ messages in thread
From: Apoorv via Guix-patches via @ 2024-03-20  2:25 UTC (permalink / raw)
  To: 69623


[-- Attachment #1.1: Type: text/plain, Size: 120 bytes --]

Here is the `git format-patch` generated patch.

-- 
 Sent with Tuta; enjoy secure & ad-free emails: 
 https://tuta.com

[-- Attachment #1.2: Type: text/html, Size: 374 bytes --]

[-- Attachment #2: 0001-Update-emacs-evil-collection-to-0.0.10.patch --]
[-- Type: text/x-patch, Size: 1094 bytes --]

From 882c9b9132d4e3e24fac5c172c5595f678118117 Mon Sep 17 00:00:00 2001
From: apoorv569 <apoorvs569@gmail.com>
Date: Wed, 20 Mar 2024 07:50:50 +0530
Subject: [PATCH] Update emacs-evil-collection to 0.0.10

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 83e79544ee..716c8b8cc3 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -16323,7 +16323,7 @@ (define-public emacs-evil
 (define-public emacs-evil-collection
   (package
     (name "emacs-evil-collection")
-    (version "0.0.9")
+    (version "0.0.10")
     (source
      (origin
        (method git-fetch)
@@ -16332,7 +16332,7 @@ (define-public emacs-evil-collection
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1y1ig4shqaaiiwqm5pv8hvh8ynr6irhffkgmpyzmhdaaicxnfazc"))))
+        (base32 "09hnxb8nh3g0hi93fz9f1y164gv9iyh5994wfn6fsq2v1xdz8phm"))))
     (build-system emacs-build-system)
     (arguments
      (list
-- 
2.41.0


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

* [bug#69623] [PATCH] Update emacs-evil-collection to 0.0.10
  2024-03-20  2:25 ` [bug#69623] [PATCH] " Apoorv via Guix-patches via
@ 2024-03-20 17:45   ` Christopher Baines
  0 siblings, 0 replies; 6+ messages in thread
From: Christopher Baines @ 2024-03-20 17:45 UTC (permalink / raw)
  To: Apoorv; +Cc: 69623-done, 69623

[-- Attachment #1: Type: text/plain, Size: 199 bytes --]


Apoorv via Guix-patches via <guix-patches@gnu.org> writes:

> Here is the `git format-patch` generated patch.

Thanks, I've pushed this to master as
9b611cd175039318c2caa0dbe9bf783aac1285d1.

Chris

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]

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

end of thread, other threads:[~2024-03-20 18:09 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-08  3:10 [bug#69623] Update emacs-evil-collection to 0.0.10 Apoorv via Guix-patches via
2024-03-09 12:40 ` ziyed mstph
2024-03-10  4:05 ` Apoorv via Guix-patches via
2024-03-19 20:12 ` Jelle Licht
2024-03-20  2:25 ` [bug#69623] [PATCH] " Apoorv via Guix-patches via
2024-03-20 17:45   ` Christopher Baines

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).