File: libstdc%2B%2BCXX.prerm

package info (click to toggle)
gcc-12 12.2.0-14
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 106,684 kB
  • sloc: makefile: 2,584; sh: 1,115; python: 1,103; awk: 23; cpp: 14
file content (13 lines) | stat: -rw-r--r-- 435 bytes parent folder | download | duplicates (41)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /bin/sh

set -e

case "$1" in
    remove|upgrade)
	files=$(dpkg -L libstdc++@CXX@@TARGET_QUAL@ | awk -F/ 'BEGIN {OFS="/"} /\.py$/ {$NF=sprintf("__pycache__/%s.*.py[co]", substr($NF,1,length($NF)-3)); print}')
	rm -f $files
	dirs=$(dpkg -L libstdc++@CXX@@TARGET_QUAL@ | awk -F/ 'BEGIN {OFS="/"} /\.py$/ {NF--; print}' | sort -u)
	find $dirs -mindepth 1 -maxdepth 1 -name __pycache__ -type d -empty | xargs -r rmdir
esac

#DEBHELPER#