[gentoo-dev] Python 3.11 porting sprint!

2023-02-15 Thread Michał Górny
, with maintainers listed: https://qa-reports.gentoo.org/output/gpyutils/310-to-311.svg Some porting tips: https://projects.gentoo.org/python/guide/porting.html#python-3-11 TIA! -- Best regards, Michał Górny

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

2023-02-15 Thread Michał Górny
# Michał Górny (2023-02-15) # A number of test failures, and the test phase does not fail correctly. # Last release in 2019.  No revdeps. # Removal on 2023-03-17.  Bug #894606. dev-python/urlgrabber -- Best regards, Michał Górny

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

2023-02-15 Thread Michał Górny
# Michał Górny (2023-02-15) # Unmaintained.  Broken with current version of dev-python/pyglet. # No upstream activity since Sep 2021.  No revdeps. # Removal on 2023-03-17.  Bug #887973. dev-python/glooey -- Best regards, Michał Górny

[gentoo-dev] Last rites: net-p2p/bittornado

2023-02-14 Thread Michał Górny
# Michał Górny (2023-02-14) # Unmaintained and archived.  Invalid version number causes total mayhem # when installed alongside new dev-python/packaging. # Removal on 2023-03-16.  Bug #894222. net-p2p/bittornado -- Best regards, Michał Górny

[gentoo-dev] [PATCH 2/2] pypi.eclass: Add PYPI_NO_NORMALIZE control var

2023-02-11 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/pypi.eclass | 19 --- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/eclass/pypi.eclass b/eclass/pypi.eclass index f4367b3fbfec..182b0b6b8c3e 100644 --- a/eclass/pypi.eclass +++ b/eclass/pypi.eclass @@ -12,7 +12,8

[gentoo-dev] [PATCH 1/2] pypi.eclass: Normalize PN and translate PV for S as well

2023-02-11 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/pypi.eclass | 19 ++- eclass/tests/pypi.sh | 3 +++ 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/eclass/pypi.eclass b/eclass/pypi.eclass index be0e498fcbf3..f4367b3fbfec 100644 --- a/eclass/pypi.eclass +++ b/eclass

Re: [gentoo-dev] [PATCH 0/7] pypi.eclass: Filename and version normalization

2023-02-11 Thread Michał Górny
On Sat, 2023-02-11 at 10:16 +0100, Michał Górny wrote: > Hi, > > Here's a major patchset to the recently committed pypi.eclass (i.e. > the "change while it's still warm and not used much" kind). > > It focuses on two significant changes: > > 1. Normalizing

[gentoo-dev] [PATCH 7/7] pypi.eclass: Translate ${PV} by default

2023-02-11 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/pypi.eclass | 21 +++-- eclass/tests/pypi.sh | 24 2 files changed, 27 insertions(+), 18 deletions(-) diff --git a/eclass/pypi.eclass b/eclass/pypi.eclass index 27bd17403100..be0e498fcbf3 100644 --- a/eclass

[gentoo-dev] [PATCH 6/7] pypi.eclass: Add a version translation function

2023-02-11 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/pypi.eclass | 19 +++ eclass/tests/pypi.sh | 7 +++ 2 files changed, 26 insertions(+) diff --git a/eclass/pypi.eclass b/eclass/pypi.eclass index dd24b8337e62..27bd17403100 100644 --- a/eclass/pypi.eclass +++ b/eclass/pypi.eclass

[gentoo-dev] [PATCH 5/7] pypi.eclass: Normalize sdist filenames by default

2023-02-11 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/pypi.eclass | 23 +++ eclass/tests/pypi.sh | 27 --- 2 files changed, 43 insertions(+), 7 deletions(-) diff --git a/eclass/pypi.eclass b/eclass/pypi.eclass index a3c38aa5f3ec..dd24b8337e62 100644 --- a/eclass

[gentoo-dev] [PATCH 4/7] pypi.eclass: Add `--unpack` to usage error in pypi_wheel_url

2023-02-11 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/pypi.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/pypi.eclass b/eclass/pypi.eclass index c7b9604807eb..a3c38aa5f3ec 100644 --- a/eclass/pypi.eclass +++ b/eclass/pypi.eclass @@ -134,7 +134,7 @@ pypi_wheel_url

[gentoo-dev] [PATCH 3/7] pypi.eclass: Normalize wheel filenames

2023-02-11 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/pypi.eclass | 5 +++-- eclass/tests/pypi.sh | 33 + 2 files changed, 36 insertions(+), 2 deletions(-) diff --git a/eclass/pypi.eclass b/eclass/pypi.eclass index 3a37214f8977..c7b9604807eb 100644 --- a/eclass/pypi.eclass

[gentoo-dev] [PATCH 2/7] pypi.eclass: Add a name normalization function

