RE: pybuild python3 postinst

2018-03-23 Thread Weatherby,Gerard
Ah, that explains it. Thanks. On 2018-03-23 15:36:50-04:00 Andrey Rahmatullin wrote: On Fri, Mar 23, 2018 at 06:23:21PM +, Weatherby,Gerard wrote: gt; My test debian/postinst is: Debhelper config files without the subpackage package name apply to the first subpackage and not to all

Re: pybuild python3 postinst

2018-03-23 Thread Andrey Rahmatullin
On Fri, Mar 23, 2018 at 06:23:21PM +, Weatherby,Gerard wrote: > My test debian/postinst is: Debhelper config files without the subpackage package name apply to the first subpackage and not to all subpackages as you apparently think. -- WBR, wRAR signature.asc Description: PGP signature

pybuild python3 postinst

2018-03-23 Thread Weatherby,Gerard
I have a python package that produces both python2 and python3 modules; e.g. using debian/rules: export PYBUILD_NAME=hello %: dh $@ --with python2,python3 --buildsystem=pybuild My test debian/postinst is: case "$1" in configure) echo "have a nice day" ;;