[gentoo-dev] Imminent Python 3.12 switch reminder

2024-05-28 Thread Michał Górny
Hi, Just a quick reminder that we're switching to Python 3.12 this Saturday. If you're up for some more quick porting, right now's the time! -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

Re: [gentoo-dev] [PATCH v2] verify-sig.eclass: avoid calling unpack on sig files

2024-05-21 Thread Michał Górny
fi > + else > + default_src_unpack > + fi > } > > fi Please make a pull request or send a patch with more context. As submitted, this patch is completely unreadable. -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] Packages up for grabs: dev-libs/liblzw, dev-vcs/repo, net-misc/chrome-remote-desktop, sys-apps/daisydog, sys-apps/nosig

2024-05-19 Thread Michał Górny
py3.12 port and has one more bug reported. Most of them have some pkgcheck reports, and daisydog seems to have a broken mirror:// URI. -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] Last rites: dev-python/aesara

2024-05-18 Thread Michał Górny
# Michał Górny (2024-05-18) # Another abandoned project in the middle of a line of forks. # Broken with Python 3.12, with pytest 8 and with numpy 2.  Last # upstream activity in September 2023, but bugs remained unanswered # before that. # Removal on 2024-06-17.  Bug #929433. dev-python/aesara

[gentoo-dev] Last rites: dev-python/pdm-pep517

2024-05-18 Thread Michał Górny
# Michał Górny (2024-05-18) # Superseded by dev-python/pdm-backend.  No revdeps left. # Removal on 2024-06-17.  Bug #932160. dev-python/pdm-pep517 -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] Last rites: dev-python/dictpath

2024-05-17 Thread Michał Górny
# Michał Górny (2024-05-17) # Superseded by dev-python/pathable.  No revdeps. # Removal on 2024-06-16.  Bug #932103. dev-python/dictpath -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] Last rites: dev-python/cached-property

2024-05-17 Thread Michał Górny
# Michał Górny (2024-05-17) # Unmaintained.  Last activity in 2020.  Redundant to stdlib. # No revdeps. # Removal on 2024-06-16.  Bug #932096. dev-python/cached-property -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] [PATCH] python-utils-r1.eclass: Fix cleanup in failing epytest

2024-05-17 Thread Michał Górny
Fix epytest to call `die -n` after performing the cleanup, rather than before. This ensures that stray cache files are cleaned up even if we're actually going to die, e.g. when using `FEATURES=test-fail-continue`. Signed-off-by: Michał Górny --- eclass/python-utils-r1.eclass | 3 ++- 1 file

[gentoo-dev] Last rites: dev-python/whichcraft

2024-05-17 Thread Michał Górny
# Michał Górny (2024-05-17) # A Python < 3.3 backport of shutil.which().  No revdeps left. # Removal on 2024-06-16.  Bug #932088. dev-python/whichcraft -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] [PATCH v2 7/7] distutils-r1.eclass: Pass ninja options to scikit-build-core

2024-05-17 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/distutils-r1.eclass | 6 ++ 1 file changed, 6 insertions(+) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 3aa2c8984ab2..71b80fafe1a5 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -1457,11

[gentoo-dev] [PATCH v2 6/7] distutils-r1.eclass: Update scikit-build-core to 0.9.4

2024-05-17 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/distutils-r1.eclass | 8 +++- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index a8f9817a3cf0..3aa2c8984ab2 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass

[gentoo-dev] [PATCH v2 5/7] python-utils-r1.eclass: Support passing EPYTEST_FLAGS

2024-05-17 Thread Michał Górny
Closes: https://bugs.gentoo.org/905863 Signed-off-by: Michał Górny --- eclass/python-utils-r1.eclass | 11 ++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass index 275ac3a96523..584ed831f816 100644 --- a/eclass

[gentoo-dev] [PATCH v2 4/7] distutils-r1.eclass: Support reusing prior wheels when compatible

2024-05-17 Thread Michał Górny
-by: Michał Górny --- eclass/distutils-r1.eclass | 38 ++ 1 file changed, 38 insertions(+) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 29e901720e6c..a8f9817a3cf0 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass

[gentoo-dev] [PATCH v2 3/7] distutils-r1.eclass: Add a QA warning for pure Python file mismatch

