From debbugs-submit-bounces@debbugs.gnu.org Sun Jul 02 08:27:40 2023 Received: (at submit) by debbugs.gnu.org; 2 Jul 2023 12:27:41 +0000 Received: from localhost ([127.0.0.1]:59478 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qFwB2-0001qp-KJ for submit@debbugs.gnu.org; Sun, 02 Jul 2023 08:27:40 -0400 Received: from lists.gnu.org ([209.51.188.17]:60130) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qFwB0-0001qh-69 for submit@debbugs.gnu.org; Sun, 02 Jul 2023 08:27:39 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qFwAz-0007bi-T0 for guix-patches@gnu.org; Sun, 02 Jul 2023 08:27:37 -0400 Received: from mail.boiledscript.com ([144.168.59.46]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qFwAy-000226-56 for guix-patches@gnu.org; Sun, 02 Jul 2023 08:27:37 -0400 From: Hilton Chain DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ultrarare.space; s=dkim; t=1688300641; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=kY4P49DE8FpLdk7vBbczEvYXLPWBYi2kK3FdOz8WdxE=; b=RI4mw2l63Jpv1SbAm/46xLPQhEY+DwdqUkd/CI3+dpixZxqDpAxj+xh6rCrovGDFFkMloq mz1dKjPMfJ0H6O7tfzcL0Q48mSl4KYoS1vd+Fj1xjaJakEbSsUmbrAZYJYhkynKo4V7Fcn /DzV3oMlkKw9iFYSIN8DDd1EAn3sHPVzauhNwpSq0+Qb1vP/2SCdixjvkUydG6b226OLK3 WCPp6f5rRz5FRyww67PtWeZR9PX+KjGG7wGSgWsjq1d6nh1iT9t/CR4yhoo07CxcEyIBQ9 gbDIyvI/C/xKyxRPJV6QvvS4gRkb8fE9EYnLd2OodVAP2nVrumj2xBWcn5TkYA== To: guix-patches@gnu.org Subject: [PATCH] gnu: Add emacs-eldoc-box. Date: Sun, 2 Jul 2023 20:27:38 +0800 Message-Id: <66b546e021e041521faf89cea1f615c12ecaa864.1688300843.git.hako@ultrarare.space> MIME-Version: 1.0 X-Debbugs-Cc: Andrew Tropin , Liliana Marie Prikler Content-Transfer-Encoding: 8bit X-Spamd-Bar: + Authentication-Results: mail.boiledscript.com; auth=pass smtp.mailfrom=hako@ultrarare.space X-Spam-Level: * Received-SPF: pass client-ip=144.168.59.46; envelope-from=hako@ultrarare.space; helo=mail.boiledscript.com X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Hilton Chain X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) * 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 From debbugs-submit-bounces@debbugs.gnu.org Mon Jul 10 02:33:57 2023 Received: (at 64419-done) by debbugs.gnu.org; 10 Jul 2023 06:33:57 +0000 Received: from localhost ([127.0.0.1]:47528 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qIkT7-0002pY-Bu for submit@debbugs.gnu.org; Mon, 10 Jul 2023 02:33:57 -0400 Received: from relay6-d.mail.gandi.net ([217.70.183.198]:44307) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qIkT4-0002pJ-Hm for 64419-done@debbugs.gnu.org; Mon, 10 Jul 2023 02:33:55 -0400 X-GND-Sasl: andrew@trop.in DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=trop.in; s=gm1; t=1688970828; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=BHxErHarel9J8ZPJo0po4z3uvvFjajAXNDqPpuft0WQ=; b=n0SmOkeJ8/X6yIOEST0DHgZx2/Sd7NUy5RPZa+FMggglIXb+LrsrXgS0YAtQzjWJLeNjLr /S+J5OPcWNKoQkSH/jlrbZi8xYU75O7YZJ9elTR3m16weES9rx9E0fvZskyQJnM8nSwkzq yAoaNrVvAKGo3rZ1PFLbsDakZabLCa+nZioqlhMZDv/JcyXV/vitpnnJXrhYwaZqdLdI0K CJLfIKrbv3pTp1chU/X6/NxnijlA7VFW41TbmZ2TIoSeK/HwAj+9MIEjRnIUWSASjDQ9l2 6ntExSMurHBLSXNkdHqJKVLB13diJFfPhWoE7brlt04rs1kVA/TruaKyo2kLgQ== X-GND-Sasl: andrew@trop.in X-GND-Sasl: andrew@trop.in X-GND-Sasl: andrew@trop.in Received: by mail.gandi.net (Postfix) with ESMTPSA id 7BD21C000B; Mon, 10 Jul 2023 06:33:47 +0000 (UTC) From: Andrew Tropin To: Hilton Chain , 64419-done@debbugs.gnu.org Subject: Re: [bug#64419] [PATCH] gnu: Add emacs-eldoc-box. In-Reply-To: <66b546e021e041521faf89cea1f615c12ecaa864.1688300843.git.hako@ultrarare.space> References: <66b546e021e041521faf89cea1f615c12ecaa864.1688300843.git.hako@ultrarare.space> Date: Mon, 10 Jul 2023 10:33:42 +0400 Message-ID: <87o7kk2s3d.fsf@trop.in> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 64419-done Cc: Hilton Chain , Liliana Marie Prikler X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable 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+))) >=20=20 > +(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 curs= or is > +hidden.") > + (license license:gpl3+))) > + > ;; Tests for ert-runner have a circular dependency with ecukes, and ther= efore > ;; cannot be run > (define-public emacs-ert-runner > > base-commit: a919a16898e7219fdd26bdfe33a9959e7156d59d Applied, pushed as 6663eb9aa7, thank you! =2D-=20 Best regards, Andrew Tropin --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEKEGaxlA4dEDH6S/6IgjSCVjB3rAFAmSrpkcACgkQIgjSCVjB 3rDBbhAAiOldx6CO4xfL6YMpzbhvHt0OGM7Ud1zlU2HmGgcVSUpjGtK1pqKed4Zk gOpgLGjID8tRxlci3MXJuhFiIol7oIJKxPjzcJ+mYDRQnX6WgzFW65u5Uzxs3yv9 LewBgroFvThG5FzIV6j5XUXFrk9fMBU9l/ogDtOZfUKPS+kKwSEXiq/ERWHd7L7F woCUsYc3dsU7YsQIP/aw+5GT9UVIk/FU1PGQHcMKIwoDpiJTUMym2ZjKyDxkv2Oq /SfIS/d7XAJNpsBemg9tdVwIsU3CBvJj/b1rQSv62OxBI/i4759P5Tpnv/vSEGjy 1CWNwEaPer3Lu5UDPF2KhVMO2mC6XytpqCJURkLzQMTgOFT/oD9QrWfXaDv53soH pESzK6dWDDFxip0mQGJMls/yPqajhjx8fPvzNjkWBI1npziYFbHYXODZSz52sTf7 dK+MuQ5IuRNNhuBHOE/iOORGrREsFvw5dNQwApidunQuJqgw1VQlDxQTU/73F4KN n130d5s4pBhK0KEBUkEgVlp+PgzWvwXxY+0CXc6cj+bC4tIfjJKoSLZ6cdVCFNgJ Rcue2OOgUcs07PH/ZHucQePO919YiAXFRSqngercYpvWcNOdAw7hv1TCF0ie5yjC QYNdLFPN+8nVDD/XoAxzmYypBghvcYuygISKPR6aUN1mpD5rbVU= =gBqa -----END PGP SIGNATURE----- --=-=-=-- From unknown Sat Aug 16 18:20:50 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 07 Aug 2023 11:24:07 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator