all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#47668] [PATCH] gnu: Add emacs-vertico.
@ 2021-04-09  6:22 Xinglu Chen
  2021-04-10 13:25 ` [bug#47668] [PATCH v2] " Xinglu Chen
  0 siblings, 1 reply; 4+ messages in thread
From: Xinglu Chen @ 2021-04-09  6:22 UTC (permalink / raw)
  To: 47668

* gnu/packages/emacs-xyz.scm (emacs-vertico): 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 8e80ccbb56..f11e5c7ef1 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -27564,3 +27564,27 @@ and prefered services can easily be configured.")
 quasi-prefix map, with many useful bindings.  These bindings are
 shorter than usual, using mostly unprefixed keys.")
     (license license:gpl3+)))
+
+(define-public emacs-vertico
+  (package
+    (name "emacs-vertico")
+    (version "0.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/minad/vertico")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0gvv1yjgq88s9y0fm9r1r270k2sfkfzbd3wcnjq68swjm24mp8h9"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/minad/vertico")
+    (synopsis "Vertical interactive completion")
+    (description "This package provides a minimalistic vertical completion UI,
+which is based on Emacs' default completion system.  By reusing the default
+system, Vertico achieves full compatibility with built-in Emacs commands and
+completion tables.  Vertico is pretty bare-bone and only provides a minimal
+set of commands.  Additional optional enhancements can be provided externally
+by complementary packages.")
+    (license license:gpl3+)))

base-commit: 2afc79b51d0956e5834e81a70692a35cd83e4e87
-- 
2.31.1






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

* [bug#47668] [PATCH v2] gnu: Add emacs-vertico.
  2021-04-09  6:22 [bug#47668] [PATCH] gnu: Add emacs-vertico Xinglu Chen
@ 2021-04-10 13:25 ` Xinglu Chen
  2021-04-11  8:45   ` bug#47668: " Nicolas Goaziou
  0 siblings, 1 reply; 4+ messages in thread
From: Xinglu Chen @ 2021-04-10 13:25 UTC (permalink / raw)
  To: 47668

* gnu/packages/emacs-xyz.scm (emacs-vertico): New variable.
---
Version 0.3 was just released.

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index a71b1c4cf7..88c2fae447 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -27564,3 +27564,35 @@ and preferred services can easily be configured.")
 quasi-prefix map, with many useful bindings.  These bindings are
 shorter than usual, using mostly unprefixed keys.")
     (license license:gpl3+)))
+
+(define-public emacs-vertico
+  (package
+    (name "emacs-vertico")
+    (version "0.3")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/minad/vertico")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1r2p09y3ag14dqd46nyy1pa2j2cvn4gn9pji47mzmwydsm2f8hv1"))))
+    (build-system emacs-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-before 'install 'build-doc
+           (lambda _
+             (invoke "makeinfo" "vertico.texi"))))))
+    (native-inputs
+     `(("texinfo" ,texinfo)))
+    (home-page "https://github.com/minad/vertico")
+    (synopsis "Vertical interactive completion")
+    (description "This package provides a minimalistic vertical completion UI,
+which is based on Emacs' default completion system.  By reusing the default
+system, Vertico achieves full compatibility with built-in Emacs commands and
+completion tables.  Vertico is pretty bare-bone and only provides a minimal
+set of commands.  Additional optional enhancements can be provided externally
+by complementary packages.")
+    (license license:gpl3+)))

base-commit: f91e1046c4050c0947429b9141c80024c261d7b5
-- 
2.31.1






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

* bug#47668: [PATCH v2] gnu: Add emacs-vertico.
  2021-04-10 13:25 ` [bug#47668] [PATCH v2] " Xinglu Chen
@ 2021-04-11  8:45   ` Nicolas Goaziou
  2021-04-11  9:09     ` [bug#47668] " Xinglu Chen
  0 siblings, 1 reply; 4+ messages in thread
From: Nicolas Goaziou @ 2021-04-11  8:45 UTC (permalink / raw)
  To: Xinglu Chen; +Cc: 47668-done

Hello,

Xinglu Chen <public@yoctocell.xyz> writes:

> * gnu/packages/emacs-xyz.scm (emacs-vertico): New variable.

Applied. Thank you.

I moved the package definition elsewhere than at the very end of the
file, because this location is prone to introduce merge conflicts.

Regards,
-- 
Nicolas Goaziou




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

* [bug#47668] [PATCH v2] gnu: Add emacs-vertico.
  2021-04-11  8:45   ` bug#47668: " Nicolas Goaziou
@ 2021-04-11  9:09     ` Xinglu Chen
  0 siblings, 0 replies; 4+ messages in thread
From: Xinglu Chen @ 2021-04-11  9:09 UTC (permalink / raw)
  To: Nicolas Goaziou; +Cc: 47668-done

On Sun, Apr 11 2021, Nicolas Goaziou wrote:

> I moved the package definition elsewhere than at the very end of the
> file, because this location is prone to introduce merge conflicts.

Makes sense, thanks!





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

end of thread, other threads:[~2021-04-11  9:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-09  6:22 [bug#47668] [PATCH] gnu: Add emacs-vertico Xinglu Chen
2021-04-10 13:25 ` [bug#47668] [PATCH v2] " Xinglu Chen
2021-04-11  8:45   ` bug#47668: " Nicolas Goaziou
2021-04-11  9:09     ` [bug#47668] " Xinglu Chen

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.