unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#56705] [PATCH] gnu: Add font-latin-modern.
@ 2022-07-22 11:35 guix-patches--- via
  2022-08-03  1:22 ` [bug#56705] [PATCH v2] " guix-patches--- via
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: guix-patches--- via @ 2022-07-22 11:35 UTC (permalink / raw)
  To: 56705; +Cc: Nguyễn Gia Phong

* gnu/packages/fonts.scm (font-latin-modern): New variable.
---
 gnu/packages/fonts.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index a381f061af94..f7fa124edf00 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -50,6 +50,7 @@
 ;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
 ;;; Copyright © 2021 Liliana Marie Prikler <liliana.prikler@gmail.com>
 ;;; Copyright © 2022 Jose G Perez Taveras <josegpt27@gmail.com>
+;;; Copyright © 2022 Nguyễn Gia Phong <mcsinyx@disroot.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -731,6 +732,23 @@ (define-public font-tex-gyre
 Heros, Pagella, Schola, Termes.")
     (license license:gfl1.0)))
 
+(define-public font-latin-modern
+  (package
+    (name "font-latin-modern")
+    (version "2.004")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "http://www.gust.org.pl/projects/e-foundry/"
+                           "latin-modern/download/lm" version "otf.zip"))
+       (sha256
+        (base32 "06qnvd6kh07gy2197vx3nmskhiqhp7ip9cpi2rkbwa1p3l2kc0jv"))))
+    (build-system font-build-system)
+    (home-page "http://www.gust.org.pl/projects/e-foundry/latin-modern")
+    (synopsis "OpenType fonts based on Computer Modern")
+    (description "The Latin Modern fonts are a set of scalable fonts based on the PostScript Type 1 version of the Computer Modern fonts and contain many additional characters (mostly accented ones).  This package provides the OpenType variant of these fonts.")
+    (license license:gfl1.0)))
+
 (define-public font-amiri
   (package
     (name "font-amiri")
-- 
2.37.0





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#56705] [PATCH v2] gnu: Add font-latin-modern.
  2022-07-22 11:35 [bug#56705] [PATCH] gnu: Add font-latin-modern guix-patches--- via
@ 2022-08-03  1:22 ` guix-patches--- via
  2022-08-18  6:06 ` guix-patches--- via
  2022-08-18 20:56 ` bug#56705: [PATCH] " Ricardo Wurmus
  2 siblings, 0 replies; 5+ messages in thread
From: guix-patches--- via @ 2022-08-03  1:22 UTC (permalink / raw)
  To: 56705; +Cc: Nguyễn Gia Phong

* gnu/packages/fonts.scm (font-latin-modern): New variable.
---
This time with secure links.
 gnu/packages/fonts.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index a381f061af94..59116eccff55 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -50,6 +50,7 @@
 ;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
 ;;; Copyright © 2021 Liliana Marie Prikler <liliana.prikler@gmail.com>
 ;;; Copyright © 2022 Jose G Perez Taveras <josegpt27@gmail.com>
+;;; Copyright © 2022 Nguyễn Gia Phong <mcsinyx@disroot.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -731,6 +732,23 @@ (define-public font-tex-gyre
 Heros, Pagella, Schola, Termes.")
     (license license:gfl1.0)))
 
+(define-public font-latin-modern
+  (package
+    (name "font-latin-modern")
+    (version "2.004")
+    (source
+     (origin
+       (method url-fetch/zipbomb)
+       (uri (string-append "https://www.gust.org.pl/projects/e-foundry/"
+                           "latin-modern/download/lm" version "otf.zip"))
+       (sha256
+        (base32 "06qnvd6kh07gy2197vx3nmskhiqhp7ip9cpi2rkbwa1p3l2kc0jv"))))
+    (build-system font-build-system)
+    (home-page "https://www.gust.org.pl/projects/e-foundry/latin-modern")
+    (synopsis "OpenType fonts based on Computer Modern")
+    (description "The Latin Modern fonts are a set of scalable fonts based on the PostScript Type 1 version of the Computer Modern fonts and contain many additional characters (mostly accented ones).  This package provides the OpenType variant of these fonts.")
+    (license license:gfl1.0)))
+
 (define-public font-amiri
   (package
     (name "font-amiri")
-- 
2.37.1





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#56705] [PATCH v2] gnu: Add font-latin-modern.
  2022-07-22 11:35 [bug#56705] [PATCH] gnu: Add font-latin-modern guix-patches--- via
  2022-08-03  1:22 ` [bug#56705] [PATCH v2] " guix-patches--- via
@ 2022-08-18  6:06 ` guix-patches--- via
  2022-08-18 20:56 ` bug#56705: [PATCH] " Ricardo Wurmus
  2 siblings, 0 replies; 5+ messages in thread
From: guix-patches--- via @ 2022-08-18  6:06 UTC (permalink / raw)
  To: 56705

Could someone please take a look at this?




^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#56705: [PATCH] gnu: Add font-latin-modern.
  2022-07-22 11:35 [bug#56705] [PATCH] gnu: Add font-latin-modern guix-patches--- via
  2022-08-03  1:22 ` [bug#56705] [PATCH v2] " guix-patches--- via
  2022-08-18  6:06 ` guix-patches--- via
@ 2022-08-18 20:56 ` Ricardo Wurmus
  2022-08-19  4:44   ` [bug#56705] [PATCH v2] " guix-patches--- via
  2 siblings, 1 reply; 5+ messages in thread
From: Ricardo Wurmus @ 2022-08-18 20:56 UTC (permalink / raw)
  To: 56705-done

Thank you for your patch!  I broke the long line of the description into
a paragraph and pushed the patch to the master branch with commit
“9cde566b9cd84c999c0074c906928e2cbef1ef30”.

-- 
Ricardo




^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#56705] [PATCH v2] gnu: Add font-latin-modern.
  2022-08-18 20:56 ` bug#56705: [PATCH] " Ricardo Wurmus
@ 2022-08-19  4:44   ` guix-patches--- via
  0 siblings, 0 replies; 5+ messages in thread
From: guix-patches--- via @ 2022-08-19  4:44 UTC (permalink / raw)
  To: 56705, rekado

Thanks!  BTW how do I subscribe to a specific debbugs ticket
(not the whole guix-patches)?  I did not get your response,
only the ticket done notification.




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-08-19  4:46 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-22 11:35 [bug#56705] [PATCH] gnu: Add font-latin-modern guix-patches--- via
2022-08-03  1:22 ` [bug#56705] [PATCH v2] " guix-patches--- via
2022-08-18  6:06 ` guix-patches--- via
2022-08-18 20:56 ` bug#56705: [PATCH] " Ricardo Wurmus
2022-08-19  4:44   ` [bug#56705] [PATCH v2] " guix-patches--- via

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).