diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-01-26 15:05:46 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-01-29 00:01:21 +0100 |
commit | 50f92f7b3f359ad14fedf0b37cb48fca5855730b (patch) | |
tree | 639f330b088ff5c026394b1fe90f1fdc6049dc7b /eclass | |
parent | distutils-r1.eclass: Set script shebangs to venv in PEP 517 (diff) | |
download | gentoo-50f92f7b3f359ad14fedf0b37cb48fca5855730b.tar.gz gentoo-50f92f7b3f359ad14fedf0b37cb48fca5855730b.tar.bz2 gentoo-50f92f7b3f359ad14fedf0b37cb48fca5855730b.zip |
distutils-r1.eclass: Improve PEP 517 einfo output
Add an einfo message for calling installer. Indent both messages
relevant to PEP 517 logic.
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/distutils-r1.eclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index cf3eb639d5e6..7dfd92691b59 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -952,7 +952,7 @@ distutils-r1_python_compile() { fi fi - einfo "Building a wheel via ${build_backend}" + einfo " Building the wheel via ${build_backend}" "${EPYTHON}" -c "import ${build_backend%:*}; \ import os; \ ${build_backend/:/.}.build_wheel(os.environ['WHEEL_BUILD_DIR'])" || @@ -964,6 +964,7 @@ distutils-r1_python_compile() { fi local root=${BUILD_DIR}/install + einfo " Installing the wheel to ${root}" # NB: --compile-bytecode does not produce the correct paths, # and python_optimize doesn't handle being called outside D, # so we just defer compiling until the final merge |