GNU bug report logs -
#77353
[PATCH] Updated font-openmoji to 15.1.0
Previous Next
Reported by: Kurome <hunt31999 <at> gmail.com>
Date: Sat, 29 Mar 2025 06:44:02 UTC
Severity: normal
Tags: patch
Done: Andreas Enge <andreas <at> enge.fr>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#77353: [PATCH] Updated font-openmoji to 15.1.0
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 77353 <at> debbugs.gnu.org.
--
77353: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=77353
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Pushed after rewriting the commit message according to our style.
Thanks!
Andreas
[Message part 3 (message/rfc822, inline)]
Change-Id: I7aed4a6f3778a3056b354bb917b561adf0084c4c
---
gnu/packages/fonts.scm | 55 ++++++++++++++++++++----------------------
1 file changed, 26 insertions(+), 29 deletions(-)
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index 3048289ac0..a9f942758b 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2559,49 +2559,46 @@ (define-public font-opendyslexic
(license license:silofl1.1)))
(define-public font-openmoji
- (let ((commit "93f059dfb68401d49beaef7a3e09b80072b51a1f")
- (revision "1"))
- (package
+ (package
(name "font-openmoji")
- (version (git-version "14.0.0" revision commit))
+ (version "15.1.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/hfg-gmuend/openmoji/")
- (commit commit)))
+ (commit version)))
(file-name (git-file-name name version))
(sha256
- (base32
- "16w4lg2y6qzb45j08l7cdwprjhprsm11jsm6nxzxwy2wzykd7gxk"))))
+ (base32 "1iil5jmkkqrqgq06q3gvgv7j1bq8499q3h2340prwlfi2sqcqzlk"))))
(build-system font-build-system)
- (arguments (list #:modules `((ice-9 ftw)
- (guix build font-build-system)
- (guix build utils))
- #:phases
- #~(modify-phases %standard-phases
- (add-after 'unpack 'chdir
- (lambda _ (chdir "font")))
- (add-after 'chdir 'strip-alternative-variants
- (lambda _
- (let ((keep '("OpenMoji-black-glyf"
- "OpenMoji-color-glyf_colr_0"
- "."
- "..")))
- (for-each (lambda (f)
- (unless (member f keep)
- (delete-file-recursively f)))
- (scandir ".")))))
- (add-before 'install-license-files 'chdir-back
- (lambda _ (chdir ".."))))))
- (native-inputs
- (list unzip))
+ (arguments
+ (list
+ #:modules `((ice-9 ftw)
+ (guix build font-build-system)
+ (guix build utils))
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'chdir
+ (lambda _
+ (chdir "font")))
+ (add-after 'chdir 'strip-alternative-variants
+ (lambda _
+ (let ((keep '("OpenMoji-black-glyf" "OpenMoji-color-glyf_colr_0"
+ "." "..")))
+ (for-each (lambda (f)
+ (unless (member f keep)
+ (delete-file-recursively f)))
+ (scandir ".")))))
+ (add-before 'install-license-files 'chdir-back
+ (lambda _
+ (chdir ".."))))))
(home-page "https://openmoji.org")
(synopsis "Font for rendering emoji characters")
(description
"This package provides the OpenMoji font in both color and black
variants.")
- (license license:cc-by-sa4.0))))
+ (license license:cc-by-sa4.0)))
(define-public font-dosis
(package
--
2.49.0
This bug report was last modified 144 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.