unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#42362] [PATCH] gnu: Add font-catamaran.
@ 2020-07-15 10:51 Arun Isaac
  2020-07-20 13:26 ` Efraim Flashner
  0 siblings, 1 reply; 3+ messages in thread
From: Arun Isaac @ 2020-07-15 10:51 UTC (permalink / raw)
  To: 42362; +Cc: Arun Isaac

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

diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index 38b342f770..048e27f8ff 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1927,3 +1927,27 @@ languages, it contains Japanese characters, including Kana glyphs and more
 than 5,300 Kanji glyphs, as well major international phonetic symbols,
 operators and special symbols.")
     (license (license:non-copyleft "file:///LICENSE_E"))))
+
+(define-public font-catamaran
+  (let ((commit "7559b4906f9c9148fb22c6f89508c3053a78a296")
+        (revision "1"))
+    (package
+      (name "font-catamaran")
+      (version (git-version "20170622" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/VanillaandCream/Catamaran-Tamil")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "1wpp41l7j2kpgnyavhgxcc5wp852a4wqsnwravn39gp980s84yxw"))))
+      (build-system font-build-system)
+      (home-page "https://github.com/VanillaandCream/Catamaran-Tamil")
+      (synopsis "9 weight Tamil and Latin type")
+      (description "Catamaran is a 9 weight Tamil and Latin type.  Catamaran
+is a stylish type with a polished yet relaxed feel.  Its versatility makes it
+suitable for a wide range of uses.")
+      (license license:silofl1.1))))
-- 
2.26.2





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

* [bug#42362] [PATCH] gnu: Add font-catamaran.
  2020-07-15 10:51 [bug#42362] [PATCH] gnu: Add font-catamaran Arun Isaac
@ 2020-07-20 13:26 ` Efraim Flashner
  2020-07-22 22:43   ` bug#42362: " Arun Isaac
  0 siblings, 1 reply; 3+ messages in thread
From: Efraim Flashner @ 2020-07-20 13:26 UTC (permalink / raw)
  To: Arun Isaac; +Cc: 42362

[-- Attachment #1: Type: text/plain, Size: 2023 bytes --]

On Wed, Jul 15, 2020 at 04:21:25PM +0530, Arun Isaac wrote:
> * gnu/packages/fonts.scm (font-catamaran): New variable.
> ---
>  gnu/packages/fonts.scm | 24 ++++++++++++++++++++++++
>  1 file changed, 24 insertions(+)
> 
> diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
> index 38b342f770..048e27f8ff 100644
> --- a/gnu/packages/fonts.scm
> +++ b/gnu/packages/fonts.scm
> @@ -1927,3 +1927,27 @@ languages, it contains Japanese characters, including Kana glyphs and more
>  than 5,300 Kanji glyphs, as well major international phonetic symbols,
>  operators and special symbols.")
>      (license (license:non-copyleft "file:///LICENSE_E"))))
> +
> +(define-public font-catamaran
> +  (let ((commit "7559b4906f9c9148fb22c6f89508c3053a78a296")
> +        (revision "1"))
> +    (package
> +      (name "font-catamaran")
> +      (version (git-version "20170622" revision commit))

This should be (git-version "0.0.0" revision commit)

> +      (source
> +       (origin
> +         (method git-fetch)
> +         (uri (git-reference
> +               (url "https://github.com/VanillaandCream/Catamaran-Tamil")
> +               (commit commit)))
> +         (file-name (git-file-name name version))
> +         (sha256
> +          (base32
> +           "1wpp41l7j2kpgnyavhgxcc5wp852a4wqsnwravn39gp980s84yxw"))))
> +      (build-system font-build-system)
> +      (home-page "https://github.com/VanillaandCream/Catamaran-Tamil")
> +      (synopsis "9 weight Tamil and Latin type")
> +      (description "Catamaran is a 9 weight Tamil and Latin type.  Catamaran
> +is a stylish type with a polished yet relaxed feel.  Its versatility makes it
> +suitable for a wide range of uses.")
> +      (license license:silofl1.1))))
> -- 

LGTM with the one change!

-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* bug#42362: [PATCH] gnu: Add font-catamaran.
  2020-07-20 13:26 ` Efraim Flashner
@ 2020-07-22 22:43   ` Arun Isaac
  0 siblings, 0 replies; 3+ messages in thread
From: Arun Isaac @ 2020-07-22 22:43 UTC (permalink / raw)
  To: Efraim Flashner; +Cc: 42362-done

[-- Attachment #1: Type: text/plain, Size: 68 bytes --]


Pushed to master with suggested change, thanks for the review! :-)

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

end of thread, other threads:[~2020-07-22 22:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-15 10:51 [bug#42362] [PATCH] gnu: Add font-catamaran Arun Isaac
2020-07-20 13:26 ` Efraim Flashner
2020-07-22 22:43   ` bug#42362: " Arun Isaac

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