Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 860980 Details for
Bug 905396
dev-python/scipy-1.10.1 failed to emerge with dev-python/gast-0.5.4 (ERROR: Command `/usr/bin/python3.10 -c 'import os; os.chdir(".."); import pythran; print(os.path.dirname(pythran.__file__));'` failed with status 1.)
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
meson-python logging fix
0001-distutils-r1.eclass-ensure-meson-python-uses-a-stabl.patch (text/plain), 1.53 KB, created by
Eli Schwartz
on 2023-05-01 05:41:17 UTC
(
hide
)
Description:
meson-python logging fix
Filename:
MIME Type:
Creator:
Eli Schwartz
Created:
2023-05-01 05:41:17 UTC
Size:
1.53 KB
patch
obsolete
>From 01b2027f5b5c931fcae94d1f87901f23b3140edd Mon Sep 17 00:00:00 2001 >From: Eli Schwartz <eschwartz93@gmail.com> >Date: Mon, 1 May 2023 00:16:57 -0400 >Subject: [PATCH] distutils-r1.eclass: ensure meson-python uses a stable build > directory > >When not passing an explicit build directory, meson-python configures >meson into a build directory that is rooted in a tempdir with a random >suffix. This results in unstable paths, which currently disappear after >meson-python completes (either with success or failure). It doesn't >handle incremental or resumed builds, and it's very difficult to debug >-- for example by inspecting the logfile that meson itself prints out >when the configure stage fails. > >Signed-off-by: Eli Schwartz <eschwartz93@gmail.com> >--- > eclass/distutils-r1.eclass | 2 ++ > 1 file changed, 2 insertions(+) > >diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass >index 4346a86c209..6d2eec0e004 100644 >--- a/eclass/distutils-r1.eclass >+++ b/eclass/distutils-r1.eclass >@@ -1326,6 +1326,7 @@ distutils_pep517_install() { > > ninjaopts = shlex.split(os.environ["NINJAOPTS"]) > print(json.dumps({ >+ "builddir": os.environ["BUILD_DIR"] + "/builddir", > "setup-args": sys.argv[1:], > "compile-args": ["-v"] + ninjaopts, > })) >@@ -1341,6 +1342,7 @@ distutils_pep517_install() { > > ninjaopts = shlex.split(os.environ["NINJAOPTS"]) > print(json.dumps({ >+ "builddir": os.environ["BUILD_DIR"] + "/builddir", > "setup-args": sys.argv[1:], > "compile-args": [ > "-v", >-- >2.35.1 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 905396
:
860979
| 860980 |
860981
|
860982
|
860983