2023-02-11 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/pypi.eclass | 20 eclass/tests/pypi.sh | 32 2 files changed, 52 insertions(+) create mode 100755 eclass/tests/pypi.sh diff --git a/eclass/pypi.eclass b/eclass/pypi.eclass index d00b1171fd16

[gentoo-dev] [PATCH 1/7] pypi.eclass: Use pypi_sdist_url to generate the default SRC_URI

2023-02-11 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/pypi.eclass | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/eclass/pypi.eclass b/eclass/pypi.eclass index e9d3eec1268b..d00b1171fd16 100644 --- a/eclass/pypi.eclass +++ b/eclass/pypi.eclass @@ -34,10 +34,6 @@ esac

[gentoo-dev] [PATCH 0/7] pypi.eclass: Filename and version normalization

2023-02-11 Thread Michał Górny
.com/gentoo/gentoo/pull/29526 Fortunately, breakage is easy to detect by remanifesting ebuilds. -- Best regards, Michał Górny Michał Górny (7): pypi.eclass: Use pypi_sdist_url to generate the default SRC_URI pypi.eclass: Add a name normalization function pypi.eclass: Normalize wheel filenames pypi

Re: [gentoo-dev] [PATCH 4/7] cargo.eclass: set progress.when = "never" in config

2023-02-10 Thread Michał Górny
On Fri, 2023-02-10 at 13:13 -0800, Georgy Yakovlev wrote: > On Fri, 2023-02-10 at 07:03 +0100, Michał Górny wrote: > > On Thu, 2023-02-09 at 12:48 -0800, Georgy Yakovlev wrote: > > > to avoid possible log file pollution > > > > > > Signed-off-by: Geor

Re: [gentoo-dev] [PATCH 4/7] cargo.eclass: set progress.when = "never" in config

2023-02-09 Thread Michał Górny
= > 'never'") > + progress.when = "never" > $(_cargo_gen_git_config) > _EOF_ > What's that and why don't we want it? I thought we generally preferred more verbosity. -- Best regards, Michał Górny

[gentoo-dev] Putting CC and CXX into make.conf

2023-02-09 Thread Michał Górny
to having them set by default, except for the potentially problematic migration of existing systems. What are your thoughts? -- Best regards, Michał Górny

Re: [gentoo-dev] Breaking changes in dev-libs/msgpack-5.0.0

2023-02-06 Thread Michał Górny
revdep update. There is a > tracker bug "msgpack-5" which can be used to group related issues. > Given there's only a handful of revdeps, perhaps you could simply test them? -- Best regards, Michał Górny

[gentoo-dev] [PATCH 4/4] dev-python/tomli: Use pypi.eclass

2023-02-05 Thread Michał Górny
Signed-off-by: Michał Górny --- dev-python/tomli/tomli-2.0.1-r1.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dev-python/tomli/tomli-2.0.1-r1.ebuild b/dev-python/tomli/tomli-2.0.1-r1.ebuild index 8a65a1c1633a..0dca726d29eb 100644 --- a/dev-python/tomli/tomli

[gentoo-dev] [PATCH 3/4] dev-python/installer: Use pypi.eclass

2023-02-05 Thread Michał Górny
Signed-off-by: Michał Górny --- dev-python/installer/installer-0.6.0.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dev-python/installer/installer-0.6.0.ebuild b/dev-python/installer/installer-0.6.0.ebuild index 5310b5520a29..fcb3784df3fd 100644 --- a/dev-python

[gentoo-dev] [PATCH 2/4] pypi.eclass: Permit EAPI 7

2023-02-05 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/pypi.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/pypi.eclass b/eclass/pypi.eclass index ea57b2345502..e9d3eec1268b 100644 --- a/eclass/pypi.eclass +++ b/eclass/pypi.eclass @@ -6,7 +6,7 @@ # Michał Górny # @AUTHOR

[gentoo-dev] [PATCH 1/4] pypi.eclass: Support --unpack in pypi_wheel_url

2023-02-05 Thread Michał Górny
Add a handy `--unpack` option to pypi_wheel_url, that automatically renames the downloaded distfile to have .zip suffix. This is used e.g. in dev-python/installer and dev-python/tomli to have default_src_unpack unpack the wheels automatically. Signed-off-by: Michał Górny --- eclass/pypi.eclass

[gentoo-dev] Last rites: dev-python/python-box, dev-python/tavalidate

2023-02-05 Thread Michał Górny
# Michał Górny (2023-02-05) # dev-python/python-box has broken build system that prevents us from # bumping it.  Its only used by dev-python/tavern that is last rited, # and dev-python/tavalidate that no longer has any revdeps. # Removal on 2023-03-07. dev-python/python-box dev-python/tavalidate

