| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Signed-off-by: Matthew Smith <matthew@gentoo.org>
|
|
|
|
|
|
|
| |
Closes: https://bugs.gentoo.org/856013
Closes: https://bugs.gentoo.org/786669
Bug: https://bugs.gentoo.org/718648
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
|
|
|
|
| |
No multilib reverse dependencies.
Closes: https://github.com/gentoo/gentoo/pull/27077
Signed-off-by: Sam James <sam@gentoo.org>
Signed-off-by: David Seifert <soap@gentoo.org>
|
|
|
|
| |
Signed-off-by: Matt Turner <mattst88@gentoo.org>
|
|
|
|
| |
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|
|
|
|
| |
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|
|
|
|
| |
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
|
|
|
| |
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
|
|
|
| |
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
|
|
|
|
| |
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
| |
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
|
|
|
| |
Unlike normal missing includes, implicit function declaration
fixes require a revbump as they can affect code generation.
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
| |
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
|
| |
Closes: https://bugs.gentoo.org/856436
Signed-off-by: Matt Turner <mattst88@gentoo.org>
|
|
|
|
| |
Signed-off-by: Ben Kohler <bkohler@gentoo.org>
|
|
|
|
|
|
|
| |
Update PYTHON_REQ_USE to specify "xml(+)", as Python 3.11 no longer
features the "xml" flag.
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
|
|
|
|
|
|
| |
Update PYTHON_REQ_USE to specify "xml(+)", as Python 3.11 no longer
features the "xml" flag.
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
|
|
|
|
|
|
| |
Update PYTHON_REQ_USE to specify "xml(+)", as Python 3.11 no longer
features the "xml" flag.
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
|
|
|
|
|
|
| |
Update PYTHON_REQ_USE to specify "xml(+)", as Python 3.11 no longer
features the "xml" flag.
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
|
|
|
| |
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
|
|
|
|
|
|
|
|
|
| |
Unlike normal missing includes, implicit function declaration
fixes require a revbump as they can affect code generation.
Observed on musl.
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
|
|
| |
Drop ruby26 from USE_RUBY as it is already deprecated.
Signed-off-by: Naohiro Aota <naota@gentoo.org>
|
|
|
|
|
| |
Closes: https://bugs.gentoo.org/868255
Signed-off-by: Matthew Smith <matthew@gentoo.org>
|
|
|
|
|
|
| |
Closes: https://bugs.gentoo.org/768912
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
|
|
|
|
|
|
| |
Signed-off-by: Viorel Munteanu <ceamac.paragon@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/26948
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
|
|
|
|
|
|
|
| |
Bug: https://bugs.gentoo.org/864809
Closes: https://bugs.gentoo.org/865919
Signed-off-by: Viorel Munteanu <ceamac.paragon@gmail.com>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
|
|
|
|
| |
Signed-off-by: Yixun Lan <dlan@gentoo.org>
|
|
|
|
| |
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
USE=threads is a terrible USE flag (not the fault of net-misc/curl
or its maintainer) and we're looking to get rid of it entirely.
This is motivated further by the fact users have USE=threads
in make.conf seeking performance improvements and such (which is understandable)
but as per below, it can lead to conflicting and inconsistent effects.
(In particular, anyone with USE="threads" in make.conf (don't do this
for the reasons below!) will end up with a REQUIRED_USE issue between
the now-default USE=adns and USE=threads).
There are a few possibilities with threads support:
1. Upstreams always have threads support (hence USE=threads is only affecting
a "handful" of packages anyway, not every single package, as many will just
always be using pthreads and there's no way of disabling it);
2. The "threads" toggle means enabling some experimental or legacy implementation
(think e.g. dev-lang/perl, which uses USE=ithreads for this, as it breaks ABI)
(also applies to net-misc/curl given USE=threads doesn't help with the adns
functionality many applications desire, see linked bug);
3. Not having "threads" on enables some experimental or legacy implementation again
(this *again* applies to net-misc/curl given USE="-adns -threads" leaves
us with a dodgy implementation as well).
Commit 60b7aaa7a70149751446237d7207ff1ca20c256e enabled adns by default
(IUSE=+adns).
This commit drops USE=threads entirely and makes the default pthreads with
adns opt-in with IUSE=+adns still.
Now, the ebuild previously had REQUIRED_USE="threads? ( !adns )". I can't
see a reason for this other than making the previous situation "meaningful",
i.e. allowing people to decisively choose which is used at runtime, as
while curl can build with both threads and adns, I think adns ends up
preferred at runtime.
With this change and given all of the above, we actually want adns to
take priority if it's set, as threads will just be the default, so
drop the REQUIRED_USE.
Bug: https://bugs.gentoo.org/699632
See: 60b7aaa7a70149751446237d7207ff1ca20c256e
Signed-off-by: Sam James <sam@gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/27111
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
| |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
|
|
|
| |
Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
|
|
|
|
| |
Signed-off-by: Marek Szuba <marecki@gentoo.org>
|
|
|
|
| |
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
| |
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
|
|
|
|
| |
This reverts commit 2a1bfcbd5d722a1f7aee9d91f7c3a173c6773849.
dev-lang/julia depends on <net-misc/curl-7.81.0
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
|
|
|
|
| |
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
|
|
|
|
| |
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
|
|
|
|
|
| |
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
|
|
|
|
|
|
|
|
| |
We also enable USE=adns by default.
Closes: https://bugs.gentoo.org/699632
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
|
|
|
|
| |
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
|
|
|
|
|
|
|
| |
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Quentin Retornaz <gentoo@retornaz.com>
Closes: https://github.com/gentoo/gentoo/pull/26936
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
|
|
|
|
|
|
| |
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Quentin Retornaz <gentoo@retornaz.com>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
|
|
|
|
|
|
| |
Bug: https://bugs.gentoo.org/865017
Bug: https://bugs.gentoo.org/866695
Signed-off-by: Matt Turner <mattst88@gentoo.org>
|
|
|
|
| |
Signed-off-by: Matt Turner <mattst88@gentoo.org>
|
|
|
|
| |
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
| |
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
| |
Signed-off-by: Ben Kohler <bkohler@gentoo.org>
|
|
|
|
| |
Signed-off-by: Alice Ferrazzi <alicef@gentoo.org>
|
|
|
|
|
| |
Closes: https://bugs.gentoo.org/866932
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
| |
Signed-off-by: Sam James <sam@gentoo.org>
|