2024-05-17 Thread Michał Górny
from previous builds. Signed-off-by: Michał Górny --- eclass/distutils-r1.eclass | 40 ++ 1 file changed, 40 insertions(+) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 955c41fe4e2d..29e901720e6c 100644 --- a/eclass/distutils-r1

[gentoo-dev] [PATCH v2 2/7] distutils-r1.eclass: Store created wheels in DISTUTILS_WHEELS

2024-05-17 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/distutils-r1.eclass | 11 +++ 1 file changed, 11 insertions(+) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 1037c0abe239..955c41fe4e2d 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -1532,6

[gentoo-dev] [PATCH v2 1/7] distutils-r1.eclass: Set DISTUTILS_WHEEL_PATH in PEP517 install

2024-05-17 Thread Michał Górny
Store the created wheel path in DISTUTILS_WHEEL_PATH when returning from distutils_pep517_install. Signed-off-by: Michał Górny --- eclass/distutils-r1.eclass | 9 - 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index

[gentoo-dev] [PATCH v2 0/7] wheel reuse optimization, EPYTEST_FLAGS and scikit-build-core

2024-05-17 Thread Michał Górny
Hi, Changed in v2: Made DISTUTILS_WHEELS an associative array, and included source directory in it. This ensures that if an ebuild calls distutils-r1_python_compile multiple times, we don't end up reusing wheels created for another source directory. Michał Górny (7): distutils-r1.eclass

[gentoo-dev] [PATCH 7/7] distutils-r1.eclass: Pass ninja options to scikit-build-core

2024-05-15 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/distutils-r1.eclass | 6 ++ 1 file changed, 6 insertions(+) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 02921919c7ef..9b2fc0583149 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -1457,11

[gentoo-dev] [PATCH 6/7] distutils-r1.eclass: Update scikit-build-core to 0.9.4

2024-05-15 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/distutils-r1.eclass | 8 +++- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index e4d53083124e..02921919c7ef 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass

[gentoo-dev] [PATCH 5/7] python-utils-r1.eclass: Support passing EPYTEST_FLAGS

2024-05-15 Thread Michał Górny
Closes: https://bugs.gentoo.org/905863 Signed-off-by: Michał Górny --- eclass/python-utils-r1.eclass | 11 ++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass index 275ac3a96523..584ed831f816 100644 --- a/eclass

[gentoo-dev] [PATCH 4/7] distutils-r1.eclass: Support reusing prior wheels when compatible

2024-05-15 Thread Michał Górny
-by: Michał Górny --- eclass/distutils-r1.eclass | 33 + 1 file changed, 33 insertions(+) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index f014a184885a..e4d53083124e 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -189,6

[gentoo-dev] [PATCH 3/7] distutils-r1.eclass: Add a QA warning for pure Python file mismatch

2024-05-15 Thread Michał Górny
from previous builds. Signed-off-by: Michał Górny --- eclass/distutils-r1.eclass | 40 ++ 1 file changed, 40 insertions(+) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 89223b248157..f014a184885a 100644 --- a/eclass/distutils-r1

[gentoo-dev] [PATCH 2/7] distutils-r1.eclass: Store created wheels in DISTUTILS_WHEELS

2024-05-15 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/distutils-r1.eclass | 10 ++ 1 file changed, 10 insertions(+) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 1037c0abe239..89223b248157 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -1532,6

[gentoo-dev] [PATCH 1/7] distutils-r1.eclass: Set DISTUTILS_WHEEL_PATH in PEP517 install

2024-05-15 Thread Michał Górny
Store the created wheel path in DISTUTILS_WHEEL_PATH when returning from distutils_pep517_install. Signed-off-by: Michał Górny --- eclass/distutils-r1.eclass | 9 - 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index

[gentoo-dev] [PATCH 0/7] distutils-r1.eclass: wheel reuse optimization, EPYTEST_FLAGS and scikit-build-core updates

2024-05-15 Thread Michał Górny
invocation (e.g. `-x` to make them stop on first failure, or `-s` to disable output capture). 3. Support passing ninja options to scikit-build-core, and update invocation for bugfixes from 0.9.4. Michał Górny (7): distutils-r1.eclass: Set DISTUTILS_WHEEL_PATH in PEP517 install distutils-r1

