postinstall/preinstall scripts not being used
Using stdeb 0.8.5 on Ubuntu 16.04.1
Previously I was able to build a .deb package from my python using bdist_deb with no issues. More recently I noticed that my
python setup.py --command-packages=stdeb.command bdist_deb
But when I check the package that results, my custom post/pre install scripts are not being used in the package.
Did something change recently to break this feature? I cant find any documentation on it.
One workaround I found is to run bdist_deb (as above), then manually copy the post/pre install scripts to the deb_dist/
having same issue
I have the same problem. Does anyone know when it stopped working?
Having the same issue - thanks for the workaround
Created a PR, but since this project seems more or less inactive you can use my fork: https://github.com/danielbisar/stdeb I am currently not planning to release it but you can create a package using
/usr/bin/python setup.py --command-packages stdeb.command bdist_deb
Inside the repositories root (at least worked in my case). And install it on the target machine where you want to use it.