Re: [gentoo-dev] Packages up for grabs (m-n batch)

2021-07-02 Thread Sergei Trofimovich
On Fri, 2 Jul 2021 10:08:09 +0100 Marek Szuba wrote: > On 2021-07-02 08:41, Sergei Trofimovich wrote: > > # maybe retire? it somewhat worked a while ago > > x11-plugins/purple-mattermost > > Seconding retirement, maybe I kept doing something wrong but I had no > luck getting this to work

Re: [gentoo-dev] [PATCH 1/3] lua-single.eclass: clean up the eapi test

2021-07-02 Thread Ulrich Mueller
> On Fri, 02 Jul 2021, William Hubbs wrote: > case ${EAPI:-0} in This could be just ${EAPI}. > - 0|1|2|3|4|5|6) > - die "Unsupported EAPI=${EAPI} (too old) for ${ECLASS}" > - ;; > 7|8) > ;; > *) > - die "Unsupported

[gentoo-dev] [PATCH 3/3] lua.eclass: clean up the eapi test

2021-07-02 Thread William Hubbs
Signed-off-by: William Hubbs --- eclass/lua.eclass | 5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/eclass/lua.eclass b/eclass/lua.eclass index e3a25c5d184..b4cbac7afa8 100644 --- a/eclass/lua.eclass +++ b/eclass/lua.eclass @@ -51,13 +51,10 @@ # @CODE case ${EAPI:-0}

[gentoo-dev] [PATCH 2/3] lua-utils.eclass: clean up the eapi test

2021-07-02 Thread William Hubbs
Signed-off-by: William Hubbs --- eclass/lua-utils.eclass | 5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/eclass/lua-utils.eclass b/eclass/lua-utils.eclass index 59959eaf9c0..80758c15ded 100644 --- a/eclass/lua-utils.eclass +++ b/eclass/lua-utils.eclass @@ -18,13 +18,10 @@

[gentoo-dev] [PATCH 1/3] lua-single.eclass: clean up the eapi test

2021-07-02 Thread William Hubbs
Signed-off-by: William Hubbs --- eclass/lua-single.eclass | 5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/eclass/lua-single.eclass b/eclass/lua-single.eclass index 7abe1eb6674..3d7ef974bef 100644 --- a/eclass/lua-single.eclass +++ b/eclass/lua-single.eclass @@ -63,13

[gentoo-dev] [PATCH 0/3] clean up lua eclass eapi checks

2021-07-02 Thread William Hubbs
*** BLURB HERE *** We don't need to differentiate between EAPIs that are too old vs other unsupported EAPIs. William Hubbs (3): lua-single.eclass: clean up the eapi test lua-utils.eclass: clean up the eapi test lua.eclass: clean up the eapi test eclass/lua-single.eclass | 5 +

Re: [gentoo-dev] Packages up for grabs (m-n batch)

2021-07-02 Thread Ulrich Mueller
> On Fri, 02 Jul 2021, Sergei Trofimovich wrote: > dev-vcs/cvs-fast-export I take this one. signature.asc Description: PGP signature

Re: [gentoo-dev] Packages up to co-maintenance

2021-07-02 Thread Marek Szuba
On 2021-07-02 10:12, Sergei Trofimovich wrote: app-misc/mc dev-util/ltrace media-fonts/terminus-font media-libs/aalib Will attach myself to these four. -- Marecki OpenPGP_signature Description: OpenPGP digital signature

[gentoo-dev] Packages up to co-maintenance

2021-07-02 Thread Sergei Trofimovich
I welcome everyone to co-maintain or completely take over maintenance from me of the packages I maintain. As it became apparent I'm not a great maintainer. I'll keep providing basic life support for packages nobody else is interested in. Here is the package list (some packages have second

Re: [gentoo-dev] Packages up for grabs (m-n batch)

2021-07-02 Thread Marek Szuba
On 2021-07-02 08:41, Sergei Trofimovich wrote: # fuzzer tools of sorts, very fun ones: app-forensics/honggfuzz sys-libs/blocksruntime app-forensics/radamsa app-forensics/zzuf I'll take the lot. # maybe retire? it somewhat worked a while ago x11-plugins/purple-mattermost Seconding

Re: [gentoo-dev] Packages up for grabs (m-n batch)

2021-07-02 Thread Sam James
> On 2 Jul 2021, at 08:41, Sergei Trofimovich wrote: > > I don't use these any more. > [snip] > # bumps weekly, relatively small wrapper around > # a ton of backend tools. Needs some test suite love. > dev-util/diffoscope Adopted, thanks! best, sam signature.asc Description: Message

[gentoo-dev] Packages up for grabs (m-n batch)

2021-07-02 Thread Sergei Trofimovich
I don't use these any more. # should be low maintenance overhead. a rare dependency: app-arch/pax # fuzzer tools of sorts, very fun ones: app-forensics/honggfuzz sys-libs/blocksruntime app-forensics/radamsa app-forensics/zzuf # ollydbg-style ineteractive debugger if you are into that kind #

Re: [gentoo-dev] [PATCH] go-module.eclass: add eapi 8 support

2021-07-02 Thread Ulrich Mueller
> On Fri, 02 Jul 2021, William Hubbs wrote: > # Go packages should not be stripped with strip(1). > -RESTRICT+=" strip" > +if [[ ${EAPI} == 7 ]]; then > + RESTRICT+=" strip" > +else > + RESTRICT=" strip" > +fi There was a previous discussion in the QA team that we shouldn't do such