GNU bug report logs - #57036
[PATCH] gnu: Add emacs-mini-frame.

Previous Next

Package: guix-patches;

Reported by: Pierre-Henry Fröhring <contact <at> phfrohring.com>

Date: Sun, 7 Aug 2022 12:54:01 UTC

Severity: normal

Tags: patch

Done: Liliana Marie Prikler <liliana.prikler <at> gmail.com>

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 57036 in the body.
You can then email your comments to 57036 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#57036; Package guix-patches. (Sun, 07 Aug 2022 12:54:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Pierre-Henry Fröhring <contact <at> phfrohring.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sun, 07 Aug 2022 12:54:01 GMT) Full text and rfc822 format available.

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

From: Pierre-Henry Fröhring <contact <at> phfrohring.com>
To: guix-patches <at> gnu.org
Cc: Pierre-Henry Fröhring <contact <at> phfrohring.com>
Subject: [PATCH] gnu: Add emacs-mini-frame.
Date: Sun,  7 Aug 2022 14:53:12 +0200
* gnu/packages/emacs-xyz.scm (emacs-mini-frame): New variable.
---
 gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 3c1d322db3..1fc4442e90 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -31967,3 +31967,26 @@ (define-public emacs-vundo
 tree to go back to previous buffer states.  To use vundo, type @kbd{M-x vundo RET} in
 the buffer you want to undo.  An undo tree buffer should pop up.")
     (license license:gpl3+)))
+
+(define-public emacs-mini-frame
+  (package
+    (name "emacs-mini-frame")
+    (version "20220627.2041")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://melpa.org/packages/mini-frame-"
+                                  version ".el"))
+              (sha256
+               (base32
+                "0xn5glw1159l7qg216yvi56clax9lbx4prrv28y1pkxyrqqwwl8d"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/muffinmad/emacs-mini-frame")
+    (synopsis "Show minibuffer in child frame")
+    (description
+     "Place minibuffer at the top of the current frame on read-from-minibuffer.
+
+@dfn{mini-frame-mode} makes an advice around read-from-minibuffer function to
+create and show minibuffer-only child frame to accept input. @code{find-file}
+and similar functions associated mini-buffers may appear at the center of the
+screen and not at the bottom.")
+    (license license:gpl3+)))
-- 
2.37.1





Information forwarded to guix-patches <at> gnu.org:
bug#57036; Package guix-patches. (Sun, 07 Aug 2022 16:24:02 GMT) Full text and rfc822 format available.

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

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: Pierre-Henry Fröhring <contact <at> phfrohring.com>, 
 57036 <at> debbugs.gnu.org
Subject: Re: [PATCH] gnu: Add emacs-mini-frame.
Date: Sun, 07 Aug 2022 18:23:33 +0200
Am Sonntag, dem 07.08.2022 um 14:53 +0200 schrieb Pierre-Henry
Fröhring:
> * gnu/packages/emacs-xyz.scm (emacs-mini-frame): New variable.
> ---
>  gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++
>  1 file changed, 23 insertions(+)
> 
> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> index 3c1d322db3..1fc4442e90 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -31967,3 +31967,26 @@ (define-public emacs-vundo
>  tree to go back to previous buffer states.  To use vundo, type
> @kbd{M-x vundo RET} in
>  the buffer you want to undo.  An undo tree buffer should pop up.")
>      (license license:gpl3+)))
> +
> +(define-public emacs-mini-frame
> +  (package
> +    (name "emacs-mini-frame")
> +    (version "20220627.2041")
We don't do MELPA versions here.  Use git with git-version please. 
Refer to the "Version:" header in the source file to get the base
version.
> +    (source (origin
> +              (method url-fetch)
> +              (uri (string-append
> "https://melpa.org/packages/mini-frame-"
> +                                  version ".el"))
> +              (sha256
> +               (base32
> +               
> "0xn5glw1159l7qg216yvi56clax9lbx4prrv28y1pkxyrqqwwl8d"))))
> +    (build-system emacs-build-system)
> +    (home-page "https://github.com/muffinmad/emacs-mini-frame")
> +    (synopsis "Show minibuffer in child frame")
> +    (description
> +     "Place minibuffer at the top of the current frame on read-from-
> minibuffer.
> +
> +@dfn{mini-frame-mode} makes an advice around read-from-minibuffer
> function to
> +create and show minibuffer-only child frame to accept input.
> @code{find-file}
> +and similar functions associated mini-buffers may appear at the
> center of the
> +screen and not at the bottom.")
> +    (license license:gpl3+)))
Cheers





Information forwarded to guix-patches <at> gnu.org:
bug#57036; Package guix-patches. (Mon, 08 Aug 2022 08:34:02 GMT) Full text and rfc822 format available.

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

From: contact <at> phfrohring.com <contact <at> phfrohring.com>
To: "Liliana Marie Prikler" <liliana.prikler <at> gmail.com>
Cc: 57036 <at> debbugs.gnu.org
Subject: Re: [PATCH] gnu: Add emacs-mini-frame.
Date: Mon, 08 Aug 2022 10:32:57 +0200
[Message part 1 (text/plain, inline)]
> We don't do MELPA versions here. Use git with git-version please.
> Refer to the "Version:" header in the source file to get the base
> version.

Thank you for your quick reply.
Here is a patch with your remarks taken into account.

Cheers,
PHF
[Message part 2 (text/html, inline)]
[0001-gnu-Add-emacs-mini-frame.patch (text/x-patch, attachment)]

Reply sent to Liliana Marie Prikler <liliana.prikler <at> gmail.com>:
You have taken responsibility. (Tue, 16 Aug 2022 19:31:01 GMT) Full text and rfc822 format available.

Notification sent to Pierre-Henry Fröhring <contact <at> phfrohring.com>:
bug acknowledged by developer. (Tue, 16 Aug 2022 19:31:01 GMT) Full text and rfc822 format available.

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

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: "contact <at> phfrohring.com" <contact <at> phfrohring.com>
Cc: 57036-done <at> debbugs.gnu.org
Subject: Re: [PATCH] gnu: Add emacs-mini-frame.
Date: Tue, 16 Aug 2022 21:30:07 +0200
Hi,

Am Montag, dem 08.08.2022 um 10:32 +0200 schrieb
contact <at> phfrohring.com:
> > We don't do MELPA versions here. Use git with git-version please.
> > Refer to the "Version:" header in the source file to get the base
> > version.
> 
> Thank you for your quick reply.
> Here is a patch with your remarks taken into account.
I moved the package around a little, slightly reworded the description,
and pushed it.

Cheers




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 14 Sep 2022 11:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 222 days ago.

Previous Next


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