chiark / gitweb /
ba8a8463e4b695e3f675c969d0f219788ef6064b
[developers-reference.git] / tools.dbk
1 <?xml version="1.0" encoding="utf-8"?>
2 <!DOCTYPE appendix PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3     "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4   <!ENTITY % commondata SYSTEM "common.ent" > %commondata;
5 ]>
6 <appendix id="tools">
7 <title>Overview of Debian Maintainer Tools</title>
8 <para>
9 This section contains a rough overview of the tools available to maintainers.
10 The following is by no means complete or definitive, but just a guide to some
11 of the more popular tools.
12 </para>
13 <para>
14 Debian maintainer tools are meant to aid developers and free their time for
15 critical tasks.  As Larry Wall says, there's more than one way to do it.
16 </para>
17 <para>
18 Some people prefer to use high-level package maintenance tools and some do not.
19 Debian is officially agnostic on this issue; any tool which gets the job done
20 is fine.  Therefore, this section is not meant to stipulate to anyone which
21 tools they should use or how they should go about their duties of
22 maintainership.  Nor is it meant to endorse any particular tool to the
23 exclusion of a competing tool.
24 </para>
25 <para>
26 Most of the descriptions of these packages come from the actual package
27 descriptions themselves.  Further information can be found in the package
28 documentation itself.  You can also see more info with the command
29 <command>apt-cache show <replaceable>package-name</replaceable></command>.
30 </para>
31 <section id="tools-core">
32 <title>Core tools</title>
33 <para>
34 The following tools are pretty much required for any maintainer.
35 </para>
36 <section id="dpkg-dev">
37 <title><systemitem role="package">dpkg-dev</systemitem></title>
38 <para>
39 <systemitem role="package">dpkg-dev</systemitem> contains the tools (including
40 <command>dpkg-source</command>) required to unpack, build, and upload Debian
41 source packages.  These utilities contain the fundamental, low-level
42 functionality required to create and manipulate packages; as such, they are
43 essential for any Debian maintainer.
44 </para>
45 </section>
46
47 <section id="debconf">
48 <title><systemitem role="package">debconf</systemitem></title>
49 <para>
50 <systemitem role="package">debconf</systemitem> provides a consistent interface
51 to configuring packages interactively.  It is user interface independent,
52 allowing end-users to configure packages with a text-only interface, an HTML
53 interface, or a dialog interface.  New interfaces can be added as modules.
54 </para>
55 <para>
56 You can find documentation for this package in the <systemitem
57 role="package">debconf-doc</systemitem> package.
58 </para>
59 <para>
60 Many feel that this system should be used for all packages which require
61 interactive configuration; see <xref linkend="bpp-config-mgmt"/>.  <systemitem
62 role="package">debconf</systemitem> is not currently required by Debian Policy,
63 but that may change in the future.
64 </para>
65 </section>
66
67 <section id="fakeroot">
68 <title><systemitem role="package">fakeroot</systemitem></title>
69 <para>
70 <systemitem role="package">fakeroot</systemitem> simulates root privileges.
71 This enables you to build packages without being root (packages usually want to
72 install files with root ownership).  If you have <systemitem
73 role="package">fakeroot</systemitem> installed,
74 <command>dpkg-buildpackage</command> will use it automatically.
75 </para>
76 </section>
77
78 </section>
79
80 <section id="tools-lint">
81 <title>Package lint tools</title>
82 <para>
83 According to the Free On-line Dictionary of Computing (FOLDOC), `lint' is a
84 Unix C language processor which carries out more thorough checks on the code
85 than is usual with C compilers.  Package lint tools help package maintainers by
86 automatically finding common problems and policy violations in their packages.
87 </para>
88 <section id="lintian">
89 <title><systemitem role="package">lintian</systemitem></title>
90 <para>
91 <systemitem role="package">lintian</systemitem> dissects Debian packages and
92 emits information about bugs and policy violations.  It contains automated
93 checks for many aspects of Debian policy as well as some checks for common
94 errors.
95 </para>
96 <para>
97 You should periodically get the newest <systemitem
98 role="package">lintian</systemitem> from <literal>unstable</literal> and check
99 over all your packages.  Notice that the <literal>-i</literal> option provides
100 detailed explanations of what each error or warning means, what its basis in
101 Policy is, and commonly how you can fix the problem.
102 </para>
103 <para>
104 Refer to <xref linkend="sanitycheck"/> for more information on how and when to
105 use Lintian.
106 </para>
107 <para>
108 You can also see a summary of all problems reported by Lintian on your packages
109 at <ulink url="&url-lintian;"></ulink>.  These reports contain the
110 latest <command>lintian</command> output for the whole development distribution
111 (<literal>unstable</literal>).
112 </para>
113 </section>
114
115 <section id="debdiff">
116 <title><command>debdiff</command></title>
117 <para>
118 <command>debdiff</command> (from the <systemitem
119 role="package">devscripts</systemitem> package, <xref linkend="devscripts"/>)
120 compares file lists and control files of two packages.  It is a simple
121 regression test, as it will help you notice if the number of binary packages
122 has changed since the last upload, or if something has changed in the control
123 file.  Of course, some of the changes it reports will be all right, but it can
124 help you prevent various accidents.
125 </para>
126 <para>
127 You can run it over a pair of binary packages:
128 </para>
129 <screen>
130 debdiff package_1-1_arch.deb package_2-1_arch.deb
131 </screen>
132 <para>
133 Or even a pair of changes files:
134 </para>
135 <screen>
136 debdiff package_1-1_arch.changes package_2-1_arch.changes
137 </screen>
138 <para>
139 For more information please see <citerefentry>
140 <refentrytitle>debdiff</refentrytitle> <manvolnum>1</manvolnum>
141 </citerefentry>.
142 </para>
143 </section>
144
145 </section>
146
147 <section id="tools-helpers">
148 <title>Helpers for <filename>debian/rules</filename></title>
149 <para>
150 Package building tools make the process of writing
151 <filename>debian/rules</filename> files easier.  See <xref
152 linkend="helper-scripts"/> for more information about why these might or might
153 not be desired.
154 </para>
155 <section id="debhelper">
156 <title><systemitem role="package">debhelper</systemitem></title>
157 <para>
158 <systemitem role="package">debhelper</systemitem> is a collection of programs
159 which can be used in <filename>debian/rules</filename> to automate common tasks
160 related to building binary Debian packages.  <systemitem
161 role="package">debhelper</systemitem> includes programs to install various
162 files into your package, compress files, fix file permissions, and integrate
163 your package with the Debian menu system.
164 </para>
165 <para>
166 Unlike some approaches, <systemitem role="package">debhelper</systemitem> is
167 broken into several small, simple commands which act in a consistent manner.
168 As such, it allows more fine-grained control than some of the other
169 debian/rules tools.
170 </para>
171 <para>
172 There are a number of little <systemitem role="package">debhelper</systemitem>
173 add-on packages, too transient to document.  You can see the list of most of
174 them by doing <literal>apt-cache search ^dh-</literal>.
175 </para>
176 </section>
177
178 <section id="dh-make">
179 <title><systemitem role="package">dh-make</systemitem></title>
180 <para>
181 The <systemitem role="package">dh-make</systemitem> package contains
182 <command>dh_make</command>, a program that creates a skeleton of files
183 necessary to build a Debian package out of a source tree.  As the name
184 suggests, <command>dh_make</command> is a rewrite of <systemitem
185 role="package">debmake</systemitem> and its template files use <command>dh_*</command> programs
186 from <systemitem role="package">debhelper</systemitem>.
187 </para>
188 <para>
189 While the rules files generated by <command>dh_make</command> are in general a
190 sufficient basis for a working package, they are still just the groundwork: the
191 burden still lies on the maintainer to finely tune the generated files and make
192 the package entirely functional and Policy-compliant.
193 </para>
194 </section>
195
196 <section id="equivs">
197 <title><systemitem role="package">equivs</systemitem></title>
198 <para>
199 <systemitem role="package">equivs</systemitem> is another package for making
200 packages.  It is often suggested for local use if you need to make a package
201 simply to fulfill dependencies.  It is also sometimes used when making
202 ``meta-packages'', which are packages whose only purpose is to depend on other
203 packages.
204 </para>
205 </section>
206
207 </section>
208
209 <section id="tools-builders">
210 <title>Package builders</title>
211 <para>
212 The following packages help with the package building process, general driving
213 <command>dpkg-buildpackage</command> as well as handling supporting tasks.
214 </para>
215 <section id="git-buildpackage">
216 <title><systemitem role="package">git-buildpackage</systemitem></title>
217 <para>
218 <systemitem role="package">git-buildpackage</systemitem> provides the
219 capability to inject or import Debian source packages into a Git repository,
220 build a Debian package from the Git repository, and helps in integrating
221 upstream changes into the repository.
222 </para>
223 <para>
224 These utilities provide an infrastructure to facilitate the use of Git by
225 Debian maintainers.  This allows one to keep separate Git branches of a package
226 for <literal>stable</literal>, <literal>unstable</literal> and possibly
227 <literal>experimental</literal> distributions, along with the other benefits
228 of a version control system.
229 </para>
230 </section>
231
232 <section id="debootstrap">
233 <title><systemitem role="package">debootstrap</systemitem></title>
234 <para>
235 The <systemitem role="package">debootstrap</systemitem> package and script
236 allows you to bootstrap a Debian base system into any part of your filesystem.
237 By base system, we mean the bare minimum of packages required to operate and
238 install the rest of the system.
239 </para>
240 <para>
241 Having a system like this can be useful in many ways.  For instance, you can
242 <command>chroot</command> into it if you want to test your build dependencies.
243 Or you can test how your package behaves when installed into a bare base
244 system.  Chroot builders use this package; see below.
245 </para>
246 </section>
247
248 <section id="pbuilder">
249 <title><systemitem role="package">pbuilder</systemitem></title>
250 <para>
251 <systemitem role="package">pbuilder</systemitem> constructs a chrooted system,
252 and builds a package inside the chroot.  It is very useful to check that a
253 package's build-dependencies are correct, and to be sure that unnecessary and
254 wrong build dependencies will not exist in the resulting package.
255 </para>
256 <para>
257 A related package is <systemitem role="package">cowbuilder</systemitem>,
258 which speeds up the build process using COW filesystem on any standard Linux filesystem.
259 </para>
260 </section>
261
262 <section id="sbuild">
263 <title><systemitem role="package">sbuild</systemitem></title>
264 <para>
265 <systemitem role="package">sbuild</systemitem> is another automated builder.
266 It can use chrooted environments as well.  It can be used stand-alone, or as
267 part of a networked, distributed build environment.  As the latter, it is part
268 of the system used by porters to build binary packages for all the available
269 architectures.  See <xref linkend="wanna-build"/> for more information, and 
270 <ulink url="&url-buildd;"></ulink> to see the system in action.
271 </para>
272 </section>
273
274 </section>
275
276 <section id="uploaders">
277 <title>Package uploaders</title>
278 <para>
279 The following packages help automate or simplify the process of uploading
280 packages into the official archive.
281 </para>
282 <section id="dupload">
283 <title><systemitem role="package">dupload</systemitem></title>
284 <para>
285 <systemitem role="package">dupload</systemitem> is a package and a script to
286 automatically upload Debian packages to the Debian archive, to log the upload,
287 and to send mail about the upload of a package.  You can configure it for new
288 upload locations or methods.
289 </para>
290 </section>
291
292 <section id="dput">
293 <title><systemitem role="package">dput</systemitem></title>
294 <para>
295 The <systemitem role="package">dput</systemitem> package and script does much
296 the same thing as <systemitem role="package">dupload</systemitem>, but in a
297 different way.  It has some features over <systemitem
298 role="package">dupload</systemitem>, such as the ability to check the GnuPG
299 signature and checksums before uploading, and the possibility of running
300 <command>dinstall</command> in dry-run mode after the upload.
301 </para>
302 </section>
303
304 <section id="dcut">
305 <title><command>dcut</command></title>
306 <para>
307 The <command>dcut</command> script (part of the package <systemitem role="package">dput</systemitem>,
308 <xref linkend="dput"/>) helps in removing files from the ftp upload directory.
309 </para>
310 </section>
311
312 </section>
313
314 <section id="tools-maint-automate">
315 <title>Maintenance automation</title>
316 <para>
317 The following tools help automate different maintenance tasks, from adding
318 changelog entries or signature lines and looking up bugs in Emacs to making use
319 of the newest and official <filename>config.sub</filename>.
320 </para>
321 <section id="devscripts">
322 <title><systemitem role="package">devscripts</systemitem></title>
323 <para>
324 <systemitem role="package">devscripts</systemitem> is a package containing
325 wrappers and tools which are very helpful for maintaining your Debian packages.
326 Example scripts include <command>debchange</command> and
327 <command>dch</command>, which manipulate your
328 <filename>debian/changelog</filename> file from the command-line, and
329 <command>debuild</command>, which is a wrapper around
330 <command>dpkg-buildpackage</command>.  The <command>bts</command> utility is
331 also very helpful to update the state of bug reports on the command line.
332 <command>uscan</command> can be used to watch for new upstream versions of your
333 packages.  <command>debrsign</command> can be used to remotely sign a package
334 prior to upload, which is nice when the machine you build the package on is
335 different from where your GPG keys are.
336 </para>
337 <para>
338 See the <citerefentry> <refentrytitle>devscripts</refentrytitle>
339 <manvolnum>1</manvolnum> </citerefentry> manual page for a complete list of
340 available scripts.
341 </para>
342 </section>
343
344 <section id="autotools-dev">
345 <title><systemitem role="package">autotools-dev</systemitem></title>
346 <para>
347 <systemitem role="package">autotools-dev</systemitem> contains best practices
348 for people who maintain packages which use <command>autoconf</command> and/or
349 <command>automake</command>.  Also contains canonical
350 <filename>config.sub</filename> and <filename>config.guess</filename> files
351 which are known to work on all Debian ports.
352 </para>
353 </section>
354
355 <section id="dpkg-repack">
356 <title><systemitem role="package">dpkg-repack</systemitem></title>
357 <para>
358 <command>dpkg-repack</command> creates Debian package file out of a package
359 that has already been installed.  If any changes have been made to the package
360 while it was unpacked (e.g., files in <filename>/etc</filename> were modified),
361 the new package will inherit the changes.
362 </para>
363 <para>
364 This utility can make it easy to copy packages from one computer to another, or
365 to recreate packages which are installed on your system but no longer available
366 elsewhere, or to save the current state of a package before you upgrade it.
367 </para>
368 </section>
369
370 <section id="alien">
371 <title><systemitem role="package">alien</systemitem></title>
372 <para>
373 <command>alien</command> converts binary packages between various packaging
374 formats, including Debian, RPM (RedHat), LSB (Linux Standard Base), Solaris,
375 and Slackware packages.
376 </para>
377 </section>
378
379 <section id="dpkg-dev-el">
380 <title><systemitem role="package">dpkg-dev-el</systemitem></title>
381 <para>
382 <systemitem role="package">dpkg-dev-el</systemitem> is an Emacs lisp package
383 which provides assistance when editing some of the files in the
384 <filename>debian</filename> directory of your package.  For instance, there are
385 handy functions for listing a package's current bugs, and for finalizing the
386 latest entry in a <filename>debian/changelog</filename> file.
387 </para>
388 </section>
389
390 <section id="dpkg-depcheck">
391 <title><command>dpkg-depcheck</command></title>
392 <para>
393 <command>dpkg-depcheck</command> (from the <systemitem
394 role="package">devscripts</systemitem> package, <xref linkend="devscripts"/>)
395 runs a command under <command>strace</command> to determine all the packages
396 that were used by the said command.
397 </para>
398 <para>
399 For Debian packages, this is useful when you have to compose a
400 <literal>Build-Depends</literal> line for your new package: running the build
401 process through <command>dpkg-depcheck</command> will provide you with a good
402 first approximation of the build-dependencies.  For example:
403 </para>
404 <screen>
405 dpkg-depcheck -b debian/rules build
406 </screen>
407 <para>
408 <command>dpkg-depcheck</command> can also be used to check for run-time
409 dependencies, especially if your package uses <citerefentry>
410 <refentrytitle>exec</refentrytitle> <manvolnum>2</manvolnum> </citerefentry>
411 to run other programs.
412 </para>
413 <para>
414 For more information please see <citerefentry>
415 <refentrytitle>dpkg-depcheck</refentrytitle> <manvolnum>1</manvolnum>
416 </citerefentry>.
417 </para>
418 </section>
419
420 </section>
421
422 <section id="tools-porting">
423 <title>Porting tools</title>
424 <para>
425 The following tools are helpful for porters and for cross-compilation.
426 </para>
427 <section id="quinn-diff">
428 <title><systemitem role="package">quinn-diff</systemitem></title>
429 <para>
430 <systemitem role="package">quinn-diff</systemitem> is used to locate the
431 differences from one architecture to another.  For instance, it could tell you
432 which packages need to be ported for architecture <replaceable>Y</replaceable>,
433 based on architecture <replaceable>X</replaceable>.
434 </para>
435 </section>
436
437 <section id="dpkg-cross">
438 <title><systemitem role="package">dpkg-cross</systemitem></title>
439 <para>
440 <systemitem role="package">dpkg-cross</systemitem> is a tool for installing
441 libraries and headers for cross-compiling in a way similar to <systemitem
442 role="package">dpkg</systemitem>.  Furthermore, the functionality of
443 <command>dpkg-buildpackage</command> and <command>dpkg-shlibdeps</command> is
444 enhanced to support cross-compiling.
445 </para>
446 </section>
447
448 </section>
449
450 <section id="tools-doc">
451 <title>Documentation and information</title>
452 <para>
453 The following packages provide information for maintainers or help with
454 building documentation.
455 </para>
456
457 <section id="docbook-xml">
458 <title><systemitem role="package">docbook-xml</systemitem></title>
459 <para>
460 <systemitem role="package">docbook-xml</systemitem> provides the
461 DocBook XML DTDs, which are commonly used for Debian documentation (as
462 is the older debiandoc SGML DTD). This manual, for instance, is
463 written in DocBook XML.
464 </para>
465 <para>
466 The <systemitem role="package">docbook-xsl</systemitem> package
467 provides the XSL files for building and styling the source to various
468 output formats. You will need an XSLT processor, such as <systemitem
469 role="package">xsltproc</systemitem>, to use the XSL stylesheets.
470 Documentation for the stylesheets can be found in the various
471 <systemitem role="package">docbook-xsl-doc-*</systemitem> packages.
472 </para>
473 <para>
474 To produce PDF from FO, you need an FO processor, such as <systemitem
475 role="package">xmlroff</systemitem> or <systemitem
476 role="package">fop</systemitem>. Another tool to generate PDF from
477 DocBook XML is <systemitem role="package">dblatex</systemitem>.
478 </para>
479 </section>
480
481 <section id="debiandoc-sgml">
482 <title><systemitem role="package">debiandoc-sgml</systemitem></title>
483 <para>
484 <systemitem role="package">debiandoc-sgml</systemitem> provides the DebianDoc
485 SGML DTD, which is commonly used for Debian documentation,
486 but is now deprecated
487 (<systemitem role="package">docbook-xml</systemitem>
488 should be used instead).
489 It also provides scripts for building and
490 styling the source to various output formats.
491 </para>
492 <para>
493 Documentation for the DTD can be found in the <systemitem
494 role="package">debiandoc-sgml-doc</systemitem> package.
495 </para>
496 </section>
497
498 <section id="debian-keyring">
499 <title><systemitem role="package">debian-keyring</systemitem></title>
500 <para>
501 Contains the public GPG and PGP keys of Debian developers.  See <xref
502 linkend="key-maint"/> and the package documentation for more information.
503 </para>
504 </section>
505
506 <section id="debian-maintainers">
507 <title><systemitem role="package">debian-maintainers</systemitem></title>
508 <para>
509 Contains the public GPG keys of Debian Maintainers.
510 See <ulink url="&url-wiki-dm;"></ulink> for more information.
511 </para>
512 </section>
513
514 <section id="debview">
515 <title><systemitem role="package">debview</systemitem></title>
516 <para>
517 <systemitem role="package">debview</systemitem> provides an Emacs mode for
518 viewing Debian binary packages.  This lets you examine a package without
519 unpacking it.
520 </para>
521 </section>
522
523 </section>
524 <!-- FIXME: add the following
525
526 questionable:
527   dbs (referred to above)
528   dpatch (referred to above)
529   debarchiver
530   ucf
531   dpkg-awk
532   grep-dctrl
533   d-shlibs
534   wajig
535   magpie
536   apt-dpkg-ref
537   apt-show-source
538   apt-show-versions
539   pdbv
540   epm
541   apt-src
542   apt-build
543
544 rejected:
545   debaux: too new, unmaintained?
546   dh-make-perl: too new, unmaintained?
547 -->
548 </appendix>