GNU bug report logs - #27972
[fonts] font-lato

Previous Next

Package: guix-patches;

Reported by: ng0 <ng0 <at> infotropique.org>

Date: Sat, 5 Aug 2017 17:24:02 UTC

Severity: normal

Done: Leo Famulari <leo <at> famulari.name>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 27972 in the body.
You can then email your comments to 27972 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#27972; Package guix-patches. (Sat, 05 Aug 2017 17:24:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to ng0 <ng0 <at> infotropique.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sat, 05 Aug 2017 17:24:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: ng0 <ng0 <at> infotropique.org>
To: guix-patches <at> gnu.org
Subject: [fonts] font-lato
Date: Sat, 5 Aug 2017 17:22:40 +0000
[Message part 1 (text/plain, inline)]
This adds the Lato 2.010 font.
-- 
ng0
GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588
GnuPG: https://n0is.noblogs.org/my-keys
https://www.infotropique.org https://krosos.org
[0001-gnu-Add-font-lato.patch (text/plain, attachment)]
[signature.asc (application/pgp-signature, inline)]

Reply sent to Leo Famulari <leo <at> famulari.name>:
You have taken responsibility. (Tue, 28 Nov 2017 19:24:01 GMT) Full text and rfc822 format available.

Notification sent to ng0 <ng0 <at> infotropique.org>:
bug acknowledged by developer. (Tue, 28 Nov 2017 19:24:02 GMT) Full text and rfc822 format available.

Message #10 received at 27972-done <at> debbugs.gnu.org (full text, mbox):

From: Leo Famulari <leo <at> famulari.name>
To: 27972-done <at> debbugs.gnu.org
Subject: Re: [bug#27972] [fonts] font-lato
Date: Tue, 28 Nov 2017 14:23:02 -0500
[Message part 1 (text/plain, inline)]
On Sat, Aug 05, 2017 at 05:22:40PM +0000, ng0 wrote:
> This adds the Lato 2.010 font.
> -- 
> ng0
> GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588
> GnuPG: https://n0is.noblogs.org/my-keys
> https://www.infotropique.org https://krosos.org

> From ba987b01c4e394989989c0647e292117cf6faf82 Mon Sep 17 00:00:00 2001
> From: ng0 <ng0 <at> infotropique.org>
> Date: Sat, 5 Aug 2017 17:21:23 +0000
> Subject: [PATCH] gnu: Add font-lato.
> 
> * gnu/packages/fonts.scm (font-lato): New variable.

Thanks! Pushed as 4eb4742060b378071158bdd8794370a12ab04701
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#27972; Package guix-patches. (Tue, 28 Nov 2017 19:56:01 GMT) Full text and rfc822 format available.

Message #13 received at submit <at> debbugs.gnu.org (full text, mbox):

From: ng0 <ng0 <at> in0.is>
To: guix-patches <at> gnu.org
Subject: Re: [bug#27972] [fonts] font-lato
Date: Tue, 28 Nov 2017 18:57:34 +0000
[Message part 1 (text/plain, inline)]
No comment since August. Can someone give it a review and push?

Thanks!
ng0 transcribed 3.9K bytes:
> This adds the Lato 2.010 font.
> -- 
> ng0
> GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588
> GnuPG: https://n0is.noblogs.org/my-keys
> https://www.infotropique.org https://krosos.org

> From ba987b01c4e394989989c0647e292117cf6faf82 Mon Sep 17 00:00:00 2001
> From: ng0 <ng0 <at> infotropique.org>
> Date: Sat, 5 Aug 2017 17:21:23 +0000
> Subject: [PATCH] gnu: Add font-lato.
> 
> * gnu/packages/fonts.scm (font-lato): New variable.
> ---
>  gnu/packages/fonts.scm | 39 +++++++++++++++++++++++++++++++++++++++
>  1 file changed, 39 insertions(+)
> 
> diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
> index 51073eff9..8cdef4689 100644
> --- a/gnu/packages/fonts.scm
> +++ b/gnu/packages/fonts.scm
> @@ -170,6 +170,45 @@ itself."))))
>  sans-serif designed for on-screen reading.  It is used by GNOME <at> tie{}3.")
>      (license license:silofl1.1)))
>  
> +(define-public font-lato
> +  (package
> +    (name "font-lato")
> +    (version "2.010")
> +    (source (origin
> +              (method url-fetch)
> +              (uri (string-append "http://www.latofonts.com/download/Lato2OFL.zip"))
> +              (sha256
> +               (base32
> +                "1f5540g0ja1nx3ddd3ywn77xc81ssrxpq8n3gyb9sabyq2b4xda2"))))
> +    (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"))
> +                         (font-dir (string-append %output
> +                                                  "/share/fonts/truetype")))
> +                     (setenv "PATH" PATH)
> +                     (system* "unzip" (assoc-ref %build-inputs "source"))
> +
> +                     (mkdir-p font-dir)
> +                     (for-each (lambda (ttf)
> +                                 (install-file ttf font-dir))
> +                               (find-files "." "\\.ttf$"))))))
> +
> +    (native-inputs `(("unzip" ,unzip)))
> +    (home-page "http://www.latofonts.com/lato-free-fonts/")
> +    (synopsis "Lato sans-serif typeface")
> +    (description
> +     "Lato is a sanserif typeface family.  It covers over 3000 glyphs per style.
> +The Lato 2.010 family supports more than 100 Latin-based languages, over
> +50 Cyrillic-based languages as well as Greek and IPA phonetics.")
> +    (license license:silofl1.1)))
> +
>  (define-public font-gnu-freefont-ttf
>    (package
>      (name "font-gnu-freefont-ttf")
> -- 
> 2.13.4
> 




-- 
GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588
GnuPG: https://c.n0.is/ng0_pubkeys/tree/keys
  WWW: https://n0.is
[signature.asc (application/pgp-signature, inline)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 27 Dec 2017 12:24:07 GMT) Full text and rfc822 format available.

This bug report was last modified 7 years and 178 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.