diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 16:08:06 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 16:08:06 +0000 |
commit | ba6d96469df143b52295f8e79da648bf8a597407 (patch) | |
tree | 5ea0c3374f5c53209ad02008dcdddfc8ccae92e5 /autoscripts | |
parent | Initial commit. (diff) | |
download | dh-python-ba6d96469df143b52295f8e79da648bf8a597407.tar.xz dh-python-ba6d96469df143b52295f8e79da648bf8a597407.zip |
Adding upstream version 5.20230130+deb12u1.upstream/5.20230130+deb12u1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'autoscripts')
-rw-r--r-- | autoscripts/postinst-py3compile | 6 | ||||
-rw-r--r-- | autoscripts/postinst-pycompile | 3 | ||||
-rw-r--r-- | autoscripts/postinst-pypycompile | 5 | ||||
-rw-r--r-- | autoscripts/prerm-py3clean | 6 | ||||
-rw-r--r-- | autoscripts/prerm-pyclean | 8 | ||||
-rw-r--r-- | autoscripts/prerm-pypyclean | 6 |
6 files changed, 34 insertions, 0 deletions
diff --git a/autoscripts/postinst-py3compile b/autoscripts/postinst-py3compile new file mode 100644 index 0000000..2af81b0 --- /dev/null +++ b/autoscripts/postinst-py3compile @@ -0,0 +1,6 @@ +if command -v py3compile >/dev/null 2>&1; then + py3compile -p #PACKAGE# #ARGS# +fi +if command -v pypy3compile >/dev/null 2>&1; then + pypy3compile -p #PACKAGE# #ARGS# || true +fi diff --git a/autoscripts/postinst-pycompile b/autoscripts/postinst-pycompile new file mode 100644 index 0000000..f479f84 --- /dev/null +++ b/autoscripts/postinst-pycompile @@ -0,0 +1,3 @@ +if command -v pycompile >/dev/null 2>&1; then + pycompile -p #PACKAGE# #ARGS# +fi diff --git a/autoscripts/postinst-pypycompile b/autoscripts/postinst-pypycompile new file mode 100644 index 0000000..b26c45f --- /dev/null +++ b/autoscripts/postinst-pypycompile @@ -0,0 +1,5 @@ +if command -v 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 diff --git a/autoscripts/prerm-py3clean b/autoscripts/prerm-py3clean new file mode 100644 index 0000000..3ec270f --- /dev/null +++ b/autoscripts/prerm-py3clean @@ -0,0 +1,6 @@ +if command -v py3clean >/dev/null 2>&1; then + py3clean -p #PACKAGE# #ARGS# +else + dpkg -L #PACKAGE# | sed -En -e '/^(.*)\/(.+)\.py$/s,,rm "\1/__pycache__/\2".*,e' + find /usr/lib/python3/dist-packages/ -type d -name __pycache__ -empty -print0 | xargs --null --no-run-if-empty rmdir +fi diff --git a/autoscripts/prerm-pyclean b/autoscripts/prerm-pyclean new file mode 100644 index 0000000..a208c9b --- /dev/null +++ b/autoscripts/prerm-pyclean @@ -0,0 +1,8 @@ +if command -v pyclean >/dev/null 2>&1; then + pyclean -p #PACKAGE# #ARGS# +else + dpkg -L #PACKAGE# | grep \.py$ | while read file + do + rm -f "${file}"[co] >/dev/null + done +fi diff --git a/autoscripts/prerm-pypyclean b/autoscripts/prerm-pypyclean new file mode 100644 index 0000000..8e7b2bc --- /dev/null +++ b/autoscripts/prerm-pypyclean @@ -0,0 +1,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 |