GNU bug report logs - #47208
[PATCH] gnu: Add emacs-ivy-avy.

Previous Next

Package: guix-patches;

Reported by: Alexandr Vityazev <avityazev <at> posteo.org>

Date: Wed, 17 Mar 2021 09:17:01 UTC

Severity: normal

Tags: patch

Done: Jelle Licht <jlicht <at> fsfe.org>

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 47208 in the body.
You can then email your comments to 47208 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#47208; Package guix-patches. (Wed, 17 Mar 2021 09:17:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Alexandr Vityazev <avityazev <at> posteo.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 17 Mar 2021 09:17:01 GMT) Full text and rfc822 format available.

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

From: Alexandr Vityazev <avityazev <at> posteo.org>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: Add emacs-ivy-avy.
Date: Wed, 17 Mar 2021 11:03:22 +0300
---
 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 <at> gmail.com>
 ;;; Copyright © 2020, 2021 Noah Evans <noah <at> nevans.me>
 ;;; Copyright © 2020 Brit Butler <brit <at> kingcons.io>
-;;; Copyright © 2021 Alexandr Vityazev <avityazew <at> gmail.com>
+;;; Copyright © 2021 Alexandr Vityazev <avityazev <at> posteo.org>
 ;;; Copyright © 2021 Yurii Kholodkov <urist.mckorobochka <at> gmail.com>
 ;;; Copyright © 2021 Alexey Abramov <levenson <at> mmer.org>
 ;;; Copyright © 2021 Xinglu Chen <public <at> 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




Reply sent to Jelle Licht <jlicht <at> fsfe.org>:
You have taken responsibility. (Mon, 22 Mar 2021 21:07:02 GMT) Full text and rfc822 format available.

Notification sent to Alexandr Vityazev <avityazev <at> posteo.org>:
bug acknowledged by developer. (Mon, 22 Mar 2021 21:07:02 GMT) Full text and rfc822 format available.

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

From: Jelle Licht <jlicht <at> fsfe.org>
To: Alexandr Vityazev <avityazev <at> posteo.org>, 47208-done <at> debbugs.gnu.org
Subject: Re: [bug#47208] [PATCH] gnu: Add emacs-ivy-avy.
Date: Mon, 22 Mar 2021 22:06:17 +0100
Alexandr Vityazev <avityazev <at> 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 <at> gmail.com>
>  ;;; Copyright © 2020, 2021 Noah Evans <noah <at> nevans.me>
>  ;;; Copyright © 2020 Brit Butler <brit <at> kingcons.io>
> -;;; Copyright © 2021 Alexandr Vityazev <avityazew <at> gmail.com>
> +;;; Copyright © 2021 Alexandr Vityazev <avityazev <at> posteo.org>
>  ;;; Copyright © 2021 Yurii Kholodkov <urist.mckorobochka <at> gmail.com>
>  ;;; Copyright © 2021 Alexey Abramov <levenson <at> mmer.org>
>  ;;; Copyright © 2021 Xinglu Chen <public <at> 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




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

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

Previous Next


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