summaryrefslogtreecommitdiff
path: root/staging/twisted/twisted.install
blob: 8e93ffd3c04e9029156a537194cae11ad97f627f (plain)
1
2
3
4
5
6
7
8
9
10
11
post_install() {
  python2 -c 'from twisted.plugin import IPlugin, getPlugins; list(getPlugins(IPlugin))' >/dev/null 2>&1 || return 1
}

post_upgrade() {
  post_install
}

post_remove() {
  find /usr/lib/python2.7/site-packages/twisted/plugins -name dropin.cache | xargs -r rm -f
}