commit:     7fb83c87d07d9488fe6e7f9f79834ececad90790
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 24 11:41:02 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Jun 24 11:41:59 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fb83c87

python-utils-r1.eclass: Revert "Remove python_optimize support..."

python_optimize is still used in dev-python/pypy.

Reverts: 964f5c61816659b0138c8fe98593786d9da7f084
Closes: https://bugs.gentoo.org/798330
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 eclass/python-utils-r1.eclass | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass
index d43311762f9..7488802332f 100644
--- a/eclass/python-utils-r1.eclass
+++ b/eclass/python-utils-r1.eclass
@@ -597,14 +597,18 @@ python_optimize() {
                instpath=/${instpath##/}
 
                case "${EPYTHON}" in
+                       python2.7|python3.[34])
+                               "${PYTHON}" -m compileall -q -f -d 
"${instpath}" "${d}"
+                               "${PYTHON}" -OO -m compileall -q -f -d 
"${instpath}" "${d}"
+                               ;;
                        python*|pypy3)
-                               # both levels of optimization are separate 
since py3.5
+                               # both levels of optimization are separate 
since 3.5
                                "${PYTHON}" -m compileall -q -f -d 
"${instpath}" "${d}"
                                "${PYTHON}" -O -m compileall -q -f -d 
"${instpath}" "${d}"
                                "${PYTHON}" -OO -m compileall -q -f -d 
"${instpath}" "${d}"
                                ;;
                        *)
-                               die "Unknown impl for python_optimize: 
${EPYTHON}"
+                               "${PYTHON}" -m compileall -q -f -d 
"${instpath}" "${d}"
                                ;;
                esac
        done

Reply via email to