From unknown Mon Jun 23 02:23:38 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#73944] [PATCH] gnu: Add emacs-show-font. Resent-From: Cayetano Santos Original-Sender: "Debbugs-submit" Resent-CC: andrew@trop.in, cox.katherine.e+guix@gmail.com, liliana.prikler@gmail.com, guix-patches@gnu.org Resent-Date: Tue, 22 Oct 2024 10:25:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 73944 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 73944@debbugs.gnu.org Cc: Cayetano Santos , Andrew Tropin , Katherine Cox-Buday , Liliana Marie Prikler X-Debbugs-Original-To: guix-patches@gnu.org X-Debbugs-Original-Xcc: Andrew Tropin , Katherine Cox-Buday , Liliana Marie Prikler Received: via spool by submit@debbugs.gnu.org id=B.172959267310343 (code B ref -1); Tue, 22 Oct 2024 10:25:01 +0000 Received: (at submit) by debbugs.gnu.org; 22 Oct 2024 10:24:33 +0000 Received: from localhost ([127.0.0.1]:54744 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t3C40-0002gj-WF for submit@debbugs.gnu.org; Tue, 22 Oct 2024 06:24:33 -0400 Received: from lists.gnu.org ([209.51.188.17]:58840) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t3C3y-0002ga-4o for submit@debbugs.gnu.org; Tue, 22 Oct 2024 06:24:32 -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 1t3C3V-0007YL-Uz for guix-patches@gnu.org; Tue, 22 Oct 2024 06:24:02 -0400 Received: from devianza.investici.org ([2c0f:f930:0:4::108]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1t3C3S-0005mB-Oe for guix-patches@gnu.org; Tue, 22 Oct 2024 06:24:01 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inventati.org; s=stigmate; t=1729592631; bh=THq6WocMrtApHqgPEC3oX3e0YLVD2n84UOKLinbotE4=; h=From:To:Cc:Subject:Date:From; b=SrOpjF+EC3yjomCwg9xXs8Srn+Uf2bGGFXT7FldGh0Na0YD4E7n+HoaPI5QhBCH/b xAARYExwVZjlHL3qtbUh5KgRa3C04WCw6pNqpw175o6WsAhtEtuaHzsU/3rzQZ/twu bhG/yqKuvqwdAkq1x7Mpf6PGMBsD5NZ2t846ycv8= Received: from mx2.investici.org (unknown [127.0.0.1]) by devianza.investici.org (Postfix) with ESMTP id 4XXpDl06CWz70PD; Tue, 22 Oct 2024 10:23:51 +0000 (UTC) Received: from [198.167.222.108] (mx2.investici.org [198.167.222.108]) (Authenticated sender: cayetano.santos@inventati.org) by localhost (Postfix) with ESMTPSA id 4XXpDk5g8Hz70PC; Tue, 22 Oct 2024 10:23:50 +0000 (UTC) From: Cayetano Santos Date: Tue, 22 Oct 2024 12:23:24 +0200 Message-ID: <679fa2ad2f99e515991b087b93af27b7378ec07b.1729592604.git.csantosb@inventati.org> X-Mailer: git-send-email 2.46.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=2c0f:f930:0:4::108; envelope-from=csantosb@inventati.org; helo=devianza.investici.org X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 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, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) 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.4 (--) * gnu/packages/emacs-xyz.scm (emacs-show-font): New variable. Change-Id: Icda53be5afa7960ca61c48a6ea0825f0d254cf9f --- gnu/packages/emacs-xyz.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 0be1ac83bc..33f50306e4 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -1304,6 +1304,27 @@ (define-public emacs-pug-mode is based off of Slim mode.") (license license:gpl3+))) +(define-public emacs-show-font + (package + (name "emacs-show-font") + (version "0.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/protesilaos/show-font") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kbkbvqhdqpsmci0756w2j7igxdj0qfzy823mvc5lb6yj8gwq9dl")))) + (build-system emacs-build-system) + (home-page "https://github.com/protesilaos/show-font") + (synopsis "Show font features in a buffer") + (description + "With show-font the user has the means to preview fonts inside of +Emacs.") + (license license:gpl3+))) + (define-public emacs-sed-mode (package (name "emacs-sed-mode") base-commit: 3baa108cdec15eb77e79f48f450beba054464f93 -- 2.46.0 From unknown Mon Jun 23 02:23:38 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Cayetano Santos Subject: bug#73944: closed (Re: [PATCH] gnu: Add emacs-show-font.) Message-ID: References: <87msitmyj6.fsf@nicolasgoaziou.fr> <679fa2ad2f99e515991b087b93af27b7378ec07b.1729592604.git.csantosb@inventati.org> X-Gnu-PR-Message: they-closed 73944 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 73944@debbugs.gnu.org Date: Thu, 24 Oct 2024 13:18:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1729775882-11443-1" This is a multi-part message in MIME format... ------------=_1729775882-11443-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #73944: [PATCH] gnu: Add emacs-show-font. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 73944@debbugs.gnu.org. --=20 73944: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D73944 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1729775882-11443-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 73944-done) by debbugs.gnu.org; 24 Oct 2024 13:17:25 +0000 Received: from localhost ([127.0.0.1]:34094 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t3xiO-0002xJ-Pg for submit@debbugs.gnu.org; Thu, 24 Oct 2024 09:17:24 -0400 Received: from msg-2.mailo.com ([213.182.54.12]:54548 helo=mailo.com) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t3xiM-0002x2-Qu for 73944-done@debbugs.gnu.org; Thu, 24 Oct 2024 09:17:23 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=nicolasgoaziou.fr; s=mailo; t=1729775806; bh=INUXUXzBWViqIQZGBZLW1VO7xE9TIatxaDyl4Rdh5nE=; h=X-EA-Auth:From:To:Cc:Subject:In-Reply-To:Date:Message-ID: MIME-Version:Content-Type; b=cyHqeNtJI9wXY0RI6qM646Sb6LVlX55OJwFUD9NwNQMR7SEzpqSPEjDj9OxvkrGbB 45rXwD/Jp5qftPxON3LVI3pgbe8QsXv0jvc5FLNSvqQaw9Kwsf4o4hTVHvK3OxTBY2 F/uK+w8hd5EoLjiqbf8yiIgpztvrSTKxiN+VAI+k= Received: by b221-7.in.mailobj.net [192.168.90.27] with ESMTP via ip-20.mailobj.net [213.182.54.20] Thu, 24 Oct 2024 15:16:46 +0200 (CEST) X-EA-Auth: MEnkq+fFu9/gQxoSTpE6YTe6W/jiPbSLEpBhvwLr4S0MlV411IRxoIBR4lUw9Ma8ak/hIWRt+GozfMRtNi5ehBElEslesUtg8iR/3sZTwJc= From: Nicolas Goaziou To: 73944-done@debbugs.gnu.org Subject: Re: [PATCH] gnu: Add emacs-show-font. In-Reply-To: <679fa2ad2f99e515991b087b93af27b7378ec07b.1729592604.git.csantosb@inventati.org> Date: Thu, 24 Oct 2024 15:16:29 +0200 Message-ID: <87msitmyj6.fsf@nicolasgoaziou.fr> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 73944-done Cc: Cayetano Santos 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.0 (-) Hello, > * gnu/packages/emacs-xyz.scm (emacs-show-font): New variable. I tweaked the description and applied your patch. Thank you! Regards, -- Nicolas Goaziou ------------=_1729775882-11443-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 22 Oct 2024 10:24:33 +0000 Received: from localhost ([127.0.0.1]:54744 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t3C40-0002gj-WF for submit@debbugs.gnu.org; Tue, 22 Oct 2024 06:24:33 -0400 Received: from lists.gnu.org ([209.51.188.17]:58840) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t3C3y-0002ga-4o for submit@debbugs.gnu.org; Tue, 22 Oct 2024 06:24:32 -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 1t3C3V-0007YL-Uz for guix-patches@gnu.org; Tue, 22 Oct 2024 06:24:02 -0400 Received: from devianza.investici.org ([2c0f:f930:0:4::108]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1t3C3S-0005mB-Oe for guix-patches@gnu.org; Tue, 22 Oct 2024 06:24:01 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inventati.org; s=stigmate; t=1729592631; bh=THq6WocMrtApHqgPEC3oX3e0YLVD2n84UOKLinbotE4=; h=From:To:Cc:Subject:Date:From; b=SrOpjF+EC3yjomCwg9xXs8Srn+Uf2bGGFXT7FldGh0Na0YD4E7n+HoaPI5QhBCH/b xAARYExwVZjlHL3qtbUh5KgRa3C04WCw6pNqpw175o6WsAhtEtuaHzsU/3rzQZ/twu bhG/yqKuvqwdAkq1x7Mpf6PGMBsD5NZ2t846ycv8= Received: from mx2.investici.org (unknown [127.0.0.1]) by devianza.investici.org (Postfix) with ESMTP id 4XXpDl06CWz70PD; Tue, 22 Oct 2024 10:23:51 +0000 (UTC) Received: from [198.167.222.108] (mx2.investici.org [198.167.222.108]) (Authenticated sender: cayetano.santos@inventati.org) by localhost (Postfix) with ESMTPSA id 4XXpDk5g8Hz70PC; Tue, 22 Oct 2024 10:23:50 +0000 (UTC) From: Cayetano Santos To: guix-patches@gnu.org Subject: [PATCH] gnu: Add emacs-show-font. Date: Tue, 22 Oct 2024 12:23:24 +0200 Message-ID: <679fa2ad2f99e515991b087b93af27b7378ec07b.1729592604.git.csantosb@inventati.org> X-Mailer: git-send-email 2.46.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=2c0f:f930:0:4::108; envelope-from=csantosb@inventati.org; helo=devianza.investici.org X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 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, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: Cayetano Santos 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.4 (--) * gnu/packages/emacs-xyz.scm (emacs-show-font): New variable. Change-Id: Icda53be5afa7960ca61c48a6ea0825f0d254cf9f --- gnu/packages/emacs-xyz.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 0be1ac83bc..33f50306e4 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -1304,6 +1304,27 @@ (define-public emacs-pug-mode is based off of Slim mode.") (license license:gpl3+))) +(define-public emacs-show-font + (package + (name "emacs-show-font") + (version "0.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/protesilaos/show-font") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kbkbvqhdqpsmci0756w2j7igxdj0qfzy823mvc5lb6yj8gwq9dl")))) + (build-system emacs-build-system) + (home-page "https://github.com/protesilaos/show-font") + (synopsis "Show font features in a buffer") + (description + "With show-font the user has the means to preview fonts inside of +Emacs.") + (license license:gpl3+))) + (define-public emacs-sed-mode (package (name "emacs-sed-mode") base-commit: 3baa108cdec15eb77e79f48f450beba054464f93 -- 2.46.0 ------------=_1729775882-11443-1--