[gentoo-dev] [PATCH v2] cargo.eclass: Optimize crate unpacking

2024-05-15 Thread Michał Górny
Unpack crates in parallel using xargs to utilize multicore systems better. Perform checksumming via a single sha256sum invocation. For dev-python/watchfiles, this speeds up unpacking on my machine from 2.6 s to 0.75 s (warm cache). Signed-off-by: Michał Górny --- eclass/cargo.eclass | 56

Re: [gentoo-dev] [PATCH] cargo.eclass: Optimize crate unpacking

2024-05-13 Thread Michał Górny
On Mon, 2024-05-13 at 16:00 +0200, Florian Schmaus wrote: > On 12/05/2024 20.21, Michał Górny wrote: > > On Sun, 2024-05-12 at 19:22 +0200, Florian Schmaus wrote: > > > On 12/05/2024 04.26, Michał Górny wrote: > > > > + if [[ ${PKGBUMPING} != ${PVR} ]]; then

Re: [gentoo-dev] [PATCH] cargo.eclass: Optimize crate unpacking

2024-05-12 Thread Michał Górny
On Sun, 2024-05-12 at 19:22 +0200, Florian Schmaus wrote: > On 12/05/2024 04.26, Michał Górny wrote: > > Unpack crates in parallel using xargs to utilize multicore systems > > better. Perform checksumming via a single sha256sum invocation. > > > > For dev-python

[gentoo-dev] [PATCH] cargo.eclass: Optimize crate unpacking

2024-05-11 Thread Michał Górny
Unpack crates in parallel using xargs to utilize multicore systems better. Perform checksumming via a single sha256sum invocation. For dev-python/watchfiles, this speeds up unpacking on my machine from 2.6 s to 0.75 s (warm cache). Signed-off-by: Michał Górny --- eclass/cargo.eclass | 56

Re: [gentoo-dev] [PATCH 3/4] acct-user.eclass: use an eclass variable for the override variable name

2024-05-09 Thread Michał Górny
On Thu, 2024-05-09 at 08:12 -0400, Michael Orlitzky wrote: > On Thu, 2024-05-09 at 14:03 +0200, Michał Górny wrote: > > > @ECLASS_VARIABLE: _OVERRIDE_NAME > > > > This is not prefixed correctly. > > > > ACCT_USER_OVERRIDE_NAME has an entirely

Re: [gentoo-dev] [PATCH 3/4] acct-user.eclass: use an eclass variable for the override variable name

2024-05-09 Thread Michał Górny
ewarn "config, override with ACCT_USER_${override_name}_GROUPS > or" > - ewarn "ACCT_USER_${override_name}_GROUPS_ADD in make.conf." > + ewarn "config, override with ACCT_USER_${_OVERRIDE_NAME}_GROUPS > or" > + ewarn "ACCT_USER_${_OVERRIDE_NAME}_GROUPS_ADD in make.conf." > ewarn "Documentation reference:" > ewarn > "https://wiki.gentoo.org/wiki/Practical_guide_to_the_GLEP_81_migration#Override_user_groups; > fi -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

Re: [gentoo-dev] [PATCH 1/4] acct-user.eclass: make ACCT_USER_NAME writable

2024-05-09 Thread Michał Górny
would prohibit some otherwise-valid usernames. You're not following the original style (double spaces). > ACCT_USER_NAME=${PN} > -readonly ACCT_USER_NAME > > # @ECLASS_VARIABLE: ACCT_USER_ID > # @REQUIRED -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

Re: [gentoo-dev] [RFC] Gentoo Bugzilla: new resolution for bugs closed due to last rites

2024-05-08 Thread Michał Górny
On Wed, 2024-02-07 at 12:03 +0100, Michał Górny wrote: > Hi, > > I think we should add a new bug resolution that would more precisely > cover closing bugs due to packages being removed. Right now, whichever > resolution we use (be it WONTFIX, OBSOLETE, etc.), we aren't a

Re: [gentoo-dev] Up for grabs: several (34) Qt-based applications and related packages

2024-05-08 Thread Michał Górny
On Sat, 2024-05-04 at 12:07 -0400, Ionen Wolkens wrote: > * x11-libs/qscintilla > Adding dev-python/qscintilla-python to that. We've became maintainer via fallback, though we've never touched that package and it has no tests. -- Best regards, Michał Górny signature.asc Descr

