summaryrefslogtreecommitdiff
path: root/eclass/python-utils-r1.eclass
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2025-05-06 11:00:03 +0200
committerMichał Górny <mgorny@gentoo.org>2025-05-08 14:32:47 +0200
commit327899889ff0d4841870c0a81fa5adaa4b3fada0 (patch)
treeb9af298019a9ee64baf43b0d2551aae94dc806c6 /eclass/python-utils-r1.eclass
parent692aa86d5794a44b765bd95be3c3557a1288239a (diff)
downloadgentoo-327899889ff0d4841870c0a81fa5adaa4b3fada0.tar.gz
gentoo-327899889ff0d4841870c0a81fa5adaa4b3fada0.tar.bz2
gentoo-327899889ff0d4841870c0a81fa5adaa4b3fada0.zip
python-utils-r1.eclass: Remove old code paths for python_optimize
Remove the old code paths that used to provide `python_optimize()` for Python 3.8 and Python 2.7 / PyPy. I thought we were keeping them for dev-lang/pypy ebuilds but apparently we're calling compileall directly there. Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass/python-utils-r1.eclass')
-rw-r--r--eclass/python-utils-r1.eclass20
1 files changed, 2 insertions, 18 deletions
diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass
index 3a4a3f19a1be..b61bf730b8c4 100644
--- a/eclass/python-utils-r1.eclass
+++ b/eclass/python-utils-r1.eclass
@@ -629,24 +629,8 @@ python_optimize() {
instpath=/${instpath##/}
einfo "Optimize Python modules for ${instpath}"
- case "${EPYTHON}" in
- python3.8)
- # both levels of optimization are separate since 3.5
- "${PYTHON}" -m compileall -j "${jobs}" -q -f -d "${instpath}" "${d}"
- "${PYTHON}" -O -m compileall -j "${jobs}" -q -f -d "${instpath}" "${d}"
- "${PYTHON}" -OO -m compileall -j "${jobs}" -q -f -d "${instpath}" "${d}"
- ;;
- python*|pypy3*)
- # Python 3.9+
- "${PYTHON}" -m compileall -j "${jobs}" -o 0 -o 1 -o 2 --hardlink-dupes -q -f -d "${instpath}" "${d}"
- ;;
- pypy|jython2.7)
- "${PYTHON}" -m compileall -q -f -d "${instpath}" "${d}"
- ;;
- *)
- die "${FUNCNAME}: unexpected EPYTHON=${EPYTHON}"
- ;;
- esac
+ "${PYTHON}" -m compileall -j "${jobs}" -o 0 -o 1 -o 2 \
+ --hardlink-dupes -q -f -d "${instpath}" "${d}"
done
}