]> git.donarmstrong.com Git - debhelper.git/blob - debhelper.pod
Merge branch 'wheezy'
[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<-p>I<package>] [B<-N>I<package>] [B<-P>I<tmpdir>]
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 F<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 F<debian/rules> file that uses debhelper will call several debhelper
20 commands in sequence, or use L<dh(1)> to automate this process. Examples of
21 rules files that use debhelper are in F</usr/share/doc/debhelper/examples/>
22
23 To create a new Debian package using debhelper, you can just copy one of
24 the sample rules files and edit it by hand. Or you can try the B<dh-make>
25 package, which contains a L<dh_make|dh_make(1)> command that partially
26 automates the process. For a more gentle introduction, the B<maint-guide> Debian 
27 package contains a tutorial about making your first package using debhelper.
28
29 =head1 DEBHELPER COMMANDS
30
31 Here is the list of debhelper commands you can use. See their man
32 pages for additional documentation.
33
34 =over 4
35
36 #LIST#
37
38 =back
39
40 =head2 Deprecated Commands
41
42 A few debhelper commands are deprecated and should not be used.
43
44 =over 4
45
46 #LIST_DEPRECATED#
47
48 =back
49
50 =head2 Other Commands
51
52 If a program's name starts with B<dh_>, and the program is not on the above
53 lists, then it is not part of the debhelper package, but it should still
54 work like the other programs described on this page.
55
56 =head1 DEBHELPER CONFIG FILES
57
58 Many debhelper commands make use of files in F<debian/> to control what they
59 do. Besides the common F<debian/changelog> and F<debian/control>, which are
60 in all packages, not just those using debhelper, some additional files can
61 be used to configure the behavior of specific debhelper commands. These
62 files are typically named debian/I<package>.foo (where I<package> of course,
63 is replaced with the package that is being acted on).
64
65 For example, B<dh_installdocs> uses files named F<debian/package.docs> to list
66 the documentation files it will install. See the man pages of individual
67 commands for details about the names and formats of the files they use.
68 Generally, these files will list files to act on, one file per line. Some
69 programs in debhelper use pairs of files and destinations or slightly more
70 complicated formats.
71
72 Note for the first (or only) binary package listed in
73 F<debian/control>, debhelper will use F<debian/foo> when there's no
74 F<debian/package.foo> file.
75
76 In some rare cases, you may want to have different versions of these files
77 for different architectures or OSes. If files named debian/I<package>.foo.I<ARCH>
78 or debian/I<package>.foo.I<OS> exist, where I<ARCH> and I<OS> are the same as the
79 output of "B<dpkg-architecture -qDEB_HOST_ARCH>" /
80 "B<dpkg-architecture -qDEB_HOST_ARCH_OS>",
81 then they will be used in preference to other, more general files.
82
83 Mostly, these config files are used to specify lists of various types of
84 files. Documentation or example files to install, files to move, and so on.
85 When appropriate, in cases like these, you can use standard shell wildcard
86 characters (B<?> and B<*> and B<[>I<..>B<]> character classes) in the files.
87 You can also put comments in these files; lines beginning with B<#> are
88 ignored.
89
90 The syntax of these files is intentionally kept very simple to make them
91 easy to read, understand, and modify. If you prefer power and complexity,
92 you can make the file executable, and write a program that outputs
93 whatever content is appropriate for a given situation. When you do so,
94 the output is not further processed to expand wildcards or strip comments.
95
96 =head1 SHARED DEBHELPER OPTIONS
97
98 The following command line options are supported by all debhelper programs.
99
100 =over 4
101
102 =item B<-v>, B<--verbose>
103
104 Verbose mode: show all commands that modify the package build directory.
105
106 =item B<--no-act>
107
108 Do not really do anything. If used with -v, the result is that the command
109 will output what it would have done.
110
111 =item B<-a>, B<--arch>
112
113 Act on architecture dependent packages that should be built for the
114 build architecture.
115
116 =item B<-i>, B<--indep>
117
118 Act on all architecture independent packages.
119
120 =item B<-p>I<package>, B<--package=>I<package>
121
122 Act on the package named I<package>. This option may be specified multiple
123 times to make debhelper operate on a given set of packages.
124
125 =item B<-s>, B<--same-arch>
126
127 This used to be a smarter version of the B<-a> flag, but the B<-a> flag is now
128 equally smart.
129
130 =item B<-N>I<package>, B<--no-package=>I<package>
131
132 Do not act on the specified package even if an B<-a>, B<-i>, or B<-p> option lists
133 the package as one that should be acted on.
134
135 =item B<--remaining-packages>
136
137 Do not act on the packages which have already been acted on by this debhelper
138 command earlier (i.e. if the command is present in the package debhelper log).
139 For example, if you need to call the command with special options only for a
140 couple of binary packages, pass this option to the last call of the command to
141 process the rest of packages with default settings. 
142
143 =item B<--ignore=>I<file>
144
145 Ignore the specified file. This can be used if F<debian/> contains a debhelper
146 config file that a debhelper command should not act on. Note that
147 F<debian/compat>, F<debian/control>, and F<debian/changelog> can't be ignored, but
148 then, there should never be a reason to ignore those files.
149
150 For example, if upstream ships a F<debian/init> that you don't want
151 B<dh_installinit> to install, use B<--ignore=debian/init>
152
153 =item B<-P>I<tmpdir>, B<--tmpdir=>I<tmpdir>
154
155 Use I<tmpdir> for package build directory. The default is debian/I<package>
156
157 =item B<--mainpackage=>I<package>
158
159 This little-used option changes the package which debhelper considers the
160 "main package", that is, the first one listed in F<debian/control>, and the
161 one for which F<debian/foo> files can be used instead of the usual
162 F<debian/package.foo> files.
163
164 =item B<-O=>I<option>|I<bundle>
165
166 This is used by L<dh(1)> when passing user-specified options to all the
167 commands it runs. If the command supports the specified option or option
168 bundle, it will take effect. If the command does not support the option (or
169 any part of an option bundle), it will be ignored.
170
171 =back
172
173 =head1 COMMON DEBHELPER OPTIONS
174
175 The following command line options are supported by some debhelper programs.
176 See the man page of each program for a complete explanation of what each
177 option does.
178
179 =over 4
180
181 =item B<-n>
182
183 Do not modify F<postinst>, F<postrm>, etc. scripts.
184
185 =item B<-X>I<item>, B<--exclude=>I<item>
186
187 Exclude an item from processing. This option may be used multiple times,
188 to exclude more than one thing. The \fIitem\fR is typically part of a
189 filename, and any file containing the specified text will be excluded.
190
191 =item B<-A>, B<--all>
192
193 Makes files or other items that are specified on the command line take effect
194 in ALL packages acted on, not just the first.
195
196 =back
197
198 =head1 BUILD SYSTEM OPTIONS
199
200 The following command line options are supported by all of the B<dh_auto_>I<*>
201 debhelper programs. These programs support a variety of build systems,
202 and normally heuristically determine which to use, and how to use them.
203 You can use these command line options to override the default behavior.
204 Typically these are passed to L<dh(1)>, which then passes them to all the 
205 B<dh_auto_>I<*> programs.
206
207 =over 4
208
209 =item B<-S>I<buildsystem>, B<--buildsystem=>I<buildsystem>
210
211 Force use of the specified I<buildsystem>, instead of trying to auto-select
212 one which might be applicable for the package.
213
214 =item B<-D>I<directory>, B<--sourcedirectory=>I<directory>
215
216 Assume that the original package source tree is at the specified
217 I<directory> rather than the top level directory of the Debian
218 source package tree.
219
220 =item B<-B>[I<directory>], B<--builddirectory=>[I<directory>]
221
222 Enable out of source building and use the specified I<directory> as the build
223 directory. If I<directory> parameter is omitted, a default build directory
224 will chosen.
225
226 If this option is not specified, building will be done in source by default
227 unless the build system requires or prefers out of source tree building.
228 In such a case, the default build directory will be used even if
229 B<--builddirectory> is not specified.
230
231 If the build system prefers out of source tree building but still
232 allows in source building, the latter can be re-enabled by passing a build
233 directory path that is the same as the source directory path.
234
235 =item B<--parallel>
236
237 Enable parallel builds if underlying build system supports them.
238 The number of parallel jobs is controlled by the
239 B<DEB_BUILD_OPTIONS> environment variable (L<Debian Policy, section 4.9.1>) at
240 build time. It might also be subject to a build system specific limit.
241
242 If this option is not specified, debhelper currently defaults to not
243 allowing parallel package builds.
244
245 =item B<--max-parallel=>I<maximum>
246
247 This option implies B<--parallel> and allows further limiting the number of
248 jobs that can be used in a parallel build. If the package build is known to
249 only work with certain levels of concurrency, you can set this to the maximum
250 level that is known to work, or that you wish to support.
251
252 =item B<--list>, B<-l>
253
254 List all build systems supported by debhelper on this system. The list
255 includes both default and third party build systems (marked as such). Also
256 shows which build system would be automatically selected, or which one
257 is manually specified with the B<--buildsystem> option.
258
259 =back
260
261 =head1 COMPATIBILITY LEVELS
262
263 From time to time, major non-backwards-compatible changes need to be made
264 to debhelper, to keep it clean and well-designed as needs change and its
265 author gains more experience. To prevent such major changes from breaking
266 existing packages, the concept of debhelper compatibility levels was 
267 introduced. You tell debhelper which compatibility level it should use, and
268 it modifies its behavior in various ways.
269
270 Tell debhelper what compatibility level to use by writing a number to
271 F<debian/compat>. For example, to turn on v9 mode:
272
273   % echo 9 > debian/compat
274
275 Your package will also need a versioned build dependency on a version of
276 debhelper equal to (or greater than) the compatibility level your package
277 uses. So for compatibility level 9, ensure debian/control has:
278
279   Build-Depends: debhelper (>= 9)
280
281 Unless otherwise indicated, all debhelper documentation assumes that you
282 are using the most recent compatibility level, and in most cases does not
283 indicate if the behavior is different in an earlier compatibility level, so
284 if you are not using the most recent compatibility level, you're advised to
285 read below for notes about what is different in earlier compatibility
286 levels.
287
288 These are the available compatibility levels:
289
290 =over 4
291
292 =item v1
293
294 This is the original debhelper compatibility level, and so it is the default
295 one. In this mode, debhelper will use F<debian/tmp> as the package tree
296 directory for the first binary package listed in the control file, while using
297 debian/I<package> for all other packages listed in the F<control> file.
298
299 This mode is deprecated.
300
301 =item v2
302
303 In this mode, debhelper will consistently use debian/I<package>
304 as the package tree directory for every package that is built.
305
306 This mode is deprecated.
307
308 =item v3
309
310 This mode works like v2, with the following additions:
311
312 =over 8
313
314 =item -
315
316 Debhelper config files support globbing via B<*> and B<?>, when appropriate. To
317 turn this off and use those characters raw, just prefix with a backslash.
318
319 =item -
320
321 B<dh_makeshlibs> makes the F<postinst> and F<postrm> scripts call B<ldconfig>.
322
323 =item -
324
325 Every file in F<etc/> is automatically flagged as a conffile by B<dh_installdeb>.
326
327 =back
328
329 This mode is deprecated.
330
331 =item v4
332
333 Changes from v3 are:
334
335 =over 8
336
337 =item -
338
339 B<dh_makeshlibs -V> will not include the Debian part of the version number in
340 the generated dependency line in the shlibs file.
341
342 =item -
343
344 You are encouraged to put the new B<${misc:Depends}> into F<debian/control> to
345 supplement the B<${shlibs:Depends}> field.
346
347 =item -
348
349 B<dh_fixperms> will make all files in F<bin/> directories and in F<etc/init.d>
350 executable.
351
352 =item -
353
354 B<dh_link> will correct existing links to conform with policy.
355
356 =back
357
358 This mode is deprecated.
359
360 =item v5
361
362 Changes from v4 are:
363
364 =over 8
365
366 =item -
367
368 Comments are ignored in debhelper config files.
369
370 =item -
371
372 B<dh_strip --dbg-package> now specifies the name of a package to put debugging
373 symbols in, not the packages to take the symbols from.
374
375 =item -
376
377 B<dh_installdocs> skips installing empty files.
378
379 =item -
380
381 B<dh_install> errors out if wildcards expand to nothing.
382
383 =back
384
385 =item v6
386
387 Changes from v5 are:
388
389 =over 8
390
391 =item -
392
393 Commands that generate maintainer script fragments will order the
394 fragments in reverse order for the F<prerm> and F<postrm> scripts.
395
396 =item -
397
398 B<dh_installwm> will install a slave manpage link for F<x-window-manager.1.gz>,
399 if it sees the man page in F<usr/share/man/man1> in the package build
400 directory.
401
402 =item -
403
404 B<dh_builddeb> did not previously delete everything matching
405 B<DH_ALWAYS_EXCLUDE>, if it was set to a list of things to exclude, such as
406 B<CVS:.svn:.git>. Now it does.
407
408 =item -
409
410 B<dh_installman> allows overwriting existing man pages in the package build
411 directory. In previous compatibility levels it silently refuses to do this.
412
413 =back
414
415 =item v7
416
417 Changes from v6 are:
418
419 =over 8
420
421 =item -
422
423 B<dh_install>, will fall back to looking for files in F<debian/tmp> if it doesn't
424 find them in the current directory (or wherever you tell it look using
425 B<--sourcedir>). This allows B<dh_install> to interoperate with B<dh_auto_install>,
426 which installs to F<debian/tmp>, without needing any special parameters.
427
428 =item -
429
430 B<dh_clean> will read F<debian/clean> and delete files listed there.
431
432 =item -
433
434 B<dh_clean> will delete toplevel F<*-stamp> files.
435
436 =item -
437
438 B<dh_installchangelogs> will guess at what file is the upstream changelog if
439 none is specified.
440
441 =back
442
443 =item v8
444
445 Changes from v7 are:
446
447 =over 8
448
449 =item -
450
451 Commands will fail rather than warning when they are passed unknown options.
452
453 =item -
454
455 B<dh_makeshlibs> will run B<dpkg-gensymbols> on all shared libraries that it
456 generates shlibs files for. So B<-X> can be used to exclude libraries.
457 Also, libraries in unusual locations that B<dpkg-gensymbols> would not
458 have processed before will be passed to it, a behavior change that 
459 can cause some packages to fail to build.
460
461 =item -
462
463 B<dh> requires the sequence to run be specified as the first parameter, and
464 any switches come after it. Ie, use "B<dh $@ --foo>", not "B<dh --foo $@>".
465
466 =item -
467
468 B<dh_auto_>I<*> prefer to use Perl's B<Module::Build> in preference to F<Makefile.PL>.
469
470 =back
471
472 =item v9
473
474 This is the recommended mode of operation.
475
476 Changes from v8 are:
477
478 =over 8
479
480 =item - 
481
482 Multiarch support. In particular, B<dh_auto_configure> passes
483 multiarch directories to autoconf in --libdir and --libexecdir.
484
485 =item -
486
487 dh is aware of the usual dependencies between targets in debian/rules.
488 So, "dh binary" will run any build, build-arch, build-indep, install,
489 etc targets that exist in the rules file. There's no need to define an
490 explicit binary target with explicit dependencies on the other targets.
491
492 =item -
493
494 B<dh_strip> compresses debugging symbol files to reduce the installed
495 size of -dbg packages.
496
497 =item -
498
499 B<dh_auto_configure> does not include the source package name
500 in --libexecdir when using autoconf.
501
502 =item -
503
504 B<dh> does not default to enabling --with=python-support
505
506 =item -
507
508 All of the B<dh_auto_>I<*> debhelper programs and B<dh> set
509 environment variables listed by B<dpkg-buildflags>, unless
510 they are already set.
511
512 =item -
513
514 B<dh_auto_configure> passes B<dpkg-buildflags> CFLAGS, CPPFLAGS, and
515 LDFLAGS to perl F<Makefile.PL> and F<Build.PL>
516
517 =item -
518
519 B<dh_strip> puts separated debug symbols in a location based on their
520 build-id.
521
522 =item -
523
524 Executable debhelper config files are run and their output used as the
525 configuration.
526
527 =back
528
529 =item v10
530
531 This compatibility level is still open for development; use with caution.
532
533 Changes from v9 are:
534
535 =over 8
536
537 =item -
538
539 None yet..
540
541 =back
542
543 =back
544
545 =head1 NOTES
546
547 =head2 Multiple binary package support
548
549 If your source package generates more than one binary package, debhelper
550 programs will default to acting on all binary packages when run. If your
551 source package happens to generate one architecture dependent package, and
552 another architecture independent package, this is not the correct behavior,
553 because you need to generate the architecture dependent packages in the
554 binary-arch F<debian/rules> target, and the architecture independent packages
555 in the binary-indep F<debian/rules> target.
556
557 To facilitate this, as well as give you more control over which packages
558 are acted on by debhelper programs, all debhelper programs accept the
559 B<-a>, B<-i>, B<-p>, and B<-s> parameters. These parameters are cumulative. 
560 If none are given, debhelper programs default to acting on all packages listed
561 in the control file.
562
563 =head2 Automatic generation of Debian install scripts
564
565 Some debhelper commands will automatically generate parts of Debian
566 maintainer scripts. If you want these automatically generated things
567 included in your existing Debian maintainer scripts, then you need to add
568 B<#DEBHELPER#> to your scripts, in the place the code should be added.
569 B<#DEBHELPER#> will be replaced by any auto-generated code when you run
570 B<dh_installdeb>.
571
572 If a script does not exist at all and debhelper needs to add something to
573 it, then debhelper will create the complete script.
574
575 All debhelper commands that automatically generate code in this way let it
576 be disabled by the -n parameter (see above).
577
578 Note that the inserted code will be shell code, so you cannot directly use
579 it in a Perl script. If you would like to embed it into a Perl script, here
580 is one way to do that (note that I made sure that $1, $2, etc are set with
581 the set command):
582
583   my $temp="set -e\nset -- @ARGV\n" . << 'EOF';
584   #DEBHELPER#
585   EOF
586   system ($temp) / 256 == 0
587         or die "Problem with debhelper scripts: $!";
588
589 =head2 Automatic generation of miscellaneous dependencies.
590
591 Some debhelper commands may make the generated package need to depend on
592 some other packages. For example, if you use L<dh_installdebconf(1)>, your
593 package will generally need to depend on debconf. Or if you use
594 L<dh_installxfonts(1)>, your package will generally need to depend on a
595 particular version of xutils. Keeping track of these miscellaneous
596 dependencies can be annoying since they are dependent on how debhelper does
597 things, so debhelper offers a way to automate it.
598
599 All commands of this type, besides documenting what dependencies may be
600 needed on their man pages, will automatically generate a substvar called
601 B<${misc:Depends}>. If you put that token into your F<debian/control> file, it
602 will be expanded to the dependencies debhelper figures you need. 
603
604 This is entirely independent of the standard B<${shlibs:Depends}> generated by
605 L<dh_makeshlibs(1)>, and the B<${perl:Depends}> generated by L<dh_perl(1)>.
606 You can choose not to use any of these, if debhelper's guesses don't match
607 reality.
608
609 =head2 Package build directories
610
611 By default, all debhelper programs assume that the temporary directory used
612 for assembling the tree of files in a package is debian/I<package>.
613
614 Sometimes, you might want to use some other temporary directory. This is
615 supported by the B<-P> flag. For example, "B<dh_installdocs -Pdebian/tmp>", will
616 use B<debian/tmp> as the temporary directory. Note that if you use B<-P>, the 
617 debhelper programs can only be acting on a single package at a time. So if 
618 you have a package that builds many binary packages, you will need to also 
619 use the B<-p> flag to specify which binary package the debhelper program will
620 act on.
621
622 =head2 udebs
623
624 Debhelper includes support for udebs. To create a udeb with debhelper,
625 add "B<Package-Type: udeb>" to the package's stanza in F<debian/control>.
626 Debhelper will try to create udebs that comply with debian-installer
627 policy, by making the generated package files end in F<.udeb>, not
628 installing any documentation into a udeb, skipping over
629 F<preinst>, F<postrm>, F<prerm>, and F<config> scripts, etc.
630
631 =head1 ENVIRONMENT
632
633 =over 4
634
635 =item B<DH_VERBOSE>
636
637 Set to B<1> to enable verbose mode. Debhelper will output every command it runs
638 that modifies files on the build system.
639
640 =item B<DH_COMPAT>
641
642 Temporarily specifies what compatibility level debhelper should run at,
643 overriding any value in F<debian/compat>.
644
645 =item B<DH_NO_ACT>
646
647 Set to B<1> to enable no-act mode.
648
649 =item B<DH_OPTIONS>
650
651 Anything in this variable will be prepended to the command line arguments
652 of all debhelper commands.
653
654 When using L<dh(1)>, it can be passed options that will be passed on to each
655 debhelper command, which is generally better than using DH_OPTIONS.
656
657 =item B<DH_ALWAYS_EXCLUDE>
658
659 If set, this adds the value the variable is set to to the B<-X> options of all
660 commands that support the B<-X> option. Moreover, B<dh_builddeb> will B<rm -rf>
661 anything that matches the value in your package build tree.
662
663 This can be useful if you are doing a build from a CVS source tree, in
664 which case setting B<DH_ALWAYS_EXCLUDE=CVS> will prevent any CVS directories
665 from sneaking into the package you build. Or, if a package has a source
666 tarball that (unwisely) includes CVS directories, you might want to export
667 B<DH_ALWAYS_EXCLUDE=CVS> in F<debian/rules>, to make it take effect wherever
668 your package is built.
669
670 Multiple things to exclude can be separated with colons, as in
671 B<DH_ALWAYS_EXCLUDE=CVS:.svn>
672
673 =back
674
675 =head1 SEE ALSO
676
677 =over 4
678
679 =item F</usr/share/doc/debhelper/examples/>
680
681 A set of example F<debian/rules> files that use debhelper.
682
683 =item L<http://kitenet.net/~joey/code/debhelper/>
684
685 Debhelper web site.
686
687 =back
688
689 =head1 AUTHOR
690
691 Joey Hess <joeyh@debian.org>
692
693 =cut