unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#53733] [PATCH] gnu: Add emacs-flyspell-fu
@ 2022-02-02 18:51 Niklas Eklund
  2022-02-05 10:25 ` [bug#53733] [PATCH] gnu: Add emacs-spell-fu Niklas Eklund
  0 siblings, 1 reply; 3+ messages in thread
From: Niklas Eklund @ 2022-02-02 18:51 UTC (permalink / raw)
  To: 53733

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

Hi,

this patch adds the emacs-flyspell-fu package.

/Niklas

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: emacs-flyspell-fu --]
[-- Type: text/x-patch, Size: 1842 bytes --]

From 748e128b0808cf320653cd2b577033f9120236cc Mon Sep 17 00:00:00 2001
From: Niklas Eklund <niklas.eklund@posteo.net>
Date: Wed, 2 Feb 2022 19:49:46 +0100
Subject: [PATCH] gnu: Add emacs-flyspell-fu

* gnu/packages/emacs-xyz.scm (emacs-flyspell-fu): New variable.
---
 gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index e2eff4a872..681e0e2fc7 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -26451,6 +26451,30 @@ (define-public emacs-flyspell-correct
 Helm and Ivy.")
     (license license:gpl3+)))
 
+(define-public emacs-spell-fu
+  ;; There are no tagged releases upstream on gitlab, instead we are using the
+  ;; most recent commit.
+  (let ((commit "50be652a6ec8590c3098f46094a92213623349c1") (revision "0"))
+    (package
+      (name "emacs-spell-fu")
+      (version (git-version "0.3" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://gitlab.com/ideasman42/emacs-spell-fu")
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "0n7qwnirvkh2aprb7l1wj9rywdsn33a7s32716m3afcvy7z9pyh4"))))
+      (build-system emacs-build-system)
+      (home-page "https://gitlab.com/ideasman42/emacs-spell-fu")
+      (synopsis "Fast highlighting of misspelled words")
+      (description
+       "This is a light weight spell checker for Emacs,
+that runs from the syntax highlighter without starting external processes.")
+      (license license:gpl3+))))
+
 (define-public emacs-org-emms
   (let ((commit "07a8917f3d628c32e5de1dbd118ac08203772533")
         (revision "1"))
-- 
2.34.0


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

* [bug#53733] [PATCH] gnu: Add emacs-spell-fu
  2022-02-02 18:51 [bug#53733] [PATCH] gnu: Add emacs-flyspell-fu Niklas Eklund
@ 2022-02-05 10:25 ` Niklas Eklund
  2022-03-03 22:50   ` bug#53733: [Patch] " Ludovic Courtès
  0 siblings, 1 reply; 3+ messages in thread
From: Niklas Eklund @ 2022-02-05 10:25 UTC (permalink / raw)
  To: 53733

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


Fix commit message to actually refer to the correct package.

/Niklas

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: emacs-spell-fu --]
[-- Type: text/x-patch, Size: 1837 bytes --]

From f4eacdbecec68d4ea100e92cd5e0283ac83a5baf Mon Sep 17 00:00:00 2001
From: Niklas Eklund <niklas.eklund@posteo.net>
Date: Wed, 2 Feb 2022 19:49:46 +0100
Subject: [PATCH] gnu: Add emacs-spell-fu.

* gnu/packages/emacs-xyz.scm (emacs-spell-fu): New variable.
---
 gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index e2eff4a872..681e0e2fc7 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -26451,6 +26451,30 @@ (define-public emacs-flyspell-correct
 Helm and Ivy.")
     (license license:gpl3+)))
 
+(define-public emacs-spell-fu
+  ;; There are no tagged releases upstream on gitlab, instead we are using the
+  ;; most recent commit.
+  (let ((commit "50be652a6ec8590c3098f46094a92213623349c1") (revision "0"))
+    (package
+      (name "emacs-spell-fu")
+      (version (git-version "0.3" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://gitlab.com/ideasman42/emacs-spell-fu")
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "0n7qwnirvkh2aprb7l1wj9rywdsn33a7s32716m3afcvy7z9pyh4"))))
+      (build-system emacs-build-system)
+      (home-page "https://gitlab.com/ideasman42/emacs-spell-fu")
+      (synopsis "Fast highlighting of misspelled words")
+      (description
+       "This is a light weight spell checker for Emacs,
+that runs from the syntax highlighter without starting external processes.")
+      (license license:gpl3+))))
+
 (define-public emacs-org-emms
   (let ((commit "07a8917f3d628c32e5de1dbd118ac08203772533")
         (revision "1"))
-- 
2.34.0


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

* bug#53733: [Patch] gnu: Add emacs-spell-fu
  2022-02-05 10:25 ` [bug#53733] [PATCH] gnu: Add emacs-spell-fu Niklas Eklund
@ 2022-03-03 22:50   ` Ludovic Courtès
  0 siblings, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2022-03-03 22:50 UTC (permalink / raw)
  To: Niklas Eklund; +Cc: 53733-done

Hi,

Niklas Eklund <niklas.eklund@posteo.net> skribis:

>>From f4eacdbecec68d4ea100e92cd5e0283ac83a5baf Mon Sep 17 00:00:00 2001
> From: Niklas Eklund <niklas.eklund@posteo.net>
> Date: Wed, 2 Feb 2022 19:49:46 +0100
> Subject: [PATCH] gnu: Add emacs-spell-fu.
>
> * gnu/packages/emacs-xyz.scm (emacs-spell-fu): New variable.

Applied, thanks!

Ludo’.




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

end of thread, other threads:[~2022-03-03 22:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-02 18:51 [bug#53733] [PATCH] gnu: Add emacs-flyspell-fu Niklas Eklund
2022-02-05 10:25 ` [bug#53733] [PATCH] gnu: Add emacs-spell-fu Niklas Eklund
2022-03-03 22:50   ` bug#53733: [Patch] " Ludovic Courtès

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