[gentoo-dev] [PATCH] distutils-r1.eclass: Report stray top-level files in site-packages

2023-02-04 Thread Michał Górny
In addition to checking for known-bad package names, detect stray files installed into top-level site-packages directory. This is primarily meant to cover the common mistake in using `include` in Poetry-built packages. Closes: https://bugs.gentoo.org/893172 Signed-off-by: Michał Górny

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

2023-02-03 Thread Michał Górny
# Michał Górny (2023-02-03) # Uses unmaintained dev-python/future.  No reverse dependencies. # Removal on 2023-03-05.  Bug #888283. dev-python/textX -- Best regards, Michał Górny

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

2023-02-03 Thread Michał Górny
# Michał Górny (2023-02-03) # Hacky build system that does not work via PEP517 build backend. # No reverse dependencies. # Removal on 2023-03-05.  Bug #890321. dev-python/pyFFTW -- Best regards, Michał Górny

[gentoo-dev] Last rites: x11-themes/echo-icon-theme

2023-02-03 Thread Michał Górny
# Michał Górny (2023-02-03) # Dead upstream, no active maintainer, no reverse dependencies. # Removal on 2023-03-05.  Bug #892916. x11-themes/echo-icon-theme -- Best regards, Michał Górny

[gentoo-dev] Last rites: x11-themes/gtk-engines-nodoka

2023-02-03 Thread Michał Górny
# Michał Górny (2023-02-03) # Dead upstream, no active maintainer, no reverse dependencies, # build issues. # Removal on 2023-03-05.  Bug #892918. x11-themes/gtk-engines-nodoka -- Best regards, Michał Górny

[gentoo-dev] Last rites: dev-python/oauth2client and revdeps (app-misc/gcalcli, app-misc/goobook, net-misc/gsutil)

2023-02-03 Thread Michał Górny
# Michał Górny (2023-02-03) # The package has been archived upstream.  It is broken with all Python # versions supported by Gentoo, and it is broken with django-2. # The other listed packages are its reverse dependencies. # Removal on 2023-03-05.  Bug #718972. app-misc/gcalcli app-misc/goobook

Re: [gentoo-dev] [PATCH] pypi.eclass: A new eclass to aid creating PyPI SRC_URIs

2023-02-01 Thread Michał Górny
On Wed, 2023-02-01 at 23:20 +0100, Adrian Schollmeyer wrote: > Hi, > > Am Mittwoch, dem 01.02.2023 um 20:37 +0100 schrieb Michał Górny: > > +   printf "https://files.pythonhosted.org/packages/source/%s; \ > > +   "${project::1}/${project}/${project}

[gentoo-dev] Last rites: dev-python/citeproc-py, dev-python/duecredit

2023-02-01 Thread Michał Górny
# Michał Górny (2023-02-02) # dev-python/citeproc-py requires dev-python/nose and is not maintained # upstream.  Its only revdep, dev-python/duecredit has no reverse # dependencies left. # Removal on 2023-03-04.  Bug #888239. dev-python/citeproc-py dev-python/duecredit -- Best regards, Michał

[gentoo-dev] [PATCH] pypi.eclass: A new eclass to aid creating PyPI SRC_URIs

2023-02-01 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/pypi.eclass | 117 + 1 file changed, 117 insertions(+) create mode 100644 eclass/pypi.eclass Example use on: https://github.com/gentoo/gentoo/pull/29361 diff --git a/eclass/pypi.eclass b/eclass/pypi.eclass

[gentoo-dev] Last rites: dev-python/blockdiag, dev-python/sphinxcontrib-blockdiag

2023-02-01 Thread Michał Górny
# Michał Górny (2023-02-01) # dev-python/blockdiag still requires dev-python/nose.  There was a PR # made to switch to pytest in Feb 2020 but it's not progressing at all. # It was needed only for dev-python/aiohttp[doc]. # Removal on 2023-03-03.  Bug #888233. dev-python/blockdiag dev-python

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

2023-02-01 Thread Michał Górny
# Michał Górny (2023-02-01) # Requires legacy setuptools backend.  Hacky build system.  The only # revdep is dev-python/rdflib where it is entirely optional. # Removal on 2023-03-03.  Bug #892854. dev-python/berkeleydb -- Best regards, Michał Górny

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

2023-01-31 Thread Michał Górny
# Michał Górny (2023-01-31) # No tests, no activity since Aug 2020, no reverse dependencies. # Removal on 2023-03-02.  Bug #892744. dev-python/alagitpull -- Best regards, Michał Górny

[gentoo-dev] Last rites: dev-python/aiohttp-jinja2

