unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#56720] [PATCH] gnu: Add font-chiron-sung-hk.
@ 2022-07-23  8:00 Hilton Chain via Guix-patches via
  2022-08-03  2:54 ` 宋文武 via Guix-patches via
  0 siblings, 1 reply; 6+ messages in thread
From: Hilton Chain via Guix-patches via @ 2022-07-23  8:00 UTC (permalink / raw)
  To: 56720

* gnu/packages/fonts (font-chiron-sung-hk): New variable.

Signed-off-by: Hilton Chain <hako@ultrarare.space>
---
 gnu/packages/fonts.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index 9ff2035a10..c60640a757 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2747,3 +2747,23 @@ (define-public font-lxgw-wenkai-tc
     (synopsis "LXGW WenKai TC / 霞鶩文楷 TC")
     (description "The Traditional Chinese Version of LXGW WenKai.")
     (license license:silofl1.1)))
+
+(define-public font-chiron-sung-hk
+  (package
+    (name "font-chiron-sung-hk")
+    (version "1.004")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://github.com/chiron-fonts/chiron-sung-hk/archive/refs/tags/v"
+                    version ".tar.gz"))
+              (sha256
+               (base32
+                "0kp40sxxcw6p747bmd0wyaaipzalbj7dpfbrwkhbpvx6zgncgz5f"))))
+    (build-system font-build-system)
+    (home-page "https://chiron-fonts.github.io/")
+    (synopsis "昭源宋體")
+    (description
+     "Chiron Sung HK (昭源宋體) is a Traditional Chinese serif
+ typeface based on Adobe’s Source Han Serif (a.k.a. Google’s Noto Sans CJK).")
+    (license license:silofl1.1)))
--
2.36.1




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

* [bug#56720] [PATCH] gnu: Add font-chiron-sung-hk.
  2022-07-23  8:00 [bug#56720] [PATCH] gnu: Add font-chiron-sung-hk Hilton Chain via Guix-patches via
@ 2022-08-03  2:54 ` 宋文武 via Guix-patches via
  2022-08-03  6:41   ` [bug#56720] [PATCH v2 0/2] gnu: Add Chiron Fonts Hilton Chain via Guix-patches via
  0 siblings, 1 reply; 6+ messages in thread
From: 宋文武 via Guix-patches via @ 2022-08-03  2:54 UTC (permalink / raw)
  To: Hilton Chain; +Cc: 56720

Hilton Chain <hako@ultrarare.space> writes:

> * gnu/packages/fonts (font-chiron-sung-hk): New variable.
>
> Signed-off-by: Hilton Chain <hako@ultrarare.space>
> ---
>  gnu/packages/fonts.scm | 20 ++++++++++++++++++++
>  1 file changed, 20 insertions(+)
>
> diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
> index 9ff2035a10..c60640a757 100644
> --- a/gnu/packages/fonts.scm
> +++ b/gnu/packages/fonts.scm
> @@ -2747,3 +2747,23 @@ (define-public font-lxgw-wenkai-tc
>      (synopsis "LXGW WenKai TC / 霞鶩文楷 TC")
>      (description "The Traditional Chinese Version of LXGW WenKai.")
>      (license license:silofl1.1)))
> +
> +(define-public font-chiron-sung-hk
> +  (package
> +    (name "font-chiron-sung-hk")
> +    (version "1.004")
> +    (source (origin
> +              (method url-fetch)
> +              (uri (string-append
> +                    "https://github.com/chiron-fonts/chiron-sung-hk/archive/refs/tags/v"
> +                    version ".tar.gz"))

Hello, thoese github generated archive links are not stable, their hash
may changed after some time.  Could you use "git-fetch" instead, thanks!




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

* [bug#56720] [PATCH v2 0/2] gnu: Add Chiron Fonts.
  2022-08-03  2:54 ` 宋文武 via Guix-patches via
@ 2022-08-03  6:41   ` Hilton Chain via Guix-patches via
  2022-08-03  6:48     ` [bug#56720] [PATCH 1/1] gnu: Add font-chiron-hei-hk Hilton Chain via Guix-patches via
  0 siblings, 1 reply; 6+ messages in thread
From: Hilton Chain via Guix-patches via @ 2022-08-03  6:41 UTC (permalink / raw)
  To: 56720; +Cc: 宋文武

From 798983ae84d941a3830b5405e8cc13b310d85245 Mon Sep 17 00:00:00 2001
From: Hilton Chain <hako@ultrarare.space>
Date: Wed, 3 Aug 2022 14:37:09 +0800
Subject: [PATCH v2 0/2] gnu: Add Chiron Fonts.

v1 -> v2: Use git-fetch for obtaining source.

Hilton Chain (2):
  gnu: Add font-chiron-sung-hk.
  gnu: Add font-chiron-hei-hk.

 gnu/packages/fonts.scm | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)


