summaryrefslogtreecommitdiffstats
path: root/autoscripts/prerm-pypyclean
blob: 8e7b2bc9de4c8dfb9c92616929d76a92a10948f1 (plain)
1
2
3
4
5
6
if command -v pypyclean >/dev/null 2>&1; then
	pypyclean -p #PACKAGE# #ARGS#
else
	dpkg -L #PACKAGE# | sed -En -e '/^(.*)\/(.+)\.py$/s,,rm "\1/__pycache__/\2".*,e'
	find /usr/lib/pypy/dist-packages/ -type d -name __pycache__ -empty -print0 | xargs --null --no-run-if-empty rmdir
fi