Re: [gentoo-dev] Proposal to undeprecate EGO_SUM

2022-09-28 Thread Florian Schmaus
I would like to continue discussing whether we should entirely deprecate EGO_SUM without the desire to offend anyone. We now have a pending GitHub PR that bumps restic to 0.14 [1]. Restic is a very popular backup software written in Go. The PR drops EGO_SUM in favor of a vendor tarball

Re: [gentoo-dev] Proposal to undeprecate EGO_SUM

2022-09-28 Thread Ulrich Mueller
> On Wed, 28 Sep 2022, Florian Schmaus wrote: > I would like to continue discussing whether we should entirely > deprecate EGO_SUM without the desire to offend anyone. > We now have a pending GitHub PR that bumps restic to 0.14 [1]. Restic > is a very popular backup software written in Go.

[gentoo-dev] rg(1) supports ebuild as a file type filter

2022-09-28 Thread Zoltan Puskas
Hey, Admittedly shameless plug and only a minor thing, but since I've seen mgorny's great addition to file(1) mentioned on the list, I've also wanted to share that sometime in early 2020 I've got a PR merged into RipGrep which adds a filter for searching ebuild files only. E.g. you can do: rg

[gentoo-dev] [PATCH 0/5] unpacker.eclass: makeself improvements + tests

2022-09-28 Thread Michał Górny
Hi, Here's a smaller batch for unpacker.eclass. It includes: - adding support for makeself 2.4.5, i.e. the only version in ::gentoo (which is also pretty easy to support, unlike earlier versions) - adding support for all (reasonable) compression methods that makeself 2.4.5 supports,

[gentoo-dev] [PATCH 1/5] unpacker.eclass: Add support for makeself 2.4.5

2022-09-28 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/unpacker.eclass | 8 1 file changed, 8 insertions(+) diff --git a/eclass/unpacker.eclass b/eclass/unpacker.eclass index 3d23151b636e..86641621c949 100644 --- a/eclass/unpacker.eclass +++ b/eclass/unpacker.eclass @@ -218,6 +218,14 @@

[gentoo-dev] [PATCH 2/5] unpacker.eclass: Reuse _unpacker_get_decompressor for makeself

2022-09-28 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/unpacker.eclass | 18 ++ 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/eclass/unpacker.eclass b/eclass/unpacker.eclass index 86641621c949..660cafce5105 100644 --- a/eclass/unpacker.eclass +++ b/eclass/unpacker.eclass @@

Re: [gentoo-dev] Proposal to undeprecate EGO_SUM

2022-09-28 Thread John Helmert III
On Wed, Sep 28, 2022 at 05:28:00PM +0200, Florian Schmaus wrote: > I would like to continue discussing whether we should entirely deprecate > EGO_SUM without the desire to offend anyone. > > We now have a pending GitHub PR that bumps restic to 0.14 [1]. Restic is > a very popular backup

[gentoo-dev] [PATCH 4/5] eclass/tests/unpacker.sh: Add tests for makeself

2022-09-28 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/tests/unpacker.sh | 29 + 1 file changed, 29 insertions(+) diff --git a/eclass/tests/unpacker.sh b/eclass/tests/unpacker.sh index b15953966f65..175975798731 100755 --- a/eclass/tests/unpacker.sh +++ b/eclass/tests/unpacker.sh @@

[gentoo-dev] [PATCH 3/5] unpacker.eclass: Support all makeself "compression" methods

2022-09-28 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/unpacker.eclass | 12 1 file changed, 12 insertions(+) diff --git a/eclass/unpacker.eclass b/eclass/unpacker.eclass index 660cafce5105..dfcb111e00f5 100644 --- a/eclass/unpacker.eclass +++ b/eclass/unpacker.eclass @@ -262,6 +262,18 @@

[gentoo-dev] [PATCH 5/5] unpacker.eclass: Check makeself compression without a tempfile

2022-09-28 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/unpacker.eclass | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/eclass/unpacker.eclass b/eclass/unpacker.eclass index dfcb111e00f5..02000dd5d911 100644 --- a/eclass/unpacker.eclass +++ b/eclass/unpacker.eclass @@ -243,9 +243,8 @@

Re: [gentoo-dev] rg(1) supports ebuild as a file type filter

2022-09-28 Thread Maciej Barć
Hi! Very cool, thanks for sharing! On 9/28/22 20:01, Zoltan Puskas wrote: Hey, Admittedly shameless plug and only a minor thing, but since I've seen mgorny's great addition to file(1) mentioned on the list, I've also wanted to share that sometime in early 2020 I've got a PR merged into