Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: bfe36ec1f580248d5e718667c204974275f8974a authored by Georg Brandl on 12 May 2013, 10:28:20 UTC
Bump to version 3.2.5.
Tip revision: bfe36ec
postflight.framework
#!/bin/sh
#
# Recompile the .py files.
#

PYVER="@PYVER@"
FWK="/Library/Frameworks/Python.framework/Versions/@PYVER@"

"${FWK}/bin/python@PYVER@" -Wi \
    "${FWK}/lib/python${PYVER}/compileall.py" \
    -f -x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \
    "${FWK}/lib/python${PYVER}"

"${FWK}/bin/python@PYVER@" -Wi -O \
    "${FWK}/lib/python${PYVER}/compileall.py" \
    -f -x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \
    "${FWK}/lib/python${PYVER}"

"${FWK}/bin/python@PYVER@" -Wi \
    "${FWK}/lib/python${PYVER}/compileall.py" \
    -f -x badsyntax \
    "${FWK}/lib/python${PYVER}/site-packages"

"${FWK}/bin/python@PYVER@" -Wi -O \
    "${FWK}/lib/python${PYVER}/compileall.py" \
    -f -x badsyntax \
    "${FWK}/lib/python${PYVER}/site-packages"

chgrp -R admin "${FWK}"
chmod -R g+w "${FWK}"

exit 0
back to top