From 7fb83c87d07d9488fe6e7f9f79834ececad90790 Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Thu, 24 Jun 2021 13:41:02 +0200 Subject: python-utils-r1.eclass: Revert "Remove python_optimize support..." MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit python_optimize is still used in dev-python/pypy. Reverts: 964f5c61816659b0138c8fe98593786d9da7f084 Closes: https://bugs.gentoo.org/798330 Signed-off-by: Michał Górny --- eclass/python-utils-r1.eclass | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'eclass/python-utils-r1.eclass') diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass index d43311762f9f..7488802332f6 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 -- cgit v1.2.3-65-gdbad