2023-01-31 Thread Michał Górny
# Michał Górny (2023-01-31) # The test suite is broken (async tests don't run).  No revdeps. # Removal on 2023-03-02.  Bug #892742. dev-python/aiohttp-jinja2 -- Best regards, Michał Górny

Re: [gentoo-dev] dev-python/ package naming policy?

2023-01-31 Thread Michał Górny
On Sat, 2023-01-28 at 17:38 +0100, Michał Górny wrote: > Hi, everyone. > > TL;DR: I'd like to propose naming dev-python/* packages following PyPI > names whenever possible, case-preserving, with modifications only when > necessary to match PN rules. > The "relaxed&q

[gentoo-dev] [PATCH 5/5] distutils-r1.eclass: Remove code for gpep517 < 12

2023-01-31 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/distutils-r1.eclass | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index ab688a64e1a8..5b7a03b9bcc2 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass

[gentoo-dev] [PATCH 4/5] distutils-r1.eclass: Bump minimum pytest version

2023-01-31 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/distutils-r1.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 0bf5d51a363e..ab688a64e1a8 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass

[gentoo-dev] [PATCH 3/5] distutils-r1.eclass: Bump minimal build system versions

2023-01-31 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/distutils-r1.eclass | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 65d48a19e73d..0bf5d51a363e 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass

[gentoo-dev] [PATCH 2/5] python-utils-r1.eclass: Bump minimal Python versions

2023-01-31 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/python-utils-r1.eclass | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass index bc397229a670..be2183463550 100644 --- a/eclass/python-utils-r1.eclass +++ b/eclass/python

[gentoo-dev] [PATCH 1/5] distutils-r1.eclass: esetup.py, omit setup.cfg check in PEP517 mode

2023-01-31 Thread Michał Górny
Closes: https://bugs.gentoo.org/891959 Signed-off-by: Michał Górny --- eclass/distutils-r1.eclass | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 8896768d3ce9..65d48a19e73d 100644 --- a/eclass/distutils-r1

Re: [gentoo-dev] dev-python/ package naming policy?

2023-01-30 Thread Michał Górny
On Mon, 2023-01-30 at 16:11 +0500, Anna (cybertailor) Vyalkova wrote: > On 2023-01-30 12:00, Michał Górny wrote: > > However, there's a can of worms around the corner -- should we also > > allow normalizing "-" and "_" across different packages (see dev- &g

Re: [gentoo-dev] dev-python/ package naming policy?

2023-01-30 Thread Michał Górny
On Sat, 2023-01-28 at 17:38 +0100, Michał Górny wrote: > To improve consistency and make packages easier to find, I'd like to > propose going forward that when packages are published on PyPI, we use > their official PyPI names. This also means preserving the case for > the few packa

[gentoo-dev] [PATCH 2/2] verify-sig.eclass: Accept 1-out-of-n sigs on multisig files

2023-01-29 Thread Michał Górny
-by: Michał Górny --- eclass/verify-sig.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/verify-sig.eclass b/eclass/verify-sig.eclass index 95e8b357893a..2c8311db49f9 100644 --- a/eclass/verify-sig.eclass +++ b/eclass/verify-sig.eclass @@ -146,7 +146,7 @@ verify

[gentoo-dev] [PATCH 1/2] verify-sig.eclass: Use gemato openpgp-verify-detached

2023-01-29 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/verify-sig.eclass | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/eclass/verify-sig.eclass b/eclass/verify-sig.eclass index 394ce2e44427..95e8b357893a 100644 --- a/eclass/verify-sig.eclass +++ b/eclass/verify-sig.eclass

Re: [gentoo-dev] dev-python/ package naming policy?

2023-01-28 Thread Michał Górny
on why we should keep it, even if it makes the package name look "unnatural". -- Best regards, Michał Górny

Re: [gentoo-dev] Various packages up for grabs (avahi, curl, fcron, tor...)

2023-01-28 Thread Michał Górny
On Sat, 2023-01-28 at 21:18 +0100, Michał Górny wrote: > On Sat, 2023-01-28 at 21:11 +0100, Michał Górny wrote: > > Hi, > > > > Per blueness' request, some of his packages are now looking for a new > > maintainer. The affected packages are: > > > > Also

Re: [gentoo-dev] Various packages up for grabs (avahi, curl, fcron, tor...)

2023-01-28 Thread Michał Górny
On Sat, 2023-01-28 at 21:11 +0100, Michał Górny wrote: > Hi, > > Per blueness' request, some of his packages are now looking for a new > maintainer. The affected packages are: > Also packages that were left without a proxy: dev-libs/libbase58 net-misc/bfgminer -- Best regards, Michał Górny

[gentoo-dev] Various packages up for grabs (avahi, curl, fcron, tor...)

2023-01-28 Thread Michał Górny
-- Best regards, Michał Górny

