]> git.donarmstrong.com Git - debhelper.git/blob - debhelper.pod
r2033: * Add --ignore option. This is intended to ease dealing with upstream
[debhelper.git] / debhelper.pod
1 =head1 NAME
2
3 debhelper - the debhelper tool suite
4
5 =head1 SYNOPSIS
6
7 B<dh_>I<*> [B<-v>] [B<-a>] [B<-i>] [B<-s>] [B<--no-act>] [B<-ppackage>] [B<-Npackage] [-Ptmpdir>]
8
9 =head1 DESCRIPTION
10
11 Debhelper is used to help you build a debian package. The philosophy behind
12 debhelper is to provide a collection of small, simple, and easily
13 understood tools that are used in debian/rules to automate various common
14 aspects of building a package. This means less work for you, the packager.
15 It also, to some degree means that these tools can be changed if debian
16 policy changes, and packages that use them will require only a rebuild to
17 comply with the new policy.
18
19 A typical debian/rules file that uses debhelper will call several debhelper
20 commands in sequence. Debhelper commands are all named with a "dh_" prefix.
21 Examples of rules files that use debhelper are in
22 F</usr/share/doc/debhelper/examples/>
23
24 To create a new debian package using debhelper, you can just copy one of
25 the sample rules files and edit it by hand. Or you can try the dh-make
26 package, which contains a L<dh_make|dh_make(1)> command that partially
27 automates the process. For a more gentle introduction, the maint-guide debian
28 package contains a tutorial about making your first package using debhelper.
29
30 =head1 DEBHELPER COMMANDS
31
32 Here is the complete list of available debhelper commands. See their man
33 pages for additional documentation.
34
35 =over 4
36
37 #LIST#
38
39 =back
40
41 If a program's name starts with "dh_", and the program is not on the above
42 list, then it is not part of the debhelper package, but it should still
43 work like the other programs described on this page.
44
45 =head1 DEBHELPER CONFIG FILES
46
47 Many debhelper commands make use of files in F<debian/> to control what they
48 do. Besides the common F<debian/changelog> and F<debian/control>, which are
49 in all packages, not just those using debhelper, some additional files can
50 be used to configure the behavior of specific debhelper commands. These
51 files are typically named debian/package.foo (where "package" of course,
52 is replaced with the package that is being acted on).
53
54 For example, dh_installdocs uses files named debian/package.docs to list
55 the documentation files it will install. See the man pages of individual
56 commands for details about the names and formats of the files they use.
57 Generally, these files will list files to act on, one file per line. Some
58 programs in debhelper use pairs of files and destinations or slightly more
59 complicated formats.
60
61 Note that if a package is the first (or only) binary package listed in
62 debian/control, debhelper will use debian/foo if no debian/package.foo
63 file can be found.
64
65 In some rare cases, you may want to have different versions of these files
66 for different architectures. If files named debian/package.foo.arch
67 exist, where "arch" is the same as the output of 
68 "dpkg-architecture -qDEB_HOST_ARCH",
69 then they will be used in preference to other, more general files.
70
71 In many cases, these config files are used to specify various types of
72 files. Documentation or example files to install, files to move, and so on.
73 When appropriate, in cases like these, you can use standard shell wildcard
74 characters ('?' and '*' and '[..]' character classes) in the files.
75
76 You can also put comments in these files; lines beginning with "#" are
77 ignored.
78
79 =head1 SHARED DEBHELPER OPTIONS
80
81 The following command line options are supported by all debhelper programs.
82
83 =over 4
84
85 =item B<-v>, B<--verbose>
86
87 Verbose mode: show all commands that modify the package build directory.
88
89 =item B<--no-act>
90
91 Do not really do anything. If used with -v, the result is that the command
92 will output what it would have done.
93
94 =item B<-a>, B<--arch>
95
96 Act on all architecture dependent packages.
97
98 =item B<-i>, B<--indep>
99
100 Act on all architecture independent packages.
101
102 =item B<->I<ppackage>, B<--package=>I<package>
103
104 Act on the package named "package". This option may be specified multiple
105 times to make debhelper operate on a given set of packages.
106
107 =item B<-s>, B<--same-arch>
108
109 This is a smarter version of the -a flag, that is used in some rare
110 circumstances. It understands that if the control file lists "Architecture: i386"
111 for the package, the package should not be acted on on other architectures. So
112 this flag makes the command act on all "Architecture: any" packages, as well
113 as on any packages that have the current architecture explicitly specified.
114 Contrast to the -a flag, which makes the command work on all packages that
115 are not architecture independent.
116
117 =item B<-N>I<package>, B<--no-package=>I<package>
118
119 Do not act on the specified package even if an -a, -i, or -p option lists
120 the package as one that should be acted on.
121
122 =item B<--ignore=>I<file>
123
124 Ignore the specified file. This can be used if debian/ contains a debhelper
125 config file that a debhelper command should not act on. Note that
126 debian/compat, debian/control, and debian/changelog can't be ignored, but
127 then, there should never be a reason to ignore those files.
128
129 For example, if upstream ships a debian/init that you don't want
130 dh_installinit to install, use --ignore=debian/init
131
132 =item B<-P>I<tmpdir>, B<--tmpdir=>I<tmpdir>
133
134 Use "tmpdir" for package build directory. The default is debian/<package>
135
136 =item B<--mainpackage=>I<package>
137
138 This little-used option changes the package which debhelper considers the
139 "main package", that is, the first one listed in debian/control, and the
140 one for which debian/foo files can be used instead of the usual
141 debian/package.foo files.
142
143 =back
144
145 =head1 COMMON DEBHELPER OPTIONS
146
147 The following command line options are supported by some debhelper programs.
148 See the man page of each program for a complete explanation of what each
149 option does.
150
151 =over 4
152
153 =item B<-n>
154
155 Do not modify postinst/postrm/etc scripts.
156
157 =item B<-X>I<item>, B<--exclude=>I<item>
158
159 Exclude an item from processing. This option may be used multiple times,
160 to exclude more than one thing.
161
162 =item B<-A>, B<--all>
163
164 Makes files or other items that are specified on the command line take effect
165 in ALL packages acted on, not just the first.
166
167 =back
168
169 =head1 NOTES
170
171 =head2 Multiple binary package support
172
173 If your source package generates more than one binary package, debhelper
174 programs will default to acting on all binary packages when run. If your
175 source package happens to generate one architecture dependent package, and
176 another architecture independent package, this is not the correct behavior,
177 because you need to generate the architecture dependent packages in the
178 binary-arch debian/rules target, and the architecture independent packages
179 in the binary-indep debian/rules target.
180
181 To facilitate this, as well as give you more control over which packages
182 are acted on by debhelper programs, all debhelper programs accept the
183 B<-a>, B<-i>, B<-p>, and B<-s> parameters. These parameters are cumulative. 
184 If none are given, debhelper programs default to acting on all packages listed
185 in the control file.
186
187 See F</usr/share/doc/debhelper/examples/rules.multi> for an example of how to
188 use this in a package that generates multiple binary packages.
189
190 =head2 Automatic generation of debian install scripts
191
192 Some debhelper commands will automatically generate parts of debian
193 maintainer scripts. If you want these automatically generated things
194 included in your existing debian maintainer scripts, then you need to add
195 "#DEBHELPER#" to your scripts, in the place the code should be added.
196 "#DEBHELPER#" will be replaced by any auto-generated code when you run
197 dh_installdeb. 
198
199 If a script does not exist at all and debhelper needs to add something to
200 it, then debhelper will create the complete script.
201
202 All debhelper commands that automatically generate code in this way let it
203 be disabled by the -n parameter (see above).
204
205 Note that the inserted code will be shell code, so you cannot directly use
206 it in a perl script. If you would like to embed it into a perl script, here
207 is one way to do that (note that I made sure that $1, $2, etc are set with
208 the set command):
209
210   my $temp="set -e\nset -- @ARGV\n" . << 'EOF';
211   #DEBHELPER#
212   EOF
213   system ($temp) / 256 == 0
214         or die "Problem with debhelper scripts: $!";
215
216 =head2 Automatic generation of miscellaneous dependencies.
217
218 Some debhelper commands may make the generated package need to depend on
219 some other packages. For example, if you use L<dh_installdebconf(1)>, your
220 package will generally need to depend on debconf. Or if you use
221 L<dh_installxfonts(1)>, your package will generally need to depend on a
222 particular version of xutils. Keeping track of these miscellaneous
223 dependencies can be annoying since they are dependant on how debhelper does
224 things, so debhelper offers a way to automate it.
225
226 All commands of this type, besides documenting what dependencies may be
227 needed on their man pages, will automatically generate a substvar called
228 ${misc:Depends}. If you put that token into your debian/control file, it
229 will be expanded to the dependencies debhelper figures you need. 
230
231 This is entirely independent of the standard ${shlibs:Depends} generated by
232 L<dh_makeshlibs(1)>, and the ${perl:Depends} generated by L<dh_perl(1)>.
233 You can choose not to use any of these, if debhelper's guesses don't match
234 reality.
235
236 =head2 Package build directories
237
238 By default, all debhelper programs assume that the temporary directory used
239 for assembling the tree of files in a package is debian/<package>.
240
241 Sometimes, you might want to use some other temporary directory. This is
242 supported by the -P flag. For example, "dh_installdocs -Pdebian/tmp", will
243 use debian/tmp as the temporary directory. Note that if you use -P, the 
244 debhelper programs can only be acting on a single package at a time. So if 
245 you have a package that builds many binary packages, you will need to also 
246 use the -p flag to specify which binary package the debhelper program will
247 act on.
248
249 =head2 Debhelper compatibility levels
250
251 From time to time, major non-backwards-compatible changes need to be made
252 to debhelper, to keep it clean and well-designed as needs change and its
253 author gains more experience. To prevent such major changes from breaking
254 existing packages, the concept of debhelper compatibility levels was 
255 introduced. You tell debhelper which compatibility level it should use, and
256 it modifies its behavior in various ways.
257
258 Tell debhelper what compatibility level to use by writing a number to
259 debian/compat. For example, to turn on V5 mode:
260
261   % echo 5 > debian/compat
262
263 Unless otherwise indicated, all debhelper documentation assumes that you
264 are using the most recent compatibility level, and in most cases does not
265 indicate if the behavior is different in an earlier compatibility level, so
266 if you are not using the most recent compatibility level, you're advised to
267 read below for notes about what is different in earlier compatibility
268 levels.
269
270 These are the available compatibility levels:
271
272 =over 4
273
274 =item V1
275
276 This is the original debhelper compatibility level, and so it is the default
277 one. In this mode, debhelper will use debian/tmp as the package tree
278 directory for the first binary package listed in the control file, while using
279 debian/<package> for all other packages listed in the control file.
280
281 This mode is deprecated.
282
283 =item V2
284
285 In this mode, debhelper will consistently use debian/<package>
286 as the package tree directory for every package that is built.
287
288 This mode is deprecated.
289
290 =item V3
291
292 This mode works like V2, with the following additions:
293
294 =over 8
295
296 =item -
297
298 Debhelper config files support globbing via * and ?, when appropriate. To
299 turn this off and use those characters raw, just prefix with a backslash.
300
301 =item -
302
303 dh_makeshlibs makes the postinst and postrm scripts call ldconfig.
304
305 =item -
306
307 Every file in etc/ is automatically flagged as a conffile by dh_installdeb.
308
309 =back
310
311 This mode is deprecated.
312
313 =item V4
314
315 Changes from V3 are:
316
317 =over 8
318
319 =item -
320
321 dh_makeshlibs -V will not include the debian part of the version number in
322 the generated dependency line in the shlibs file.
323
324 =item -
325
326 You are encouraged to put the new ${misc:Depends} into debian/control to
327 supplement the ${shlibs:Depends} field.
328
329 =item -
330
331 dh_fixperms will make all files in bin/ directories and in etc/init.d 
332 executable.
333
334 =item -
335
336 dh_link will correct existing links to conform with policy.
337
338 =back
339
340 =item V5
341
342 This is the recommended mode of operation. It does everything V4 does,
343 plus:
344
345 =over 8
346
347 =item -
348
349 Comments are ignored in debhelper config files.
350
351 =item -
352
353 dh_strip --dbg-package now specifies the name of a package to put debugging
354 symbols in, not the packages to take the symbols from.
355
356 =item -
357
358 dh_installdocs skips installing empty files.
359
360 =item -
361
362 dh_install errors out if wildcards expand to nothing.
363
364 =back
365
366 =item V6
367
368 This mode is still under development. Currently it has these differences
369 compared to V5:
370
371 =over 8
372
373 =item -
374
375 Commands that generate maintainer script fragements will order the
376 fragements in reverse order for the prerm and postrm scripts.
377
378 =item -
379
380 dh_installwm will install a slave manpage link for x-window-manager.1.gz,
381 if it sees the man page in usr/share/man/man1 in the package build
382 directory.
383
384 =item -
385
386 dh_builddeb did not previously delete everything matching
387 DH_ALWAYS_EXCLUDE, if it was set to a list of things to exclude, such as
388 "CVS:.svn". Now it does.
389
390 =item -
391
392 dh_installman allows overwriting existing man pages in the package build
393 directory. In previous compatability levels it silently refuses to do this.
394
395 =back
396
397 =back
398
399 =head2 Doc directory symlinks
400
401 Sometimes it is useful to make a package not contain a /usr/share/doc/package
402 directory at all, instead placing just a dangling symlink in the binary
403 package, that points to some other doc directory. Policy says this is ok if
404 your package depends on the package whose doc directory it uses. To
405 accomplish this, just don't tell debhelper to install any documentation
406 files into the package, and use dh_link to set up the symlink (or do it by
407 hand), and debhelper should do the right thing: notice it is a dangling
408 symlink and not try to install a copyright file or changelog.
409
410 =head2 udebs
411
412 Debhelper includes support for udebs. To create a udeb with debhelper,
413 add "XC-Package-Type: udeb" to the package's stanza in debian/control, and
414 build-depend on debhelper (>= 4.2). Debhelper will try to create udebs that
415 comply with debian-installer policy, by making the generated package files
416 end in ".udeb", not installing any documentation into a udeb, skipping over
417 preinst, postrm, prerm, and config scripts, etc.
418
419 =head2 Other notes
420
421 In general, if any debhelper program needs a directory to exist under
422 debian/, it will create it. I haven't bothered to document this in all the
423 man pages, but for example, dh_installdeb knows to make debian/<package>/DEBIAN/
424 before trying to put files there, dh_installmenu knows you need a
425 debian/<package>/usr/share/menu/ before installing the menu files, etc.
426
427 Once your package uses debhelper to build, be sure to add
428 debhelper to your Build-Depends line in debian/control. You should
429 build-depend on a version of debhelper equal to (or greater than) the
430 debhelper compatibility level your package uses. So if your package used
431 compatibility level 5:
432
433   Build-Depends: debhelper (>= 5)
434
435 =head1 ENVIRONMENT
436
437 =over 4
438
439 =item DH_VERBOSE
440
441 Set to 1 to enable verbose mode. Debhelper will output every command it runs
442 that modifies files on the build system.
443
444 =item DH_COMPAT
445
446 Temporarily specifies what compatibility level debhelper should run at,
447 overriding any value in debian/compat.
448
449 =item DH_NO_ACT
450
451 Set to 1 to enable no-act mode.
452
453 =item DH_OPTIONS
454
455 Anything in this variable will be prepended to the command line arguments
456 of all debhelper commands. This is useful in some situations, for example,
457 if you need to pass -p to all debhelper commands that will be run. One good
458 way to set DH_OPTIONS is by using "Target-specific Variable Values" in your
459 debian/rules file. See the make documentation for details on doing this.
460
461 =item DH_ALWAYS_EXCLUDE
462
463 If set, this adds the value the variable is set to to the -X options of all
464 commands that support the -X option. Moreover, dh_builddeb will rm -rf
465 anything that matches the value in your package build tree.
466
467 This can be useful if you are doing a build from a CVS source tree, in
468 which case setting DH_ALWAYS_EXCLUDE=CVS will prevent any CVS directories
469 from sneaking into the package you build. Or, if a package has a source
470 tarball that (unwisely) includes CVS directories, you might want to export
471 DH_ALWAYS_EXCLUDE=CVS in debian/rules, to make it take effect wherever
472 your package is built.
473
474 Multiple things to exclude can be separated with colons, as in
475 DH_ALWAYS_EXCLUDE=CVS:.svn
476
477 =back
478
479 =head1 SEE ALSO
480
481 =over 4
482
483 =item F</usr/share/doc/debhelper/examples/>
484
485 A set of example debian/rules files that use debhelper.
486
487 =item L<http://kitenet.net/~joey/code/debhelper/>
488
489 Debhelper web site.
490
491 =back
492
493 =head1 AUTHOR
494
495 Joey Hess <joeyh@debian.org>
496
497 =cut