unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#33678: Locale problems
@ 2018-12-08 21:35 Danny Milosavljevic
  2018-12-08 22:35 ` Danny Milosavljevic
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Danny Milosavljevic @ 2018-12-08 21:35 UTC (permalink / raw)
  To: 33678

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

Can we do something against the locale problems that keep showing up
when updating?

Right now, after a half-finished update from guix master (half-finished because
once any package build breaks, the entire update will stop), I cannot use any
Umlauts because "xterm -u8" stops working as it should:
$ xterm -u8
Warning: locale not supported by C library, locale unchanged
$

Why does this keep happening?  Shouldn't the functional nature and modularity
of Guix keep using the old locales where those make sense and the new locales
where those make sense?

Environment:

$ locale -a
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_COLLATE to default locale: No such file or directory
C
POSIX
$ echo $LC_ALL
de_DE.utf8
$ echo $LANG
en_US.utf8
$ echo $GUIX_LOCPATH
/run/current-system/locale
$ ls $GUIX_LOCPATH/2.28/en_US.utf8/
LC_ADDRESS  LC_IDENTIFICATION  LC_MONETARY  LC_PAPER
LC_COLLATE  LC_MEASUREMENT     LC_NAME      LC_TELEPHONE
LC_CTYPE    LC_MESSAGES        LC_NUMERIC   LC_TIME
$ ls xxx
ls: Zugriff auf 'xxx' nicht möglich: Datei oder Verzeichnis nicht gefunden
$
^^ Note: Message is in German, as it should.  I left in the mangled Umlauts
for documentation purposes.

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

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

* bug#33678: Locale problems
  2018-12-08 21:35 bug#33678: Locale problems Danny Milosavljevic
@ 2018-12-08 22:35 ` Danny Milosavljevic
  2018-12-08 22:56   ` Marius Bakke
  2018-12-08 22:59 ` pelzflorian (Florian Pelz)
  2018-12-08 23:35 ` Ludovic Courtès
  2 siblings, 1 reply; 5+ messages in thread
From: Danny Milosavljevic @ 2018-12-08 22:35 UTC (permalink / raw)
  To: 33678

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

(Aha, updating just xterm fixes the problem).

When locales don't work, I can't enter umlauts at all - they get replaced by a
"generic" character that isn't an umlaut, even when checked using a hexdump
tool.

So not only couldn't I see the umlauts, I couldn't type them blindly either.

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

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

* bug#33678: Locale problems
  2018-12-08 22:35 ` Danny Milosavljevic
@ 2018-12-08 22:56   ` Marius Bakke
  0 siblings, 0 replies; 5+ messages in thread
From: Marius Bakke @ 2018-12-08 22:56 UTC (permalink / raw)
  To: Danny Milosavljevic, 33678

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

Danny Milosavljevic <dannym@scratchpost.org> writes:

> (Aha, updating just xterm fixes the problem).
>
> When locales don't work, I can't enter umlauts at all - they get replaced by a
> "generic" character that isn't an umlaut, even when checked using a hexdump
> tool.
>
> So not only couldn't I see the umlauts, I couldn't type them blindly either.

Does adding locales for both the new and old libc to your system help?

E.g.:

(operating-system
  [...]
  (locale-libcs (list glibc-2.27 (canonical-package glibc))))

?

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* bug#33678: Locale problems
  2018-12-08 21:35 bug#33678: Locale problems Danny Milosavljevic
  2018-12-08 22:35 ` Danny Milosavljevic
@ 2018-12-08 22:59 ` pelzflorian (Florian Pelz)
  2018-12-08 23:35 ` Ludovic Courtès
  2 siblings, 0 replies; 5+ messages in thread
From: pelzflorian (Florian Pelz) @ 2018-12-08 22:59 UTC (permalink / raw)
  To: Danny Milosavljevic; +Cc: 33678

On Sat, Dec 08, 2018 at 10:35:51PM +0100, Danny Milosavljevic wrote:
> Can we do something against the locale problems that keep showing up
> when updating?
> 
> Right now, after a half-finished update from guix master (half-finished because
> once any package build breaks, the entire update will stop), I cannot use any
> Umlauts because "xterm -u8" stops working as it should:
> $ xterm -u8
> Warning: locale not supported by C library, locale unchanged
> $
> 
> Why does this keep happening?  Shouldn't the functional nature and modularity
> of Guix keep using the old locales where those make sense and the new locales
> where those make sense?
> 
> Environment:
> 
> $ locale -a
> locale: Cannot set LC_CTYPE to default locale: No such file or directory
> locale: Cannot set LC_MESSAGES to default locale: No such file or directory
> locale: Cannot set LC_COLLATE to default locale: No such file or directory

Is this only on foreign distros?  I cannot reproduce this in a Guix VM.

These errors occurred for me on the foreign distro Debian also for
Debian commands like localectl because the locale command was taken
from a glibc in root’s guix profile.  I uninstalled the glibc package
and now Debian’s locale commands work again.  `strace locale` made it
seem like the directory for the de_DE.UTF-8 locale was never checked
by the locale program, only de_DE.utf8 and others, which apparently
are not what Debian uses.

Regards,
Florian

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

* bug#33678: Locale problems
  2018-12-08 21:35 bug#33678: Locale problems Danny Milosavljevic
  2018-12-08 22:35 ` Danny Milosavljevic
  2018-12-08 22:59 ` pelzflorian (Florian Pelz)
@ 2018-12-08 23:35 ` Ludovic Courtès
  2 siblings, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2018-12-08 23:35 UTC (permalink / raw)
  To: Danny Milosavljevic; +Cc: 33678

Guten Tag!  :-)

Danny Milosavljevic <dannym@scratchpost.org> skribis:

> Can we do something against the locale problems that keep showing up
> when updating?
>
> Right now, after a half-finished update from guix master (half-finished because
> once any package build breaks, the entire update will stop), I cannot use any
> Umlauts because "xterm -u8" stops working as it should:
> $ xterm -u8
> Warning: locale not supported by C library, locale unchanged
> $
>
> Why does this keep happening?  Shouldn't the functional nature and modularity
> of Guix keep using the old locales where those make sense and the new locales
> where those make sense?

Please see:

  https://www.gnu.org/software/guix/manual/en/html_node/Locales.html#Locale-Data-Compatibility-Considerations

The solution, as described in this section, is to have both (say)
locales for glibc 2.27 and locales for glibc 2.28, which you can specify
in ‘locale-libcs’.

Another option is what ‘guix’ commands print every time you run them: to
install the corresponding ‘glibc-utf8-locales’ package.

Now I perfectly understands that this annoys everyone of us when that
happens, and many people don’t seem to find the info.  So I’m open to
suggestions on how to improve this!

Thanks,
Ludo’.

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

end of thread, other threads:[~2018-12-08 23:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-08 21:35 bug#33678: Locale problems Danny Milosavljevic
2018-12-08 22:35 ` Danny Milosavljevic
2018-12-08 22:56   ` Marius Bakke
2018-12-08 22:59 ` pelzflorian (Florian Pelz)
2018-12-08 23:35 ` Ludovic Courtès

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