Re: [gentoo-dev] dev-python/ package naming policy?

2023-01-28 Thread Michał Górny
foo" > instead of just "dev-python/foo". > So instead you claim "foo" and block adding actual "foo" later? -- Best regards, Michał Górny

Re: [gentoo-dev] dev-python/ package naming policy?

2023-01-28 Thread Michał Górny
On Sat, 2023-01-28 at 17:38 +0100, Michał Górny wrote: > TL;DR: I'd like to propose naming dev-python/* packages following PyPI > names whenever possible, case-preserving, with modifications only when > necessary to match PN rules. Based on existing remote-id entries, the following pack

[gentoo-dev] dev-python/ package naming policy?

2023-01-28 Thread Michał Górny
p-*). Then, there are of course Python packages that aren't published on PyPI. Still, I think as a general rule of thumb this would make sense. WDYT? [1] https://pypi.org/ -- Best regards, Michał Górny

Re: [gentoo-dev] Last rites: app-admin/gkrellm & plugins

2023-01-27 Thread Michał Górny
longer compiles, or… -- Best regards, Michał Górny

Re: [gentoo-dev] Last rites: app-admin/gkrellm & plugins

2023-01-27 Thread Michał Górny
On Fri, 2023-01-27 at 10:51 -0800, A Schenck wrote: > On 1/27/23 09:36, Michał Górny wrote: > > # Michał Górny (2023-01-27) > > # GKrellM and a variety of plugins.  It's unmaintained for some > > time. > > # Upstream homepage is gone, and the whole suite is collec

[gentoo-dev] Last rites: app-admin/gkrellm & plugins

2023-01-27 Thread Michał Górny
# Michał Górny (2023-01-27) # GKrellM and a variety of plugins.  It's unmaintained for some time. # Upstream homepage is gone, and the whole suite is collecting dust # and patches. # Removal on 2023-02-26.  Bug #892251. [also eclass/gkrellm-plugin.eclass] acct-group/gkrellmd acct-user/gkrellmd

[gentoo-dev] Last rites: www-misc/wsmake

2023-01-26 Thread Michał Górny
# Michał Górny (2023-01-26) # Unmaintained.  Last release in 2003.  The package fails to install # since Aug 2021 and while a fix would be trivial, there does not seem # to have been any interest in it during that period. # Removal on 2023-02-25.  Bug #806384. www-misc/wsmake -- Best regards

[gentoo-dev] Last rites: sys-cluster/wulfware

2023-01-25 Thread Michał Górny
# Michał Górny (2023-01-25) # Unmaintained.  Multiple build failure bugs reported.  This version # predates 2008, and seems to have been a removal candidate back then # already. # Removal on 2023-02-24.  Bug #837611. sys-cluster/wulfware -- Best regards, Michał Górny

[gentoo-dev] Last rites: sci-physics/herwig

2023-01-25 Thread Michał Górny
# Michał Górny (2023-01-25) # Unfetchable since at least 2021.  Mirror-restricted. # Removal on 2023-02-24.  Bug #761817. sci-physics/herwig -- Best regards, Michał Górny

Re: [gentoo-dev] [RFC] www-nginx/ category and nginx-module.eclass for nginx modules

2023-01-24 Thread Michał Górny
> The patchset is also available as PR #16053 on GitHub [1]. If this > patchset is applied, the other PR for adding nginx-vod-module [2] > probably becomes obsolete [2]. > How many packages do you expect to add to this new category? It's not customary to create a new category for one package. -- Best regards, Michał Górny

[gentoo-dev] Last rites: dev-python/pafy, media-sound/mps-youtube

2023-01-24 Thread Michał Górny
# Michał Górny (2023-01-24) # mps-youtube does not seem to work "out of the box".  It has had its # last release in 2018, and no commits since 2020.  It is the only # package needing dev-python/pafy, and pafy is the final package # requiring net-misc/youtube-dl. # Removal on 2023-0

[gentoo-dev] Last rites: media-libs/libextractor, media-libs/qtav, media-plugins/vdr-vaapidevice, media-sound/potamus, media-video/ffmpeg2theora

2023-01-21 Thread Michał Górny
# Michał Górny (2023-01-21) # Packages that are incompatible with ffmpeg-5. # # media-libs/libextractor: no Gentoo maintainer, ver from 2019, bug #834382 # media-libs/qtav: no Gentoo maintainer, no porting progress, bug #834386 # media-plugins/vdr-vaapidevice: no activity since 2019, bug #834390

[gentoo-dev] Last rites: games-strategy/wargus-data

2023-01-21 Thread Michał Górny
# Michał Górny (2023-01-21) # Obsoleted in favor of using extract-on-the-first-run feature # of games-strategy/wargus. # Removal on 2023-02-20.  Bug #578340. games-strategy/wargus-data -- Best regards, Michał Górny

