unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#40970] [PATCH] gnu: add emacs-boon
@ 2020-04-29 18:54 Elais Player
  2020-05-01 20:49 ` Nicolas Goaziou
  0 siblings, 1 reply; 3+ messages in thread
From: Elais Player @ 2020-04-29 18:54 UTC (permalink / raw)
  To: 40970

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

Hi,

This patch adds the emacs-boon package with changes recommended by 
Nicolas Goaziou.

Best,

--
Elais Player



[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-emacs-boon.patch --]
[-- Type: text/x-patch, Size: 3411 bytes --]

From a11d6a58aa6c4ccc403d0bf4955b899b8e482cd3 Mon Sep 17 00:00:00 2001
From: Elais Player <elais@fastmail.com>
Date: Wed, 29 Apr 2020 10:37:24 -0600
Subject: [PATCH] gnu: Add emacs-boon.

* gnu/packages/emacs-xyz.scm (emacs-boon): New variable.
---
 gnu/packages/emacs-xyz.scm | 67 +++++++++++++++++++++-----------------
 1 file changed, 37 insertions(+), 30 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 13d539e607..f9438fca10 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -22640,6 +22640,43 @@ ASCII UML sequence diagrams in Emacs, which can be embedded in source code,
 comments or emails.")
       (license license:gpl3+))))
 
+(define-public emacs-boon
+  (package
+    (name "emacs-boon")
+    (version "1.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/jyp/boon/")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1ss9bjs34q41pa0g0nbdzd8fwpjcbd2239rdlx5aykfv9v0b8j77"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-dash" ,emacs-dash)
+       ("emacs-expand-region" ,emacs-expand-region)
+       ("emacs-multiple-cursors" ,emacs-multiple-cursors)
+       ("powerline" ,emacs-powerline)
+       ("spaceline" ,emacs-spaceline)))
+    (home-page "https://github.com/jyp/boon")
+    (synopsis "Ergonomic Command Mode for Emacs")
+    (description
+     "Boon is a complete package for modal editing, which is not Evil.
+Strong points:
+
+@itemize
+@item Ergonomic: common commands are easy to type.
+@item Emacs-friendly: Emacs conventions are respected as much as compatible
+with design goals. This means that Boon integrates well with existing Emacs
+infrastructure, and leverages it. Existing user configuration can often be
+re-used.
+@item Modular: No need to buy into the whole system: mix-and-match the parts
+you want.
+@end itemize")
+    (license license:gpl3)))
+
 (define-public emacs-trashed
   (package
     (name "emacs-trashed")
@@ -22664,33 +22701,3 @@ provides a simple but convenient user interface to manage those trashed
 files.")
     (license license:gpl3+)))
 
-(define-public emacs-boon
-  (package
-    (name "emacs-boon")
-    (version "1.1")
-    (source
-     (origin
-       (method git-fetch)
-       (uri (git-reference
-             (url "https://github.com/jyp/boon/")
-             (commit version)))
-       (file-name (git-file-name name version))
-       (sha256
-        (base32
-         "1ss9bjs34q41pa0g0nbdzd8fwpjcbd2239rdlx5aykfv9v0b8j77"))))
-    (build-system emacs-build-system)
-    (propagated-inputs
-     `(("emacs-expand-region" ,emacs-expand-region)
-       ("spaceline" ,emacs-spaceline)
-       ("powerline" ,emacs-powerline)
-       ("emacs-dash" ,emacs-dash)
-       ("emacs-multiple-cursors" ,emacs-multiple-cursors)))
-    (home-page "https://github.com/jyp/boon")
-    (synopsis "Ergonomic Command Mode for Emacs.")
-    (description
-     "Boon brings modal editing capabilities to Emacs and...
-
-- It tries to be as ergonomic as possible.
-- It remains lightweight (~300 loc for its core.)
-- It attempts to integrate with Emacs as smoothly as possible")
-    (license license:gpl3)))
-- 
2.26.2


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

* [bug#40970] [PATCH] gnu: add emacs-boon
  2020-04-29 18:54 [bug#40970] [PATCH] gnu: add emacs-boon Elais Player
@ 2020-05-01 20:49 ` Nicolas Goaziou
  2020-11-16 19:22   ` bug#40970: " Nicolas Goaziou
  0 siblings, 1 reply; 3+ messages in thread
From: Nicolas Goaziou @ 2020-05-01 20:49 UTC (permalink / raw)
  To: Elais Player; +Cc: 40970

Hello,

Elais Player <elais@fastmail.com> writes:

> This patch adds the emacs-boon package with changes recommended by
> Nicolas Goaziou.

Thank you.

> +    (description
> +     "Boon is a complete package for modal editing, which is not Evil.
> +Strong points:

Nitpick: I suggest to use a complete sentence here.

> +@itemize
> +@item Ergonomic: common commands are easy to type.
> +@item Emacs-friendly: Emacs conventions are respected as much as compatible
> +with design goals. This means that Boon integrates well with existing Emacs
> +infrastructure, and leverages it. Existing user configuration can often be
> +re-used.
> +@item Modular: No need to buy into the whole system: mix-and-match the parts

"No need" -> "no need"

Also, you need to put two spaces at the end of sentences in description.

Otherwise, LGTM.

You generated a new patch on top of the previous one. Could you merge
both, fix the above, and send one last patch?

Regards,

-- 
Nicolas Goaziou




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

* bug#40970: [PATCH] gnu: add emacs-boon
  2020-05-01 20:49 ` Nicolas Goaziou
@ 2020-11-16 19:22   ` Nicolas Goaziou
  0 siblings, 0 replies; 3+ messages in thread
From: Nicolas Goaziou @ 2020-11-16 19:22 UTC (permalink / raw)
  To: Elais Player; +Cc: 40970-done

Nicolas Goaziou <mail@nicolasgoaziou.fr> writes:

> Elais Player <elais@fastmail.com> writes:
>
>> This patch adds the emacs-boon package with changes recommended by
>> Nicolas Goaziou.
>
> Thank you.
>
>> +    (description
>> +     "Boon is a complete package for modal editing, which is not Evil.
>> +Strong points:
>
> Nitpick: I suggest to use a complete sentence here.
>
>> +@itemize
>> +@item Ergonomic: common commands are easy to type.
>> +@item Emacs-friendly: Emacs conventions are respected as much as compatible
>> +with design goals. This means that Boon integrates well with existing Emacs
>> +infrastructure, and leverages it. Existing user configuration can often be
>> +re-used.
>> +@item Modular: No need to buy into the whole system: mix-and-match the parts
>
> "No need" -> "no need"
>
> Also, you need to put two spaces at the end of sentences in description.
>
> Otherwise, LGTM.
>
> You generated a new patch on top of the previous one. Could you merge
> both, fix the above, and send one last patch?

I pushed a new iteration of this patch. I'm closing this one.




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

end of thread, other threads:[~2020-11-16 19:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-29 18:54 [bug#40970] [PATCH] gnu: add emacs-boon Elais Player
2020-05-01 20:49 ` Nicolas Goaziou
2020-11-16 19:22   ` bug#40970: " Nicolas Goaziou

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