私は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 バージョンのみをビルドします。助けてください、ありがとう。