Re: [gentoo-dev] Defining TZ in the base system profile?

2023-01-18 Thread Michał Górny
oddity has been around, > I can't tell if it's a genuine > bug in glibc, an unoptimized corner case, or just a big nothingburger. > Am I correct that there's no real difference between setting it to ":/etc/localtime" and the actual timezone? I suppose it would make sense to default it. -- Best regards, Michał Górny

[gentoo-dev] Eclass up for grabs: pam.eclass

2023-01-13 Thread Michał Górny
On Fri, 2023-01-13 at 14:35 +0100, Michał Górny wrote: > Friends, > > Our dear friend zlogene has been inactive recently, and for this reason > the packages listed below are looking for new maintainers. Please take > a look and see if you're interested in a few of them. >

[gentoo-dev] Packages of zlogene up for grabs

2023-01-13 Thread Michał Górny
/qtile -- Best regards, Michał Górny

Re: [gentoo-dev] [PATCH v2] distutils-r1.eclass: support nonfatal in test

2023-01-07 Thread Michał Górny
@ -1559,7 +1559,7 @@ distutils-r1_python_test() { > esac > > if [[ ${?} -ne 0 ]]; then > - die "Tests failed with ${EPYTHON}" > + die -n "Tests failed with ${EPYTHON}" > fi > } > Merged now. -- Best regards, Michał Górny

Re: [gentoo-dev] [PATCH v2] distutils-r1.eclass: support nonfatal in test

2023-01-06 Thread Michał Górny
times a running dirmngr process > solely running since days. /me wonders if that's the result of a similar > scenario? > Normally it shouldn't be happening since Portage uses PID namespace to kill all leftover processes. -- Best regards, Michał Górny

Re: [gentoo-dev] [PATCH v2] distutils-r1.eclass: support nonfatal in test

2023-01-06 Thread Michał Górny
@ -1559,7 +1559,7 @@ distutils-r1_python_test() { > esac > > if [[ ${?} -ne 0 ]]; then > - die "Tests failed with ${EPYTHON}" > + die -n "Tests failed with ${EPYTHON}" > fi > } > LGTM. I need to think if we have any changes pending. -- Best regards, Michał Górny

Re: [gentoo-dev] [PATCH] eclass/dune.eclass: introduce edune and dune-compile (v2)

2023-01-03 Thread Michał Górny
On Tue, 2023-01-03 at 15:47 +0100, Maciej Barć wrote: > > How do you pronounce it? ;-) > > Michał, I am not a phonetic expert but I guess it would be "e-dune", > like "e" in "e-mail" or "i-djun" in broken Polish. :-D I meant the "e-do-dune" part xP. -- Best regards, Michał Górny

Re: [gentoo-dev] [PATCH] eclass/dune.eclass: introduce edune and dune-compile (v2)

2023-01-02 Thread Michał Górny
t; } > > dune_src_test() { > ebegin "Testing" > - dune runtest -j $(makeopts_jobs) --profile release > + edune runtest -j $(makeopts_jobs) --profile release > eend $? || die > } > > @@ -80,7 +119,7 @@ dune-install() { > local pkg > for pkg in "${pkgs[@]}" ; do > ebegin "Installing ${pkg}" > - dune install ${myduneopts[@]} ${pkg} > + edune install ${myduneopts[@]} ${pkg} > eend $? || die > > # Move docs to the appropriate place. -- Best regards, Michał Górny

Re: [gentoo-dev] [PATCH 1/5] out-of-source-utils.eclass: New utility eclass

2023-01-02 Thread Michał Górny
On Mon, 2023-01-02 at 10:25 +0100, Ulrich Mueller wrote: > > > > > > On Sun, 01 Jan 2023, Michał Górny wrote: > > > +case ${EAPI} in > > + 6|7|8) ;; > > + *) die "${ECLASS}: EAPI ${EAPI} unsupported." > > Are you sure that this will work

[gentoo-dev] [PATCH 5/5] out-of-source.eclass: Document BUILD_DIR

2023-01-01 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/out-of-source.eclass | 7 +++ 1 file changed, 7 insertions(+) diff --git a/eclass/out-of-source.eclass b/eclass/out-of-source.eclass index 81e03f3894db..406d252621c3 100644 --- a/eclass/out-of-source.eclass +++ b/eclass/out-of-source.eclass @@ -40,6

[gentoo-dev] [PATCH 4/5] python-r1.eclass: Stop providing multibuild.eclass

2023-01-01 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/python-r1.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/python-r1.eclass b/eclass/python-r1.eclass index 622a479dcfa3..cda175dea136 100644 --- a/eclass/python-r1.eclass +++ b/eclass/python-r1.eclass @@ -8,7 +8,7