[gentoo-dev] [REVIEW news] 2024-05-09-python3-12: Add

2024-05-06 Thread Michał Górny
Signed-off-by: Michał Górny --- .../2024-05-09-python3-12.en.txt | 120 .../2024-05-09-python3-12.pl.txt | 133 ++ 2 files changed, 253 insertions(+) create mode 100644 2024-05-09-python3-12/2024-05-09-python3-12.en.txt create mode

[gentoo-dev] Last rites: dev-games/poker-eval

2024-05-05 Thread Michał Górny
# Michał Górny (2024-05-05) # A library last bumped in 2010.  Homepage gone.  No revdeps. # Removal on 2024-06-04.  Bug #909527. dev-games/poker-eval -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] Last rites: dev-games/hawknl

2024-05-05 Thread Michał Górny
# Michał Górny (2024-05-05) # A library last bumped in 2004.  Homepage gone.  Carries patches # and hacks already.  No reverse dependencies. # Removal on 2024-06-04.  Bug #909581. dev-games/hawknl -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message

[gentoo-dev] Last rites: dev-python/ovs, net-misc/openvswitch

2024-05-05 Thread Michał Górny
# Michał Górny (2024-05-05) # Effectively unmaintained.  Unpatched vulnerability reported # in February.  The Python counterpart is even more outdated. # Removal on 2024-06-04.  Bug #924129. dev-python/ovs net-misc/openvswitch -- Best regards, Michał Górny signature.asc Description

[gentoo-dev] Last rites: net-dns/mydns

2024-05-05 Thread Michał Górny
# Michał Górny (2024-05-05) # An unmaintained fork of an unmaintained DNS server.  All successive # homepages are gone.  Last commit in 2014.  Already carries a lot # of patches and hacks. # Removal on 2024-06-04.  Bug #928942. net-dns/mydns -- Best regards, Michał Górny signature.asc

[gentoo-dev] Last rites: dev-python/dask, dev-python/dask-expr

2024-05-03 Thread Michał Górny
# Michał Górny (2024-05-04) # A really bad quality package with a never-ending stream of unclear # test failures, and blocked keywording and stabilization bugs. # The bump to the most recent release is blocked by a ton of test # regressions.  No reverse dependencies left. # Removal on 2024-06-03

Re: [gentoo-dev] Projects without members: ALSA, PHP, VDR

2024-05-01 Thread Michał Górny
On Wed, 2024-05-01 at 17:12 +0200, Martin Dummer wrote: > Am 01.05.24 um 16:03 schrieb Michał Górny: > > The following projects have no members right now: > > > > https://wiki.gentoo.org/wiki/Project:VDR > > > I am already proxy maintainer for 27 vdr packa

Re: [gentoo-dev] [PATCH] .github: Add pull request template

2024-05-01 Thread Michał Górny
On Wed, 2024-05-01 at 10:28 -0400, Ionen Wolkens wrote: > On Wed, May 01, 2024 at 03:32:21PM +0200, Michał Górny wrote: > > The idea is to increase awareness of the AI policy, as well as other > > rules, and to inform users before they submit a PR. > > Bit mixed feel

Re: [gentoo-dev] [PATCH] .github: Add pull request template

2024-05-01 Thread Michał Górny
ing people to check 8 checkboxes is a bit much. -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] Projects without members: ALSA, PHP, VDR

2024-05-01 Thread Michał Górny
regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] [PATCH] .github: Add pull request template

2024-05-01 Thread Michał Górny
Signed-off-by: Michał Górny --- .github/pull_request_template.md | 12 1 file changed, 12 insertions(+) create mode 100644 .github/pull_request_template.md The idea is to increase awareness of the AI policy, as well as other rules, and to inform users before they submit a PR

[gentoo-dev] Last rites: dev-python/sphinxcontrib-newsfeed

2024-04-23 Thread Michał Górny
# Michał Górny (2024-04-23) # No py3.12, no tests, no maintainer.  Also no revdeps. # Removal on 2024-05-23.  Bug #929513. dev-python/sphinxcontrib-newsfeed -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] Last rites: dev-python/pytest-faulthandler

