我知道对于 python3,您可以执行以下操作:
%:
dh $@ -- with python3 --buildsystem=python_distutils
override_dh_auto_build:
dh_auto_build
set -ex; for python in $(shell py3versions -r); do $$python setup.py build; done
......
但是我怎样才能为不同版本的python2.*制作python debian包?如果我做:
%:
dh $@ --with python2 --buildsystem=python_distutils
它只构建默认的 python2.7 版本。请帮忙,谢谢。