GNU bug report logs - #47668
[PATCH] gnu: Add emacs-vertico.

Previous Next

Package: guix-patches;

Reported by: Xinglu Chen <public <at> yoctocell.xyz>

Date: Fri, 9 Apr 2021 06:23:01 UTC

Severity: normal

Tags: patch

Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 47668 in the body.
You can then email your comments to 47668 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#47668; Package guix-patches. (Fri, 09 Apr 2021 06:23:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Xinglu Chen <public <at> yoctocell.xyz>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 09 Apr 2021 06:23:01 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Xinglu Chen <public <at> yoctocell.xyz>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: Add emacs-vertico.
Date: Fri, 09 Apr 2021 08:22:15 +0200
* 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






Information forwarded to guix-patches <at> gnu.org:
bug#47668; Package guix-patches. (Sat, 10 Apr 2021 13:26:02 GMT) Full text and rfc822 format available.

Message #8 received at 47668 <at> debbugs.gnu.org (full text, mbox):

From: Xinglu Chen <public <at> yoctocell.xyz>
To: 47668 <at> debbugs.gnu.org
Subject: [PATCH v2] gnu: Add emacs-vertico.
Date: Sat, 10 Apr 2021 15:25:03 +0200
* 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






Reply sent to Nicolas Goaziou <mail <at> nicolasgoaziou.fr>:
You have taken responsibility. (Sun, 11 Apr 2021 08:46:02 GMT) Full text and rfc822 format available.

Notification sent to Xinglu Chen <public <at> yoctocell.xyz>:
bug acknowledged by developer. (Sun, 11 Apr 2021 08:46:02 GMT) Full text and rfc822 format available.

Message #13 received at 47668-done <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: Xinglu Chen <public <at> yoctocell.xyz>
Cc: 47668-done <at> debbugs.gnu.org
Subject: Re: [bug#47668] [PATCH v2] gnu: Add emacs-vertico.
Date: Sun, 11 Apr 2021 10:45:06 +0200
Hello,

Xinglu Chen <public <at> 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




Information forwarded to guix-patches <at> gnu.org:
bug#47668; Package guix-patches. (Sun, 11 Apr 2021 09:10:01 GMT) Full text and rfc822 format available.

Message #16 received at 47668-done <at> debbugs.gnu.org (full text, mbox):

From: Xinglu Chen <public <at> yoctocell.xyz>
To: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
Cc: 47668-done <at> debbugs.gnu.org
Subject: Re: bug#47668: [PATCH v2] gnu: Add emacs-vertico.
Date: Sun, 11 Apr 2021 11:09:36 +0200
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!





bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sun, 09 May 2021 11:24:07 GMT) Full text and rfc822 format available.

This bug report was last modified 4 years and 99 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.