Chapter 6. debmake 选项
debmake 命令提供了两个快捷选项。
- -a:打开上游源码压缩包
- -i:执行构建二进制包的脚本
前文中Chapter 4, 简单例子的例子可以使用下面的命令直接达到目的。
您可以使用以源码压缩包(tarball)形式提供的 pythonmodule-1.0**.tar.gz Python 模块包直接生成一个独立二进制 Debian 软件包。这里的 -b 选项可以指定软件包类型为 python,-s** 选项可以从上游压缩包中提取并复制软件包描述内容至指定位置。
对其他支持 -b 选项的解释式编程语言,请给 -b 选项指定恰当的 type 。
对没有 -b 选线支持的其它解释性语言,您可以指定其为脚本类型(script 类型)并调整 debian/control 文件而将解释器对应的软件包添加为软件包依赖。
6.2. 上游快照(-d,-t)
This packaging scheme is good for the git repository organized as described in gbp-buildpackage(7) which uses the master, upstream, and pristine-tar branches.
如果上游软件包支持“make dist”或者等效的目标,您可以使用 -d 选项从上游源码树版本控制系统中得到上游代码的快照。
$ cd /path/to/upstream-vcs
$ debmake -d -i debuild
除此之外,也可使用 -t 选项以使用 tar 命令生成上游源码包。
除非您明确使用 -u 选项或者在 debian/changelog 文件中提前指定好版本号,默认情况下快照生成的上游版本号将应用协调世界时的日期和时间使用 0~%y%m%d%H%M 格式生成,例如 0~1403012359。
如果上游版本控制系统位于 软件包名/ 目录而非任意的 上游版本控制系统/ 目录,参数中的“-p 软件包名”这部分可以跳过。
$ cp -r /path/to/package-0~1403012359/debian/. /path/to/upstream-vcs/debian
$ dch
... update debian/changelog
$ git add -A .; git commit -m "vcs with debian/*"
$ debmake -t -p package -i debuild
这里的使用“debmake -t -i debuild”命令构建非本土 Debian 二进制包的流程可以看做拟似本土软件包类型进行构建,因为其打包场景和本土 Debian 软件包不使用上游源码包直接使用 debuild 命令打包很类似。
使用非本土的(non-native)软件包有助于简化与下游发行版(如 Ubuntu)之间在缺陷、问题修复上的沟通。
6.3. Upstream snapshot (alternative approach)
This packaging scheme is good for the git repository organized as described in dgit-maint-merge(7) which uses the master branch only.
You can create the upstream tarball and Debian package simply as follows.
$ cd /path/to/upstream-git
$ git deborig -f HEAD
$ pdebuild
This scheme can be applied to the quasi-native Debian package scheme when debian/changelog
contains the non-native version number with revision like 0.16-1
.
For -1
revision, this use of git-deborig
(1) as above is how this debmake-doc
package generates the upstream tarball. For source format , files under debian/
directory in the upstream tarball has no negatives. You may override the lintian warning.
For -2
, -3
, … revisions, you need to fetch and use the uploaded upstream tarball instead. For this, origtargz
(1) may be handy.
debmake 命令在带上 -cc 选项时可以向标准输出打印整个源码树的版权和许可证概要信息。
如果转而使用 -c 选项,程序将提供较短的报告。
6.5. debmake -k
在使用上游新发行版本更新软件包时,debmake 可以使用已有的 debian/copyright 文件和整个更新的源码树文件进行对比验证版权和许可证信息。
$ cd package-vcs
$ gbp import-orig --uscan --pristine-tar
$ debmake -k | less
“debmake -k”命令可以完整解析 debian/copyright 并将当前软件包中的所有非二进制文件内含的许可证信息按照最后一项匹配的方式与 debian/copyright 文件中的信息进行对比。
在您编辑自动生成的 debian/copyright 文件时,请确保将最通用的文件匹配模式放在文件前部,最精确的匹配模式放在后部。
6.6. debmake -j
生成多个二进制软件包通常比只生成一个二进制软件包需要投入更多的工作量。对源码包进行测试构建是其中的必要一环。
例如,我们考虑将相同的 package-1.0**.tar.gz*(参见 [Chapter 4, 简单例子*]($3762e8f65a416b5f.md “Chapter 4. 简单例子”))打包并生成多个二进制软件包。
调用 debmake 命令并使用 -j 选项以测试构建并报告结果。
请检查 package**.build-dep.log 文件最后的几行以确定 Build-Depends 所需填写的构建依赖。(您不需要在 Build-Depends 中列出 debhelper、perl 或 fakeroot** 所使用的软件包。在只生成单个软件包的情况下也是如此。)
- 请检查 package**.install.log** 的文件内容以确定各个文件的安装路径,从而决定如何将它们拆分成多个软件包。
调用 debmake 命令以开始准备打包信息。
请使用以上信息更新 debian/control 和 debian/*binarypackage*.install 文件。
- 按需更新其它 debian/* 文件。
使用 debuild 或等效的其它工具构建 Debian 软件包。
$ debuild
所有由 debian/*binarypackage*.install 文件指定的二进制软件包条目均会生成 binarypackage_version-revision_arch**.deb** 的安装包。
debmake 生成的模板文件数量由 -x[01234] 选项进行控制。
- 请参见 以了解与拣选使用模板文件的方式。
6.8. debmake -P
调用 debmake 命令并带上 -P 选项将会严厉地检查所有自动生成文件的版权和许可证文本信息;即使它们都使用宽松的许可证也是如此。
6.9. debmake -T
调用 debmake 命令并带上 -T 选项会额外输出详细的教程注释行。这些行在模板文件中用 ### 进行标注。