bitbake-devel.lists.openembedded.org archive mirror
 help / color / mirror / Atom feed
From: Randy MacLeod <randy.macleod@windriver.com>
To: Steve Sakoman <steve@sakoman.com>
Cc: debrabander@gmail.com, bitbake-devel@lists.openembedded.org,
	Richard Purdie <richard.purdie@linuxfoundation.org>
Subject: Re: [bitbake-devel] [PATCH] ensure locale en_US.UTF-8 is available on the system
Date: Tue, 11 Apr 2023 14:03:53 -0400	[thread overview]
Message-ID: <4c9b8990-3e7b-baff-5f8e-c338f0e2ca41@windriver.com> (raw)
In-Reply-To: <CAOSpxdbx8o8qYLUR4Mm+0PgjQoO9kA5Kp+edpy--NZKbdzAmww@mail.gmail.com>

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

On 2023-03-08 16:41, Steve Sakoman wrote:
> On Wed, Mar 8, 2023 at 11:08 AM Randy MacLeod
> <randy.macleod@windriver.com>  wrote:
>> On 2022-12-06 13:18, Frank de Brabander via lists.openembedded.org wrote:
>>
>> Get rid of the duplicate code and add extra check that the
>> locale en_US.UTF-8 is available on the system. This new helper
>> method is now located right above the method filter_environment()
>> which sets LC_ALL environment variable to 'en_US.UTF-8'.
>>
>> Nice:
>>
>> foo@2b7837225ffb:~/b/test$ bitbake -p coreutils
>> Please make sure locale 'en_US.UTF-8' is available on your system
>>
>>
>> Steve,
>>
>> It would be nice if you cherry-pick this back to langdale and kirkstone, it's a clean c-p.
> OK, will do!


Steve,

Did this cherry-pick slip through the cracks?

The master commit:

https://git.yoctoproject.org/poky/log/?qt=grep&q=Ensure+locale+en_US.UTF-8+is+available+on+the+system

and langdale

https://git.yoctoproject.org/poky/log/?h=langdale&qt=grep&q=Ensure+locale+en_US.UTF-8+is+available+on+the+system

but not on kirkstone

https://git.yoctoproject.org/poky/log/?h=kirkstone&qt=grep&q=Ensure+locale+en_US.UTF-8+is+available+on+the+system

Thanks,

../Randy