[gentoo-dev] [PATCH 3/5] multilib-build.eclass: Stop providing multibuild.eclass

2023-01-01 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/multilib-build.eclass | 1 - 1 file changed, 1 deletion(-) diff --git a/eclass/multilib-build.eclass b/eclass/multilib-build.eclass index 40cc426a1359..8984600055a5 100644 --- a/eclass/multilib-build.eclass +++ b/eclass/multilib-build.eclass @@ -7,7 +7,6

[gentoo-dev] [PATCH 2/5] multibuild.eclass: Provide run_in_build_dir from out-of-source-utils

2023-01-01 Thread Michał Górny
Remove the duplicate definition of run_in_build_dir() function and inherit out-of-source-utils to retain it for compatibility with the existing ebuilds in EAPIs 6, 7 and 8. In future EAPIs, the ebuilds needing it will inherit out-of-source-utils directly. Signed-off-by: Michał Górny --- eclass

[gentoo-dev] [PATCH 1/5] out-of-source-utils.eclass: New utility eclass

2023-01-01 Thread Michał Górny
it makes more sense for it to be standalone. In the end, eclasses are cheap. Signed-off-by: Michał Górny --- eclass/out-of-source-utils.eclass | 43 +++ 1 file changed, 43 insertions(+) create mode 100644 eclass/out-of-source-utils.eclass diff --git a/eclass/out

[gentoo-dev] Obsolete manifest-hashes in third-party repositories

2022-12-30 Thread Michał Górny
d manifest-hashes. TIA. [1] https://bugs.gentoo.org/885909 -- Best regards, Michał Górny

Re: [gentoo-dev] Last rites: app-portage/flaggie

2022-12-26 Thread Michał Górny
On Sun, 2022-12-25 at 18:02 +, m1027 wrote: > mgorny: > > > # Michał Górny (2022-12-25) > > # make.conf writing is broken and package.use support incomplete. > > # Last release in 2013.  Attempted unsuccessfully fixing it in 2017. > > # Use an editor instea

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

2022-12-25 Thread Michał Górny
# Michał Górny (2022-12-25) # Broken with pytest-7.2.  Repository archived upstream.  No reverse # dependencies. # Removal on 2023-01-24.  Bug #888219. dev-python/pytest-toolbox -- Best regards, Michał Górny

[gentoo-dev] Last rites: app-portage/gander

2022-12-25 Thread Michał Górny
# Michał Górny (2022-12-25) # The project did not catch, with hardly any data submissions. # Removal on 2023-01-24.  Bug #843344. app-portage/gander -- Best regards, Michał Górny

[gentoo-dev] Last rites: app-portage/flaggie

2022-12-25 Thread Michał Górny
# Michał Górny (2022-12-25) # make.conf writing is broken and package.use support incomplete. # Last release in 2013.  Attempted unsuccessfully fixing it in 2017. # Use an editor instead. # Removal on 2023-01-24.  Bug #888423. app-portage/flaggie -- Best regards, Michał Górny

[gentoo-dev] Last rites: dev-python/ndg-httpsclient

2022-12-24 Thread Michał Górny
# Michał Górny (2022-12-24) # Obsolete package with broken tests.  Last released in 2018, last # activity in 2021.  No reverse dependencies. # Removal on 2023-01-23.  Bug #888147. dev-python/ndg-httpsclient -- Best regards, Michał Górny

[gentoo-dev] Last rites: ROS packages

2022-12-24 Thread Michał Górny
# Michał Górny (2022-12-24) # RobotOS is suffering from serious lack of manpower in Gentoo. # While the packages are being bumped, the bugs reported against them # are not being addressed.  Whenever tests are present, they are often # failing and/or still relying on dead dev-python/nose.  Python

[gentoo-dev] Last rites: dev-tcltk/mysqltcl

2022-12-23 Thread Michał Górny
# Michał Górny (2022-12-23) # Does not build against current MySQL libraries.  Last release in 2012. # No reverse dependencies. # Removal on 2023-01-22.  Bug #692562. dev-tcltk/mysqltcl -- Best regards, Michał Górny

Re: [gentoo-dev] Re: [gentoo-dev-announce] Last rites: sci-chemistry/votca*, sci-libs/votca-tools

2022-12-23 Thread Michał Górny
o all together. My mistake. -- Best regards, Michał Górny

