unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#53246: Flameshot crashes on screen capture
@ 2022-01-14  5:58 Jacob Hrbek
  2022-01-14 18:45 ` Maxime Devos
  0 siblings, 1 reply; 2+ messages in thread
From: Jacob Hrbek @ 2022-01-14  5:58 UTC (permalink / raw)
  To: 53246


[-- Attachment #1.1: Type: text/plain, Size: 4634 bytes --]

bash-5.0$ flameshot
(process:6205): Gtk-WARNING **: 06:51:44.636: Locale not supported by C 
library.
     Using the fallback 'C' locale.
QSettings::value: Empty key passed
QSettings::value: Empty key passed
QSettings::setValue: Empty key passed
QSettings::value: Empty key passed
QSettings::setValue: Empty key passed
QPainter::begin: Paint device returned engine == 0, type: 2
QPainter::setRenderHint: Painter must be active to set rendering hints
QPainter::setCompositionMode: Painter not active
QPainter::translate: Painter not active
QPainter::setPen: Painter not active
QPainter::setBrush: Painter not active
QPainter::setBrush: Painter not active
[source ] [function ] [line ] Locales on your system are not properly 
configured. Falling back to defaults
terminate called after throwing an instance of 'std::runtime_error'
   what():  locale::facet::_S_create_c_locale name not valid
Aborted


Steps to reproduce:
1. Install flameshot e.g. `guix install flameshot`
2. Run `flameshot` in a terminal
3. Invoke the flameshot gui e.g. by clicking on the flameshot icon in 
the icon tray
4. Try to save screenshot and expect the failure above.

Info

GNU GuixSD (374fea0f3bc8035f626cb29e6045130df9ffdaf8)

bash-5.0$ cat /etc/config.scm
;; This is an operating system configuration generated
;; by the graphical installer.

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

(operating-system
   (locale "en_US.utf8")
   (timezone "Europe/Prague")
   (keyboard-layout (keyboard-layout "us"))
   (host-name "leonid")
   (users (cons* (user-account
                   (name "kreyren")
                   (comment "Jacob Hrbek")
                   (group "users")
                   (home-directory "/home/kreyren")
                   (supplementary-groups
                     '("wheel" "netdev" "audio" "video")))
                 %base-user-accounts))
   (packages
     (append
       (list (specification->package "nss-certs"))
       %base-packages))
   (services
       (append (list
          (service xfce-desktop-service-type)
             (service openssh-service-type)
             (service tor-service-type)
             (set-xorg-configuration
               (xorg-configuration
                 (keyboard-layout keyboard-layout)))) %desktop-services))))
   (bootloader
     (bootloader-configuration
       (bootloader grub-bootloader)
       (targets (list "/dev/sda"))
       (keyboard-layout keyboard-layout)))
   ;; SECURITY(Krey): Swap partition is not zero-ed on reboot so it 
should reside on an encrypted device -- 
https://guix.gnu.org/en/manual/devel/en/html_node/Swap-Space.html
   ;;(swap-space
     ;;(target (uuid "c965c556-351d-4007-9d33-e7ffbc9c1701")))
   (mapped-devices
     (list (mapped-device
             (source
               (uuid "c3ff1f21-b82f-4566-b8a3-274352f40dd4"))
             (target "cryptroot")
             (type luks-device-mapping))
           (mapped-device
             (source
               (uuid "82c4852c-a46b-43e3-abdb-15600ae61e2e"))
             (target "cryptboot")
             (type luks-device-mapping))
           (mapped-device
             (source
               (uuid "b14e499f-0c4f-46f6-9adb-1b020f460b11"))
             (target "crypthome_kreyren")
             (type luks-device-mapping))))
   (file-systems
     (cons* (file-system
              (mount-point "/")
              (device "/dev/mapper/cryptroot")
              (type "btrfs")
              (dependencies mapped-devices))
            (file-system
              (mount-point "/boot")
              (device "/dev/mapper/cryptboot")
              (type "btrfs")
              (dependencies mapped-devices))
            (file-system
              (mount-point "/home/kreyren")
              (device "/dev/mapper/crypthome_kreyren")
              (type "btrfs")
              (dependencies mapped-devices))
            %base-file-systems)))
bash-5.0$ uname -r
5.14.14-gnu


[-- Attachment #1.2: publickey - kreyren@rixotstudio.cz - 1677db82.asc --]
[-- Type: application/pgp-keys, Size: 713 bytes --]

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

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

* bug#53246: Flameshot crashes on screen capture
  2022-01-14  5:58 bug#53246: Flameshot crashes on screen capture Jacob Hrbek
@ 2022-01-14 18:45 ` Maxime Devos
  0 siblings, 0 replies; 2+ messages in thread
From: Maxime Devos @ 2022-01-14 18:45 UTC (permalink / raw)
  To: Jacob Hrbek, 53246


[-- Attachment #1.1: Type: text/plain, Size: 781 bytes --]

Hi,

Jacob Hrbek schreef op vr 14-01-2022 om 05:58 [+0000]:
> [...]
> [source ] [function ] [line ] Locales on your system are not properly
> configured. Falling back to defaults
> terminate called after throwing an instance of 'std::runtime_error'
>   what():  locale::facet::_S_create_c_locale name not valid
>   (locale "en_US.utf8")

IIRC and IIUC this is not a valid locale, try "en_US.UTF-8" instead.
Maybe the Guix System code should check if the locale string looks reasonable ...

Also, there appears to be a bug in a (dependency of) flameshot, because of
[source ], [function ]  and [line ] not being replaced with the location of the
source file, function name and the line number, but that seems more something
for upstream.

Greetings,
Maxime

[-- Attachment #1.2: Type: text/html, Size: 2026 bytes --]

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 260 bytes --]

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

end of thread, other threads:[~2022-01-14 18:47 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-14  5:58 bug#53246: Flameshot crashes on screen capture Jacob Hrbek
2022-01-14 18:45 ` Maxime Devos

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