base-commit: 94f801a4269a774e1d4bafb4ea2db75f5d68504a
--
2.37.1




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

* [bug#56720] [PATCH 1/1] gnu: Add font-chiron-hei-hk.
  2022-08-03  6:41   ` [bug#56720] [PATCH v2 0/2] gnu: Add Chiron Fonts Hilton Chain via Guix-patches via
@ 2022-08-03  6:48     ` Hilton Chain via Guix-patches via
  2022-08-03  6:51       ` Hilton Chain via Guix-patches via
  0 siblings, 1 reply; 6+ messages in thread
From: Hilton Chain via Guix-patches via @ 2022-08-03  6:48 UTC (permalink / raw)
  To: 56720; +Cc: 宋文武

From 798983ae84d941a3830b5405e8cc13b310d85245 Mon Sep 17 00:00:00 2001
From: Hilton Chain <hako@ultrarare.space>
Date: Wed, 3 Aug 2022 14:35:30 +0800
Subject: [PATCH 1/1] gnu: Add font-chiron-hei-hk.

* gnu/packages/fonts (font-chiron-hei-hk): New variable.

Signed-off-by: Hilton Chain <hako@ultrarare.space>
---
 gnu/packages/fonts.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index 0d70e4460b..53548ce827 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -2768,3 +2768,22 @@ (define-public font-chiron-sung-hk
      "Chiron Sung HK (昭源宋體) is a Traditional Chinese serif
  typeface based on Adobe’s Source Han Serif (a.k.a. Google’s Noto Sans CJK).")
     (license license:silofl1.1)))
+
+(define-public font-chiron-hei-hk
+  (package
+    (name "font-chiron-hei-hk")
+    (version "2.502")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/chiron-fonts/chiron-hei-hk")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0wk1yladmwflkwrmj374avpml8shyrgd622f7mbvw5ln7fi70d2l"))))
+    (build-system font-build-system)
+    (home-page "https://chiron-fonts.github.io/")
+    (synopsis "昭源黑體")
+    (description "The complementary sans-serif typeface for Chiron Sung HK.")
+    (license license:silofl1.1)))
-- 
2.37.1


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

* [bug#56720] [PATCH 1/1] gnu: Add font-chiron-hei-hk.
  2022-08-03  6:48     ` [bug#56720] [PATCH 1/1] gnu: Add font-chiron-hei-hk Hilton Chain via Guix-patches via
@ 2022-08-03  6:51       ` Hilton Chain via Guix-patches via
  2022-08-03  7:02         ` bug#56720: " Hilton Chain via Guix-patches via
  0 siblings, 1 reply; 6+ messages in thread
From: Hilton Chain via Guix-patches via @ 2022-08-03  6:51 UTC (permalink / raw)
  To: 56720; +Cc: 宋文武


Sorry, there's something wrong in formatting patches, I'll re-format them and then send later.




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

* bug#56720: [PATCH 1/1] gnu: Add font-chiron-hei-hk.
  2022-08-03  6:51       ` Hilton Chain via Guix-patches via
@ 2022-08-03  7:02         ` Hilton Chain via Guix-patches via
  0 siblings, 0 replies; 6+ messages in thread
From: Hilton Chain via Guix-patches via @ 2022-08-03  7:02 UTC (permalink / raw)
  To: 56720-done

Continues at #56904.




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

end of thread, other threads:[~2022-08-03  7:04 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-23  8:00 [bug#56720] [PATCH] gnu: Add font-chiron-sung-hk Hilton Chain via Guix-patches via
2022-08-03  2:54 ` 宋文武 via Guix-patches via
2022-08-03  6:41   ` [bug#56720] [PATCH v2 0/2] gnu: Add Chiron Fonts Hilton Chain via Guix-patches via
2022-08-03  6:48     ` [bug#56720] [PATCH 1/1] gnu: Add font-chiron-hei-hk Hilton Chain via Guix-patches via
2022-08-03  6:51       ` Hilton Chain via Guix-patches via
2022-08-03  7:02         ` bug#56720: " Hilton Chain via 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).