/usr/share/debhelper/autoscripts/postinst-pypycompile is in dh-python 2.20151103ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 | if which pypycompile >/dev/null 2>&1; then
pypycompile -p #PACKAGE# #ARGS#
elif pypy -m py_compile >/dev/null 2>&1; then
dpkg -L #PACKAGE# | grep '\.py$' | pypy -m py_compile - >/dev/null
fi
|