0

Python モジュール用の debian パッケージをビルドしたいと考えています。ビルド システムの詩を使用します。しかし、pybuild詩を知りません。したがって、ここで述べたように、カスタム ビルド システムを使用したいと考えています。

#!/usr/bin/make -f

export DH_VERBOSE=1

export PYBUILD_NAME=foo
export PYBUILD_SYSTEM=custom
export PYBUILD_CLEAN_ARGS=


%:
        dh $@ --with python3 --buildsystem=pybuild


override_dh_auto_build:
        poetry build

override_dh_auto_install:
        poetry install


override_dh_auto_clean:

ただし、次のエラー メッセージが表示されます I: pybuild base:217: python3.8 setup.py clean python3.8: can't open file 'setup.py': [Errno 2] No such file or directory E: pybuild pybuild:390: plugin distutils failed: exit code=2: python3.8 setup.py clean 。しかし、distutils をシステムとして使用していないため、問題が理解できませんでした。

4

0 に答える 0