在尝试使用Launchpad食谱打包源文件时,我得到了以下错误。但是,我可以在我的机器上成功地构建这个包(运行18.04)
dh: error: unable to load addon python3: Can't locate Debian/Debhelper/Sequence/python3.pm这是完整的建木,我的debian/control文件如下所示。
Source: up-clock
Section: python
Priority: extra
Build-Depends: debhelper (>= 10),
python3,
python3-distutils-extra
Maintainer: Archisman Panigrahi
Standards-Version: 4.1.4
X-Python-Version: >= 3.5
Package: up-clock
Architecture: all
Depends: ${misc:Depends},
${python3:Depends},
gir1.2-glib-2.0,
gir1.2-gtk-3.0,
gir1.2-webkit2-4.0
Description: A beautiful Clock, inspired by Ubuntu Touch homescreen, already on your desktop.
Inspired by Ubuntu Touch homescreen, this clock is able to show you the
time in a way you never seen before. The "clouds" changes colors and
sizes automaticaly awhile showing you the time.怎么解决这个问题?我已经将python3-distutils-extra添加到Build-Depends中了。
发布于 2020-07-30 14:19:40
将dh-python添加到构建-依赖于debian/control文件中。
完成此操作后,Launchpad将生成而不会引发任何错误。
https://askubuntu.com/questions/1263305
复制相似问题