2024-04-23 Thread Michał Górny
# Michał Górny (2024-04-23) # Integrated into >=dev-python/pytest-5.0.  No revdeps. # Removal on 2024-05-23.  Bug #929496. dev-python/pytest-faulthandler -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] Last rites: dev-python/pyannotate

2024-04-23 Thread Michał Górny
# Michał Górny (2024-04-23) # Broken with py3.12.  Last commit upstream in 2021.  No revdeps. # Removal on 2024-05-23.  Bug #929484. dev-python/pyannotate -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] Last rites: dev-python/kafka-python

2024-04-23 Thread Michał Górny
# Michał Górny (2024-04-23) # No py3.12, broken.  Upstream literally tells people to use a fork # "for the time being".  No revdeps. # Removal on 2024-05-23.  Bug #929461. dev-python/kafka-python -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] Last rites: dev-python/cgroup-utils

2024-04-23 Thread Michał Górny
# Michał Górny (2024-04-23) # Unmaintained.  No py3.12, failing tests.  Last upstream activity # in 2020, triggered by our previous last rites.  No revdeps. # Removal on 2024-05-23.  Bug #929445. dev-python/cgroup-utils -- Best regards, Michał Górny signature.asc Description

[gentoo-dev] Last rites: dev-python/guzzle_sphinx_theme

2024-04-23 Thread Michał Górny
# Michał Górny (2024-04-23) # Unmaintained Sphinx theme.  Last commit in 2021.  No revdeps. # Removal on 2024-05-23.  Bug #929458. dev-python/guzzle_sphinx_theme -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] Last rites: dev-python/fuse-python

2024-04-23 Thread Michał Górny
# Michał Górny (2024-04-23) # Unmaintained in Gentoo.  Lacking tests, py3.12 support, outdated. # No revdeps.  The alternatives are dev-python/{llfuse,pyfuse3}. # Removal on 2024-05-23.  Bug #929453. dev-python/fuse-python -- Best regards, Michał Górny signature.asc Description

[gentoo-dev] Last rites: net-analyzer/tcpstat

2024-04-23 Thread Michał Górny
# Michał Górny (2024-04-23) # Unmaintained.  Last release in 2003.  Carries a ton of patches. # Removal on 2024-05-23.  Bug #928731. net-analyzer/tcpstat -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

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

2024-04-23 Thread Michał Górny
# Michał Górny (2024-04-23) # Added in 2005 and not updated since.  Homepage and source mirrors # are gone.  Needs patches to even build. # Removal on 2024-05-23.  Bug #928594. media-video/vstrip -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] Last rites: net-im/librvp

2024-04-23 Thread Michał Górny
# Michał Górny (2024-04-23) # Obsolete Pidgin plugin.  Last supported in 2008, removed from plugin # list in 2019. # Removal on 2024-05-23.  Bug #928578. net-im/librvp -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] Last rites: media-sound/pitchtune

2024-04-23 Thread Michał Górny
# Michał Górny (2024-04-23) # Unmaintained GTK+2 application.  Last update in 2005. # Alternatives include media-sound/fmit and media-sound/lingot. # Removal on 2024-05-23.  Bug #928512. media-sound/pitchtune -- Best regards, Michał Górny signature.asc Description: This is a digitally signed

[gentoo-dev] Last rites: net-analyzer/gensink

2024-04-23 Thread Michał Górny
# Michał Górny (2024-04-23) # Ancient.  Homepage gone.  There are many alternative network testing # tools, such as net-misc/iperf. # Removal on 2024-05-23.  Bug #928133. net-analyzer/gensink -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] Last rites: dev-python/sphinx-py3doc-enhanced-theme

2024-04-23 Thread Michał Górny
# Michał Górny (2024-04-23) # An old, unmaintained theme.  The last revdep stopped using it. # Removal on 2024-05-23.  Bug #927764. dev-python/sphinx-py3doc-enhanced-theme -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] Last rites: dev-util/android-ndk

2024-04-23 Thread Michał Górny
# Michał Górny (2024-04-23) # Unmaintained in Gentoo and seriously outdated.  EAPI 6.  No revdeps. # There seem to be an up-to-date ebuilds in ::mva. # Removal on 2024-05-23.  Bug #928070. dev-util/android-ndk -- Best regards, Michał Górny signature.asc Description: This is a digitally

