GNU bug report logs - #64419
[PATCH] gnu: Add emacs-eldoc-box.

Previous Next

Package: guix-patches;

Reported by: Hilton Chain <hako <at> ultrarare.space>

Date: Sun, 2 Jul 2023 12:28:01 UTC

Severity: normal

Tags: patch

Done: Andrew Tropin <andrew <at> trop.in>

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 64419 in the body.
You can then email your comments to 64419 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 andrew <at> trop.in, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org:
bug#64419; Package guix-patches. (Sun, 02 Jul 2023 12:28:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Hilton Chain <hako <at> ultrarare.space>:
New bug report received and forwarded. Copy sent to andrew <at> trop.in, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org. (Sun, 02 Jul 2023 12:28:02 GMT) Full text and rfc822 format available.

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

From: Hilton Chain <hako <at> ultrarare.space>
To: guix-patches <at> gnu.org
Cc: Hilton Chain <hako <at> ultrarare.space>
Subject: [PATCH] gnu: Add emacs-eldoc-box.
Date: Sun,  2 Jul 2023 20:27:38 +0800
* gnu/packages/emacs-xyz.scm (emacs-eldoc-box): New variable.
---
 gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 6c86ee3793..9754a762b8 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -18623,6 +18623,28 @@ (define-public emacs-eldoc
 variable instead, to remind you of that variable's meaning.")
     (license license:gpl3+)))
 
+(define-public emacs-eldoc-box
+  (package
+    (name "emacs-eldoc-box")
+    (version "1.10.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/casouri/eldoc-box")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "076bbn2nnrx02zk2hs4b39q0w3s7afbgfdxnwk2y2s8lkq1l6l87"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/casouri/eldoc-box")
+    (synopsis "Childframe doc for eglot and anything that uses eldoc")
+    (description
+     "This package displays ElDoc documentations in a childframe.  The
+childfrme is selectable and scrollable with mouse, even thought the cursor is
+hidden.")
+    (license license:gpl3+)))
+
 ;; Tests for ert-runner have a circular dependency with ecukes, and therefore
 ;; cannot be run
 (define-public emacs-ert-runner

base-commit: a919a16898e7219fdd26bdfe33a9959e7156d59d
-- 
2.40.1





Reply sent to Andrew Tropin <andrew <at> trop.in>:
You have taken responsibility. (Mon, 10 Jul 2023 06:34:02 GMT) Full text and rfc822 format available.

Notification sent to Hilton Chain <hako <at> ultrarare.space>:
bug acknowledged by developer. (Mon, 10 Jul 2023 06:34:02 GMT) Full text and rfc822 format available.

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

From: Andrew Tropin <andrew <at> trop.in>
To: Hilton Chain <hako <at> ultrarare.space>, 64419-done <at> debbugs.gnu.org
Cc: Hilton Chain <hako <at> ultrarare.space>,
 Liliana Marie Prikler <liliana.prikler <at> gmail.com>
Subject: Re: [bug#64419] [PATCH] gnu: Add emacs-eldoc-box.
Date: Mon, 10 Jul 2023 10:33:42 +0400
[Message part 1 (text/plain, inline)]
On 2023-07-02 20:27, Hilton Chain wrote:

> * gnu/packages/emacs-xyz.scm (emacs-eldoc-box): New variable.
> ---
>  gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
>  1 file changed, 22 insertions(+)
>
> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> index 6c86ee3793..9754a762b8 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -18623,6 +18623,28 @@ (define-public emacs-eldoc
>  variable instead, to remind you of that variable's meaning.")
>      (license license:gpl3+)))
>  
> +(define-public emacs-eldoc-box
> +  (package
> +    (name "emacs-eldoc-box")
> +    (version "1.10.1")
> +    (source (origin
> +              (method git-fetch)
> +              (uri (git-reference
> +                    (url "https://github.com/casouri/eldoc-box")
> +                    (commit (string-append "v" version))))
> +              (file-name (git-file-name name version))
> +              (sha256
> +               (base32
> +                "076bbn2nnrx02zk2hs4b39q0w3s7afbgfdxnwk2y2s8lkq1l6l87"))))
> +    (build-system emacs-build-system)
> +    (home-page "https://github.com/casouri/eldoc-box")
> +    (synopsis "Childframe doc for eglot and anything that uses eldoc")
> +    (description
> +     "This package displays ElDoc documentations in a childframe.  The
> +childfrme is selectable and scrollable with mouse, even thought the cursor is
> +hidden.")
> +    (license license:gpl3+)))
> +
>  ;; Tests for ert-runner have a circular dependency with ecukes, and therefore
>  ;; cannot be run
>  (define-public emacs-ert-runner
>
> base-commit: a919a16898e7219fdd26bdfe33a9959e7156d59d

Applied, pushed as 6663eb9aa7, thank you!

-- 
Best regards,
Andrew Tropin
[signature.asc (application/pgp-signature, inline)]

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

This bug report was last modified 2 years and 7 days ago.

Previous Next


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