mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-09 08:33:51 +02:00
python-Twisted: fix absolute paths in INSTALL/REMOVE scripts
This commit is contained in:
parent
b14af9f598
commit
08a09917cd
3 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
case ${ACTION} in
|
case ${ACTION} in
|
||||||
purge)
|
purge)
|
||||||
find /usr/lib/python2.7/site-packages/twisted/plugins -name dropin.cache | xargs -r rm -f
|
find usr/lib/python2.7/site-packages/twisted/plugins -name dropin.cache | xargs -r rm -f
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
case ${ACTION} in
|
case ${ACTION} in
|
||||||
purge)
|
purge)
|
||||||
find /usr/lib/python3.*/site-packages/twisted/plugins -name dropin.cache | xargs -r rm -f
|
find usr/lib/python3.*/site-packages/twisted/plugins -name dropin.cache | xargs -r rm -f
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'python-Twisted'
|
# Template file for 'python-Twisted'
|
||||||
pkgname=python-Twisted
|
pkgname=python-Twisted
|
||||||
version=18.7.0
|
version=18.7.0
|
||||||
revision=1
|
revision=2
|
||||||
wrksrc="Twisted-${version}"
|
wrksrc="Twisted-${version}"
|
||||||
build_style=python-module
|
build_style=python-module
|
||||||
pycompile_module="twisted"
|
pycompile_module="twisted"
|
||||||
|
|
Loading…
Add table
Reference in a new issue