GNU bug report logs - #76144
[PATCH] gnu: Add font-aporetic.

Previous Next

Package: guix-patches;

Reported by: Olivier Rojon <o.rojon <at> posteo.net>

Date: Sat, 8 Feb 2025 16:22:02 UTC

Severity: normal

Tags: patch

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

To reply to this bug, email your comments to 76144 AT debbugs.gnu.org.
There is no need to reopen the bug first.

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#76144; Package guix-patches. (Sat, 08 Feb 2025 16:22:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Olivier Rojon <o.rojon <at> posteo.net>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sat, 08 Feb 2025 16:22:02 GMT) Full text and rfc822 format available.

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

From: Olivier Rojon <o.rojon <at> posteo.net>
To: guix-patches <at> gnu.org
Cc: Olivier Rojon <o.rojon <at> posteo.net>, iyzsong <at> envs.net
Subject: [PATCH] gnu: Add font-aporetic.
Date: Sat,  8 Feb 2025 16:20:15 +0000
* gnu/packages/fonts.scm (font-aporetic): New variable.

Change-Id: I35289ff33574e39bfe1e095e2d9826dfce5997ae
---
 gnu/packages/fonts.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index c32f2ef5fb..c767100899 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -62,6 +62,7 @@
 ;;; Copyright © 2024 Christina O'Donnell <cdo <at> mutix.org>
 ;;; Copyright © 2025 Ashvith Shetty <ashvithshetty10 <at> gmail.com>
 ;;; Copyright © 2025 Ashish SHUKLA <ashish.is <at> lostca.se>
+;;; Copyright © 2025 Olivier Rojon <o.rojon <at> posteo.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -2112,6 +2113,27 @@ (define-public font-iosevka-comfy
      version of the original, designed for enhanced readability.")
     (license license:silofl1.1)))
 
+(define-public font-aporetic
+  (package
+    (name "font-aporetic")
+    (version "1.0.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 "0j35bmzdm4vqg6f60l4m8ch795lkmp024ifxx1gw45n5pr7j4vp6"))))
+    (build-system font-build-system)
+    (home-page "https://github.com/protesilaos/aporetic")
+    (synopsis "Coders' typeface, built from code")
+    (description
+     "Aporetic is the successor to Iosevka Comfy, which is discontinued as of
+     February 2025.")
+    (license (list license:silofl1.1))))
+
 (define-public font-junicode
   (package
     (name "font-junicode")
-- 
2.48.1





Information forwarded to guix-patches <at> gnu.org:
bug#76144; Package guix-patches. (Mon, 10 Feb 2025 02:03:02 GMT) Full text and rfc822 format available.

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

From: 宋文武 <iyzsong <at> envs.net>
To: Olivier Rojon <o.rojon <at> posteo.net>
Cc: 76144 <at> debbugs.gnu.org
Subject: Re: [PATCH] gnu: Add font-aporetic.
Date: Mon, 10 Feb 2025 10:06:03 +0800
Hello,

Olivier Rojon <o.rojon <at> posteo.net> writes:

> +(define-public font-aporetic
> +  (package
> +    (name "font-aporetic")
> +    (version "1.0.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 "0j35bmzdm4vqg6f60l4m8ch795lkmp024ifxx1gw45n5pr7j4vp6"))))
> +    (build-system font-build-system)
> +    (home-page "https://github.com/protesilaos/aporetic")
> +    (synopsis "Coders' typeface, built from code")
> +    (description
> +     "Aporetic is the successor to Iosevka Comfy, which is discontinued as of
> +     February 2025.")

This synopsis and description looks a little unclear to me.
How about:

  (synopsis "Customised build of the Iosevka typeface")
  
  (description "Aporetic fonts are a custom build of Iosevka with
  different style and metrics than the default.  Aporetic optimises for
  inter-glyph and inter-style consistency within the overarching
  constraint of usability at small point sizes.")

Also, you should make 'font-iosevka-comfy' a deprecated package of this
one.

Could you send an updated patch?  Thanks.




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

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

From: Olivier Rojon <o.rojon <at> posteo.net>
To: 76144 <at> debbugs.gnu.org
Cc: Olivier Rojon <o.rojon <at> posteo.net>
Subject: [PATCH] gnu: Add font-aporetic, deprecate font-iosevka-comfy.
Date: Wed, 12 Feb 2025 19:52:03 +0000
* gnu/packages/fonts.scm (font-aporetic, deprecate font-iosevka-comfy): Update
to 1.1, fix synopsis and description, deprecate font-iosevka-comfy

Change-Id: I08f791a9025c296698c4396f3d7b7aeb6356d481
---
 gnu/packages/fonts.scm | 39 +++++++++++++++++++++++----------------
 1 file changed, 23 insertions(+), 16 deletions(-)

diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index c32f2ef5fb..9d73af0a6d 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2093,24 +2093,31 @@ (define-public font-iosevka-ss09
        (sha256
         (base32 "1h5jfrpply7ypc4h6ivxs30qkrbni51zkj78xz6nz4zbnp923yi0"))))))
 
-(define-public font-iosevka-comfy
+(define-public font-aporetic
   (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")
+    (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 "Customised build of the Iosevka typeface")
     (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)))
+     "Aporetic fonts are a custom build of Iosevka with
+  different style and metrics than the default.  Aporetic optimises for
+  inter-glyph and inter-style consistency within the overarching
+  constraint of usability at small point sizes.")
+    (license (list license:silofl1.1))))
+
+(define-public font-iosevka-comfy
+  (deprecated-package "font-iosevka-comfy"  font-aporetic))
 
 (define-public font-junicode
   (package
-- 
2.48.1





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

Notification sent to Olivier Rojon <o.rojon <at> posteo.net>:
bug acknowledged by developer. (Thu, 13 Feb 2025 02:49:02 GMT) Full text and rfc822 format available.

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

From: 宋文武 <iyzsong <at> envs.net>
To: Olivier Rojon <o.rojon <at> posteo.net>
Cc: 76144-done <at> debbugs.gnu.org
Subject: Re: [bug#76144] [PATCH] gnu: Add font-aporetic, deprecate
 font-iosevka-comfy.
Date: Thu, 13 Feb 2025 10:52:01 +0800
Olivier Rojon <o.rojon <at> posteo.net> writes:

> * gnu/packages/fonts.scm (font-aporetic, deprecate font-iosevka-comfy): Update
> to 1.1, fix synopsis and description, deprecate font-iosevka-comfy

Pushed to master, with simplified commit message, thank you.




This bug report was last modified 19 days ago.

Previous Next


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