个人工具

“PackagingGuide”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
5 从可正常工作的源码(Working Sources)构建Ubuntu软件包
5 从可正常工作的源码(Working Sources)构建Ubuntu软件包
第62行: 第62行:
 
我假设读者已经下载了一个应用程序的源代码,并希望将该应用程序构建成一个Debian包。在我的例子中,我写了一个基于脚本的独立应用程序,以及安装、卸载程序,它应该能在大多数Linux发行版上运行[5]。
 
我假设读者已经下载了一个应用程序的源代码,并希望将该应用程序构建成一个Debian包。在我的例子中,我写了一个基于脚本的独立应用程序,以及安装、卸载程序,它应该能在大多数Linux发行版上运行[5]。
  
下载源码包。我们可以从sourceforge下载下面例子中用到的vob2mpeg版本。用下面的命令取得所使用的应用程序的确切版本。
+
===5.1 下载源码包===
 +
我们可以从sourceforge下载下面例子中用到的vob2mpeg版本。用下面的命令取得所使用的应用程序的确切版本。
  
 
  $ svn co https://vob2mpeg.svn.sourceforge.net/svnroot/vob2mpeg/tags/vob2mpeg-0.0.1
 
  $ svn co https://vob2mpeg.svn.sourceforge.net/svnroot/vob2mpeg/tags/vob2mpeg-0.0.1
第79行: 第80行:
 
此时不需要解压,因为我们取回的上游源代码是未压缩的。同样,源码目录页无需重新命名,它已经是适合的名字了:vob2mpeg-0.0.1。我们需要做的是,创建一个原始上游源代码的压缩包,以便我们对程序源代码所做的任何修改都能记录下来并跟未作修改的原始上游源代码作比较。
 
此时不需要解压,因为我们取回的上游源代码是未压缩的。同样,源码目录页无需重新命名,它已经是适合的名字了:vob2mpeg-0.0.1。我们需要做的是,创建一个原始上游源代码的压缩包,以便我们对程序源代码所做的任何修改都能记录下来并跟未作修改的原始上游源代码作比较。
  
创建Debian控制文件。令人高兴的是,dh_make能用--create-orig标志创建原始上游压缩包。同时dh_make还生成所有其他用于构建deb包所需的所有控制文件:
+
===5.2 创建Debian控制文件===
 +
令人高兴的是,dh_make能用--create-orig标志创建原始上游压缩包。同时dh_make还生成所有其他用于构建deb包所需的所有控制文件:
  
 
  $ cd vob2mpeg-0.0.1/
 
  $ cd vob2mpeg-0.0.1/
第114行: 第116行:
 
可以看到,“debian”目录已经生成。这个目录里面包含所有Debian建包工具创建deb包所需的信息,包括用于编译应用程序自身的构建指令。这些指令是一种解释程序,无需编译任何实际的源代码。
 
可以看到,“debian”目录已经生成。这个目录里面包含所有Debian建包工具创建deb包所需的信息,包括用于编译应用程序自身的构建指令。这些指令是一种解释程序,无需编译任何实际的源代码。
  
修改控制文件。在我们继续深入之前,debian目录下的文件要作一些修改。首先,必须编辑控制文件,使之反映正确的信息。这样的编辑,结果如下:
+
===5.3 修改控制文件===
 +
在我们继续深入之前,debian目录下的文件要作一些修改。首先,必须编辑控制文件,使之反映正确的信息。这样的编辑,结果如下:
  
 
  $ cat debian/control
 
  $ cat debian/control
第122行: 第125行:
 
  Maintainer: Lelanthran Krishna Manickum <[email protected]>
 
  Maintainer: Lelanthran Krishna Manickum <[email protected]>
 
  Build-Depends: debhelper (>= 5)
 
  Build-Depends: debhelper (>= 5)
  Standards-Version: 3.7.2
+
  Standards-Version: 3.7.2<br>
 
  Package: vob2mpeg
 
  Package: vob2mpeg
 
  Architecture: any
 
  Architecture: any
