Re: [OE-core] [RFC PATCH 7/7] package_rpm: use zstd instead of xz

2021-09-08 Thread Alexandre Belloni
On 08/09/2021 16:02:16+0200, Alexander Kanavin wrote: > On Wed, 8 Sept 2021 at 14:54, Alexandre Belloni < > alexandre.bell...@bootlin.com> wrote: > > > Sure: > > > > https://autobuilder.yoctoproject.org/typhoon/#/builders/115/builds/641/steps/13/logs/stdio > > > > > > I also have this one with the

Re: [OE-core] [RFC PATCH 7/7] package_rpm: use zstd instead of xz

2021-09-08 Thread Alexander Kanavin
On Wed, 8 Sept 2021 at 14:54, Alexandre Belloni < alexandre.bell...@bootlin.com> wrote: > Sure: > > https://autobuilder.yoctoproject.org/typhoon/#/builders/115/builds/641/steps/13/logs/stdio > > > I also have this one with the patch removed but with the previous lua > patches and it only has a lua

Re: [OE-core] [RFC PATCH 7/7] package_rpm: use zstd instead of xz

2021-09-08 Thread Alexandre Belloni
On 08/09/2021 14:05:34+0200, Alexander Kanavin wrote: > On Wed, 8 Sept 2021 at 13:31, Alexandre Belloni < > alexandre.bell...@bootlin.com> wrote: > > > On 30/08/2021 20:48:00+0200, Alexander Kanavin wrote: > > > zstd has similar time and space performance in compression but is > > > vastly faster

Re: [OE-core] [RFC PATCH 7/7] package_rpm: use zstd instead of xz

2021-09-08 Thread Alexander Kanavin
On Wed, 8 Sept 2021 at 13:31, Alexandre Belloni < alexandre.bell...@bootlin.com> wrote: > On 30/08/2021 20:48:00+0200, Alexander Kanavin wrote: > > zstd has similar time and space performance in compression but is > > vastly faster in decompression, which benefits rootfs creation > > (especially w

Re: [OE-core] [RFC PATCH 7/7] package_rpm: use zstd instead of xz

2021-09-08 Thread Alexandre Belloni
Hello Alex, On 30/08/2021 20:48:00+0200, Alexander Kanavin wrote: > zstd has similar time and space performance in compression but is > vastly faster in decompression, which benefits rootfs creation > (especially when installing very large packages) and on-target > package installation. > I beli

[OE-core] [RFC PATCH 7/7] package_rpm: use zstd instead of xz

2021-08-30 Thread Alexander Kanavin
zstd has similar time and space performance in compression but is vastly faster in decompression, which benefits rootfs creation (especially when installing very large packages) and on-target package installation. Signed-off-by: Alexander Kanavin --- meta/classes/package_rpm.bbclass | 4 ++-- me