Discussion:
[HEADS UP] Rawhide buildroot now has glibc-minimal-langpack instead
Igor Gnatenko
2018-11-28 19:33:41 UTC
Permalink
Hello,

the removal of glibc-all-langpacks from the buildroot[0] is done.
Standard buildroot has decreased from 445 to 237 megabytes in
installed size ;)

Before:
DEBUG util.py:439: Install 146 Packages
DEBUG util.py:439: Total download size: 86 M
DEBUG util.py:439: Installed size: 445 M

After:
DEBUG util.py:439: Install 146 Packages
DEBUG util.py:439: Total download size: 61 M
DEBUG util.py:439: Installed size: 237 M

All thanks go to zbyszek and mboddu :champagne:!

[0]https://fedoraproject.org/wiki/Changes/Remove_glibc-langpacks-all_from_buildroot
_______________________________________________
devel-announce mailing list -- devel-***@lists.fedoraproject.org
To unsubscribe send an email to devel-announce-***@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: https://lists.fedoraproject.org/archives/list/devel-***@lists.fedoraproject.org
_______________________________________________
devel mailing list -- ***@lists.fedoraproject.org
To unsubscribe send an email to devel-***@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: https://lists.fedoraproject.
Randy Barlow
2018-11-28 20:09:31 UTC
Permalink
Post by Igor Gnatenko
the removal of glibc-all-langpacks from the buildroot[0] is done.
Standard buildroot has decreased from 445 to 237 megabytes in
installed size ;
Nice!
Vít Ondruch
2018-11-29 08:46:31 UTC
Permalink
That is huge. Thx a lot.


Vít
Post by Igor Gnatenko
Hello,
the removal of glibc-all-langpacks from the buildroot[0] is done.
Standard buildroot has decreased from 445 to 237 megabytes in
installed size ;)
DEBUG util.py:439: Install 146 Packages
DEBUG util.py:439: Total download size: 86 M
DEBUG util.py:439: Installed size: 445 M
DEBUG util.py:439: Install 146 Packages
DEBUG util.py:439: Total download size: 61 M
DEBUG util.py:439: Installed size: 237 M
All thanks go to zbyszek and mboddu :champagne:!
[0]https://fedoraproject.org/wiki/Changes/Remove_glibc-langpacks-all_from_buildroot
_______________________________________________
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
_______________________________________________
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
_______________________________________________
devel mailing list -- ***@lists.fedoraproject.org
To unsubscribe send an email to devel-***@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: https://lists.fedoraproject.org/archives
Petr Pisar
2018-12-03 16:21:12 UTC
Permalink
Post by Igor Gnatenko
the removal of glibc-all-langpacks from the buildroot[0] is done.
Standard buildroot has decreased from 445 to 237 megabytes in
installed size ;)
That's nice, but Koji builders have not been reconfigured away from
LANG=en_US.UTF-8 and that means that all builds run in C (not C.UTF-8)
locale now and e.g. every Perl package build spits a warning like this:

perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LANGUAGE = (unset),
LC_ALL = (unset),
LANG = "en_US.UTF-8"
are supported and installed on your system.

Example
<https://kojipkgs.fedoraproject.org//packages/perl-Task-Kensho-Async/0.40/1.fc30/data/logs/noarch/build.log>.

-- Petr
_______________________________________________
devel mailing list -- ***@lists.fedoraproject.org
To unsubscribe send an email to devel-***@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: https://lists.fedoraproject.or
Omair Majid
2018-12-06 17:14:44 UTC
Permalink
Post by Petr Pisar
Post by Igor Gnatenko
the removal of glibc-all-langpacks from the buildroot[0] is done.
Standard buildroot has decreased from 445 to 237 megabytes in
installed size ;)
That's nice, but Koji builders have not been reconfigured away from
LANG=en_US.UTF-8 and that means that all builds run in C (not C.UTF-8)
perl: warning: Setting locale failed.
LANGUAGE = (unset),
LC_ALL = (unset),
LANG = "en_US.UTF-8"
are supported and installed on your system.
Example
<https://kojipkgs.fedoraproject.org//packages/perl-Task-Kensho-Async/0.40/1.fc30/data/logs/noarch/build.log>.
This is even causing some of my builds to fail because some cmake
variables (CMAKE_SYSTEM_PROCESSOR below) end up containing a warning:

