[gentoo-dev] Package up for grabs: x11-plugins/purple-hangouts

2021-06-26 Thread Stefan Strogin
x11-plugins/purple-hangouts - Hangouts Plugin for libpurple Doesn't need much work, but I don't use it anymore.

Re: [gentoo-dev] [PATCH] udev.eclass: EAPI 8 support

2021-06-26 Thread Ionen Wolkens
On Sat, Jun 26, 2021 at 03:24:58PM -0400, David Michael wrote: > # @ECLASS: udev.eclass > # @MAINTAINER: > # udev-b...@gentoo.org > -# @SUPPORTED_EAPIS: 0 1 2 3 4 5 6 7 > +# @SUPPORTED_EAPIS: 5 6 7 8 Wouldn't EAPI-8 be a good occasion to refactor _udev_get_udevdir into keeping EPREFIX? While

[gentoo-dev] [PATCH] metadata/install-qa-check.d: add virtual/libcrypt dep check

2021-06-26 Thread Georgy Yakovlev
Bug: https://bugs.gentoo.org/699422 Signed-off-by: Georgy Yakovlev --- metadata/install-qa-check.d/60libcrypt-deps | 38 + 1 file changed, 38 insertions(+) create mode 100644 metadata/install-qa-check.d/60libcrypt-deps diff --git

Re: [gentoo-dev] 'pax_kernel' USE flag

2021-06-26 Thread Sergei Trofimovich
On Wed, 23 Jun 2021 10:46:00 +0100 Marek Szuba wrote: > On 2021-06-22 19:01, Sergei Trofimovich wrote: > > > One of the steps forward for libffi would be to add extra USE=pax-kernel > > with REQUIRED_USE="pax_kernel? ( pax-kernel )" or 'die' equivalent. > > Sounds like a good idea to me,

[gentoo-dev] [PATCH] udev.eclass: EAPI 8 support

2021-06-26 Thread David Michael
This also drops EAPIs < 5 to match toolchain-funcs.eclass. Signed-off-by: David Michael --- This probably could have been sent in a series with https://archives.gentoo.org/gentoo-dev/message/22db5157cab5d6d173483fbc16377081 eclass/udev.eclass | 25 +++-- 1 file changed, 11

[gentoo-dev] [PATCH] autotools.eclass: EAPI 8 support

2021-06-26 Thread David Michael
Signed-off-by: David Michael --- Hi, Here is a simple update that is blocking a lot of stuff. It moves the EAPI check outside the inherit guard for bash future-proofing. Thanks. David eclass/autotools.eclass | 22 +- 1 file changed, 9 insertions(+), 13 deletions(-)

Re: [gentoo-dev] [PATCH 3/4] distutils-r1.eclass: Use 'dosym -r' in EAPI 8

2021-06-26 Thread Michał Górny
On Sat, 2021-06-26 at 09:58 +0200, Ulrich Mueller wrote: > > > > > > On Fri, 25 Jun 2021, Michał Górny wrote: > > > + local dosym=dosym > > + [[ ${EAPI} == [67] ]] && dosym=dosym8 > > + "${dosym}" -r /usr/lib/python-exec/python- > > exec2 \ >

Re: [gentoo-dev] [PATCH 3/4] distutils-r1.eclass: Use 'dosym -r' in EAPI 8

2021-06-26 Thread Ulrich Mueller
> On Fri, 25 Jun 2021, Michał Górny wrote: > + local dosym=dosym > + [[ ${EAPI} == [67] ]] && dosym=dosym8 > + "${dosym}" -r /usr/lib/python-exec/python-exec2 \ > + "${bindir#${EPREFIX}}/${basename}"