[gentoo-dev] Last rites: app-forensics/libewf

2024-04-23 Thread Michał Górny
# Michał Górny (2024-04-23) # Unmaintained in Gentoo and seriously outdated.  Its only reverse # dependency is app-admin/testdisk, and the current TestDisk versions # do not build against this version anyway # Removal on 2024-05-23.  Bug #927076. app-forensics/libewf -- Best regards, Michał

[gentoo-dev] Last rites: dev-python/tinycss

2024-04-23 Thread Michał Górny
# Michał Górny (2024-04-23) # Superseded by dev-python/tinycss2.  No revdeps. # Removal on 2024-05-23.  Bug #930503. dev-python/tinycss -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] Package up for grabs: net-p2p/eiskaltdcpp

2024-04-21 Thread Michał Górny
. -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] AI policy approved

2024-04-15 Thread Michał Górny
de this new information to our contributors. [1] https://wiki.gentoo.org/wiki/Project:Council/AI_policy -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] Package up for grabs: dev-vcs/git-filter-repo

2024-04-14 Thread Michał Górny
, the package needs py3.12 and PEP517 ports. -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

Re: [gentoo-dev] Update on the 23.0 profiles

2024-04-07 Thread Michał Górny
mpression library that's already installed by default (because you need it to unpack distfiles) is very little compared to the cost of suddenly discovering that things don't work. -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

Re: [gentoo-dev] Update on the 23.0 profiles

2024-04-07 Thread Michał Górny
best Gentoo response right now would be to frantically remove LZMA support everywhere? I'm sure that would be so much better than our response of masking vulnerable versions and issuing a statement. -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] Packages up for grabs

2024-04-03 Thread Michał Górny
The following packages are looking for a new home: net-irc/limnoria net-irc/limnoria-plugins-chantracker net-irc/limnoria-plugins-jlu5 net-irc/limnoria-plugins-progval sys-apps/kcheck sys-apps/the_silver_searcher x11-wm/jwm -- Best regards, Michał Górny signature.asc Description

[gentoo-dev] Packages up for grabs

2024-04-03 Thread Michał Górny
/e16menuedit2 x11-plugins/e16-epplets x11-themes/e16-themes x11-wm/e16 -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] Packages up for grabs

2024-04-03 Thread Michał Górny
sys-process/ftop sys-process/memwatch www-apps/zeppelin-bin www-client/fetch x11-libs/xforms x11-misc/sct -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

Re: [gentoo-dev] Current unavoidable use of xz utils in Gentoo

2024-04-01 Thread Michał Górny
ng, outright hostile or primarily contributing by walls of text on a mailing lists, that bring nothing to discussion except for furthering the burnout of open source developers who are actually trying to do something. Think about that. -- Best regards, Michał Górny signature.asc Description: This is

[gentoo-dev] Last rites: dev-python/nspektr

2024-03-30 Thread Michał Górny
# Michał Górny (2024-03-30) # NIH package that was added for dev-python/setuptools but is no longer # used there. # Removal on 2024-04-29.  Bug #928270. dev-python/nspektr -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

Re: [gentoo-dev] Current unavoidable use of xz utils in Gentoo

2024-03-30 Thread Michał Górny
On Sat, 2024-03-30 at 15:17 +, Eddie Chapman wrote: > Michał Górny wrote: > > On Sat, 2024-03-30 at 14:57 +, Eddie Chapman wrote: > > > > > Note, I'm not advocating ripping xz-utils out of tree, all I'm saying > > > is wouldn't it be nice if there were

Re: [gentoo-dev] Current unavoidable use of xz utils in Gentoo

2024-03-30 Thread Michał Górny
ebuilds, right? -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] [PATCH] python-utils-r1.eclass: epytest, error out on missing async plugin

2024-03-29 Thread Michał Górny
. However, a missing dependency can result in the tests being skipped afterwards on the tinderbox. Signed-off-by: Michał Górny --- eclass/python-utils-r1.eclass | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass index caa39813feec

Re: [gentoo-dev] [PATCH] metadata/install-qa-check.d: make the FHS paths warning easier to read

