unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Hilton Chain via Guix-patches via <guix-patches@gnu.org>
To: 69424@debbugs.gnu.org
Cc: "Hilton Chain" <hako@ultrarare.space>,
	"Hilton Chain" <hako@ultrarare.space>,
	"Zhu Zihao" <all_but_last@163.com>, 宋文武 <iyzsong@envs.net>
Subject: [bug#69424] [PATCH v2 5/5] gnu: font-google-noto-serif-cjk: Update to 2.002.
Date: Wed, 28 Feb 2024 11:08:36 +0800	[thread overview]
Message-ID: <37d4c99859fa0cd8b6d1802ea1181fcec8e100db.1709089250.git.hako@ultrarare.space> (raw)
In-Reply-To: <cover.1709038102.git.hako@ultrarare.space>

* gnu/packages/fonts.scm (font-google-noto-serif-cjk): Update to 2.002.
[source]: Switch to variable fonts.
[arguments]<#:phases>: Keep only TTCs in "out".
Install OTFs into "otf" output.
[outputs]: Add "otf".

Change-Id: Id22401ce85028951b6044ba418dbad764d581f01
---
 gnu/packages/fonts.scm | 17 ++++++++++++++---
 1 file changed, 14 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index 356103c6a1..02c299cdd4 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1213,17 +1213,28 @@ (define-public font-google-noto-sans-cjk
 (define-public font-google-noto-serif-cjk
   (package
     (name "font-google-noto-serif-cjk")
-    (version "2.001")
+    (version "2.002")
     (source
      (origin
        (method url-fetch)
        (uri (string-append
              "https://github.com/googlefonts/noto-cjk/releases/download/Serif"
-             version "/04_NotoSerifCJKOTC.zip"))
+             version "/02_NotoSerifCJK-OTF-VF.zip"))
        (file-name (string-append name "-" version ".zip"))
        (sha256
-        (base32 "1l6r3sz2s0vcyfx6ria7wqcq45zp40gxgg97lh8hpmajhzw301ig"))))
+        (base32 "007jk7rmfapq5zq4ji9d1l5gpp34p98l9ylhiw33q42d66v2g717"))))
     (build-system font-build-system)
+    (arguments
+     (list #:phases
+           #~(modify-phases %standard-phases
+               (replace 'install
+                 (lambda _
+                   (let ((install (assoc-ref %standard-phases 'install)))
+                     (with-directory-excursion "OTC"
+                       (install #:outputs `(("out" . ,#$output))))
+                     (with-directory-excursion "OTF"
+                       (install #:outputs `(("out" . ,#$output:otf))))))))))
+    (outputs '("out" "otf"))
     (home-page "https://www.google.com/get/noto/")
     (synopsis "Fonts to cover all languages")
     (description "Google Noto Fonts is a family of fonts designed to support
-- 
2.41.0





  parent reply	other threads:[~2024-02-28  3:10 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-27 12:49 [bug#69424] [PATCH 0/5] Update Noto fonts and switch them to variable fonts (77% size reduced) Hilton Chain via Guix-patches via
2024-02-27 12:54 ` [bug#69424] [PATCH 1/5] gnu: font-google-noto: Update to 24.2.1 Hilton Chain via Guix-patches via
2024-02-27 12:54 ` [bug#69424] [PATCH 2/5] gnu: font-google-noto: Keep only variable fonts when available Hilton Chain via Guix-patches via
2024-02-27 12:54 ` [bug#69424] [PATCH 3/5] gnu: font-google-noto-emoji: Update to 2.042 Hilton Chain via Guix-patches via
2024-02-27 12:54 ` [bug#69424] [PATCH 4/5] gnu: font-google-noto-sans-cjk: Switch to variable fonts Hilton Chain via Guix-patches via
2024-02-27 12:54 ` [bug#69424] [PATCH 5/5] gnu: font-google-noto-serif-cjk: Update to 2.002 Hilton Chain via Guix-patches via
2024-02-28  3:08 ` [bug#69424] [PATCH v2 0/5] Update Noto fonts and switch them to variable fonts (77% size reduced) Hilton Chain via Guix-patches via
2024-02-28  3:08 ` [bug#69424] [PATCH v2 1/5] gnu: font-google-noto: Update to 24.2.1 Hilton Chain via Guix-patches via
2024-02-28  3:08 ` [bug#69424] [PATCH v2 2/5] gnu: font-google-noto: Prefer variable fonts and split outputs Hilton Chain via Guix-patches via
2024-02-28  3:08 ` [bug#69424] [PATCH v2 3/5] gnu: font-google-noto-emoji: Update to 2.042 Hilton Chain via Guix-patches via
2024-02-28  3:08 ` [bug#69424] [PATCH v2 4/5] gnu: font-google-noto-sans-cjk: Switch to variable fonts Hilton Chain via Guix-patches via
2024-02-28  3:08 ` Hilton Chain via Guix-patches via [this message]
2024-02-28 12:19 ` [bug#69424] (No Subject) Jiwei YANG via Guix-patches via
2024-02-29  5:16   ` Hilton Chain via Guix-patches via
2024-02-28 13:31 ` [bug#69424] [PATCH v3 0/5] Update Noto fonts and switch them to variable fonts (77% size reduced) Hilton Chain via Guix-patches via
2024-02-28 13:32   ` [bug#69424] [PATCH v3 1/5] gnu: font-google-noto: Update to 24.2.1 Hilton Chain via Guix-patches via
2024-02-28 13:32   ` [bug#69424] [PATCH v3 2/5] gnu: font-google-noto: Prefer variable fonts and split outputs Hilton Chain via Guix-patches via
2024-02-28 13:32   ` [bug#69424] [PATCH v3 3/5] gnu: font-google-noto-emoji: Update to 2.042 Hilton Chain via Guix-patches via
2024-02-28 13:32   ` [bug#69424] [PATCH v3 4/5] gnu: font-google-noto-sans-cjk: Switch to variable fonts Hilton Chain via Guix-patches via
2024-02-28 13:32   ` [bug#69424] [PATCH v3 5/5] gnu: font-google-noto-serif-cjk: Update to 2.002 Hilton Chain via Guix-patches via
2024-03-17  1:09 ` bug#69424: [PATCH 0/5] Update Noto fonts and switch them to variable fonts (77% size reduced) Hilton Chain via Guix-patches via

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=37d4c99859fa0cd8b6d1802ea1181fcec8e100db.1709089250.git.hako@ultrarare.space \
    --to=guix-patches@gnu.org \
    --cc=69424@debbugs.gnu.org \
    --cc=all_but_last@163.com \
    --cc=hako@ultrarare.space \
    --cc=iyzsong@envs.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).