>
> Steve
>
>> [YOCTO #10165]
>>
>> Signed-off-by: Frank de Brabander<debrabander@gmail.com>
>> ---
>>   bin/bitbake        |  3 +--
>>   bin/bitbake-server |  5 +++--
>>   bin/bitbake-worker |  3 +--
>>   lib/bb/utils.py    | 16 ++++++++++++++++
>>   4 files changed, 21 insertions(+), 6 deletions(-)
>>
>> diff --git a/bin/bitbake b/bin/bitbake
>> index 7cbf88f4..f869eb48 100755
>> --- a/bin/bitbake
>> +++ b/bin/bitbake
>> @@ -25,8 +25,7 @@ except RuntimeError as exc:
>>   from bb import cookerdata
>>   from bb.main import bitbake_main, BitBakeConfigParameters, BBMainException
>>
>> -if sys.getfilesystemencoding() != "utf-8":
>> -    sys.exit("Please use a locale setting which supports UTF-8 (such as LANG=en_US.UTF-8).\nPython can't change the filesystem locale after loading so we need a UTF-8 when Python starts or things won't work.")
>> +bb.utils.check_system_locale()
>>
>>   __version__ = "2.2.0" diff --git a/bin/bitbake-server b/bin/bitbake-server index 
>> 825e9d56..454a3919 100755 --- a/bin/bitbake-server +++ 
>> b/bin/bitbake-server @@ -12,8 +12,9 @@ warnings.simplefilter("default")
>>   import logging
>>   sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(sys.argv[0])), 'lib'))
>>
>> -if sys.getfilesystemencoding() != "utf-8":
>> -    sys.exit("Please use a locale setting which supports UTF-8 (such as LANG=en_US.UTF-8).\nPython can't change the filesystem locale after loading so we need a UTF-8 when Python starts or things won't work.")
>> +import bb
>> +
>> +bb.utils.check_system_locale()
>>
>>   # Users shouldn't be running this code directly
>>   if len(sys.argv) != 11 or not sys.argv[1].startswith("decafbad"): diff --git a/bin/bitbake-worker b/bin/bitbake-worker index 
>> 3799b170..3cacdb0c 100755 --- a/bin/bitbake-worker +++ 
>> b/bin/bitbake-worker @@ -24,8 +24,7 @@ import subprocess from 
>> multiprocessing import Lock from threading import Thread -if 
>> sys.getfilesystemencoding() != "utf-8":
>> -    sys.exit("Please use a locale setting which supports UTF-8 (such as LANG=en_US.UTF-8).\nPython can't change the filesystem locale after loading so we need a UTF-8 when Python starts or things won't work.")
>> +bb.utils.check_system_locale()
>>
>>   # Users shouldn't be running this code directly
>>   if len(sys.argv) != 2 or not sys.argv[1].startswith("decafbad"): diff --git a/lib/bb/utils.py b/lib/bb/utils.py index 
>> f4da3563..0df522b3 100644 --- a/lib/bb/utils.py +++ b/lib/bb/utils.py 
>> @@ -13,6 +13,7 @@ import errno import logging import bb import bb.msg 
>> +import locale import multiprocessing import fcntl import importlib 
>> @@ -608,6 +609,21 @@ def preserved_envvars(): ] return v + 
>> preserved_envvars_exported() +def check_system_locale(): + """Make sure the required system locale are available and configured"""
>> +    default_locale = locale.getlocale(locale.LC_CTYPE)
>> +
>> +    try:
>> +        locale.setlocale(locale.LC_CTYPE, ("en_US", "UTF-8"))
>> +    except:
>> +        sys.exit("Please make sure locale 'en_US.UTF-8' is available on your system")
>> +    else:
>> +        locale.setlocale(locale.LC_CTYPE, default_locale)
>> +
>> +    if sys.getfilesystemencoding() != "utf-8":
>> +        sys.exit("Please use a locale setting which supports UTF-8 (such as LANG=en_US.UTF-8).\n"
>> +                 "Python can't change the filesystem locale after loading so we need a UTF-8 when Python starts or things won't work.")
>> +
>>   def filter_environment(good_vars):
>>       """
>>       Create a pristine environment for bitbake. This will remove variables that
>>
>>
>> -=-=-=-=-=-=-=-=-=-=-=-
>> Links: You receive all messages sent to this group.
>> View/Reply Online (#14139):https://lists.openembedded.org/g/bitbake-devel/message/14139
>> Mute This Topic:https://lists.openembedded.org/mt/95499228/3616765
>> Group Owner:bitbake-devel+owner@lists.openembedded.org
>> Unsubscribe:https://lists.openembedded.org/g/bitbake-devel/unsub  [randy.macleod@windriver.com]
>> -=-=-=-=-=-=-=-=-=-=-=-
>>
>>
>> --
>> # Randy MacLeod
>> # Wind River Linux


-- 
# Randy MacLeod
# Wind River Linux

[-- Attachment #2: Type: text/html, Size: 8462 bytes --]

  reply	other threads:[~2023-04-11 18:04 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-06 18:18 [PATCH] ensure locale en_US.UTF-8 is available on the system Frank de Brabander
2023-03-08 21:08 ` [bitbake-devel] " Randy MacLeod
2023-03-08 21:41   ` Steve Sakoman
2023-04-11 18:03     ` Randy MacLeod [this message]
2023-04-13 18:22       ` Steve Sakoman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4c9b8990-3e7b-baff-5f8e-c338f0e2ca41@windriver.com \
    --to=randy.macleod@windriver.com \
    --cc=bitbake-devel@lists.openembedded.org \
    --cc=debrabander@gmail.com \
    --cc=richard.purdie@linuxfoundation.org \
    --cc=steve@sakoman.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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 NNTP newsgroup(s).