我是 debian 软件包的新手。
我有一个 CMake 项目,我想将我的项目上传到私人 ppa(启动板)。然后,人们可以通过键入 apt-get my_project 轻松下载我的项目二进制文件 :)
为此,我在启动板中注册并导入了我的源代码,然后构建请求。(https://code.launchpad.net/~mhs4670go/test-project-123/+git/trunk)
在我的项目成功构建后(https://code.launchpad.net/~mhs4670go/+archive/ubuntu/ppa/+build/21441673),最后我可以通过apt-get install {my_project}
.
但是,当我下载我的项目源代码时apt source {my_project}
,我的debian/changelog
.
tscript-1.15/debian $ cat changelog
tscript (1.15-0~202104220812~ubuntu18.04.1) bionic; urgency=low
* Auto build.
-- seongwoo <mhs4670go@naver.com> Thu, 22 Apr 2021 08:07:42 +0000
tscript (1.15-2) bionic; urgency=medium
* add some contents.
-- seongwoo chae <mhs4670go@naver.com> Thu, 22 Apr 2021 15:43:08 +0900
tscript (1.15-1) unstable; urgency=medium
* Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP>
-- seongwoo chae <mhs4670go@naver.com> Wed, 21 Apr 2021 19:02:36 +0900
添加了“自动构建”日志。但我不想添加它。
当我下载其他软件包时vim
,他们的更新日志中没有“自动构建”日志。如何删除此日志?