2024-03-29 Thread Michał Górny
ected directories:" > eqawarn > - eqatag -v non-gentoo-paths "${bad_paths[@]}" > + eqatag -v non-gentoo-paths "${bad_paths[@]#${D%/}}" > eqawarn > eqawarn "Please fix the ebuild to use correct FHS/Gentoo policy > paths." > fi LGTM. Thanks! -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] [PATCH 7/7] distutils-r1.eclass: Remove more junk from .dist-info

2024-03-26 Thread Michał Górny
Closes: https://bugs.gentoo.org/927818 Signed-off-by: Michał Górny --- eclass/distutils-r1.eclass | 15 --- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 22b28e915859..7a314673a90b 100644 --- a/eclass

[gentoo-dev] [PATCH 6/7] distutils-r1.eclass: Fix `det unittest` with 3.12 only

2024-03-26 Thread Michał Górny
Closes: https://bugs.gentoo.org/926964 Signed-off-by: Michał Górny --- eclass/distutils-r1.eclass | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index a1617999a037..22b28e915859 100644 --- a/eclass/distutils-r1

[gentoo-dev] [PATCH 5/7] distutils-r1.eclass: Refactor `distutils_enable_tests pytest`

2024-03-26 Thread Michał Górny
Refactor `distutils_enable_tests pytest` to move `test_pkgs` logic straight into pytest block, as it is not used by any other variant anymore. Signed-off-by: Michał Górny --- eclass/distutils-r1.eclass | 20 +--- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git

[gentoo-dev] [PATCH 4/7] distutils-r1.eclass: Remove nosetests support

2024-03-26 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/distutils-r1.eclass | 8 1 file changed, 8 deletions(-) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 16d97501012b..44553f8da6f3 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -572,8 +572,6

[gentoo-dev] [PATCH 3/7] dev-python/jsonref: Use pdm-backend

2024-03-26 Thread Michał Górny
Signed-off-by: Michał Górny --- dev-python/jsonref/jsonref-1.1.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/jsonref/jsonref-1.1.0.ebuild b/dev-python/jsonref/jsonref-1.1.0.ebuild index 59041a7158cf..6233424f0523 100644 --- a/dev-python/jsonref

[gentoo-dev] [PATCH 2/7] distutils-r1.eclass: Run pdm.pep517.api via pdm-backend

2024-03-26 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/distutils-r1.eclass | 21 - 1 file changed, 4 insertions(+), 17 deletions(-) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index e4b17c433e5d..16d97501012b 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass

[gentoo-dev] [PATCH 1/7] distutils-r1.eclass: Bump minimal dep versions

2024-03-26 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/distutils-r1.eclass | 28 ++-- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 9be994595529..e4b17c433e5d 100644 --- a/eclass/distutils-r1.eclass +++ b

Re: [gentoo-dev] [PATCH 2/2] sys-apps/systemd-utils: add workaround for no-multilib

2024-03-26 Thread Michał Górny
rs. -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] Last rites: dev-python/simplegeneric

2024-03-26 Thread Michał Górny
# Michał Górny (2024-03-26) # Last release in 2012.  No reverse dependencies. # Removal on 2024-04-25.  Bug #927524. dev-python/simplegeneric -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] Last rites: net-misc/blinkperl

2024-03-26 Thread Michał Górny
# Michał Górny (2024-03-26) # Unmaintained.  EAPI 6.  Homepage gone.  No keywords for modern # architectures. # Removal on 2024-04-25.  Bug #927208. net-misc/blinkperl -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] Last rites: net-misc/felix

2024-03-26 Thread Michał Górny
# Michał Górny (2024-03-26) # Unmaintained.  Multiple bugs open.  The current version is from 2018, # and it has been discontinued as a separate package since. # Removal on 2024-04-25.  Bug #926861. net-misc/felix -- Best regards, Michał Górny signature.asc Description: This is a digitally

[gentoo-dev] Last rites: app-pda/iripdb

2024-03-26 Thread Michał Górny
# Michał Górny (2024-03-26) # Unmaintained.  EAPI 6.  Homepage gone. # Removal on 2024-04-25.  Bug #926860. app-pda/iripdb -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] Last rites: media-fonts/dzongkha-fonts

2024-03-26 Thread Michał Górny
# Michał Górny (2024-03-26) # Unfetchable proprietary fonts.  The alternatives include # media-fonts/jomolhari and "Noto Serif Tibetan" from media-fonts/noto. # Removal on 2024-04-25.  Bug #926836. media-fonts/dzongkha-fonts -- Best regards, Michał Górny signature.asc D