第151行: 第154行:
 
  $ rm debian/*.[Ee][Xx]
 
  $ rm debian/*.[Ee][Xx]
  
修改规则文件。在我们继续尝试创建Debian的软件包之前,还要修改规则文件。debian/rules文件是一个Makefile文件,make将执行它来编译构建程序。在这里,由于我们什么也不编译,这个文件将被削减到仅仅只包含创建一个软件分发所需要的内容。这个应用程序(vob2mpeg)有一个安装(和卸载)脚本必须被执行。例如,vob2mpeg通过执行一个包含可选的配置文件并可指定安装位置的安装脚本,这样安装在Linux系统里面。由于我们希望所有的文件安装到./debian/vob2mpeg,我们从上游源文件提供的例子文件来创建一个配置文件。
+
===5.4 修改规则文件===
 +
在我们继续尝试创建Debian的软件包之前,还要修改规则文件。debian/rules文件是一个Makefile文件,make将执行它来编译构建程序。在这里,由于我们什么也不编译,这个文件将被削减到仅仅只包含创建一个软件分发所需要的内容。这个应用程序(vob2mpeg)有一个安装(和卸载)脚本必须被执行。例如,vob2mpeg通过执行一个包含可选的配置文件并可指定安装位置的安装脚本,这样安装在Linux系统里面。由于我们希望所有的文件安装到./debian/vob2mpeg,我们从上游源文件提供的例子文件来创建一个配置文件。
  
 
  $ cp vob2mpeg-install.conf debian/
 
  $ cp vob2mpeg-install.conf debian/
第165行: 第169行:
 
  export DEST_ETC=/tmp/test/etc
 
  export DEST_ETC=/tmp/test/etc
 
  export DEST_BIN=/tmp/test/usr/bin
 
  export DEST_BIN=/tmp/test/usr/bin
  export DEST_DOC=/tmp/test/usr/share/doc/vob2mpeg
+
  export DEST_DOC=/tmp/test/usr/share/doc/vob2mpeg<br>
 
  # The files to actually install, please do not change this
 
  # The files to actually install, please do not change this
 
  export ETC_FILES="vob2mpeg.profile $CONF_FILE"
 
  export ETC_FILES="vob2mpeg.profile $CONF_FILE"
第183行: 第187行:
 
  export DEST_ETC=debian/vob2mpeg/etc
 
  export DEST_ETC=debian/vob2mpeg/etc
 
  export DEST_BIN=debian/vob2mpeg/usr/bin
 
  export DEST_BIN=debian/vob2mpeg/usr/bin
  export DEST_DOC=debian/vob2mpeg/usr/share/doc/vob2mpeg
+
  export DEST_DOC=debian/vob2mpeg/usr/share/doc/vob2mpeg<br>
 
  # The files to actually install, please do not change this
 
  # The files to actually install, please do not change this
 
  export ETC_FILES="vob2mpeg.profile $CONF_FILE"
 
  export ETC_FILES="vob2mpeg.profile $CONF_FILE"
第197行: 第201行:
 
  <...喀嚓...>
 
  <...喀嚓...>
 
  build-stamp: configure-stamp
 
  build-stamp: configure-stamp
         dh_testdir
+
         dh_testdir<br>
 
           # Add here commands to compile the package.
 
           # Add here commands to compile the package.
 
           $(MAKE)
 
           $(MAKE)
           #docbook-to-man debian/vob2mpeg.sgml > vob2mpeg.1
+
           #docbook-to-man debian/vob2mpeg.sgml > vob2mpeg.1<br>
           touch $@
+
           touch $@<br>
 
  clean:
 
  clean:
 
           dh_testdir
 
           dh_testdir
 
           dh_testroot
 
           dh_testroot
           rm -f build-stamp configure-stamp
+
           rm -f build-stamp configure-stamp<br>
 
           # Add here commands to clean up after the build process.
 
           # Add here commands to clean up after the build process.
           -$(MAKE) clean
+
           -$(MAKE) clean<br>
           dh_clean
+
           dh_clean<br>
 
  install: build
 
  install: build
 
         dh_testdir
 
         dh_testdir
 
         dh_testroot
 
         dh_testroot
 
         dh_clean -k
 
         dh_clean -k
         dh_installdirs
+
         dh_installdirs<br>
 
         # Add here commands to install the package into debian/vob2mpeg.
 
         # Add here commands to install the package into debian/vob2mpeg.
 
         $(MAKE) DESTDIR=$(CURDIR)/debian/vob2mpeg install
 
         $(MAKE) DESTDIR=$(CURDIR)/debian/vob2mpeg install
第222行: 第226行:
 
  <...喀嚓...>
 
  <...喀嚓...>
 
  build-stamp: configure-stamp
 
  build-stamp: configure-stamp
         dh_testdir
+
         dh_testdir<br>
           # Add here commands to compile the package.
+
           # Add here commands to compile the package.<br>
           #docbook-to-man debian/vob2mpeg.sgml > vob2mpeg.1
+
           #docbook-to-man debian/vob2mpeg.sgml > vob2mpeg.1<br>
           touch $@
+
           touch $@<br>
 
  clean:
 
  clean:
 
           dh_testdir
 
           dh_testdir
 
           dh_testroot
 
           dh_testroot
           rm -f build-stamp configure-stamp
+
           rm -f build-stamp configure-stamp<br>
 
           # Add here commands to clean up after the build process.
 
           # Add here commands to clean up after the build process.
           rm -rf ./debian/vob2mpeg
+
           rm -rf ./debian/vob2mpeg<br>
           dh_clean
+
           dh_clean<br>
 
  install: build
 
  install: build
 
         dh_testdir
 
         dh_testdir
 
         dh_testroot
 
         dh_testroot
 
         dh_clean -k
 
         dh_clean -k
         dh_installdirs
+
         dh_installdirs<br>
 
         # Add here commands to install the package into debian/vob2mpeg.
 
         # Add here commands to install the package into debian/vob2mpeg.
 
         ./install-vob2mpeg.sh ./debian/vob2mpeg-install.conf
 
         ./install-vob2mpeg.sh ./debian/vob2mpeg-install.conf
第247行: 第251行:
 
注意我们略掉了在debian目录下提供preinst和postinst脚本。如果提供了这些脚本,那么他们会分别在安装deb包之前,或者卸载deb包之后被执行。我们这个例子中的软件无需在安装前执行什么动作,卸载后动作也一样不需要。
 
注意我们略掉了在debian目录下提供preinst和postinst脚本。如果提供了这些脚本,那么他们会分别在安装deb包之前,或者卸载deb包之后被执行。我们这个例子中的软件无需在安装前执行什么动作,卸载后动作也一样不需要。
  
打包。现在我们已经完成了所有想作的修改,就等着发出建立deb包文件的命令了。不过,在打包之前,我们还需要核实一下Debian版本号,确保它能在新建的deb文件中反映出来。不要混淆Debian版本号和应用程序的版本号。Debian版本号是我们deb包的版本号,如对于Foo这个软件我们可能会想给它的版本号为1的版本建包。也就是说,我们用于打包的程序源代码目录为Foo-1.0.0。给Foo打包后,我们指定改包的版本号为0.0.1。
+
===5.5 打包===
 +
现在我们已经完成了所有想作的修改,就等着发出建立deb包文件的命令了。不过,在打包之前,我们还需要核实一下Debian版本号,确保它能在新建的deb文件中反映出来。不要混淆Debian版本号和应用程序的版本号。Debian版本号是我们deb包的版本号,如对于Foo这个软件我们可能会想给它的版本号为1的版本建包。也就是说,我们用于打包的程序源代码目录为Foo-1.0.0。给Foo打包后,我们指定改包的版本号为0.0.1。
  
 
现在让我们假设在打包过程中发生了小错误,例如,我们可能在编译Foo的时候使用了某个编译标志(flag)使得制作出来的deb包在lpia架构下会安装运行会出现问题。有用户反馈了错误报告,我们很快修复了这个问题。这时我们需要重新给相同的软件版本打包,制作出了版本号为0.0.2的deb包,而该包软件版本仍然是Foo-1.0.0。
 
现在让我们假设在打包过程中发生了小错误,例如,我们可能在编译Foo的时候使用了某个编译标志(flag)使得制作出来的deb包在lpia架构下会安装运行会出现问题。有用户反馈了错误报告,我们很快修复了这个问题。这时我们需要重新给相同的软件版本打包,制作出了版本号为0.0.2的deb包,而该包软件版本仍然是Foo-1.0.0。

2010年10月26日 (二) 23:37的版本

Debian打包入門

Lelanthran K. Manickum

2009年1月13日

1 前言

在Ubuntusci [1]的一部分努力之下,许多没有被Ubuntu软件仓库收录的软件包被添加到了仓库中。把其他类UNIX系统上的软件(或者其他Linux发行版上的软件)移植到Ubuntu Linux中是一件复杂的事情,需要的时间和努力会比预期更多。

不考虑Ubuntu软件仓库,任何已经出现在Debian软件仓库中至少4至5年的软件都将可能成为我们移植打包工作可能面临的困难。这还是个保守的假设。如果仅仅只是将源代码拷贝过来,简单地为Ubuntu(或者Debian)编译一下就可以,相信很多人早就做过了。那些特定的、一直以来没有人移植打包的软件主要是因为他们在Debian/Ubuntu上不能完美编译。

这份文档针对那些从未试过给Debian/Ubuntu制作软件包的读者。因为我们发现,即使软件编译和运行无错,打包的实际过程仍然可能会让人感到困惑。希望随着项目的推进,社区把更多的精力花费在软件包检查上,使我们制作的软件包质量过硬。

2 工具

Ubuntu/Debian的开发新手经常会对“source”这个词感到困惑。“Source-code”通常指某个程序(program),或者某个应用(application),或者软件包的源代码。当我们说“Sources”的时候,指的是用于构建软件包的文件。例如,软件包“Foo”的“source-code”(源代码)是一个或者一堆文本文件,通过GCC编译连接之后可以产生二进制可执行文件;而我们所说的“Foo”软件包的“sources”,指的是所有用于构建Foo.deb这个debian包的文件,其中包括源代码文件。

构建deb软件包的基本过程如下:

   * 下载软件的源码包;
   * 把源码包解压缩到某个目录;
   * 在源码目录内创建debian化目录 (./debian).
   * 修改./debian目录内的文件,如包维护者的详细信息、包描述,等等;
   * 在本机编译源代码;
   * 在本机生成.deb包;
   * 把经过我们修改后能成功编译生成deb包的sources上传到Launchpad PPA[1]。 

当软件成功地上传到Launchpad,并在Launchpad上成功编译生成deb包后,我们的工作就基本上完成了。我们的Launchpad PPA源地址可以分享给其他想使用我们的deb包的人。我们甚至可以申请把我们的deb包移入Ubuntu的官方主软件仓库中。

这过程中需要用到的工具至少有:

   * 浏览器,或者类似的软件——用于下载软件的源代码包;
   * 解压缩软件——用于解压下载回来的源代码包;
   * dh_make(dh-make包的一部分)——用于自动创建./debian目录和其他用于创建.deb包的骨架模板文件;
   * make(Gnu make)——构建过程中要用到的工具;
   * debchange/dch(devscripts包的一部分)——用于编辑包的版本号;
   * debuild(devscripts包的一部分)——运行构建过程,包括编译连接,以及生成deb包;
   * fakeroot(fakeroot包的一部分)——这个东西是必须的;
   * dput——上传经过签名的deb文件。

建议所有打包工作都在较新的Ubuntu系统下进行,这样可以大大方便和简化整个过程。

3 引入异种包(Alien Packages)

异种包(Alien Packages)是针对其他系统的软件包。例如针对Red Hat系统的软件包,是RPM格式的。比起那些还未打包过的软件来,将这些软件移植到Ubuntu系统相对比较容易,因为所有的包依赖、运行时依赖、编译时依赖等,都是已知的。

软件包alien(软件仓库中有)能够自动地将其他二进制异种包转换成.deb包。不过,这种转换仅仅只限于二进制包。理想的deb包构应该从源代码开始,所有用于构建deb包的源文件(sources)都应该是源代码(source-code)。

4 编译专门针对类Unix系统的源码包

下载源代码后,将其解压到一个目录中,给该源代码目录起个适合的名字,例如“Foo-1.2.3”[2]。

在终端中,cd进刚才所说的那个源代码目录,执行dh_make,生成打包需要用到的文件,包括一些控制文件(control files)和编译规则文件(rules文件,自动生成的rules文件使用了默认规则)。

大多数包含autoconf工具生成的configure脚本的unix软件源码包都几乎不用其他更深入的工作即可干净地构建。然而有少数源码包里面可能没有configure脚本文件,这需要修改才能工作。由于移植工作固有的缺陷,以及其他不同的平台的软件多种多样[3],我将只涉及将一个可完全正常工作的应用程序源码包在Launchpad打包的问题[4]。

5 从可正常工作的源码(Working Sources)构建Ubuntu软件包

我假设读者已经下载了一个应用程序的源代码,并希望将该应用程序构建成一个Debian包。在我的例子中,我写了一个基于脚本的独立应用程序,以及安装、卸载程序,它应该能在大多数Linux发行版上运行[5]。

5.1 下载源码包

我们可以从sourceforge下载下面例子中用到的vob2mpeg版本。用下面的命令取得所使用的应用程序的确切版本。

$ svn co https://vob2mpeg.svn.sourceforge.net/svnroot/vob2mpeg/tags/vob2mpeg-0.0.1
A    vob2mpeg-0.0.1/vob2mpeg.profile
A    vob2mpeg-0.0.1/uninstall-vob2mpeg.sh
A    vob2mpeg-0.0.1/vob2mpeg
A    vob2mpeg-0.0.1/LICENCE
A    vob2mpeg-0.0.1/VERSION
A    vob2mpeg-0.0.1/CHANGELOG
A    vob2mpeg-0.0.1/vob2mpeg-install.conf
A    vob2mpeg-0.0.1/CREDITS
A    vob2mpeg-0.0.1/README
A    vob2mpeg-0.0.1/install-vob2mpeg.sh
Checked out revision 7.

此时不需要解压,因为我们取回的上游源代码是未压缩的。同样,源码目录页无需重新命名,它已经是适合的名字了:vob2mpeg-0.0.1。我们需要做的是,创建一个原始上游源代码的压缩包,以便我们对程序源代码所做的任何修改都能记录下来并跟未作修改的原始上游源代码作比较。

5.2 创建Debian控制文件

令人高兴的是,dh_make能用--create-orig标志创建原始上游压缩包。同时dh_make还生成所有其他用于构建deb包所需的所有控制文件:

$ cd vob2mpeg-0.0.1/
$ ls -F
CHANGELOG             README                  vob2mpeg-install.conf
CREDITS               uninstall-vob2mpeg.sh* vob2mpeg.profile
install-vob2mpeg.sh* VERSION
LICENCE               vob2mpeg*
$ dh_make --createorig --copyright GPL --email [email protected] --single
Maintainer name : Lelanthran Krishna Manickum
Email-Address   : [email protected]
Date            : Mon, 12 Jan 2009 22:42:04 +0200
Package Name    : vob2mpeg
Version         : 0.0.1
License         : gpl
Type of Package : Single
Hit <enter> to confirm:
Currently there is no top level Makefile. This may require additional tuning.
Done. Please edit the files in the debian/ subdirectory now. You should also
check that the vob2mpeg Makefiles install into $DESTDIR and not in / .
$ ls -F
CHANGELOG install-vob2mpeg.sh* uninstall-vob2mpeg.sh* vob2mpeg-install.conf
CREDITS    LICENCE                VERSION                vob2mpeg.profile
debian/    README                 vob2mpeg*
$ ls -F debian/
changelog emacsen-install.ex manpage.xml.ex rules*
compat     emacsen-remove.ex    menu.ex        vob2mpeg-default.ex
control    emacsen-startup.ex postinst.ex      vob2mpeg.doc-base.EX
copyright init.d.ex             postrm.ex      watch.ex
cron.d.ex init.d.lsb.ex         preinst.ex
dirs       manpage.1.ex         prerm.ex
docs       manpage.sgml.ex      README.Debian

可以看到,“debian”目录已经生成。这个目录里面包含所有Debian建包工具创建deb包所需的信息,包括用于编译应用程序自身的构建指令。这些指令是一种解释程序,无需编译任何实际的源代码。

5.3 修改控制文件

在我们继续深入之前,debian目录下的文件要作一些修改。首先,必须编辑控制文件,使之反映正确的信息。这样的编辑,结果如下:

$ cat debian/control
Source: vob2mpeg
Section: unknown
Priority: extra
Maintainer: Lelanthran Krishna Manickum <[email protected]>
Build-Depends: debhelper (>= 5)
Standards-Version: 3.7.2
Package: vob2mpeg Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: <insert up to 60 chars description> <insert long description, indented with spaces> $ vi debian/control $ cat debian/control Source: vob2mpeg Section: graphics Priority: extra Maintainer: Lelanthran Krishna Manickum <[email protected]> Build-Depends: debhelper (>= 5) Standards-Version: 3.7.2 Package: vob2mpeg Architecture: any Depends: ffmpeg, tcl, tk Homepage: http://vob2mpeg.sourceforge.net/ Description: GUI app to convert VOB files to MPEG files A GUI wrapper to convert VOB files to MPEG files using ffmpeg. Allows user to change certain attributes of the movies in the conversion, such as scale, colour (hue, etc), etc. Can be also totally controlled from the command line enabling batch use. $

最后,在这个简单的打包练习例子中,所有debian目录下的的样板文件(*.[Ee][Xx])都是非必须的——这些文件只不过是例子罢了,故此我们将其删除。

$ rm debian/*.[Ee][Xx]

5.4 修改规则文件

在我们继续尝试创建Debian的软件包之前,还要修改规则文件。debian/rules文件是一个Makefile文件,make将执行它来编译构建程序。在这里,由于我们什么也不编译,这个文件将被削减到仅仅只包含创建一个软件分发所需要的内容。这个应用程序(vob2mpeg)有一个安装(和卸载)脚本必须被执行。例如,vob2mpeg通过执行一个包含可选的配置文件并可指定安装位置的安装脚本,这样安装在Linux系统里面。由于我们希望所有的文件安装到./debian/vob2mpeg,我们从上游源文件提供的例子文件来创建一个配置文件。

$ cp vob2mpeg-install.conf debian/
$ cat debian/vob2mpeg-install.conf
#
# Installation settings for vob2mpeg installation script
# Store variables in this file so that porting to different
# packaging systems becomes trivial and not hellish
#
# Variables in this file are never over-ridden, uncomment
# the lines below and replace with your own settings
#
export DEST_ETC=/tmp/test/etc
export DEST_BIN=/tmp/test/usr/bin
export DEST_DOC=/tmp/test/usr/share/doc/vob2mpeg
# The files to actually install, please do not change this export ETC_FILES="vob2mpeg.profile $CONF_FILE" export DOC_FILES="README CREDITS LICENCE VERSION CHANGELOG" export BIN_FILES="vob2mpeg install-vob2mpeg.sh uninstall-vob2mpeg.sh" # $ vi debian/vob2mpeg-install.conf $ cat debian/vob2mpeg-install.conf # # Installation settings for vob2mpeg installation script # Store variables in this file so that porting to different # packaging systems becomes trivial and not hellish # # Variables in this file are never over-ridden, uncomment # the lines below and replace with your own settings # export DEST_ETC=debian/vob2mpeg/etc export DEST_BIN=debian/vob2mpeg/usr/bin export DEST_DOC=debian/vob2mpeg/usr/share/doc/vob2mpeg
# The files to actually install, please do not change this export ETC_FILES="vob2mpeg.profile $CONF_FILE" export DOC_FILES="README CREDITS LICENCE VERSION CHANGELOG" export BIN_FILES="vob2mpeg install-vob2mpeg.sh uninstall-vob2mpeg.sh" # $

因此,我们确保当运行vob2mpeg安装脚本时,它会自行安装到./debian/vob2mpeg。然后,我们可以从该目录中的文件创建deb包。现在我们修改规则文件来告诉它如何建立包文件(会被安装的文件)。因为我们将只修改构建(build)、安装(install)和清理(clean)的目标,我将把该文件的其余部分<...喀嚓...>掉。

$ cat debian/rules
#!/usr/bin/make -f
<...喀嚓...>
build-stamp: configure-stamp
        dh_testdir
# Add here commands to compile the package. $(MAKE) #docbook-to-man debian/vob2mpeg.sgml > vob2mpeg.1
touch $@
clean: dh_testdir dh_testroot rm -f build-stamp configure-stamp
# Add here commands to clean up after the build process. -$(MAKE) clean
dh_clean
install: build dh_testdir dh_testroot dh_clean -k dh_installdirs
# Add here commands to install the package into debian/vob2mpeg. $(MAKE) DESTDIR=$(CURDIR)/debian/vob2mpeg install <...喀嚓...> $ vi debian/rules $ cat debian/rules #!/usr/bin/make -f <...喀嚓...> build-stamp: configure-stamp dh_testdir
# Add here commands to compile the package.
#docbook-to-man debian/vob2mpeg.sgml > vob2mpeg.1
touch $@
clean: dh_testdir dh_testroot rm -f build-stamp configure-stamp
# Add here commands to clean up after the build process. rm -rf ./debian/vob2mpeg
dh_clean
install: build dh_testdir dh_testroot dh_clean -k dh_installdirs
# Add here commands to install the package into debian/vob2mpeg. ./install-vob2mpeg.sh ./debian/vob2mpeg-install.conf <...喀嚓...> $

只有执行编译、文件安装、移除动作相关的行被修改,因此建构(build)、安装(install)和清理(clean)目标被改成不编译(因为在我们这个例子中什么也不用编译)。安装(install)目标仅仅只是调用安装程序把文件复制安装到debian/vob2mpeg目录内,而清理(clean)目标则负责移除上述目录。

注意我们略掉了在debian目录下提供preinst和postinst脚本。如果提供了这些脚本,那么他们会分别在安装deb包之前,或者卸载deb包之后被执行。我们这个例子中的软件无需在安装前执行什么动作,卸载后动作也一样不需要。

5.5 打包

现在我们已经完成了所有想作的修改,就等着发出建立deb包文件的命令了。不过,在打包之前,我们还需要核实一下Debian版本号,确保它能在新建的deb文件中反映出来。不要混淆Debian版本号和应用程序的版本号。Debian版本号是我们deb包的版本号,如对于Foo这个软件我们可能会想给它的版本号为1的版本建包。也就是说,我们用于打包的程序源代码目录为Foo-1.0.0。给Foo打包后,我们指定改包的版本号为0.0.1。

现在让我们假设在打包过程中发生了小错误,例如,我们可能在编译Foo的时候使用了某个编译标志(flag)使得制作出来的deb包在lpia架构下会安装运行会出现问题。有用户反馈了错误报告,我们很快修复了这个问题。这时我们需要重新给相同的软件版本打包,制作出了版本号为0.0.2的deb包,而该包软件版本仍然是Foo-1.0.0。

更新版本号。这时我们会用到一个叫dch的工具,它可以自动管理包的版本号。不带任何命令行参数的形式调用dch,会使包的小版本号(minor version number)自动增加,而带 -i 参数(dch -i)方式调用,则使主版本号(major version number)增加。

第一次运行dch后,会打开一个编辑器,里面出现如下这样的内容:

vob2mpeg (0.0.1-1) unstable; urgency=low
* Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP> *
-- Lelanthran Krishna Manickum <lmanickum@esprit> Mon, 12 Jan 2009 23:39:19 +0200

我们直接在编辑器中修改,把上面的unstable更改成实际的Debian或Ubuntu版本名称(在这个例子中,我把unstable改成intrepid,因为我使用的Debian版本名是Intrepid)(译者注:你的可能是Hardy、Lucid、Marverik,或者其他)。每个注释都应遵循给定的惯例格式,以星号开始,没行对准上一行的缩进。更改后的文件看起来像这个样子:

vob2mpeg (0.0.1-1) intrepid; urgency=low
* Initial release * Edited rules and removed build instructions * Edited rules and replaced command for installation * Edited rules and replaced command for target ’clean’
-- Lelanthran Krishna Manickum <lmanickum@esprit> Mon, 12 Jan 2009 23:39:19 +0200

现在我们就可以开始运行debian/rules脚本来建立deb包了:

$ fakeroot debian/rules binary-arch
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
# Add here commands to install the package into debian/vob2mpeg.
./install-vob2mpeg.sh ./debian/vob2mpeg-install.conf
Found installation configuration in ./debian/vob2mpeg-install.conf
-----------./debian/vob2mpeg-install.conf--------------
DEST_ETC is already set to debian/vob2mpeg/etc
DEST_BIN is already set to debian/vob2mpeg/usr/bin
DEST_DOC is already set to debian/vob2mpeg/usr/share/doc/vob2mpeg
ETC_FILES is already set to vob2mpeg.profile ./debian/vob2mpeg-install.conf
DOC_FILES is already set to README CREDITS LICENCE VERSION CHANGELOG
BIN_FILES is already set to vob2mpeg install-vob2mpeg.sh uninstall-vob2mpeg.sh
install: creating directory ‘debian/vob2mpeg/etc’
install: creating directory ‘debian/vob2mpeg/usr/share’
install: creating directory ‘debian/vob2mpeg/usr/share/doc’
install: creating directory ‘debian/vob2mpeg/usr/share/doc/vob2mpeg’
‘vob2mpeg.profile’ -> ‘debian/vob2mpeg/etc/vob2mpeg.profile’
‘./debian/vob2mpeg-install.conf’ -> ‘debian/vob2mpeg/etc/vob2mpeg-install.conf’
‘README’ -> ‘debian/vob2mpeg/usr/share/doc/vob2mpeg/README’
‘CREDITS’ -> ‘debian/vob2mpeg/usr/share/doc/vob2mpeg/CREDITS’
‘LICENCE’ -> ‘debian/vob2mpeg/usr/share/doc/vob2mpeg/LICENCE’
‘VERSION’ -> ‘debian/vob2mpeg/usr/share/doc/vob2mpeg/VERSION’
‘CHANGELOG’ -> ‘debian/vob2mpeg/usr/share/doc/vob2mpeg/CHANGELOG’
‘vob2mpeg’ -> ‘debian/vob2mpeg/usr/bin/vob2mpeg’
‘install-vob2mpeg.sh’ -> ‘debian/vob2mpeg/usr/bin/install-vob2mpeg.sh’
‘uninstall-vob2mpeg.sh’ -> ‘debian/vob2mpeg/usr/bin/uninstall-vob2mpeg.sh’
dh_testdir
dh_testroot
dh_installchangelogs CHANGELOG
dh_installdocs
dh_installexamples
dh_installman
dh_link
dh_strip
dh_compress
dh_fixperms
dh_installdeb
dh_shlibdeps
dh_gencontrol
dpkg-gencontrol: warning: unknown substitution variable ${shlibs:Depends}
dpkg-gencontrol: warning: unknown substitution variable ${misc:Depends}
dh_md5sums
dh_builddeb
dpkg-deb: building package ‘vob2mpeg’ in ‘../vob2mpeg_0.0.1-1_i386.deb’.
$

开始它按照我们的设定建立debian/vob2mpeg目录树,把包内容拷贝(安装)到该目录里面,然后读取控制文件(debian/control),将该目录树中的内容打包成 ../vob2mpeg_0.0.1-1_i386.deb,这就是我们最终得到的deb包。如果我们打deb包只是给自己用,那么工作可以到此结束。如果我们想透过诸如Launchpad PPA这样的方式发布我们制作的deb包,我们就必须对我们的deb包用Launchpad密钥签名。

6 上傳並發佈軟件包

Launchpad provides a very convenient way to redistribute our packages. We simply upload the upstream sources, upload the changes we made to the upstream sources and let Launchpad then build the packages for us. This ensures that, not only do we build our packages on our local machine, but we also find out if the package builds on the various Launchpad virtual machines.

The very first thing to do, if we haven’t already done so, is to create a Launchpad account for us to use. This account will give us a PPA, or Personal Package Archive. All the packages we upload will go into our PPA, and the URL for our PPA can be added to any sources.list file so that our package can be installed via the normal apt-get or synaptic methods by the user.

All the steps in creating an account on Launchpad is beyond the scope of this report, but full instructions and comprehensive help is available on Launchpad itself - https://launchpad.net/. Part of the creation of the Launchpad account requires the user to generate a cryptography key and use this key to digitally sign the code of conduct. This very same will will be used to generate a digitally signed package.

Signing. Once we have tested that our rules file works, we are ready to send the upstream sources and our changes to Launchpad. The program debuild generates a set of files suitable for Launchpad. We specify the key to use when digitally signing the package.

$ debuild -S -kFB43CE54
 dpkg-buildpackage -rfakeroot -d -us -uc -S
dpkg-buildpackage: set CFLAGS to default value: -g -O2
dpkg-buildpackage: set CPPFLAGS to default value:
dpkg-buildpackage: set LDFLAGS to default value: -Wl,-Bsymbolic-functions
dpkg-buildpackage: set FFLAGS to default value: -g -O2
dpkg-buildpackage: set CXXFLAGS to default value: -g -O2
dpkg-buildpackage: source package vob2mpeg
dpkg-buildpackage: source version 0.0.1-1
dpkg-buildpackage: source changed by Lelanthran Krishna Manickum <lmanickum@esprit>
 fakeroot debian/rules clean
dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
# Add here commands to clean up after the build process.
rm -rf ./debian/vob2mpeg
dh_clean
 dpkg-source -b vob2mpeg-0.0.1
dpkg-source: info: using source format ‘1.0’
dpkg-source: info: building vob2mpeg using existing vob2mpeg_0.0.1.orig.tar.gz
dpkg-source: info: building vob2mpeg in vob2mpeg_0.0.1-1.diff.gz
dpkg-source: info: building vob2mpeg in vob2mpeg_0.0.1-1.dsc
 dpkg-genchanges -S >../vob2mpeg_0.0.1-1_source.changes
dpkg-genchanges: including full source code in upload
dpkg-buildpackage: source only upload (original source is included)
Now running lintian...
E: vob2mpeg_0.0.1-1_source.changes: bad-distribution-in-changes-file intrepid
W: vob2mpeg source: out-of-date-standards-version 3.7.2 (current is 3.8.0)
W: vob2mpeg source: changelog-should-mention-nmu
W: vob2mpeg source: source-nmu-has-incorrect-version-number 0.0.1-1
Finished running lintian.
Now signing changes and any dsc files...
 signfile vob2mpeg_0.0.1-1.dsc FB43CE54
You need a passphrase to unlock the secret key for
user: "Lelanthran Krishna Manickum (Final) <[email protected]>"
1024-bit DSA key, ID FB43CE54, created 2008-10-15


 signfile vob2mpeg_0.0.1-1_source.changes FB43CE54
You need a passphrase to unlock the secret key for
user: "Lelanthran Krishna Manickum (Final) <[email protected]>"
1024-bit DSA key, ID FB43CE54, created 2008-10-15


Successfully signed dsc and changes files
$ ls -F ..
vob2mpeg-0.0.1/            vob2mpeg_0.0.1-1_source.build
vob2mpeg_0.0.1-1.diff.gz   vob2mpeg_0.0.1-1_source.changes
vob2mpeg_0.0.1-1.dsc       vob2mpeg_0.0.1.orig.tar.gz
vob2mpeg_0.0.1-1_i386.deb
$

Uploading. Now that we have a set of files that are signed with our key, all thats left is to upload those files to Launchpad. A program called dput is used. In order to use it, we need a ~/.dput.cf that specifies the Launchpad account to beused. My ~/.dput.cf file looks like this:

$ cat ~/.dput.cf
[my-ppa]
fqdn = ppa.launchpad.net
method = ftp
incoming = ~lmanickum/ubuntu/
login = anonymous
allow_unsigned_uploads = 0

When using dput to upload files to my lmanickum account on Launchpad I will tell dput to use the profile my-ppa, like this:

$ cd ..
$ dput my-ppa vob2mpeg_0.0.1-1_source.changes
Checking Signature on .changes
gpg: Signature made Tue 13 Jan 2009 08:13:33 SAST using DSA key ID FB43CE54
gpg: Good signature from "Lelanthran Krishna Manickum (Final) <[email protected]>"
Good signature on /home/lelanthran/pack/vob2mpeg_0.0.1-1_source.changes.
Checking Signature on .dsc
gpg: Signature made Tue 13 Jan 2009 08:13:23 SAST using DSA key ID FB43CE54
gpg: Good signature from "Lelanthran Krishna Manickum (Final) <[email protected]>"
Good signature on /home/lelanthran/pack/vob2mpeg_0.0.1-1.dsc.
Uploading to my-ppa (via ftp to ppa.launchpad.net):
  vob2mpeg_0.0.1-1.dsc: done.
  vob2mpeg_0.0.1.orig.tar.gz: done.
  vob2mpeg_0.0.1-1.diff.gz: done.
  vob2mpeg_0.0.1-1_source.changes: done.
Successfully uploaded packages.
Not running dinstall.
$

PPA. If a problem exists, then Launchpad will notify us via email. Once Launchpad has unarchived our upstream sources, applied our changes, run the build and install targets[7] and created the .deb file, then we should see the package listed in ourPPA, as shown in Figure 1. If there are problems, then they will also be listed there, and clicking on the relevant text will take you to the build log, which will help you identify the problem.