Re: [gentoo-dev] [PATCH v2 2/3] distutils-r1.eclass: Use python_has_version in ...enable_sphinx

2022-02-10 Thread Michał Górny
On Thu, 2022-02-10 at 15:27 -0800, Matt Turner wrote: > On Thu, Feb 10, 2022 at 6:45 AM Michał Górny wrote: > > > > Signed-off-by: Michał Górny > > > Looks good to me. I noticed that this implementation takes only a > single -b/-d/-r as the initial argument and then a list of packages. > I'd s

[gentoo-dev] Gentoo LLVM project needs help!

2022-02-10 Thread Michał Górny
Hi, As you may have noticed, I'm practically maintaining LLVM all by myself. This is a really tedious, time consuming and ungrateful task, and I'm pretty close to burnout. I'd really appreciate some help. The problem with LLVM that it's a really huge, rapidly moving forward (and breaking things)

Re: [gentoo-dev] [PATCH v2 2/3] distutils-r1.eclass: Use python_has_version in ...enable_sphinx

2022-02-10 Thread Matt Turner
On Thu, Feb 10, 2022 at 6:45 AM Michał Górny wrote: > > Signed-off-by: Michał Górny Looks good to me. I noticed that this implementation takes only a single -b/-d/-r as the initial argument and then a list of packages. I'd suggested pairs of -b/-d/-r but I think you're right not to implement t

[gentoo-dev] Packages up for grabs: x11-misc/xautolock

2022-02-10 Thread Jonas Stein
Dear all the following packages are up for grabs after dropping desktop-misc: x11-misc/xautolock https://packages.gentoo.org/packages/x11-misc/xautolock -- Best, Jonas

[gentoo-dev] [PATCH 1/1] linux-mod.eclass: enable EAPI 8, remove EAPI 5

2022-02-10 Thread Mike Pagano
Clean-up code needed for deprecated EAPIs (EAPI < 4) Signed-off-by: Mike Pagano --- eclass/linux-mod.eclass | 9 ++--- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/eclass/linux-mod.eclass b/eclass/linux-mod.eclass index 496b9c98b..3aabe7e9d 100644 --- a/eclass/linux-mod.ecl

[gentoo-dev] [PATCH v2 3/3] dev-libs/libwacom: Use python_has_version for verbose output

2022-02-10 Thread Michał Górny
Signed-off-by: Michał Górny --- dev-libs/libwacom/libwacom-1.12.ebuild | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dev-libs/libwacom/libwacom-1.12.ebuild b/dev-libs/libwacom/libwacom-1.12.ebuild index acfda32d8405..ea2521bf4559 100644 --- a/dev-libs/libwacom/libwac

[gentoo-dev] [PATCH v2 2/3] distutils-r1.eclass: Use python_has_version in ...enable_sphinx

2022-02-10 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/distutils-r1.eclass | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index cdd57149720d..c14297d39757 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -4

[gentoo-dev] [PATCH v2 1/3] python-utils-r1.eclass: Add a verbose python_has_version() wrapper

2022-02-10 Thread Michał Górny
Add a python_has_version() wrapper for convenient use in python_check_deps(). It includes: - verbose output - default "-b" root that's more suitable for build-time checks - forward compatibility for -b/-d/-r arguments in EAPI 6 Signed-off-by: Michał Górny --- eclass/python-utils-r1.eclass | 42

[gentoo-dev] [PATCH] eclass/dune.eclass: inherit multiprocessing

2022-02-10 Thread Maciej Barć
in order to run up to makeopts_jobs number of jobs in dune_src_compile and dune_src_test Signed-off-by: Maciej Barć --- eclass/dune.eclass | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/eclass/dune.eclass b/eclass/dune.eclass index 9b5c469dcad..522dc2a8b52 100644 ---