From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33012) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1de2DG-0006L1-5V for guix-patches@gnu.org; Sat, 05 Aug 2017 12:46:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1de2DD-0007oz-1M for guix-patches@gnu.org; Sat, 05 Aug 2017 12:46:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:40880) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1de2DC-0007oo-Tj for guix-patches@gnu.org; Sat, 05 Aug 2017 12:46:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1de2DC-0001R1-Bh for guix-patches@gnu.org; Sat, 05 Aug 2017 12:46:02 -0400 Subject: [bug#27969] [fonts] font-dosis Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:32851) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1de2Cg-0006Au-VG for guix-patches@gnu.org; Sat, 05 Aug 2017 12:45:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1de2Cb-0007H6-RB for guix-patches@gnu.org; Sat, 05 Aug 2017 12:45:31 -0400 Received: from aibo.runbox.com ([91.220.196.211]:52980) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1de2Cb-0007F0-Ht for guix-patches@gnu.org; Sat, 05 Aug 2017 12:45:25 -0400 Received: from [10.9.9.210] (helo=mailfront10.runbox.com) by mailtransmit03.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1de2CX-0008Nd-TL for guix-patches@gnu.org; Sat, 05 Aug 2017 18:45:21 +0200 Received: from [91.223.82.156] (helo=localhost) by mailfront10.runbox.com with esmtpsa (uid:892961 ) (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) id 1de2CB-0001cS-4G for guix-patches@gnu.org; Sat, 05 Aug 2017 18:44:59 +0200 Date: Sat, 5 Aug 2017 16:44:53 +0000 From: ng0 Message-ID: <20170805164453.d36hupwvpmo3kgls@abyayala> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="73fnzoekvynelluz" Content-Disposition: inline List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 27969@debbugs.gnu.org --73fnzoekvynelluz Content-Type: multipart/mixed; boundary="kobpzcixfahqvbsk" Content-Disposition: inline --kobpzcixfahqvbsk Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Another font, Dosis. The description is discussion worthy, I took it straight =66rom the website. --=20 ng0 GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588 GnuPG: https://n0is.noblogs.org/my-keys https://www.infotropique.org https://krosos.org --kobpzcixfahqvbsk Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename="0001-gnu-Add-font-dosis.patch" Content-Transfer-Encoding: quoted-printable =46rom 54f73e9288b978aa2ca1eb9f7cfe7d1b3a3d01a8 Mon Sep 17 00:00:00 2001 =46rom: ng0 Date: Sat, 5 Aug 2017 16:37:29 +0000 Subject: [PATCH] gnu: Add font-dosis. * gnu/packages/fonts.scm (font-dosis): New variable. --- gnu/packages/fonts.scm | 49 ++++++++++++++++++++++++++++++++++++++++++++++= +++ 1 file changed, 49 insertions(+) diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 51073eff9..c7f7ea0c4 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -1073,3 +1073,52 @@ resolutions.") (synopsis "Fonts for MathJax") (description "This package contains the fonts required for MathJax.") (license license:asl2.0))) + +(define-public font-dosis + (package + (name "font-dosis") + (version "1.7") + (source + (origin + (method url-fetch) + (uri (string-append "http://www.impallari.com/media/releases/dosis-" + "v" version ".zip")) + (sha256 + (base32 + "1qhci68f68mf87jd69vjf9qjq3wydgw1q7ivn3amjb65ls1s0c4s")))) + (build-system trivial-build-system) + (arguments + `(#:modules ((guix build utils)) + #:builder (begin + (use-modules (guix build utils) + (srfi srfi-26)) + + (let ((PATH (string-append (assoc-ref %build-inputs + "unzip") + "/bin")) + (ttf-dir (string-append %output + "/share/fonts/truetype")) + (otf-dir (string-append %output + "/share/fonts/opentype"))) + (setenv "PATH" PATH) + (system* "unzip" (assoc-ref %build-inputs "source")) + + (mkdir-p ttf-dir) + (mkdir-p otf-dir) + (for-each (lambda (ttf) + (install-file ttf ttf-dir)) + (find-files "." "\\.ttf$")) + (for-each (lambda (otf) + (install-file otf otf-dir)) + (find-files "." "\\.otf$")))))) + (native-inputs `(("unzip" ,unzip))) + (home-page "http://www.impallari.com/dosis") + (synopsis "Very simple, rounded, sans serif family") + (description + "Dosis is a very simple, rounded, sans serif family. +The lighter weights are minimalist. The bolder weights have more personal= ity. +The medium weight is nice and balanced. The overall result is a family +that's clean and modern, and can express a wide range of voices & feelings. +It comes in 7 incremental weights: +ExtraLight, Light, Book, Medium, Semibold, Bold & ExtraBold") + (license license:silofl1.1))) --=20 2.13.4 --kobpzcixfahqvbsk-- --73fnzoekvynelluz Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEqIyK3RKYKNfqwC5S4i+bv+40hYgFAlmF9gUACgkQ4i+bv+40 hYjqlw/+LzP395r8GJR4C4WTyUi9uSKx4M18PwVvujCQHbZN8Z45M0kVexRoq1Cy taubl9r7sbPom04mTr1DyYLYZCAGQn6HAxHH72DKFEqJDaiO8R7O8Qn0//fWpLod 3IbYgLGrfKfo5iW7AQ4G5azGASdhk7oW2PYv2AhIRG6bD1chYW/wzK6IWQ8n6lfx w47RqEhC7GbgFYXjVEaKykCPAQIte38mVs6ecpD/yde5yvtRmazp79pzqhDgtn3b agPKv/dkmF1dbsyWSgMlzHJD+vznTlJAuqi7pVWQZKSmG+RG5xaaIwumo+86DN8k Ehs0BaEQ++rPmGFP+NhRv4fYihiMKCaM5RGAahTKx2SVscIvDvZn/sn0Ps/Sny6y ULs3UzC8bWQe/FOYGUf57/F+xeHQlYrCUxL8BMmI1PsyBglqWObQxl7fXsuosXAY eIUpFOisGGAACwIL7Fml87Nv7ooDXtEGufWBuU0M8bdDOffGAeegXRYTnFS2yqfi YyrDrHVt6hv6mFtbosf/4mxFOyqfSGSdme65+QfwSgyYC4Z02kTrtCusP26h4I0N w0oKhVGXrtl+AaUAXcQE31ljn78t6qbu2Cj4mAmQcCfpFSv8oa1RrfILHkvLF9Ca 4SGLu6iGjaFC6UbpjkDwJ45IitWVa0rUUCM5FHDNW6eR4D0vyZo= =hFWJ -----END PGP SIGNATURE----- --73fnzoekvynelluz--