Re: [gentoo-dev] proposal: use only one hash function in manifest files

2022-04-19 Thread Robin H. Johnson
On Wed, Apr 06, 2022 at 05:23:25PM +, Robin H. Johnson wrote: > On Wed, Apr 06, 2022 at 02:15:02AM +0200, Jason A. Donenfeld wrote: > > 2) Comparability: other distros use SHA2-512, as well as various > > upstreams, which means we can compare our hashes to theirs easily. > Can we expand on

[gentoo-dev] Re: [PATCH 1/2] meson.eclass: disable PCH

2022-04-19 Thread Mike Gilbert
On Tue, Apr 19, 2022 at 2:21 PM Sam James wrote: > > It's already masked and disabled in GCC and it causes a huge > number of problems, but we need t odo this to avoid automagically > trying to use PCH-even-once-it's-been-disabled-in-the-compiler. ACK on both patches.

[gentoo-dev] [PATCH 2/2] meson.eclass: disable werror

2022-04-19 Thread Sam James
It's Gentoo policy to disable Werror where possible and this is a builtin Meson option, so let's use it, to save needing to add this all the time in ebuilds. Closes: https://bugs.gentoo.org/754279 Signed-off-by: Sam James --- eclass/meson.eclass | 4 1 file changed, 4 insertions(+) diff

[gentoo-dev] [PATCH 1/2] meson.eclass: disable PCH

2022-04-19 Thread Sam James
It's already masked and disabled in GCC and it causes a huge number of problems, but we need t odo this to avoid automagically trying to use PCH-even-once-it's-been-disabled-in-the-compiler. Bug: https://bugs.gentoo.org/839549 Signed-off-by: Sam James --- eclass/meson.eclass | 8 +++- 1