GNU bug report logs - #76232
[PATCH 0/2] Replace font-iosevka-comfy with font-aporetic

Previous Next

Package: guix-patches;

Reported by: Divya Ranjan <divya <at> subvertising.org>

Date: Wed, 12 Feb 2025 17:25:01 UTC

Severity: normal

Tags: patch

Done: 宋文武 <iyzsong <at> envs.net>

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 76232 in the body.
You can then email your comments to 76232 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#76232; Package guix-patches. (Wed, 12 Feb 2025 17:25:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Divya Ranjan <divya <at> subvertising.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 12 Feb 2025 17:25:02 GMT) Full text and rfc822 format available.

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

From: Divya Ranjan <divya <at> subvertising.org>
To: guix-patches <at> gnu.org
Cc: Divya Ranjan <divya <at> subvertising.org>
Subject: [PATCH 0/2] Replace font-iosevka-comfy with font-aporetic
Date: Wed, 12 Feb 2025 17:24:16 +0000
These two patches replace the old Iosevka Comfy font of Prot's with the newer Aporetic one.
https://protesilaos.com/codelog/2025-02-04-aporetic-fonts-1-0-0/

Divya Ranjan (2):
  gnu: Remove font-iosevka-comfy.
  gnu: Add font-aporetic.

 gnu/packages/fonts.scm | 39 ++++++++++++++++++++-------------------
 1 file changed, 20 insertions(+), 19 deletions(-)

--
2.47.1




Information forwarded to iyzsong <at> envs.net, guix-patches <at> gnu.org:
bug#76232; Package guix-patches. (Wed, 12 Feb 2025 19:46:01 GMT) Full text and rfc822 format available.

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

From: Divya Ranjan <divya <at> subvertising.org>
To: 76232 <at> debbugs.gnu.org
Cc: Divya Ranjan <divya <at> subvertising.org>
Subject: [PATCH 1/2] gnu: Remove font-iosevka-comfy.
Date: Wed, 12 Feb 2025 19:44:49 +0000
* gnu/packages/fonts.scm (font-iosevka-comfy): Delete variable.
---
 gnu/packages/fonts.scm | 19 -------------------
 1 file changed, 19 deletions(-)

diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index c32f2ef5fb..16ab0af70e 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2093,25 +2093,6 @@ (define-public font-iosevka-ss09
        (sha256
         (base32 "1h5jfrpply7ypc4h6ivxs30qkrbni51zkj78xz6nz4zbnp923yi0"))))))
 
-(define-public font-iosevka-comfy
-  (package
-    (inherit font-iosevka)
-    (name "font-iosevka-comfy")
-    (version "1.2.0")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://git.sr.ht/~protesilaos/iosevka-comfy")
-                    (commit version)))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32 "1gccv28avxlkicl6rcsn6i23pdn0nrk91zhcyzwwc3nyzm2w8w40"))))
-    (home-page "https://git.sr.ht/~protesilaos/iosevka-comfy")
-    (description
-     "Iosevka Comfy is a TTF font derived from Iosevka.  It is a slightly tweaked
-     version of the original, designed for enhanced readability.")
-    (license license:silofl1.1)))
-
 (define-public font-junicode
   (package
     (name "font-junicode")
-- 
2.47.1





Information forwarded to iyzsong <at> envs.net, guix-patches <at> gnu.org:
bug#76232; Package guix-patches. (Wed, 12 Feb 2025 19:47:01 GMT) Full text and rfc822 format available.

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

From: Divya Ranjan <divya <at> subvertising.org>
To: 76232 <at> debbugs.gnu.org
Cc: Divya Ranjan <divya <at> subvertising.org>
Subject: [PATCH 2/2] gnu: Add font-aporetic.
Date: Wed, 12 Feb 2025 19:44:50 +0000
* gnu/packages/fonts.scm (font-aporetic): New variable.
---
 gnu/packages/fonts.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index 16ab0af70e..50a51d8289 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -107,6 +107,26 @@ (define-module (gnu packages fonts)
   #:use-module (gnu packages sdl)
   #:use-module (gnu packages xorg))
 
+(define-public font-aporetic
+  (package
+    (name "font-aporetic")
+    (version "1.1.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/protesilaos/aporetic")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0cihagy7vhw5pqznbihwv3pgb516i94iqfnvfm73njrx1a4dalz6"))))
+    (build-system font-build-system)
+    (home-page "https://github.com/protesilaos/aporetic")
+    (synopsis "Successor to Iosevka Comfy")
+    (description
+     "Aporetic fonts are a custom build of Iosevka with different style and metrics than the default. This is the successor to my Iosevka Comfy fonts.")
+    (license license:silofl1.1)))
+
 (define-public font-artifika
   (package
     (name "font-artifika")
-- 
2.47.1





Reply sent to 宋文武 <iyzsong <at> envs.net>:
You have taken responsibility. (Thu, 13 Feb 2025 02:56:03 GMT) Full text and rfc822 format available.

Notification sent to Divya Ranjan <divya <at> subvertising.org>:
bug acknowledged by developer. (Thu, 13 Feb 2025 02:56:03 GMT) Full text and rfc822 format available.

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

From: 宋文武 <iyzsong <at> envs.net>
To: Divya Ranjan <divya <at> subvertising.org>
Cc: 76232-done <at> debbugs.gnu.org
Subject: Re: [bug#76232] [PATCH 0/2] Replace font-iosevka-comfy with
 font-aporetic
Date: Thu, 13 Feb 2025 10:59:19 +0800
Divya Ranjan <divya <at> subvertising.org> writes:

> These two patches replace the old Iosevka Comfy font of Prot's with the newer Aporetic one.
> https://protesilaos.com/codelog/2025-02-04-aporetic-fonts-1-0-0/

Hello, thank you for the patch, this is alreally applied in
<https://issues.guix.gnu.org/76144>.

Close, thanks.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Thu, 13 Mar 2025 11:24:16 GMT) Full text and rfc822 format available.

This bug report was last modified 92 days ago.

Previous Next


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