unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#37345: Icecat doesn't display numbers on Guix System
@ 2019-09-08 21:10 Jan
  2019-09-08 21:20 ` Jesse Gibbons
                   ` (2 more replies)
  0 siblings, 3 replies; 11+ messages in thread
From: Jan @ 2019-09-08 21:10 UTC (permalink / raw)
  To: 37345

Hi everyone,
I've recently installed Icecat on Guix System natively and it doesn't
display numbers properly - instead of numbers, there are transparent
squares without a black frame - they're just invisible globally, no
matter if on a website or in the browser's interface.
Tried changing font to GNU unifont (because it supports the whole
unicode), reinstalling Icecat (which shouldn't help anyway, because
Guix is reproducible, including bugs), guix pulling, system
reconfiguration, but nothing helps.
I have this issue only on Icecat, because ungoogled chromium and other
programs display numbers properly. 

architecture: x86_64

I saw a similar bug in the database, but it's from 2017 and it was
about font issue on other distributions, not on Guix System, so I
submitted a new report, hope that's not a problem.

Jan Wielkiewicz 

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

* bug#37345: Icecat doesn't display numbers on Guix System
  2019-09-08 21:10 bug#37345: Icecat doesn't display numbers on Guix System Jan
@ 2019-09-08 21:20 ` Jesse Gibbons
  2019-09-08 22:03   ` Jan
  2019-09-08 22:18 ` Jan
  2019-10-31  9:00 ` Matias Jose Seco Baccanelli
  2 siblings, 1 reply; 11+ messages in thread
From: Jesse Gibbons @ 2019-09-08 21:20 UTC (permalink / raw)
  To: Jan, 37345

On Sun, 2019-09-08 at 23:10 +0200, Jan wrote:
> Hi everyone,
> I've recently installed Icecat on Guix System natively and it doesn't
> display numbers properly - instead of numbers, there are transparent
> squares without a black frame - they're just invisible globally, no
> matter if on a website or in the browser's interface.
> Tried changing font to GNU unifont (because it supports the whole
> unicode), reinstalling Icecat (which shouldn't help anyway, because
> Guix is reproducible, including bugs), guix pulling, system
> reconfiguration, but nothing helps.
> I have this issue only on Icecat, because ungoogled chromium and
> other
> programs display numbers properly. 
> 
> architecture: x86_64
> 
> I saw a similar bug in the database, but it's from 2017 and it was
> about font issue on other distributions, not on Guix System, so I
> submitted a new report, hope that's not a problem.
> 
> Jan Wielkiewicz 
> 
> 
> 
I cannot replicate.
What commit did you notice this? (guix describe)
Are there any settings different from the default?

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

* bug#37345: Icecat doesn't display numbers on Guix System
  2019-09-08 21:20 ` Jesse Gibbons
@ 2019-09-08 22:03   ` Jan
  0 siblings, 0 replies; 11+ messages in thread
From: Jan @ 2019-09-08 22:03 UTC (permalink / raw)
  To: Jesse Gibbons; +Cc: 37345

On Sun, 08 Sep 2019 15:20:12 -0600
Jesse Gibbons <jgibbons2357@gmail.com> wrote:

> I cannot replicate.
> What commit did you notice this? (guix describe)
Since the beginning, not sure what commit (checked with 'guix system
list-generations'), that was:
"Generation 1 September 01 2019 01:15:51"
Probably a fresh Guix System installation from the ISO image from the
website.
Now I run the following commit:
ba7bd6c62ddaab4d5623fb149b47579e13a9e5f5
And the bug is still present

> Are there any settings different from the default?
I did nothing special to Icecat, just installed a few add-ons: Umatrix,
Ublock Origin and "Dark Background and Light Text", these add-ons don't
cause any problems on Firefox for example, but removed the ".mozilla"
folder just to be sure, also I remember that displaying numbers hadn't
worked since the beginning, even before I installed the add-ons.  

As for the system, here's my configuration file:

(use-modules (gnu))
(use-service-modules desktop networking ssh xorg)

(operating-system
 (locale "pl_PL.utf8")
 (timezone "Europe/Warsaw")
 (keyboard-layout (keyboard-layout "pl" "legacy"))
 (bootloader
  (bootloader-configuration
   (bootloader grub-bootloader)
   (target "/dev/sda")
   (keyboard-layout keyboard-layout)))
 (swap-devices (list "/dev/sda3"))
 (file-systems
  (cons* (file-system
	  (mount-point "/home")
	  (device
	   (uuid "640b9945-4421-403a-93da-02768c28b29b"
		 'btrfs))
	  (type "btrfs"))
	 (file-system
	  (mount-point "/")
	  (device
	   (uuid "55c8dec3-4e68-4441-9d78-a9b55d9fc9bd"
		 'ext4))
	  (type "ext4"))
	 %base-file-systems))
 (host-name "navi")
 (users (cons* (user-account
		(name "user")
		(comment "User")
		(group "users")
		(home-directory "/home/user")
		(supplementary-groups
		 '("wheel" "netdev" "audio" "video")))
	       %base-user-accounts))
 (packages
  (append
   (map specification->package
        '("i3-wm"
          "nss-certs"
          "icecat"
          "ungoogled-chromium"
	  "libreoffice"
          "mpv"
          "gimp"
          "emacs"
          "emacs-paredit"
          "emacs-auto-complete"
	  "gnupg"          
          "htop"))
   %base-packages))
 (services
  (append
   (list (service mate-desktop-service-type)
	 (service tor-service-type)
	 (extra-special-file "/usr/bin/env"
                             (file-append coreutils "/bin/env"))
         (extra-special-file "/bin/bash"
                             (file-append coreutils "/bin/bash"))
	 (set-xorg-configuration
	  (xorg-configuration
	   (keyboard-layout keyboard-layout))))
   %desktop-services)))

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

* bug#37345: Icecat doesn't display numbers on Guix System
  2019-09-08 21:10 bug#37345: Icecat doesn't display numbers on Guix System Jan
  2019-09-08 21:20 ` Jesse Gibbons
@ 2019-09-08 22:18 ` Jan
  2019-09-09  1:05   ` Jesse Gibbons
  2019-10-31  9:00 ` Matias Jose Seco Baccanelli
  2 siblings, 1 reply; 11+ messages in thread
From: Jan @ 2019-09-08 22:18 UTC (permalink / raw)
  To: 37345

Okay, I found some probably more helpful info - I run icecat in a
terminal and it throws the following warnings, don't know if they're
related to this bug though:

(icecat:4612): Gtk-WARNING **: 22:11:57.437: Theme parsing error:
<data>:1:34: Expected ')' in color definition

(icecat:4612): Gtk-WARNING **: 22:11:57.437: Theme parsing error:
<data>:1:77: Expected ')' in color definition 1567980717781
addons.webextension.tortm-browser-button@jeremybenthum
WARN	Please specify whether you want browser_style or not in
your browser_action options. 1567980717784
addons.webextension.https-everywhere@eff.org	WARN	Please
specify whether you want browser_style or not in your browser_action
options.

(/gnu/store/8pjdh78z3j2issz78yjmf94k3hlkrb5f-icecat-60.9.0-guix1/lib/icecat/.icecat-real:4648):
Pango-WARNING **: 22:11:58.541: failed to create cairo scaled font,
expect ugly output. the offending font is 'Nimbus Sans L 9.9990234375'

(/gnu/store/8pjdh78z3j2issz78yjmf94k3hlkrb5f-icecat-60.9.0-guix1/lib/icecat/.icecat-real:4648):
Pango-WARNING **: 22:11:58.541: font_face status is: file not found

(/gnu/store/8pjdh78z3j2issz78yjmf94k3hlkrb5f-icecat-60.9.0-guix1/lib/icecat/.icecat-real:4648):
Pango-WARNING **: 22:11:58.541: scaled_font status is: file not found

(/gnu/store/8pjdh78z3j2issz78yjmf94k3hlkrb5f-icecat-60.9.0-guix1/lib/icecat/.icecat-real:4648):
Pango-WARNING **: 22:11:58.541: shaping failure, expect ugly output.
shape-engine='PangoFcShapeEngine', font='Nimbus Sans L 9.9990234375',
text=''

(/gnu/store/8pjdh78z3j2issz78yjmf94k3hlkrb5f-icecat-60.9.0-guix1/lib/icecat/.icecat-real:4648):
Pango-WARNING **: 22:11:58.546: failed to create cairo scaled font,
expect ugly output. the offending font is 'Nimbus Sans L 9.9990234375'

(/gnu/store/8pjdh78z3j2issz78yjmf94k3hlkrb5f-icecat-60.9.0-guix1/lib/icecat/.icecat-real:4648):
Pango-WARNING **: 22:11:58.546: font_face status is: file not found

(/gnu/store/8pjdh78z3j2issz78yjmf94k3hlkrb5f-icecat-60.9.0-guix1/lib/icecat/.icecat-real:4648):
Pango-WARNING **: 22:11:58.546: scaled_font status is: file not found

(/gnu/store/8pjdh78z3j2issz78yjmf94k3hlkrb5f-icecat-60.9.0-guix1/lib/icecat/.icecat-real:4648):
Gtk-WARNING **: 22:11:59.461: Could not load a pixbuf
from /org/gtk/libgtk/theme/Adwaita/assets/check-symbolic.svg. This may
indicate that pixbuf loaders or the mime database could not be found.
JavaScript error: resource://activity-stream/lib/Screenshots.jsm, line
102: TypeError: cache is undefined JavaScript error:
resource://activity-stream/lib/Screenshots.jsm, line 102: TypeError:
cache is undefined JavaScript error:
resource://activity-stream/lib/Screenshots.jsm, line 102: TypeError:
cache is undefined JavaScript error:
resource://activity-stream/lib/Screenshots.jsm, line 102: TypeError:
cache is undefined JavaScript error:
resource://activity-stream/lib/Screenshots.jsm, line 102: TypeError:
cache is undefined

-----------------------

Jan Wielkiewicz

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

* bug#37345: Icecat doesn't display numbers on Guix System
  2019-09-08 22:18 ` Jan
@ 2019-09-09  1:05   ` Jesse Gibbons
  2019-09-09 10:02     ` Bengt Richter
  2019-09-09 13:02     ` Jan
  0 siblings, 2 replies; 11+ messages in thread
From: Jesse Gibbons @ 2019-09-09  1:05 UTC (permalink / raw)
  To: Jan, 37345

Hi Jan,
On Mon, 2019-09-09 at 00:18 +0200, Jan wrote:
> Okay, I found some probably more helpful info - I run icecat in a
> terminal and it throws the following warnings, don't know if they're
> related to this bug though:
> ...
> (/gnu/store/8pjdh78z3j2issz78yjmf94k3hlkrb5f-icecat-60.9.0-
> guix1/lib/icecat/.icecat-real:4648):
> Pango-WARNING **: 22:11:58.541: failed to create cairo scaled font,
> expect ugly output. the offending font is 'Nimbus Sans L
> 9.9990234375'
> 
> (/gnu/store/8pjdh78z3j2issz78yjmf94k3hlkrb5f-icecat-60.9.0-
> guix1/lib/icecat/.icecat-real:4648):
> Pango-WARNING **: 22:11:58.541: font_face status is: file not found
> 
> (/gnu/store/8pjdh78z3j2issz78yjmf94k3hlkrb5f-icecat-60.9.0-
> guix1/lib/icecat/.icecat-real:4648):
> Pango-WARNING **: 22:11:58.541: scaled_font status is: file not found
> 
> (/gnu/store/8pjdh78z3j2issz78yjmf94k3hlkrb5f-icecat-60.9.0-
> guix1/lib/icecat/.icecat-real:4648):
> Pango-WARNING **: 22:11:58.541: shaping failure, expect ugly output.
> shape-engine='PangoFcShapeEngine', font='Nimbus Sans L 9.9990234375',
> text=''
> 
> (/gnu/store/8pjdh78z3j2issz78yjmf94k3hlkrb5f-icecat-60.9.0-
> guix1/lib/icecat/.icecat-real:4648):
> Pango-WARNING **: 22:11:58.546: failed to create cairo scaled font,
> expect ugly output. the offending font is 'Nimbus Sans L
> 9.9990234375'
> 
> (/gnu/store/8pjdh78z3j2issz78yjmf94k3hlkrb5f-icecat-60.9.0-
> guix1/lib/icecat/.icecat-real:4648):
> Pango-WARNING **: 22:11:58.546: font_face status is: file not found
> 
> (/gnu/store/8pjdh78z3j2issz78yjmf94k3hlkrb5f-icecat-60.9.0-
> guix1/lib/icecat/.icecat-real:4648):
> Pango-WARNING **: 22:11:58.546: scaled_font status is: file not found
> 
> 
> ...
> -----------------------
> 
> Jan Wielkiewicz
> 
> 
> 
Looks like it isn't finding the "Nimbus Sans L" font. Try running 

fc-list | grep "Nimbus Sans L"

and reply with the output.
-- 
-Jesse

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

* bug#37345: Icecat doesn't display numbers on Guix System
  2019-09-09  1:05   ` Jesse Gibbons
@ 2019-09-09 10:02     ` Bengt Richter
  2019-09-09 13:15       ` Jan
  2019-09-09 13:02     ` Jan
  1 sibling, 1 reply; 11+ messages in thread
From: Bengt Richter @ 2019-09-09 10:02 UTC (permalink / raw)
  To: Jesse Gibbons; +Cc: 37345

On +2019-09-08 19:05:22 -0600, Jesse Gibbons wrote:
> Hi Jan,
> On Mon, 2019-09-09 at 00:18 +0200, Jan wrote:
> > Okay, I found some probably more helpful info - I run icecat in a
> > terminal and it throws the following warnings, don't know if they're
> > related to this bug though:
> > ...
> > (/gnu/store/8pjdh78z3j2issz78yjmf94k3hlkrb5f-icecat-60.9.0-
> > guix1/lib/icecat/.icecat-real:4648):
> > Pango-WARNING **: 22:11:58.541: failed to create cairo scaled font,
> > expect ugly output. the offending font is 'Nimbus Sans L
> > 9.9990234375'
> >

I got this too when I first installed icecat.
I am not sure why, but I got no readable presentation
from icecat until I had done
 guix install font-dejavu

The steps prior to that, and after were:

 guix package -i nss-certs
 guix upgrade icecat
 guix install fontconfig
 guix install libxfont
 guix install font-dejavu -->> and that gave icecat font
 guix install moka-icon-theme
 guix install hicolor-icon-theme
 guix install less

libxfont notably did nothing for me, but idk if fontconfig
was either interfered or did something good.

You might consider installing font-dejavu

After getting a usable display, there was another error produced by
an add-on, which I was able to disable from the menu at the top right.
Sorry not to remember details on that.

I generally dislike add-ons or anything else that comes preconfigured
to do any action without my consent. R_my_F, icecat ;-/

Jesse's fc-list suggestion indicates that the Nimbus fonts ought to
come in by
 guix install gs-fonts

maybe that would work as well as or better than
 guix install font-dejavu

Idk :)

HTH

[...]
> > 
> > Jan Wielkiewicz
> > 
> > 
> > 
> Looks like it isn't finding the "Nimbus Sans L" font. Try running 
> 
> fc-list | grep "Nimbus Sans L"
> 
> and reply with the output.
> -- 
> -Jesse
> 

Regards,
Bengt Richter

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

* bug#37345: Icecat doesn't display numbers on Guix System
  2019-09-09  1:05   ` Jesse Gibbons
  2019-09-09 10:02     ` Bengt Richter
@ 2019-09-09 13:02     ` Jan
  1 sibling, 0 replies; 11+ messages in thread
From: Jan @ 2019-09-09 13:02 UTC (permalink / raw)
  To: Jesse Gibbons; +Cc: 37345

> Looks like it isn't finding the "Nimbus Sans L" font. Try running 
> 
> fc-list | grep "Nimbus Sans L"
> 
> and reply with the output.

Here is the output

/gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/n019004l.pfb:
Nimbus Sans
L:style=Bold /gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/n019064l.pfb:
Nimbus Sans L:style=Bold Condensed
Italic /gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/n019003l.pfb:
Nimbus Sans
L:style=Regular /gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/n019044l.pfb:
Nimbus Sans L:style=Bold
Condensed /gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/n019043l.pfb:
Nimbus Sans L:style=Regular
Condensed /gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/n019063l.pfb:
Nimbus Sans L:style=Regular Condensed
Italic /gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/n019023l.pfb:
Nimbus Sans L:style=Regular
Italic /gnu/store/ag8ilfwcnxn0xnw8bar9ia73h3hg3rra-gs-fonts-8.11/share/fonts/type1/ghostscript/n019024l.pfb:
Nimbus Sans L:style=Bold Italic


Jan

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

* bug#37345: Icecat doesn't display numbers on Guix System
  2019-09-09 10:02     ` Bengt Richter
@ 2019-09-09 13:15       ` Jan
  2019-09-09 20:24         ` P via Bug reports for GNU Guix
  0 siblings, 1 reply; 11+ messages in thread
From: Jan @ 2019-09-09 13:15 UTC (permalink / raw)
  To: Bengt Richter; +Cc: Jesse Gibbons, 37345

> I got this too when I first installed icecat.
> I am not sure why, but I got no readable presentation
> from icecat until I had done
>  guix install font-dejavu
This one helps, thanks a lot!
> Jesse's fc-list suggestion indicates that the Nimbus fonts ought to
> come in by
>  guix install gs-fonts
> 
> maybe that would work as well as or better than
>  guix install font-dejavu
> 
> Idk :)
This doesn't help.

Anyway shouldn't the font-dejavu package be a dependency of Icecat then?


Jan Wielkiewicz

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

* bug#37345: Icecat doesn't display numbers on Guix System
  2019-09-09 13:15       ` Jan
@ 2019-09-09 20:24         ` P via Bug reports for GNU Guix
  0 siblings, 0 replies; 11+ messages in thread
From: P via Bug reports for GNU Guix @ 2019-09-09 20:24 UTC (permalink / raw)
  To: Jan; +Cc: Jesse Gibbons, 37345@debbugs.gnu.org

‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Monday, September 9, 2019 1:15 PM, Jan <tona_kosmicznego_smiecia@interia.pl> wrote:

> > I got this too when I first installed icecat.
> > I am not sure why, but I got no readable presentation
> > from icecat until I had done
> > guix install font-dejavu
>
> This one helps, thanks a lot!
>
> > Jesse's fc-list suggestion indicates that the Nimbus fonts ought to
> > come in by
> > guix install gs-fonts
> > maybe that would work as well as or better than
> > guix install font-dejavu
> > Idk :)
>
> This doesn't help.
>
> Anyway shouldn't the font-dejavu package be a dependency of Icecat then?
>
> Jan Wielkiewicz

Didn't the older bug report's thread mention something about having to manually rebuild some kinda font database or cache? I remember trying that and that fixed it for me.

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

* bug#37345: Icecat doesn't display numbers on Guix System
  2019-09-08 21:10 bug#37345: Icecat doesn't display numbers on Guix System Jan
  2019-09-08 21:20 ` Jesse Gibbons
  2019-09-08 22:18 ` Jan
@ 2019-10-31  9:00 ` Matias Jose Seco Baccanelli
  2019-11-01 17:42   ` Jesse Gibbons
  2 siblings, 1 reply; 11+ messages in thread
From: Matias Jose Seco Baccanelli @ 2019-10-31  9:00 UTC (permalink / raw)
  To: 37345

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

Hello!
I confirm that installing font-dejavu also fixed the issue for me.
Wondering if the problem arises on any system configuration setup or
if it might be influenced by, for example, the locale; which mine is
(locale "it_IT.utf8").

Blisfully,
Matias

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* bug#37345: Icecat doesn't display numbers on Guix System
  2019-10-31  9:00 ` Matias Jose Seco Baccanelli
@ 2019-11-01 17:42   ` Jesse Gibbons
  0 siblings, 0 replies; 11+ messages in thread
From: Jesse Gibbons @ 2019-11-01 17:42 UTC (permalink / raw)
  To: Matias Jose Seco Baccanelli, 37345

On Thu, 2019-10-31 at 10:00 +0100, Matias Jose Seco Baccanelli wrote:
> Hello!
> I confirm that installing font-dejavu also fixed the issue for me.
> Wondering if the problem arises on any system configuration setup or
> if it might be influenced by, for example, the locale; which mine is
> (locale "it_IT.utf8").
> 
> Blisfully,
> Matias
My locale is en_US and I have had general font problems for multiple
applications, including gimp, gourmet, and icecat, so I do not think it is
necessarily related to the locale. I think a lot of it is user-level
configuration. When I use gnome tweaks to change the fonts, I find that some
fonts work as expected, but some do not. In particular, I notice that if I
remove a font, it is not removed from the list of fonts I can select.
Perhaps there's a local database of available fonts that isn't modified when
a font is uninstalled with guix?

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

end of thread, other threads:[~2019-11-01 17:43 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-08 21:10 bug#37345: Icecat doesn't display numbers on Guix System Jan
2019-09-08 21:20 ` Jesse Gibbons
2019-09-08 22:03   ` Jan
2019-09-08 22:18 ` Jan
2019-09-09  1:05   ` Jesse Gibbons
2019-09-09 10:02     ` Bengt Richter
2019-09-09 13:15       ` Jan
2019-09-09 20:24         ` P via Bug reports for GNU Guix
2019-09-09 13:02     ` Jan
2019-10-31  9:00 ` Matias Jose Seco Baccanelli
2019-11-01 17:42   ` Jesse Gibbons

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