Re: [gentoo-dev] [PATCH 6/8] kernel-build.eclass: compress xz/zstd in parallel

2022-10-11 Thread Sam James
> On 12 Oct 2022, at 05:46, Michał Górny wrote: > > On Tue, 2022-10-11 at 23:54 +0100, Sam James wrote: >> Note that this will only take effect if compressing >> modules with xz or zstd (COMPRESS_MODULE_XZ is set or >> COMPRESS_MODULE_ZSTD is set respectively) >> >> ... or if compiling the k

Re: [gentoo-dev] [PATCH 6/8] kernel-build.eclass: compress xz/zstd in parallel

2022-10-11 Thread Michał Górny
On Tue, 2022-10-11 at 23:54 +0100, Sam James wrote: > Note that this will only take effect if compressing > modules with xz or zstd (COMPRESS_MODULE_XZ is set or > COMPRESS_MODULE_ZSTD is set respectively) > > ... or if compiling the kernel with xz or zstd (COMPRESS_KERNEL_XZ > or COMPRESS_KERNEL_

[gentoo-dev] Re: [PATCH 8/8] kernel-build.eclass: use pbzip2/lbzip2 for parallel compression if available

2022-10-11 Thread Sam James
> On 11 Oct 2022, at 23:55, Sam James wrote: > > Note that this will only take effect if compressing > modules with bzip2 (COMPRESS_MODULE_BZIP2 is set) or > compressing the kernel with bzip2 (CONFIG_KERNEL_BZIP2 is set). > > Signed-off-by: Sam James > --- > eclass/kernel-build.eclass | 10

[gentoo-dev] [PATCH 8/8] kernel-build.eclass: use pbzip2/lbzip2 for parallel compression if available

2022-10-11 Thread Sam James
Note that this will only take effect if compressing modules with bzip2 (COMPRESS_MODULE_BZIP2 is set) or compressing the kernel with bzip2 (CONFIG_KERNEL_BZIP2 is set). Signed-off-by: Sam James --- eclass/kernel-build.eclass | 10 -- 1 file changed, 8 insertions(+), 2 deletions(-) diff

[gentoo-dev] [PATCH 7/8] kernel-build.eclass: use pigz for parallel compression if available

2022-10-11 Thread Sam James
Note that this will only take effect if compressing modules with gzip (COMPRESS_MODULE_GZIP is set) or compressing the kernel with gzip (CONFIG_KERNEL_GZIP is set). Signed-off-by: Sam James --- eclass/kernel-build.eclass | 7 +++ 1 file changed, 7 insertions(+) diff --git a/eclass/kernel-bu

[gentoo-dev] [PATCH 6/8] kernel-build.eclass: compress xz/zstd in parallel

2022-10-11 Thread Sam James
Note that this will only take effect if compressing modules with xz or zstd (COMPRESS_MODULE_XZ is set or COMPRESS_MODULE_ZSTD is set respectively) ... or if compiling the kernel with xz or zstd (COMPRESS_KERNEL_XZ or COMPRESS_KERNEL_ZSTD is set respectiely). Signed-off-by: Sam James --- eclass

[gentoo-dev] [PATCH 5/8] linux-mod.eclass: cleanup whitespace

2022-10-11 Thread Sam James
Signed-off-by: Sam James --- eclass/linux-mod.eclass | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/eclass/linux-mod.eclass b/eclass/linux-mod.eclass index e4c71cdf2c15..7f4ddb9b8ee6 100644 --- a/eclass/linux-mod.eclass +++ b/eclass/linux-mod.eclass @@ -150,8 +15

[gentoo-dev] [PATCH 4/8] linux-mod.eclass: improve error handling for module compression

2022-10-11 Thread Sam James
doins will 'die for us' in newer EAPIs, and add missing || dies to compressor calls. Signed-off-by: Sam James --- eclass/linux-mod.eclass | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/eclass/linux-mod.eclass b/eclass/linux-mod.eclass index e837916b881a..

[gentoo-dev] [PATCH 3/8] linux-mod.eclass: use pigz for parallel compression if available

2022-10-11 Thread Sam James
Signed-off-by: Sam James --- eclass/linux-mod.eclass | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/eclass/linux-mod.eclass b/eclass/linux-mod.eclass index 8f511ba8ff05..e837916b881a 100644 --- a/eclass/linux-mod.eclass +++ b/eclass/linux-mod.eclass @@ -719,7 +719,11 @@

[gentoo-dev] [PATCH 2/8] linux-mod.eclass: compress xz/zstd in parallel

2022-10-11 Thread Sam James
Signed-off-by: Sam James --- eclass/linux-mod.eclass | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/eclass/linux-mod.eclass b/eclass/linux-mod.eclass index b7c13cbf7e76..8f511ba8ff05 100644 --- a/eclass/linux-mod.eclass +++ b/eclass/linux-mod.eclass @@ -163,7 +163,7 @

[gentoo-dev] [PATCH 1/8] kernel-2.eclass: decompress xz in parallel

2022-10-11 Thread Sam James
No-op until >=app-arch/xz-utils-5.3.3_alpha. Recently added support for this in Portage and pkgcore too for unpacking. Signed-off-by: Sam James --- eclass/kernel-2.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass index

[gentoo-dev] [PATCH] 2022-12-01-systemd-usrmerge: add news item

2022-10-11 Thread Mike Gilbert
Signed-off-by: Mike Gilbert --- .../2022-12-01-systemd-usrmerge.en.txt| 35 +++ 1 file changed, 35 insertions(+) create mode 100644 2022-12-01-systemd-usrmerge/2022-12-01-systemd-usrmerge.en.txt diff --git a/2022-12-01-systemd-usrmerge/2022-12-01-systemd-usrmerge.en.txt

Re: [gentoo-dev] [PATCH] go-module.eclass: ensure that A is less than 112 KiB

2022-10-11 Thread Florian Schmaus
On 11/10/2022 17.26, Mike Gilbert wrote: On Tue, Oct 11, 2022 at 6:06 AM Florian Schmaus wrote: Packages with a large number of EGO_SUM entries, i.e., many thousands, cause SRC_URI, and in turn A, to become quite large. Prevent issues that are caused by large environment variables, e.g., execv

Re: [gentoo-dev] RFC: check A's size in go-module.eclass

2022-10-11 Thread Mike Gilbert
On Tue, Oct 11, 2022 at 6:06 AM Florian Schmaus wrote: > > > This is a first suggestion in an effort to reach a compromise that > allows EGO_SUM to be un-depracted. > > I have decided to check the size of A, instead of counting the entries > in EGO_SUM, because that seemed more sensible given that

Re: [gentoo-dev] [PATCH] go-module.eclass: ensure that A is less than 112 KiB

2022-10-11 Thread Mike Gilbert
On Tue, Oct 11, 2022 at 6:06 AM Florian Schmaus wrote: > > Packages with a large number of EGO_SUM entries, i.e., many thousands, > cause SRC_URI, and in turn A, to become quite large. Prevent issues that > are caused by large environment variables, e.g., execve() errors (see > bug #719203), by en

[gentoo-dev] profiles: Add "qt6" global USE

2022-10-11 Thread Andreas Sturmlechner
Bug: https://bugs.gentoo.org/838970 Signed-off-by: Andreas Sturmlechner --- profiles/use.desc | 1 + 1 file changed, 1 insertion(+) diff --git a/profiles/use.desc b/profiles/use.desc index 83c3e70d13ce..aa2506213799 100644 --- a/profiles/use.desc +++ b/profiles/use.desc @@ -257,6 +257,7 @@ pytho

[gentoo-dev] [PATCH] go-module.eclass: ensure that A is less than 112 KiB

2022-10-11 Thread Florian Schmaus
Packages with a large number of EGO_SUM entries, i.e., many thousands, cause SRC_URI, and in turn A, to become quite large. Prevent issues that are caused by large environment variables, e.g., execve() errors (see bug #719203), by ensuring that A stays below a reasonable size. Signed-off-by: Flori

[gentoo-dev] RFC: check A's size in go-module.eclass

2022-10-11 Thread Florian Schmaus
This is a first suggestion in an effort to reach a compromise that allows EGO_SUM to be un-depracted. I have decided to check the size of A, instead of counting the entries in EGO_SUM, because that seemed more sensible given that as A's size caused functional issues in the past (bug #719202 [1])

Re: [gentoo-dev] Clang 16 is coming - and it'll break your packages!

2022-10-11 Thread Ionen Wolkens
On Sun, Oct 09, 2022 at 10:25:47PM +0100, Sam James wrote: > ## Bonus > > It also *warns* about K&R declarations and ill-defined, deprecated > prototypes, > so for bonus work, test with: > * -Werror=strict-prototypes (C only) > * -Werror=deprecated-non-prototype (C only) > > It's suggested that i