GNU bug report logs -
#67869
[PATCH] gnu: Add font-google-roboto-mono.
Previous Next
Reported by: Stefan <stefan-guix <at> vodafonemail.de>
Date: Sun, 17 Dec 2023 16:43:01 UTC
Severity: normal
Tags: patch
Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
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 67869 in the body.
You can then email your comments to 67869 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#67869
; Package
guix-patches
.
(Sun, 17 Dec 2023 16:43:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Stefan <stefan-guix <at> vodafonemail.de>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Sun, 17 Dec 2023 16:43:01 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/fonts.scm (font-google-roboto-mono): New variable.
Change-Id: I3b18c1a5a8416f2e4429a05b5ef3f2d434ffe871
---
gnu/packages/fonts.scm | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index 813367be8a..a5687ee7f6 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -59,6 +59,7 @@
;;; Copyright © 2023 Denis 'GNUtoo' Carikli <GNUtoo <at> cyberdimension.org>
;;; Copyright © 2023 chris <chris <at> bumblehead.com>
;;; Copyright © 2023 Luis Felipe López Acevedo <sirgazil <at> zoho.com>
+;;; Copyright © 2023 Stefan <stefan-guix <at> vodafonemail.de>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1134,6 +1135,42 @@ (define-public font-google-roboto
visual language \"Material Design\".")
(license license:asl2.0)))
+(define-public font-google-roboto-mono
+ (package
+ (name "font-google-roboto-mono")
+ ;; The version is taken from the comment of git commit
+ ;; 4df0b673c9b316ad5e8de8fa70b0768ab66c87d6, which is the last
+ ;; modification of the RobotoMono*.ttf files in commit
+ ;; b81989291cb1fc953ac039ed16b3e2ae4685ab33.
+ (version "3.000")
+ (source
+ (origin
+ ;; The subversion bridge of GitHub allows to only fetch a sub-directory.
+ (method svn-fetch)
+ (uri
+ (svn-reference
+ (url "https://github.com/google/fonts/trunk/apache/robotomono")
+ ;; This SVN revision matches the git commit
+ ;; b81989291cb1fc953ac039ed16b3e2ae4685ab33.
+ (revision 103762)))
+ (sha256
+ (base32 "0zlprs2cnvld62khb741kdqgwpjsp1cw5wmm8ghzgq9hbfk3fhad"))))
+ (build-system font-build-system)
+ (arguments
+ (list #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'install-license-files 'change-directory-to-license
+ (lambda* (#:key outputs #:allow-other-keys)
+ (chdir "trunk/apache/robotomono"))))))
+ (home-page "https://github.com/google/fonts/tree/main/apache/robotomono")
+ (synopsis "The Roboto Mono family of fonts")
+ ;; The description is taken from the file DESCRIPTION.en_us.html.
+ (description
+ "Roboto Mono is a monospaced addition to the Roboto type family. Like the
+other members of the Roboto family, the fonts are optimized for readability on
+screens across a wide variety of devices and reading environments.")
+ (license license:asl2.0)))
+
(define-public font-borg-sans-mono
(package
(name "font-borg-sans-mono")
base-commit: 6ab242609daec00e8bd54f7bff54557c92695724
--
2.41.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#67869
; Package
guix-patches
.
(Sun, 09 Mar 2025 17:03:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 67869 <at> debbugs.gnu.org (full text, mbox):
Hello,
Stefan <stefan-guix <at> vodafonemail.de> writes:
> * gnu/packages/fonts.scm (font-google-roboto-mono): New variable.
Thank you.
> + (source
> + (origin
> + ;; The subversion bridge of GitHub allows to only fetch a sub-directory.
> + (method svn-fetch)
> + (uri
> + (svn-reference
> + (url "https://github.com/google/fonts/trunk/apache/robotomono")
> + ;; This SVN revision matches the git commit
> + ;; b81989291cb1fc953ac039ed16b3e2ae4685ab33.
> + (revision 103762)))
Should we use https://github.com/googlefonts/RobotoMono and git-fetch
instead? It seems more natural than cherry picking some files from a
more general repo.
Would you want to provide an updated patch?
Regards,
--
Nicolas Goaziou
Information forwarded
to
guix-patches <at> gnu.org
:
bug#67869
; Package
guix-patches
.
(Sun, 09 Mar 2025 19:29:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 67869 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Hi Nicolas!
> Should we use https://github.com/googlefonts/RobotoMono and git-fetch
> instead?
That git repository had license problems, which is the reason for my SVN solution. There is also https://issues.guix.gnu.org/54323. Unfortunately github meanwhile dropped the SVN support, so my patch is not working anymore.
Bye
Stefan
[Message part 2 (text/html, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#67869
; Package
guix-patches
.
(Sun, 09 Mar 2025 19:40:02 GMT)
Full text and
rfc822 format available.
Message #14 received at submit <at> debbugs.gnu.org (full text, mbox):
Hello,
Thanks for your answer!
Stefan via Guix-patches via <guix-patches <at> gnu.org> writes:
> That git repository had license problems, which is the reason for my
> SVN solution.
Ah! It seems that repository added a license last year. So, this, at
least, seems solved.
> There is also https://issues.guix.gnu.org/54323. Unfortunately github
> meanwhile dropped the SVN support, so my patch is not working anymore.
OK. I’m closing this report and work on 54323.
Regards,
--
Nicolas Goaziou
Reply sent
to
Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
:
You have taken responsibility.
(Sun, 09 Mar 2025 19:40:03 GMT)
Full text and
rfc822 format available.
Notification sent
to
Stefan <stefan-guix <at> vodafonemail.de>
:
bug acknowledged by developer.
(Sun, 09 Mar 2025 19:40:03 GMT)
Full text and
rfc822 format available.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Mon, 07 Apr 2025 11:24:06 GMT)
Full text and
rfc822 format available.
This bug report was last modified 90 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.