all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#62283] [PATCH 0/3] Update SIL fonts.
@ 2023-03-19 23:22 Felix Lechner via Guix-patches via
  2023-03-19 23:29 ` [bug#62283] [PATCH 1/3] gnu: font-sil-gentium: Update to 6.2.0 Felix Lechner via Guix-patches via
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Felix Lechner via Guix-patches via @ 2023-03-19 23:22 UTC (permalink / raw)
  To: 62283; +Cc: Felix Lechner, Stefan Baums

Sent on behalf of Stephan Baums. These patches are his first contribution to
Guix. Thank you so much for your hard work!

Stefan Baums (3):
  gnu: font-sil-gentium: Update to 6.2.0.
  gnu: font-sil-andika: Update to 6.2.0.
  gnu: font-sil-charis: Update to 6.2.0.

 gnu/packages/fonts.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)


base-commit: f9702aa9fdfded5c62da43197f8cea5eeba30803
-- 
2.39.2





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

* [bug#62283] [PATCH 1/3] gnu: font-sil-gentium: Update to 6.2.0.
  2023-03-19 23:22 [bug#62283] [PATCH 0/3] Update SIL fonts Felix Lechner via Guix-patches via
@ 2023-03-19 23:29 ` Felix Lechner via Guix-patches via
  2023-03-19 23:29 ` [bug#62283] [PATCH 2/3] gnu: font-sil-andika: " Felix Lechner via Guix-patches via
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 8+ messages in thread
From: Felix Lechner via Guix-patches via @ 2023-03-19 23:29 UTC (permalink / raw)
  To: 62283; +Cc: Stefan Baums

From: Stefan Baums <baums@stefanbaums.com>

(font-sil-gentium): Update to 6.2.0.
---
 gnu/packages/fonts.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index 5d159208dd..879a3dadb1 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2072,7 +2072,7 @@ (define-public font-blackfoundry-inria
 (define-public font-sil-gentium
   (package
     (name "font-sil-gentium")
-    (version "5.000")
+    (version "6.200")
     (source (origin
               (method url-fetch)
               (uri (string-append
@@ -2080,7 +2080,7 @@ (define-public font-sil-gentium
                     version ".zip"))
               (sha256
                (base32
-                "0m7189870hha217n1vgpmf89mwggrxkh679ffi1lxpnjggqi2n9k"))))
+                "0wxhsxv7xqsfbrywax0lcbmyfbrvrcm5g4c7a2v4j4cng4xi08cv"))))
     ;; Note: The zip file provides TTF files only, but the developer release,
     ;; which contains additional files, has a 'SOURCES.txt' file that says
     ;; that "the primary source files for the fonts are the fonts themselves".
-- 
2.39.2





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

* [bug#62283] [PATCH 2/3] gnu: font-sil-andika: Update to 6.2.0.
  2023-03-19 23:22 [bug#62283] [PATCH 0/3] Update SIL fonts Felix Lechner via Guix-patches via
  2023-03-19 23:29 ` [bug#62283] [PATCH 1/3] gnu: font-sil-gentium: Update to 6.2.0 Felix Lechner via Guix-patches via
@ 2023-03-19 23:29 ` Felix Lechner via Guix-patches via
  2023-03-19 23:29 ` [bug#62283] [PATCH 3/3] gnu: font-sil-charis: " Felix Lechner via Guix-patches via
  2023-03-26 22:07 ` bug#62283: [PATCH 0/3] Update SIL fonts Leo Famulari
  3 siblings, 0 replies; 8+ messages in thread
From: Felix Lechner via Guix-patches via @ 2023-03-19 23:29 UTC (permalink / raw)
  To: 62283; +Cc: Stefan Baums

From: Stefan Baums <baums@stefanbaums.com>

(font-sil-andika): Update to 6.2.0.
---
 gnu/packages/fonts.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index 879a3dadb1..60e86db638 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2098,7 +2098,7 @@ (define-public font-sil-gentium
 (define-public font-sil-andika
   (package
     (name "font-sil-andika")
-    (version "5.000")
+    (version "6.200")
     (source (origin
               (method url-fetch)
               (uri (string-append
@@ -2106,7 +2106,7 @@ (define-public font-sil-andika
                     version ".zip"))
               (sha256
                (base32
-                "01zm7p32gxfwmv7h3cfj2vx59846w2y6rxqy67grn2dyjh8pljv0"))))
+                "0z7qvjlidn3m2k40mwnm3azf3wd8pi1yvy2q30p5vkyyzhipb6nc"))))
     ;; As for Gentium (see above), the TTF files are considered source.
     (build-system font-build-system)
     (synopsis "Sans serif font designed especially for literacy use")
-- 
2.39.2





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

* [bug#62283] [PATCH 3/3] gnu: font-sil-charis: Update to 6.2.0.
  2023-03-19 23:22 [bug#62283] [PATCH 0/3] Update SIL fonts Felix Lechner via Guix-patches via
  2023-03-19 23:29 ` [bug#62283] [PATCH 1/3] gnu: font-sil-gentium: Update to 6.2.0 Felix Lechner via Guix-patches via
  2023-03-19 23:29 ` [bug#62283] [PATCH 2/3] gnu: font-sil-andika: " Felix Lechner via Guix-patches via
@ 2023-03-19 23:29 ` Felix Lechner via Guix-patches via
  2023-03-26 22:07 ` bug#62283: [PATCH 0/3] Update SIL fonts Leo Famulari
  3 siblings, 0 replies; 8+ messages in thread
From: Felix Lechner via Guix-patches via @ 2023-03-19 23:29 UTC (permalink / raw)
  To: 62283; +Cc: Stefan Baums

From: Stefan Baums <baums@stefanbaums.com>

(font-sil-charis): Update to 6.2.0.
---
 gnu/packages/fonts.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index 60e86db638..88d833d6c4 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2121,7 +2121,7 @@ (define-public font-sil-andika
 (define-public font-sil-charis
   (package
     (name "font-sil-charis")
-    (version "5.000")
+    (version "6.200")
     (source (origin
               (method url-fetch)
               (uri (string-append
@@ -2129,7 +2129,7 @@ (define-public font-sil-charis
                     version ".zip"))
               (sha256
                (base32
-                "1zcvw37f1a7gkml3yfm6hxh93844llm7xj4w52600qq3ndrm8gjy"))))
+                "1pksr5wc9grdj75md4phr1a0gpjxk7xlmhv2nybsd2hbfrssl2ab"))))
     ;; As for Gentium (see above), the TTF files are considered source.
     (build-system font-build-system)
     (synopsis "Serif font for the Cyrillic and Latin alphabets")
-- 
2.39.2





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

* bug#62283: [PATCH 0/3] Update SIL fonts.
  2023-03-19 23:22 [bug#62283] [PATCH 0/3] Update SIL fonts Felix Lechner via Guix-patches via
                   ` (2 preceding siblings ...)
  2023-03-19 23:29 ` [bug#62283] [PATCH 3/3] gnu: font-sil-charis: " Felix Lechner via Guix-patches via
@ 2023-03-26 22:07 ` Leo Famulari
  2023-03-26 22:13   ` [bug#62283] " Felix Lechner via Guix-patches via
  3 siblings, 1 reply; 8+ messages in thread
From: Leo Famulari @ 2023-03-26 22:07 UTC (permalink / raw)
  To: Felix Lechner via Guix-patches via
  Cc: Stefan Baums, Felix Lechner, 62283-done

On Sun, Mar 19, 2023 at 04:22:19PM -0700, Felix Lechner via Guix-patches via wrote:
> Sent on behalf of Stephan Baums. These patches are his first contribution to
> Guix. Thank you so much for your hard work!
> 
> Stefan Baums (3):
>   gnu: font-sil-gentium: Update to 6.2.0.
>   gnu: font-sil-andika: Update to 6.2.0.
>   gnu: font-sil-charis: Update to 6.2.0.

Thanks!

I added the name of the changed file to the commit messages, and pushed
as 89c8bba0a6cb164987c0e51037a106532e783aa9




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

* [bug#62283] [PATCH 0/3] Update SIL fonts.
  2023-03-26 22:07 ` bug#62283: [PATCH 0/3] Update SIL fonts Leo Famulari
@ 2023-03-26 22:13   ` Felix Lechner via Guix-patches via
  2023-03-27  1:04     ` Stefan Baums
  0 siblings, 1 reply; 8+ messages in thread
From: Felix Lechner via Guix-patches via @ 2023-03-26 22:13 UTC (permalink / raw)
  To: Leo Famulari; +Cc: Stefan Baums, 62283-done

Hi Leo,

On Sun, Mar 26, 2023 at 3:07 PM Leo Famulari <leo@famulari.name> wrote:
>
> and pushed

Awesome, thanks!

Stefan, please just do a 'guix pull' and you should have the fonts you
need. Thank you for your patience!

Kind regards,
Felix




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

* [bug#62283] [PATCH 0/3] Update SIL fonts.
  2023-03-26 22:13   ` [bug#62283] " Felix Lechner via Guix-patches via
@ 2023-03-27  1:04     ` Stefan Baums
  2023-03-27  1:16       ` Felix Lechner via Guix-patches via
  0 siblings, 1 reply; 8+ messages in thread
From: Stefan Baums @ 2023-03-27  1:04 UTC (permalink / raw)
  To: Felix Lechner; +Cc: 62283-done, Leo Famulari

Dear Felix and Leo,

> please just do a 'guix pull' and you should have the fonts you
> need

wonderful. That worked. Thanks again for all your help!

I will try to update the packages for the next version of these
fonts on my own.

All best,
Stefan




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

* [bug#62283] [PATCH 0/3] Update SIL fonts.
  2023-03-27  1:04     ` Stefan Baums
@ 2023-03-27  1:16       ` Felix Lechner via Guix-patches via
  0 siblings, 0 replies; 8+ messages in thread
From: Felix Lechner via Guix-patches via @ 2023-03-27  1:16 UTC (permalink / raw)
  To: Stefan Baums; +Cc: 62283, Leo Famulari

Hi Stefan,

On Sun, Mar 26, 2023 at 6:04 PM Stefan Baums <baums@stefanbaums.com> wrote:
>
> I will try to update the packages for the next version of these
> fonts on my own.

Now we can wait another thirteen years!

Kind regards
Felix




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

end of thread, other threads:[~2023-03-27 12:22 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-19 23:22 [bug#62283] [PATCH 0/3] Update SIL fonts Felix Lechner via Guix-patches via
2023-03-19 23:29 ` [bug#62283] [PATCH 1/3] gnu: font-sil-gentium: Update to 6.2.0 Felix Lechner via Guix-patches via
2023-03-19 23:29 ` [bug#62283] [PATCH 2/3] gnu: font-sil-andika: " Felix Lechner via Guix-patches via
2023-03-19 23:29 ` [bug#62283] [PATCH 3/3] gnu: font-sil-charis: " Felix Lechner via Guix-patches via
2023-03-26 22:07 ` bug#62283: [PATCH 0/3] Update SIL fonts Leo Famulari
2023-03-26 22:13   ` [bug#62283] " Felix Lechner via Guix-patches via
2023-03-27  1:04     ` Stefan Baums
2023-03-27  1:16       ` Felix Lechner via Guix-patches via

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.