unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* bug#27106: [PATCH] gnu: font-iosevka: Update to 1.12.5.
@ 2017-05-27 18:50 Alex Griffin
  2017-05-31 14:56 ` Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: Alex Griffin @ 2017-05-27 18:50 UTC (permalink / raw)
  To: 27106

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

This patch updates the Iosevka fonts to the latest version.
-- 
Alex Griffin

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-font-iosevka-Update-to-1.12.5.patch --]
[-- Type: text/x-patch; name="0001-gnu-font-iosevka-Update-to-1.12.5.patch", Size: 3745 bytes --]

From 40e59cefd004c168af853c2bcae4f6b6624f2a27 Mon Sep 17 00:00:00 2001
From: Alex Griffin <a@ajgrf.com>
Date: Sat, 27 May 2017 09:39:38 -0500
Subject: [PATCH 2/4] gnu: font-iosevka: Update to 1.12.5.

* gnu/packages/fonts.scm (font-iosevka): Update to 1.12.5.  Re-indent.
---
 gnu/packages/fonts.scm | 58 +++++++++++++++++++++++++-------------------------
 1 file changed, 29 insertions(+), 29 deletions(-)

diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index 74ed9b8b7..21054e53a 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1297,37 +1297,37 @@ typeface, by mimicking Comic Sans while fixing its most obvious shortcomings.")
 
 (define-public font-iosevka
   (package
-   (name "font-iosevka")
-   (version "1.11.0")
-   (source (origin
-            (method url-fetch)
-            (uri (string-append
-                  "https://github.com/be5invis/Iosevka/releases/download/v"
-                  version "/iosevka-pack-" version ".zip"))
-            (sha256
-             (base32
-              "0d8prdk7s5z94sdfd0y92cvqq531yqrlg7hnadbnhd7fs9jqr5hj"))))
-   (build-system trivial-build-system)
-   (arguments
-    `(#:modules ((guix build utils))
-      #:builder (begin
-                  (use-modules (guix build utils))
-                  (let ((font-dir (string-append %output
-                                                 "/share/fonts/truetype"))
-                        (source (assoc-ref %build-inputs "source"))
-                        (unzip  (string-append (assoc-ref %build-inputs "unzip")
-                                               "/bin/unzip")))
-                    (mkdir-p font-dir)
-                    (system* unzip "-d" font-dir source)))))
-   (native-inputs `(("unzip" ,unzip)))
-   (home-page "https://be5invis.github.io/Iosevka/")
-   (synopsis "Coders' typeface, built from code")
-   (description
-    "Iosevka is a slender monospace sans-serif or slab-serif typeface inspired
+    (name "font-iosevka")
+    (version "1.12.5")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://github.com/be5invis/Iosevka/releases/download/v"
+                    version "/iosevka-pack-" version ".zip"))
+              (sha256
+               (base32
+                "0s3g6mk0ngwsrw9h9dqinb50cd9i8zhqdcmmh93fhyf4d87yfwyi"))))
+    (build-system trivial-build-system)
+    (arguments
+     `(#:modules ((guix build utils))
+       #:builder (begin
+                   (use-modules (guix build utils))
+                   (let ((font-dir (string-append %output
+                                                  "/share/fonts/truetype"))
+                         (source (assoc-ref %build-inputs "source"))
+                         (unzip  (string-append (assoc-ref %build-inputs "unzip")
+                                                "/bin/unzip")))
+                     (mkdir-p font-dir)
+                     (system* unzip "-d" font-dir source)))))
+    (native-inputs `(("unzip" ,unzip)))
+    (home-page "https://be5invis.github.io/Iosevka/")
+    (synopsis "Coders' typeface, built from code")
+    (description
+     "Iosevka is a slender monospace sans-serif or slab-serif typeface inspired
 by Pragmata Pro, M+, and PF DIN Mono, designed to be the ideal font for
 programming.  Iosevka is completely generated from its source code.")
-   (license (list license:silofl1.1  ; build artifacts (i.e. the fonts)
-                  license:bsd-3))))  ; supporting code
+    (license (list license:silofl1.1 ; build artifacts (i.e. the fonts)
+                   license:bsd-3)))) ; supporting code
 
 (define-public font-go
   (let ((commit "f03a046406d4d7fbfd4ed29f554da8f6114049fc")
-- 
2.13.0


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

* bug#27106: [PATCH] gnu: font-iosevka: Update to 1.12.5.
  2017-05-27 18:50 bug#27106: [PATCH] gnu: font-iosevka: Update to 1.12.5 Alex Griffin
@ 2017-05-31 14:56 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2017-05-31 14:56 UTC (permalink / raw)
  To: Alex Griffin; +Cc: 27106-done

Alex Griffin <a@ajgrf.com> skribis:

> From 40e59cefd004c168af853c2bcae4f6b6624f2a27 Mon Sep 17 00:00:00 2001
> From: Alex Griffin <a@ajgrf.com>
> Date: Sat, 27 May 2017 09:39:38 -0500
> Subject: [PATCH 2/4] gnu: font-iosevka: Update to 1.12.5.
>
> * gnu/packages/fonts.scm (font-iosevka): Update to 1.12.5.  Re-indent.

Applied, thanks!

Ludo'.

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

end of thread, other threads:[~2017-05-31 14:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-27 18:50 bug#27106: [PATCH] gnu: font-iosevka: Update to 1.12.5 Alex Griffin
2017-05-31 14:56 ` Ludovic Courtès

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