unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#33324] [PATCH] gnu: Add emacs-ivy-rich.
@ 2018-11-09  9:41 Pierre Langlois
  2018-11-10  9:52 ` Pierre Langlois
  0 siblings, 1 reply; 3+ messages in thread
From: Pierre Langlois @ 2018-11-09  9:41 UTC (permalink / raw)
  To: 33324

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

Hello Guix!

Here's a patch for the wonderful ivy-rich package :-).

Thanks,
Pierre


[-- Attachment #2: 0001-gnu-Add-emacs-ivy-rich.patch --]
[-- Type: text/x-patch, Size: 2014 bytes --]

From 27378e91cc34d7d22a123cf82aa0672494b5d7f5 Mon Sep 17 00:00:00 2001
From: Pierre Langlois <pierre.langlois@gmx.com>
Date: Sat, 3 Nov 2018 10:28:37 +0000
Subject: [PATCH] gnu: Add emacs-ivy-rich.

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

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 3c7d902e11..f9a7219eb0 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -40,6 +40,7 @@
 ;;; Copyright © 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
 ;;; Copyright © 2018 Alex Branham <alex.branham@gmail.com>
 ;;; Copyright © 2018 Thorsten Wilms <t_w_@freenet.de>
+;;; Copyright © 2018 Pierre Langlois <pierre.langlois@gmx.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -3848,6 +3849,31 @@ use it, call @code{M-x ivy-yasnippet} (but make sure you have enabled
 @code{yas-minor-mode} first).")
       (license license:gpl3+))))
 
+(define-public emacs-ivy-rich
+  (package
+    (name "emacs-ivy-rich")
+    (version "0.1.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/Yevgnen/ivy-rich/archive/"
+                           version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "14r3mx5rkd4wz0ls5pv5w6c7la3z9iy93d3jfind3xyg4kywy95c"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-ivy" ,emacs-ivy)))
+    (home-page "https://github.com/Yevgnen/ivy-rich")
+    (synopsis "More friendly interface for @code{ivy}")
+    (description
+     "This package extends @code{ivy} by showing more information in the
+minibuffer for each candidate.  It adds columns showing buffer modes, file
+sizes, docstrings, ...etc.  If @code{emacs-all-the-icons} is installed, it can
+show icons as well.")
+    (license license:gpl3+)))
+
 (define-public emacs-avy
   (package
     (name "emacs-avy")
-- 
2.19.1


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

* [bug#33324] [PATCH] gnu: Add emacs-ivy-rich.
  2018-11-09  9:41 [bug#33324] [PATCH] gnu: Add emacs-ivy-rich Pierre Langlois
@ 2018-11-10  9:52 ` Pierre Langlois
  2018-11-10 22:25   ` bug#33324: " Ludovic Courtès
  0 siblings, 1 reply; 3+ messages in thread
From: Pierre Langlois @ 2018-11-10  9:52 UTC (permalink / raw)
  To: 33324

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


Pierre Langlois writes:

> Hello Guix!
>
> Here's a patch for the wonderful ivy-rich package :-).

Whoops, I forgot the changelog entry, updated.

Thanks,
Pierre


[-- Attachment #2: 0001-gnu-Add-emacs-ivy-rich.patch --]
[-- Type: text/x-patch, Size: 2072 bytes --]

From 7ad5eeb4b83a2085cc8a49e8ba6254ab3411e9f6 Mon Sep 17 00:00:00 2001
From: Pierre Langlois <pierre.langlois@gmx.com>
Date: Sat, 3 Nov 2018 10:28:37 +0000
Subject: [PATCH] gnu: Add emacs-ivy-rich.

* gnu/packages/emacs.scm (emacs-ivy-rich): New variable.
---
 gnu/packages/emacs.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index c6008e6a94..421f444caa 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -40,6 +40,7 @@
 ;;; Copyright © 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
 ;;; Copyright © 2018 Alex Branham <alex.branham@gmail.com>
 ;;; Copyright © 2018 Thorsten Wilms <t_w_@freenet.de>
+;;; Copyright © 2018 Pierre Langlois <pierre.langlois@gmx.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -3848,6 +3849,31 @@ use it, call @code{M-x ivy-yasnippet} (but make sure you have enabled
 @code{yas-minor-mode} first).")
       (license license:gpl3+))))
 
+(define-public emacs-ivy-rich
+  (package
+    (name "emacs-ivy-rich")
+    (version "0.1.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/Yevgnen/ivy-rich/archive/"
+                           version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "14r3mx5rkd4wz0ls5pv5w6c7la3z9iy93d3jfind3xyg4kywy95c"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-ivy" ,emacs-ivy)))
+    (home-page "https://github.com/Yevgnen/ivy-rich")
+    (synopsis "More friendly interface for @code{ivy}")
+    (description
+     "This package extends @code{ivy} by showing more information in the
+minibuffer for each candidate.  It adds columns showing buffer modes, file
+sizes, docstrings, ...etc.  If @code{emacs-all-the-icons} is installed, it can
+show icons as well.")
+    (license license:gpl3+)))
+
 (define-public emacs-avy
   (package
     (name "emacs-avy")
-- 
2.19.1


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

* bug#33324: [PATCH] gnu: Add emacs-ivy-rich.
  2018-11-10  9:52 ` Pierre Langlois
@ 2018-11-10 22:25   ` Ludovic Courtès
  0 siblings, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2018-11-10 22:25 UTC (permalink / raw)
  To: Pierre Langlois; +Cc: 33324-done

Hi,

Pierre Langlois <pierre.langlois@gmx.com> skribis:

> From 7ad5eeb4b83a2085cc8a49e8ba6254ab3411e9f6 Mon Sep 17 00:00:00 2001
> From: Pierre Langlois <pierre.langlois@gmx.com>
> Date: Sat, 3 Nov 2018 10:28:37 +0000
> Subject: [PATCH] gnu: Add emacs-ivy-rich.
>
> * gnu/packages/emacs.scm (emacs-ivy-rich): New variable.

Applied, thanks!

Ludo’.

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

end of thread, other threads:[~2018-11-10 22:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-09  9:41 [bug#33324] [PATCH] gnu: Add emacs-ivy-rich Pierre Langlois
2018-11-10  9:52 ` Pierre Langlois
2018-11-10 22:25   ` bug#33324: " 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).