Re: [gentoo-dev] [ebuild] How to do make install while in compilation stage

2022-07-11 Thread Xi Shen
Thanks a lot! On Mon, 11 Jul 2022 at 16:18, Rui Huang wrote: > Hi, > > The latest libnvidia-container-1.10.0 has been tested and committed to the > dev branch of the ::guru overlay (waiting to be merged into the master > branch) > > >

Re: [gentoo-dev] [PATCH] python-utils-r1.eclass: avoid nested ebegin calls

2022-07-11 Thread Michał Górny
On Sun, 2022-07-10 at 23:53 -0400, Mike Gilbert wrote: > It's common for python_check_deps to call python_has_version, which > calls ebegin itself. > > Signed-off-by: Mike Gilbert > --- > eclass/python-utils-r1.eclass | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git

Re: [gentoo-dev] [PATCH] python-utils-r1.eclass: avoid nested ebegin calls

2022-07-11 Thread Mike Gilbert
On Mon, Jul 11, 2022 at 3:04 AM Michał Górny wrote: > > On Sun, 2022-07-10 at 23:53 -0400, Mike Gilbert wrote: > > It's common for python_check_deps to call python_has_version, which > > calls ebegin itself. > > > > Signed-off-by: Mike Gilbert > > --- > > eclass/python-utils-r1.eclass | 3 +-- >

[gentoo-dev] [PATCH v2] python-utils-r1.eclass: avoid nested ebegin calls

2022-07-11 Thread Mike Gilbert
It's common for python_check_deps to call python_has_version, which calls ebegin itself. Signed-off-by: Mike Gilbert --- eclass/python-utils-r1.eclass | 9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass index

[gentoo-dev] Last rites: dev-php/pecl-geoip

2022-07-11 Thread Brian Evans
# Brian Evans (2022-07-11) # The database behind this extension is no longer available # Please migrate to dev-php/maxmind-db-reader optionally with its # bundled extension. Bug 857636 # Removal on 2022-08-10. dev-php/pecl-geoip OpenPGP_signature Description: OpenPGP digital signature

[gentoo-dev] [PATCH] profiles/package.mask: last-rite asm submodules

2022-07-11 Thread Volkmar W. Pogatzki
Signed-off-by: Volkmar W. Pogatzki --- profiles/package.mask | 9 + 1 file changed, 9 insertions(+) diff --git a/profiles/package.mask b/profiles/package.mask index 9dd06203385..55ab9066238 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -33,6 +33,15 @@ #--- END OF

[gentoo-dev] GLEP 83: EAPI deprecation

2022-07-11 Thread Ulrich Mueller
Please find below the first draft of GLEP 83 "EAPI deprecation". This tries to define criteria for deprecation and for banning of EAPIs by the Council. I have tried to model it in a way that the actual dates for at least EAPIs 4 and 5 are reproduced within a few months. To this end, the criteria

Re: [gentoo-dev] [PATCH v2] python-utils-r1.eclass: avoid nested ebegin calls

2022-07-11 Thread Mike Gilbert
On Mon, Jul 11, 2022 at 1:57 PM Ulrich Mueller wrote: > > > On Mon, 11 Jul 2022, Mike Gilbert wrote: > > >> Maybe leave ebegin/eend in place then, which was invented precisely for > >> this use case? What's so bad about nesting it? > > > It leads to odd looking output. > > >

Re: [gentoo-dev] [PATCH v2] python-utils-r1.eclass: avoid nested ebegin calls

2022-07-11 Thread Mike Gilbert
On Mon, Jul 11, 2022 at 2:01 PM Anna wrote: > > On 2022-07-11 19:57, Ulrich Mueller wrote: > > > On Mon, 11 Jul 2022, Mike Gilbert wrote: > > > > >> Maybe leave ebegin/eend in place then, which was invented precisely for > > >> this use case? What's so bad about nesting it? > > > > > It leads

Re: [gentoo-dev] [PATCH v2] python-utils-r1.eclass: avoid nested ebegin calls

