| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|\ |
|
| |
| |
| |
| |
| |
| | |
To differentiate against future possible use of pypi distfiles.
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Fix testsuite
Add python3_12, python3_13
Signed-off-by: Andrew Udvare <audvare@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/39262
Closes: https://bugs.gentoo.org/929534
Closes: https://bugs.gentoo.org/788280
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
|
| |
| |
| |
| |
| |
| |
| | |
Closes: https://bugs.gentoo.org/942875
Signed-off-by: Alexander Kurakin <kuraga333@mail.ru>
Closes: https://github.com/gentoo/gentoo/pull/39199
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
|
| |
| |
| |
| |
| |
| | |
Signed-off-by: Mario Haustein <mario.haustein@hrz.tu-chemnitz.de>
Closes: https://github.com/gentoo/gentoo/pull/39452
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
|
| |
| |
| |
| |
| | |
Signed-off-by: Mario Haustein <mario.haustein@hrz.tu-chemnitz.de>
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
|
| |
| |
| |
| |
| | |
Signed-off-by: Mario Haustein <mario.haustein@hrz.tu-chemnitz.de>
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
|
| |
| |
| |
| |
| | |
Signed-off-by: Mario Haustein <mario.haustein@hrz.tu-chemnitz.de>
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
|
| |
| |
| |
| |
| |
| | |
New upstream dep, newly packaged. Drop keywords temporarily.
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
|
| |
| |
| |
| |
| |
| | |
Needed for calibre.
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
|
| |
| |
| |
| |
| |
| | |
Needed for pykakasi and ultimately for calibre.
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
|
| |
| |
| |
| |
| |
| |
| | |
Closes: https://bugs.gentoo.org/943325
Signed-off-by: Alexander Kurakin <kuraga333@mail.ru>
Closes: https://github.com/gentoo/gentoo/pull/39286
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
gitlab-cli 1.48.0 requires go 1.23.2.
Closes: https://bugs.gentoo.org/942996
Signed-off-by: Alexander Puck Neuwirth <alexander@neuwirth-informatik.de>
Closes: https://github.com/gentoo/gentoo/pull/39481
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
|
| |
| |
| |
| |
| |
| | |
Signed-off-by: Filip Kobierski <fkobi@pm.me>
Closes: https://github.com/gentoo/gentoo/pull/39485
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Needs one backport to fix a test regression when not building with
debug.
I've also added an experimental dedup thing. One of the major issues
with rust is that cargo locks and requires all crates to be downloaded
offline, even if you're not using most of them because the crate
dependencies are Windows-specific. I haven't solved that, but I did
manage to remove about 40 of them by removing some workspace members
from the ruff monorepo that aren't actually part of the ruff binary in
any configuration (which means their dependencies don't need to be
locked, either). This has to be done before running pycargoebuild *and*
also done in the ebuild itself.
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
|
| |
| |
| |
| |
| |
| | |
Needed to e.g. pass LTO warning flags through to the linker.
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
distutils-r1.eclass now uses hatchling >=1.26 support for disabling
runtime use of trove_classifiers at all. It is still necessary as a
runtime dependency for the sake of people who install and run hatchling
via their user account, outside of ebuild packaging, but we no longer
need to guarantee that trove_classifiers is always ordered before
anything else during a world update.
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
In the previous commit, a change was patched into setuptools to enable
skipping pypi.org specific validations we do not want. Export the
environment variable which activates this, whenever the build backend is
setuptools.
Bug: https://github.com/pypa/setuptools/issues/4459
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Trove classifiers, and their officialness, have no effect on a wheel
other than determining whether they are allowed to be uploaded to a
non-Gentoo website, and enabling the search index of that other site.
We don't need this, and we don't need to validate it. Setuptools will
disable validation if both of:
- network downloads failed
- cannot successfully import the `trove_classifiers` module
occurs. If trove-classifiers is installed by coincidence, this breaks
builds when it doesn't get updated on an extremely rapid basis and some
random package in dev-python/* uses a classifier that was made official
just the other day.
We could solve this another way, by making dev-python/setuptools
PDEPEND on trove-classifiers, and constantly bump the >= dependency. But
this is a pointless hassle. In fact, we're actually doing it, and it's
been a pointless hassle. We need to maintain up-to-the-minute minimum
bounds on the very latest version, and bump setuptools to a new -rX just
to update the minimum version of a package it doesn't even depend on. We
need to package new versions of trove-classifiers before *other* Gentoo
Devs outside of the python project, can successfully revbump their own
packages. We need to coordinate stabilization of trove-classifiers in
combination with those other packages. We force people to install a
pointless package. We overuse PDEPEND.
Instead, apply a *rejected* upstream patch to add an environment
variable that skips this specific validation code block entirely.
Upstream doesn't want to maintain code that contains branches, so we
will maintain it locally.
Since it is Gentoo-specific, the variable is also prefixed with GENTOO_
and is expected to be used solely inside of distribution packaging while
not affecting manual usage of setuptools outside of portage.
Bug: https://github.com/pypa/setuptools/issues/4459
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
|
| |
| |
| |
| |
| | |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
|
| |
| |
| |
| |
| |
| | |
Bug: https://github.com/pypa/hatch/issues/1368
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
>=maturin-1.7.1 has deprecated --skip-auditwheel and added
--auditwheel=<check|repair|skip> to replace it. Update and set
the lower bound to latest stable rather than use has_version.
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/39204
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Move the python3_13t target on the list before other CPython targets.
This means it's technically "less preferred", so e.g. *all phases
would rather be performed with regular CPython, which should generally
be more faster.
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
|
| | |
|
|\| |
|
| |
| |
| |
| | |
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|