unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#47208] [PATCH] gnu: Add emacs-ivy-avy.
@ 2021-03-17  8:03 Alexandr Vityazev
  2021-03-22 21:06 ` bug#47208: " Jelle Licht
  0 siblings, 1 reply; 2+ messages in thread
From: Alexandr Vityazev @ 2021-03-17  8:03 UTC (permalink / raw)
  To: 47208

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index bedfd61fc7..c73b0df283 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -90,7 +90,7 @@
 ;;; Copyright © 2020 Jonathan Rostran <rostranjj@gmail.com>
 ;;; Copyright © 2020, 2021 Noah Evans <noah@nevans.me>
 ;;; Copyright © 2020 Brit Butler <brit@kingcons.io>
-;;; Copyright © 2021 Alexandr Vityazev <avityazew@gmail.com>
+;;; Copyright © 2021 Alexandr Vityazev <avityazev@posteo.org>
 ;;; Copyright © 2021 Yurii Kholodkov <urist.mckorobochka@gmail.com>
 ;;; Copyright © 2021 Alexey Abramov <levenson@mmer.org>
 ;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
@@ -27225,3 +27225,25 @@ and prefered services can easily be configured.")
        "This package provides an Elisp wrapper around the Java
 @command{keytool} command and major mode for viewing Java keystores.")
       (license license:expat))))
+
+(define-public emacs-ivy-avy
+  (package
+    (name "emacs-ivy-avy")
+    (version "0.13.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://elpa.gnu.org/packages/"
+             "ivy-avy-" version ".tar"))
+       (sha256
+        (base32 "1q5caxm4rnh4jy5n88dhkdbx1afsshmfki5dl8xsqbdb3y0zq7yi"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-ivy" ,emacs-ivy)
+       ("emacs-avy" ,emacs-avy)))
+    (home-page "https://github.com/abo-abo/swiper")
+    (synopsis "Avy integration for Ivy")
+    (description
+     "This package adds a \"C-'\" binding to Ivy minibuffer that uses Avy.")
+    (license license:gpl3+)))
-- 
2.30.2



-- 

Alexandr Vityazev




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

* bug#47208: [PATCH] gnu: Add emacs-ivy-avy.
  2021-03-17  8:03 [bug#47208] [PATCH] gnu: Add emacs-ivy-avy Alexandr Vityazev
@ 2021-03-22 21:06 ` Jelle Licht
  0 siblings, 0 replies; 2+ messages in thread
From: Jelle Licht @ 2021-03-22 21:06 UTC (permalink / raw)
  To: Alexandr Vityazev, 47208-done

Alexandr Vityazev <avityazev@posteo.org> writes:

> ---
>  gnu/packages/emacs-xyz.scm | 24 +++++++++++++++++++++++-
>  1 file changed, 23 insertions(+), 1 deletion(-)
>
> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> index bedfd61fc7..c73b0df283 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -90,7 +90,7 @@
>  ;;; Copyright © 2020 Jonathan Rostran <rostranjj@gmail.com>
>  ;;; Copyright © 2020, 2021 Noah Evans <noah@nevans.me>
>  ;;; Copyright © 2020 Brit Butler <brit@kingcons.io>
> -;;; Copyright © 2021 Alexandr Vityazev <avityazew@gmail.com>
> +;;; Copyright © 2021 Alexandr Vityazev <avityazev@posteo.org>
>  ;;; Copyright © 2021 Yurii Kholodkov <urist.mckorobochka@gmail.com>
>  ;;; Copyright © 2021 Alexey Abramov <levenson@mmer.org>
>  ;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
> @@ -27225,3 +27225,25 @@ and prefered services can easily be configured.")
>         "This package provides an Elisp wrapper around the Java
>  @command{keytool} command and major mode for viewing Java keystores.")
>        (license license:expat))))
> +
> +(define-public emacs-ivy-avy
> +  (package
> +    (name "emacs-ivy-avy")
> +    (version "0.13.4")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (string-append
> +             "https://elpa.gnu.org/packages/"
> +             "ivy-avy-" version ".tar"))
> +       (sha256
> +        (base32 "1q5caxm4rnh4jy5n88dhkdbx1afsshmfki5dl8xsqbdb3y0zq7yi"))))
> +    (build-system emacs-build-system)
> +    (propagated-inputs
> +     `(("emacs-ivy" ,emacs-ivy)
> +       ("emacs-avy" ,emacs-avy)))
> +    (home-page "https://github.com/abo-abo/swiper")
> +    (synopsis "Avy integration for Ivy")
> +    (description
> +     "This package adds a \"C-'\" binding to Ivy minibuffer that uses Avy.")
> +    (license license:gpl3+)))
> -- 
> 2.30.2
>
>
>
> -- 
>
> Alexandr Vityazev

Pushed to master as b246420e40, with slightly tweaked commit message. Thanks!
 - Jelle




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

end of thread, other threads:[~2021-03-22 21:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-17  8:03 [bug#47208] [PATCH] gnu: Add emacs-ivy-avy Alexandr Vityazev
2021-03-22 21:06 ` bug#47208: " Jelle Licht

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