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>,
	"Zhu Zihao" <all_but_last@163.com>, 宋文武 <iyzsong@envs.net>,
	"Jiwei YANG" <yangjiwei@protonmail.com>
Subject: [bug#69424] [PATCH 3/5] gnu: font-google-noto-emoji: Update to 2.042.
Date: Tue, 27 Feb 2024 20:54:25 +0800	[thread overview]
Message-ID: <55c7838b2dfebd7b7205b3aa0d2c22a1b18a2061.1709038102.git.hako@ultrarare.space> (raw)
In-Reply-To: <cover.1709038102.git.hako@ultrarare.space>

* gnu/packages/fonts.scm (font-google-noto-emoji): Update to 2.042.
[arguments]<#:phases>: Remove 'remove-unsupported.
Replace install phase instead.

Change-Id: I76cfbf3f8d34c484ed59b99969da7d93aaf41d72
---
 gnu/packages/fonts.scm | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index 1ed648f5a2..472853afa4 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1144,7 +1144,7 @@ (define-public font-google-noto
 (define-public font-google-noto-emoji
   (package
     (name "font-google-noto-emoji")
-    (version "2.038")
+    (version "2.042")
     (source
      (origin
        (method git-fetch)
@@ -1154,7 +1154,7 @@ (define-public font-google-noto-emoji
        (file-name (git-file-name name version))
        (sha256
         (base32
-         "1rgmcc6nqq805iqr8kvxxlk5cf50q714xaxk3ld6rjrd69kb8ix9"))))
+         "17i7awyqz9jv0j2blcf0smmpas375c3pdhjv1zqzl861g8qm1lm2"))))
     (build-system font-build-system)
     (arguments
      (list
@@ -1164,11 +1164,10 @@ (define-public font-google-noto-emoji
             (lambda _
               ;; Note this ensures the correct license file is installed.
               (chdir "fonts")))
-          (add-after 'enter-font-directory 'remove-unsupported
-            (lambda* _
-              (delete-file "NotoColorEmoji_WindowsCompatible.ttf")
-              (delete-file "Noto-COLRv1-noflags.ttf")
-              (delete-file "Noto-COLRv1.ttf"))))))
+          (replace 'install
+            (lambda _
+              (let (dir ((string-append #$output "/share/fonts/truetype")))
+                (install-file "NotoColorEmoji.ttf" dir)))))))
     (home-page "https://fonts.google.com/noto/specimen/Noto+Color+Emoji")
     (synopsis "Font for rendering color emoji characters")
     (description
--
2.41.0




  parent reply	other threads:[~2024-02-27 12:57 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 ` Hilton Chain via Guix-patches via [this message]
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 ` [bug#69424] [PATCH v2 5/5] gnu: font-google-noto-serif-cjk: Update to 2.002 Hilton Chain via Guix-patches via
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=55c7838b2dfebd7b7205b3aa0d2c22a1b18a2061.1709038102.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 \
    --cc=yangjiwei@protonmail.com \
    /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).