-- Found assembler: /usr/bin/clang
CMAKE_SYSTEM_PROCESSOR: _bin_sh: warning: setlocale: LC_ALL: cannot change locale (en_US.UTF-8)
x86_64
CMake Error at functions.cmake:7 (message):
Only AMD64, ARM64 and ARM are supported
Call Stack (most recent call first):
CMakeLists.txt:175 (clr_unknown_arch)

What's the correct way to disable this "setlocale: LC_ALL: cannot change
locale (en_US.UTF-8)" warning? What environment variables should I be
(un)setting when building in koji? Or should I install a langpack
instead?

Thanks,
Omair

--
PGP Key: B157A9F0 (http://pgp.mit.edu/)
Fingerprint = 9DB5 2F0B FD3E C239 E108 E7BD DF99 7AF8 B157 A9F0
_______________________________________________
devel mailing list -- ***@lists.fedoraproject.org
To unsubscribe send an email to devel-***@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: https://lists.fedoraproject.org/archives/list/***@lists.fedoraproject.o
Peter Robinson
2018-12-07 03:21:19 UTC
Permalink
Post by Omair Majid
Post by Petr Pisar
Post by Igor Gnatenko
the removal of glibc-all-langpacks from the buildroot[0] is done.
Standard buildroot has decreased from 445 to 237 megabytes in
installed size ;)
That's nice, but Koji builders have not been reconfigured away from
LANG=en_US.UTF-8 and that means that all builds run in C (not C.UTF-8)
perl: warning: Setting locale failed.
LANGUAGE = (unset),
LC_ALL = (unset),
LANG = "en_US.UTF-8"
are supported and installed on your system.
Example
<https://kojipkgs.fedoraproject.org//packages/perl-Task-Kensho-Async/0.40/1.fc30/data/logs/noarch/build.log>.
This is even causing some of my builds to fail because some cmake
-- Found assembler: /usr/bin/clang
CMAKE_SYSTEM_PROCESSOR: _bin_sh: warning: setlocale: LC_ALL: cannot change locale (en_US.UTF-8)
x86_64
Only AMD64, ARM64 and ARM are supported
CMakeLists.txt:175 (clr_unknown_arch)
What's the correct way to disable this "setlocale: LC_ALL: cannot change
locale (en_US.UTF-8)" warning? What environment variables should I be
(un)setting when building in koji? Or should I install a langpack
instead?
I suspect the proper fix will be in the cmake-rpm-macros package so
that it's fixed in a central location for all cmake consumers.

Peter
_______________________________________________
devel mailing list -- ***@lists.fedoraproject.org
To unsubscribe send an email to devel-***@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: https://lists.fedoraproject.org/archiv
Zbigniew Jędrzejewski-Szmek
2018-12-07 06:55:10 UTC
Permalink
Post by Petr Pisar
Post by Igor Gnatenko
the removal of glibc-all-langpacks from the buildroot[0] is done.
Standard buildroot has decreased from 445 to 237 megabytes in
installed size ;)
That's nice, but Koji builders have not been reconfigured away from
LANG=en_US.UTF-8 and that means that all builds run in C (not C.UTF-8)
perl: warning: Setting locale failed.
LANGUAGE = (unset),
LC_ALL = (unset),
LANG = "en_US.UTF-8"
are supported and installed on your system.
Example
<https://kojipkgs.fedoraproject.org//packages/perl-Task-Kensho-Async/0.40/1.fc30/data/logs/noarch/build.log>.
https://pagure.io/releng/issue/7962

Zbyszek
_______________________________________________
devel mailing list -- ***@lists.fedoraproject.org
To unsubscribe send an email to devel-***@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: https://lists.fedoraproject.org/archives/list/***@lists.fedorapr
Loading...