Re: [gentoo-dev] Last rites: dev-python/* using nose, with no revdeps

2022-12-23 Thread Michał Górny
On Fri, 2022-12-23 at 09:53 -0500, Michael Orlitzky wrote: > On Fri, 2022-12-23 at 15:35 +0100, Michał Górny wrote: > > # Michał Górny (2022-12-23) > > # Packages that still use dev-python/nose and have no revdeps. > > # > > ... > > dev-python/python-redmi

[gentoo-dev] Last rites: dev-python/* using nose, with no revdeps

2022-12-23 Thread Michał Górny
# Michał Górny (2022-12-23) # Packages that still use dev-python/nose and have no revdeps. # # dev-python/blessings: EAPI 7, last rel. in 2018, git act. in 2020 # dev-python/errorhandler: EAPI 7, last rel. in 2016, git act. in 2018 # dev-python/flask-restful: EAPI 7, last rel. in 2021, git act

[gentoo-dev] Last rites: sci-chemistry/votca*, sci-libs/votca-tools

2022-12-23 Thread Michał Górny
# Michał Górny (2022-12-23) # sci-libs/votca-tools fail to build with GCC 12.  Pending version bump # since January 2022. # Removal on 2023-01-22.  Bug #841830. sci-chemistry/votca sci-chemistry/votca-csg sci-chemistry/votca-csgapps sci-chemistry/votca-xtp sci-libs/votca-tools -- Best regards

[gentoo-dev] Last rites: sci-libs/libgenome, sci-libs/libmems

2022-12-21 Thread Michał Górny
# Michał Górny (2022-12-21) # The mauve project is no longer maintained upstream, and the actual # program has been removed from Gentoo in 2016.  These are leftover # libraries with no reverse dependencies.  Last bumped in 2009. # Removal on 2023-01-20.  Bug #677558. sci-libs/libgenome sci-libs

[gentoo-dev] Last rites: dev-php/phptal

2022-12-21 Thread Michał Górny
# Michał Górny (2022-12-21) # Reported to be incompatible with PHP 7+.  Abandoned upstream. # No reverse dependencies.  There is a maintained fork, should anyone # want to revive it. # Removal on 2023-01-20.  Bug #737842. dev-php/phptal -- Best regards, Michał Górny

[gentoo-dev] Last rites: sys-cluster/ganglia

2022-12-20 Thread Michał Górny
# Michał Górny (2022-12-20) # Pending version bump since 2015.  No new upstream releases since. # Removal on 2023-01-19.  Bug #887489. sys-cluster/ganglia -- Best regards, Michał Górny

[gentoo-dev] Last rites: sys-cluster/ganglia-web

2022-12-20 Thread Michał Górny
# Michał Górny (2022-12-20) # Unmaintained.  Pending version bump since 2019.  Even then, the newest # upstream release has known vulnerabilities. # Removal on 2023-01-19.  Bug #696480. sys-cluster/ganglia-web -- Best regards, Michał Górny

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

2022-12-20 Thread Michał Górny
# Michał Górny (2022-12-20) # Proprietary MPEG library that is no longer fetchable.  No reverse # dependencies. # Removal on 2023-01-19.  Bug #759190. media-video/mpeg2vidcodec -- Best regards, Michał Górny

[gentoo-dev] Last rites: media-libs/guilib

2022-12-20 Thread Michał Górny
# Michał Górny (2022-12-20) # An unmaintained library that was "quickly whipped up for some demos". # Last bumped in 2011.  No reverse dependencies. # Removal on 2023-01-19.  Bug #847406. media-libs/guilib -- Best regards, Michał Górny

[gentoo-dev] Last rites: dev-libs/librep, x11-libs/rep-gtk, x11-themes/sawfish-themes, x11-wm/sawfish

2022-12-19 Thread Michał Górny
# Michał Górny (2022-12-19) # Unmaintained.  The current sawfish version in ::gentoo is a prerelease # from 2017, there was a single release in 2021.  Bugs are accumulating. # Includes dependencies specific to Sawfish. # Removal on 2023-01-18.  Bug #637978. dev-libs/librep x11-libs/rep-gtk x11

Re: [gentoo-dev] profiles/targets/desktop: enable "sound" USE by default

2022-12-18 Thread Michał Górny
Any thoughts on enabling it by default on these profiles? > I suppose it makes sense. -- Best regards, Michał Górny

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

2022-12-17 Thread Michał Górny
# Michał Górny (2022-12-17) # The new version requires `multipart` that conflicts # with dev-python/python-multipart used by dev-python/starlette. # No reverse dependencies. # Removal on 2023-01-16.  Bug #886475. dev-python/test_server -- Best regards, Michał Górny

[gentoo-dev] Last rites: dev-perl/perl-mozldap

2022-12-17 Thread Michał Górny
# Michał Górny (2022-12-17) # Discontinued upstream.  Fails to build for some users.  No reverse # dependencies. # Removal on 2023-01-16.  Bug #650346. dev-perl/perl-mozldap -- Best regards, Michał Górny

<    1   2   3   4   5   6   7   8   9   10   >