From unknown Fri Sep 05 19:41:18 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#66561 <66561@debbugs.gnu.org> To: bug#66561 <66561@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Add emacs-poke-mode. Reply-To: bug#66561 <66561@debbugs.gnu.org> Date: Sat, 06 Sep 2025 02:41:18 +0000 retitle 66561 [PATCH] gnu: Add emacs-poke-mode. reassign 66561 guix-patches submitter 66561 Bruno Victal severity 66561 normal tag 66561 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Sun Oct 15 11:17:52 2023 Received: (at submit) by debbugs.gnu.org; 15 Oct 2023 15:17:52 +0000 Received: from localhost ([127.0.0.1]:53942 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qs2sK-0001Nf-Bo for submit@debbugs.gnu.org; Sun, 15 Oct 2023 11:17:52 -0400 Received: from lists.gnu.org ([2001:470:142::17]:50042) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qs2sG-0001NP-Rk for submit@debbugs.gnu.org; Sun, 15 Oct 2023 11:17:51 -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 1qs2rm-0007dR-Q9 for guix-patches@gnu.org; Sun, 15 Oct 2023 11:17:18 -0400 Received: from smtpmciv5.myservices.hosting ([185.26.107.241]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qs2rk-0002sd-Tz for guix-patches@gnu.org; Sun, 15 Oct 2023 11:17:18 -0400 Received: from mail1.netim.hosting (unknown [185.26.106.173]) by smtpmciv5.myservices.hosting (Postfix) with ESMTP id 6CD2620C83 for ; Sun, 15 Oct 2023 17:17:15 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mail1.netim.hosting (Postfix) with ESMTP id BA5E08009A; Sun, 15 Oct 2023 17:17:06 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at mail1.netim.hosting Received: from mail1.netim.hosting ([127.0.0.1]) by localhost (mail1-2.netim.hosting [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id T_ODqbT_7lzB; Sun, 15 Oct 2023 17:17:06 +0200 (CEST) Received: from guix-nuc.home.arpa (unknown [10.192.1.83]) (Authenticated sender: lumen@makinata.eu) by mail1.netim.hosting (Postfix) with ESMTPSA id 486A480095; Sun, 15 Oct 2023 17:17:02 +0200 (CEST) From: Bruno Victal To: guix-patches@gnu.org Subject: [PATCH] gnu: Add emacs-poke-mode. Date: Sun, 15 Oct 2023 16:16:37 +0100 Message-ID: X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 X-Debbugs-Cc: Andrew Tropin , Katherine Cox-Buday , Liliana Marie Prikler Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.26.107.241; envelope-from=mirai@makinata.eu; helo=smtpmciv5.myservices.hosting X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: submit Cc: Bruno Victal 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: -0.0 (/) * gnu/packages/emacs-xyz.scm (emacs-poke-mode): New variable. Copyright-paperwork-exempt: Yes --- gnu/packages/emacs-xyz.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index bb8c25f9b5..8c8f158a32 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -38262,6 +38262,24 @@ (define-public emacs-project-x across sessions.") (license license:gpl3+)))) +(define-public emacs-poke-mode + (package + (name "emacs-poke-mode") + (version "3.1") + (source + (origin + (method url-fetch) + (uri (string-append "https://elpa.gnu.org/packages/poke-mode-" version + ".tar")) + (sha256 + (base32 "1lirhws5d8l16qs5ddrvvz0f9xfl004q9yp333pdgsmcpk3ww7sr")))) + (build-system emacs-build-system) + (home-page "https://elpa.gnu.org/packages/poke-mode.html") + (synopsis "Major mode for editing GNU poke programs") + (description + "This package provides a major mode for editing GNU poke programs.") + (license license:gpl3+))) + (define-public emacs-vcard-mode ;; Use the latest commit, as there are no tagged releases. (let ((commit "ab1a2885a5720d7fb02d9b6583ee908ba2260b78") base-commit: a0d2ecde943bd1854ddbb7c0cad35a1fc64dc5ab -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 23 13:05:55 2023 Received: (at 66561-done) by debbugs.gnu.org; 23 Oct 2023 17:05:56 +0000 Received: from localhost ([127.0.0.1]:51517 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1quyNH-00040l-Mg for submit@debbugs.gnu.org; Mon, 23 Oct 2023 13:05:55 -0400 Received: from smtpm3.myservices.hosting ([185.26.105.234]:60136) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1quyNE-00040b-1j for 66561-done@debbugs.gnu.org; Mon, 23 Oct 2023 13:05:53 -0400 Received: from mail1.netim.hosting (unknown [185.26.106.173]) by smtpm3.myservices.hosting (Postfix) with ESMTP id 7F2B520DBC; Mon, 23 Oct 2023 19:05:21 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mail1.netim.hosting (Postfix) with ESMTP id E30D98009E; Mon, 23 Oct 2023 19:05:20 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at mail1.netim.hosting Received: from mail1.netim.hosting ([127.0.0.1]) by localhost (mail1-2.netim.hosting [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id 4u-IIb2OkXbj; Mon, 23 Oct 2023 19:05:20 +0200 (CEST) Received: from guix-nuc (unknown [10.192.1.83]) (Authenticated sender: lumen@makinata.eu) by mail1.netim.hosting (Postfix) with ESMTPSA id 6F5C88005B; Mon, 23 Oct 2023 19:05:20 +0200 (CEST) From: Bruno Victal Subject: Re: [bug#66561] [PATCH] gnu: Add emacs-poke-mode. In-Reply-To: (Bruno Victal's message of "Sun, 15 Oct 2023 16:16:37 +0100") References: X-Debbugs-No-Ack: X-Hashcash: 1:26:231023:66561-done@debbugs.gnu.org::sqOo9Kvtj/cTifIf:0kyH4 X-Hashcash: 1:26:231023:ludo@gnu.org::hPqX+z/R0IF8GutC:0gb21 Date: Mon, 23 Oct 2023 18:05:19 +0100 Message-ID: <87bkcpl168.fsf@makinata.eu> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.7 (/) X-Debbugs-Envelope-To: 66561-done Cc: Ludovic =?utf-8?Q?Court=C3=A8s?= , 66561-done@debbugs.gnu.org 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: -0.3 (/) Added in 3448e169730a6d71836062f8c5680758da208836. -- Thanks, Bruno. From unknown Fri Sep 05 19:41:18 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 21 Nov 2023 12:24:13 +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