From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58604) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eJl72-0001gA-FX for guix-patches@gnu.org; Tue, 28 Nov 2017 14:00:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eJl6y-0008S1-67 for guix-patches@gnu.org; Tue, 28 Nov 2017 14:00:08 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:54640) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eJl6y-0008Rw-1d for guix-patches@gnu.org; Tue, 28 Nov 2017 14:00:04 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eJl6x-0008Mr-Ml for guix-patches@gnu.org; Tue, 28 Nov 2017 14:00:03 -0500 Subject: [bug#27969] [fonts] font-dosis Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58178) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eJl5s-0001G6-1p for guix-patches@gnu.org; Tue, 28 Nov 2017 13:58:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eJl5p-000807-D6 for guix-patches@gnu.org; Tue, 28 Nov 2017 13:58:56 -0500 Received: from aibo.runbox.com ([91.220.196.211]:44092) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eJl5p-0007zF-42 for guix-patches@gnu.org; Tue, 28 Nov 2017 13:58:53 -0500 Received: from [10.9.9.210] (helo=mailfront10.runbox.com) by mailtransmit02.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1eJl5n-0005TN-Su for guix-patches@gnu.org; Tue, 28 Nov 2017 19:58:51 +0100 Received: from dslb-092-073-184-243.092.073.pools.vodafone-ip.de ([92.73.184.243] helo=localhost) by mailfront10.runbox.com with esmtpsa (uid:892961 ) (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) id 1eJl5c-00059N-DC for guix-patches@gnu.org; Tue, 28 Nov 2017 19:58:40 +0100 Date: Tue, 28 Nov 2017 18:58:36 +0000 From: ng0 Message-ID: <20171128185836.axtthbpgzh4u5s3k@abyayala> References: <20170805164453.d36hupwvpmo3kgls@abyayala> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="l3dui4t552ylytv4" Content-Disposition: inline In-Reply-To: <20170805164453.d36hupwvpmo3kgls@abyayala> 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 --l3dui4t552ylytv4 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable No comment since August. Can someone review this and push? Thanks! ng0 transcribed 4.4K bytes: > Another font, Dosis. >=20 > The description is discussion worthy, I took it straight > from the website. > --=20 > ng0 > GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588 > GnuPG: https://n0is.noblogs.org/my-keys > https://www.infotropique.org https://krosos.org > From 54f73e9288b978aa2ca1eb9f7cfe7d1b3a3d01a8 Mon Sep 17 00:00:00 2001 > From: ng0 > Date: Sat, 5 Aug 2017 16:37:29 +0000 > Subject: [PATCH] gnu: Add font-dosis. >=20 > * gnu/packages/fonts.scm (font-dosis): New variable. > --- > gnu/packages/fonts.scm | 49 ++++++++++++++++++++++++++++++++++++++++++++= +++++ > 1 file changed, 49 insertions(+) >=20 > 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/dosi= s-" > + "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-inpu= ts > + "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 person= ality. > +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 & feelin= gs. > +It comes in 7 incremental weights: > +ExtraLight, Light, Book, Medium, Semibold, Bold & ExtraBold") > + (license license:silofl1.1))) > --=20 > 2.13.4 >=20 --=20 GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588 GnuPG: https://c.n0.is/ng0_pubkeys/tree/keys WWW: https://n0.is --l3dui4t552ylytv4 Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEqIyK3RKYKNfqwC5S4i+bv+40hYgFAlodsdwACgkQ4i+bv+40 hYjURA/+OvwiaLUrkSIqxilLV2c05gpY7/I8PjIcfIk7Zg24SuDVT5bzSxhbzpB6 znlSFWcmR4JoEpkaJVymUV6lOvVPSNqtaps4UIISmEwJ0w2pSFhigoKBuxlQIFT/ dOhkmNZfppYrC0whhwUPdE36f0EAvtmU8Yyf9exC703BRzAkkFWYNUTbfMyB/2xu Flvw6oD9tDR/i00RzpwnXfePK3KsnmbmNk+gVGjip7Lxt5MJwJZzUCjg5Fy0ICqp 9wIUehjRjb7P6RfUqP/Qyf4bulv0SFQn8mMV4uY/v4su5EveRmsRjnqEGLEcbxT4 6CTlccKltjDDsCzb7WUGxpwQpunmYpN1svpALQL7L7qGVbo1sZC33qlda8E5oQbV k1P5icaebpSU+BWbTMoZAumIP89TogUP/EyPdqoQqI47hi8mRGumLAKDCDVlTbKM 11llrEWRJYMqOylhkQOu8sHV1FqzBLO3m8wH/2b5pINS0M0y+a+0w8m1nR8DsPt2 pGLfYT6UhYjiwvfQjs0kuFtG7pz8VwOWHlEpt9aRypzmJxt0dRaDjjSH85sqFNP9 73Ex6Qp22i/RzozGI9rUxEpW25t+WaVX6t00X9SSwtRhOwWcxFFlsxvMEq4/jdEY 9QWP2tOagxvU0K25FSgSdfYo6hy98XPna8KxRIoEHMVzo8mb4Pw= =BGkA -----END PGP SIGNATURE----- --l3dui4t552ylytv4--