[gentoo-dev] Last rites: x11-libs/scw

2024-03-26 Thread Michał Górny
# Michał Górny (2024-03-26) # A dead wiget library with no reverse dependencies.  Homepage gone. # Removal on 2024-04-25.  Bug #926604. x11-libs/scw -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] Last rites: sys-firmware/bluez-firmware

2024-03-26 Thread Michał Górny
# Michał Górny (2024-03-26) # Deprecated upstream and the URL no longer works. # Removal on 2024-04-25.  Bug #926550. sys-firmware/bluez-firmware -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] Last rites: dev-python/anyqt

2024-03-26 Thread Michał Górny
# Michał Górny (2024-03-26) # Wrapper library that's stuck on Qt5.  No reverse dependencies left. # Removal on 2024-04-25.  Bug #926548. dev-python/anyqt -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] Last rites: dev-python/sumtypes

2024-03-26 Thread Michał Górny
# Michał Górny (2024-03-26) # Unfinished package from 2021 that was added as a short-lived # dependency of dev-python/GitPython.  No reverse dependencies remain. # Removal on 2024-04-25.  Bug #924683. dev-python/sumtypes -- Best regards, Michał Górny signature.asc Description

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

2024-03-26 Thread Michał Górny
# Michał Górny (2024-03-26) # Uses deprecated distutils-r1 API.  The current version is outdated, # from mid-2022.  No reverse dependencies. # Removal on 2024-04-25.  Bug #910015. sci-biology/HTSeq -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message

[gentoo-dev] Last rites: media-libs/libopenshot, media-libs/libopenshot-audio, media-video/openshot

2024-03-26 Thread Michał Górny
# Michał Górny (2024-03-26) # Uses deprecated distutils-r1 API.  Depends on dev-qt/qtwebengine:5. # Includes the libraries with no other reverse dependencies. # Removal on 2024-04-25.  Bug #909996. media-libs/libopenshot media-libs/libopenshot-audio media-video/openshot -- Best regards, Michał

[gentoo-dev] Last rites: sys-auth/pam_ssh

2024-03-26 Thread Michał Górny
# Michał Górny (2024-03-26) # Issues with OpenSSL 3.  Unmaintained.  Last activity in 2019. # Removal on 2024-04-25.  Bug #892031. sys-auth/pam_ssh -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] Last rites: app-misc/tek

2024-03-26 Thread Michał Górny
# Michał Górny (2024-03-26) # Fails to compile.  Unmaintained.  Last activity in 2016. # Depends on an old wxGTK slot. # Removal on 2024-04-25.  Bug #895222. app-misc/tek -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

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

2024-03-26 Thread Michał Górny
# Michał Górny (2024-03-26) # Bad C++ code.  Unmaintained.  Carries a number of patches already. # No reverse dependencies. # Removal on 2024-04-25.  Bug #924925. dev-libs/zthread -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

[gentoo-dev] Last rites: dev-python/prov

2024-03-23 Thread Michał Górny
# Michał Górny (2024-03-23) # No maintainer.  Broken tests.  Not ported to PEP517 build. # No release since 2020, little activity since.  No revdeps. # Removal on 2024-04-22.  Bug #911780. dev-python/prov -- Best regards, Michał Górny signature.asc Description: This is a digitally signed

[gentoo-dev] Last rites: dev-python/sphinxcontrib-asyncio

2024-03-23 Thread Michał Górny
# Michał Górny (2024-03-23) # Apparently broken.  No tests.  Last code change in 2016.  No revdeps. # Removal on 2024-04-22.  Bug #892613. dev-python/sphinxcontrib-asyncio -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part

Re: [gentoo-dev] RFC: banning "AI"-backed (LLM/GPT/whatever) contributions to Gentoo

2024-03-21 Thread Michał Górny
On Tue, 2024-02-27 at 15:45 +0100, Michał Górny wrote: > Given the recent spread of the "AI" bubble, I think we really need to > look into formally addressing the related concerns. In my opinion, > at this point the only reasonable course of action would be to safel

  1   2   3   4   5   6   7   8   9   10   >