2022-07-11 Thread Frederik Pfautsch
Am 11.07.22 um 20:14 schrieb Mike Gilbert: On Mon, Jul 11, 2022 at 1:57 PM Ulrich Mueller wrote: On Mon, 11 Jul 2022, Mike Gilbert wrote: Maybe leave ebegin/eend in place then, which was invented precisely for this use case? What's so bad about nesting it? It leads to odd looking

Re: [gentoo-dev] [PATCH v2] python-utils-r1.eclass: avoid nested ebegin calls

2022-07-11 Thread Mike Gilbert
On Mon, Jul 11, 2022 at 2:49 PM Frederik Pfautsch wrote: > > Am 11.07.22 um 20:14 schrieb Mike Gilbert: > > On Mon, Jul 11, 2022 at 1:57 PM Ulrich Mueller wrote: > >> > >>> On Mon, 11 Jul 2022, Mike Gilbert wrote: > >> > Maybe leave ebegin/eend in place then, which was invented

Re: [gentoo-dev] [PATCH v2] python-utils-r1.eclass: avoid nested ebegin calls

2022-07-11 Thread Mike Gilbert
On Mon, Jul 11, 2022 at 2:20 PM Mike Gilbert wrote: > > On Mon, Jul 11, 2022 at 2:01 PM Anna wrote: > > > > On 2022-07-11 19:57, Ulrich Mueller wrote: > > > > On Mon, 11 Jul 2022, Mike Gilbert wrote: > > > > > > >> Maybe leave ebegin/eend in place then, which was invented precisely for > > >

Re: [gentoo-dev] [PATCH v2] python-utils-r1.eclass: avoid nested ebegin calls

2022-07-11 Thread Ionen Wolkens
On Mon, Jul 11, 2022 at 09:16:10AM -0400, Mike Gilbert wrote: > It's common for python_check_deps to call python_has_version, which > calls ebegin itself. > > Signed-off-by: Mike Gilbert > --- > eclass/python-utils-r1.eclass | 9 ++--- > 1 file changed, 6 insertions(+), 3 deletions(-) > >

Re: [gentoo-dev] [PATCH v2] python-utils-r1.eclass: avoid nested ebegin calls

2022-07-11 Thread Ulrich Mueller
> On Mon, 11 Jul 2022, Ionen Wolkens wrote: >> -ebegin " python_check_deps" >> -python_check_deps >> -eend ${?} >> +einfo " python_check_deps" >> +if python_check_deps; then >> +einfo " python_check_deps succeeded" >> +else >> +einfo "

Re: [gentoo-dev] [PATCH v2] python-utils-r1.eclass: avoid nested ebegin calls

2022-07-11 Thread Mike Gilbert
On Mon, Jul 11, 2022 at 12:56 PM Ulrich Mueller wrote: > > > On Mon, 11 Jul 2022, Ionen Wolkens wrote: > >> -ebegin " python_check_deps" > >> -python_check_deps > >> -eend ${?} > >> +einfo " python_check_deps" > >> +if python_check_deps; then > >> +einfo "

Re: [gentoo-dev] [PATCH v2] python-utils-r1.eclass: avoid nested ebegin calls

2022-07-11 Thread Ulrich Mueller
> On Mon, 11 Jul 2022, Mike Gilbert wrote: >> Maybe leave ebegin/eend in place then, which was invented precisely for >> this use case? What's so bad about nesting it? > It leads to odd looking output. >

[gentoo-dev] Last rites: dev-libs/ucommon

2022-07-11 Thread David Seifert
# David Seifert (2022-07-11) # Unmaintained, companion lib of dev-cpp/commoncpp2 which has already # been removed, fails with USE=-ssl, no revdeps, upstream mostly dead. # Bug #830581, removal on 2022-08-10. dev-libs/ucommon signature.asc Description: This is a digitally signed message part

Re: [gentoo-dev] [PATCH v2] python-utils-r1.eclass: avoid nested ebegin calls

2022-07-11 Thread Michał Górny
On Mon, 2022-07-11 at 09:16 -0400, Mike Gilbert wrote: > It's common for python_check_deps to call python_has_version, which > calls ebegin itself. > > Signed-off-by: Mike Gilbert > --- > eclass/python-utils-r1.eclass | 9 ++--- > 1 file changed, 6 insertions(+), 3 deletions(-) > > diff

[gentoo-dev] [PATCH v3] python-utils-r1.eclass: avoid nested ebegin calls

2022-07-11 Thread Mike Gilbert
It's common for python_check_deps to call python_has_version, which calls ebegin itself. Closes: https://bugs.gentoo.org/851822 Signed-off-by: Mike Gilbert --- eclass/python-utils-r1.eclass | 10 -- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git

Re: [gentoo-dev] [PATCH v2] python-utils-r1.eclass: avoid nested ebegin calls

2022-07-11 Thread Mike Gilbert
On Mon, Jul 11, 2022 at 1:17 PM Ionen Wolkens wrote: > > On Mon, Jul 11, 2022 at 01:08:52PM -0400, Mike Gilbert wrote: > > On Mon, Jul 11, 2022 at 12:56 PM Ulrich Mueller wrote: > > > > > > > On Mon, 11 Jul 2022, Ionen Wolkens wrote: > > > >> -ebegin " python_check_deps" > > > >> -

Re: [gentoo-dev] [PATCH v2] python-utils-r1.eclass: avoid nested ebegin calls

2022-07-11 Thread Mike Gilbert
On Mon, Jul 11, 2022 at 12:11 PM Ionen Wolkens wrote: > > On Mon, Jul 11, 2022 at 09:16:10AM -0400, Mike Gilbert wrote: > > It's common for python_check_deps to call python_has_version, which > > calls ebegin itself. > > > > Signed-off-by: Mike Gilbert > > --- > > eclass/python-utils-r1.eclass

Re: [gentoo-dev] [PATCH v2] python-utils-r1.eclass: avoid nested ebegin calls

2022-07-11 Thread Ionen Wolkens
On Mon, Jul 11, 2022 at 01:08:52PM -0400, Mike Gilbert wrote: > On Mon, Jul 11, 2022 at 12:56 PM Ulrich Mueller wrote: > > > > > On Mon, 11 Jul 2022, Ionen Wolkens wrote: > > >> -ebegin " python_check_deps" > > >> -python_check_deps > > >> -eend ${?} > > >> +einfo "

[gentoo-dev] Last rites: net-mail/mpack

2022-07-11 Thread Sam James
# Sam James (2022-07-10) # Broken with autoconf 2.70+, stuck on EAPI 6, plenty # of concerning warnings. Even Debian's fork isn't # enough to fix all the issues (w/ autoconf). # Removal on 2022-07-10. net-mail/mpack signature.asc Description: Message signed with OpenPGP

Re: [gentoo-dev] [PATCH] glep-0076: Require real name instead of legal name

2022-07-11 Thread John Helmert III
On Tue, Jul 12, 2022 at 05:28:36AM +0500, Anna Vyalkova wrote: > This patch uses more friendly language towards potential transgender > and plural contributors. > > No other projects require to use a legal name, e.g. Linux says to use > your real name[0]. I'm not sure there are *none*, but

[gentoo-dev] Last rites: media-video/kino

2022-07-11 Thread Sam James
# Sam James (2022-07-12) # Huge number of open bugs, deprecated upstream (they recommend # using other video editors like Shotcut, Kdenlive, ...). Removal on 2022-08-12. # Bugs #372053, #438248, #740528, #778338, #832380, #834406. media-video/kino signature.asc Description: Message signed with

[gentoo-dev] Last rites: sci-biology/transfac

2022-07-11 Thread David Seifert
# David Seifert (2022-07-11) # Crashes with latest emboss, no other distro packages this, # ancient release, bug #361411, removal on 2022-08-10. sci-biology/transfac signature.asc Description: This is a digitally signed message part

Re: [gentoo-dev] [PATCH] python-utils-r1.eclass: avoid nested ebegin calls

2022-07-11 Thread Michał Górny
On Mon, 2022-07-11 at 07:36 -0400, Mike Gilbert wrote: > On Mon, Jul 11, 2022 at 3:04 AM Michał Górny wrote: > > > > On Sun, 2022-07-10 at 23:53 -0400, Mike Gilbert wrote: > > > It's common for python_check_deps to call python_has_version, which > > > calls ebegin itself. > > > > > >