]> git.donarmstrong.com Git - debhelper.git/blob - debhelper.pod
implement the other option: parallel enabled implicitly by DEB_BUILD_OPTIONS
[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, 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 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 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 complete list of available debhelper commands. See their man
32 pages for additional documentation.
33
34 =over 4
35
36 #LIST#
37
38 =back
39
40 If a program's name starts with "dh_", and the program is not on the above
41 list, then it is not part of the debhelper package, but it should still
42 work like the other programs described on this page.
43
44 =head1 DEBHELPER CONFIG FILES
45
46 Many debhelper commands make use of files in F<debian/> to control what they
47 do. Besides the common F<debian/changelog> and F<debian/control>, which are
48 in all packages, not just those using debhelper, some additional files can
49 be used to configure the behavior of specific debhelper commands. These
50 files are typically named debian/package.foo (where "package" of course,
51 is replaced with the package that is being acted on).
52
53 For example, dh_installdocs uses files named debian/package.docs to list
54 the documentation files it will install. See the man pages of individual
55 commands for details about the names and formats of the files they use.
56 Generally, these files will list files to act on, one file per line. Some
57 programs in debhelper use pairs of files and destinations or slightly more
58 complicated formats.
59
60 Note that if a package is the first (or only) binary package listed in
61 debian/control, debhelper will use debian/foo if no debian/package.foo
62 file can be found.
63
64 In some rare cases, you may want to have different versions of these files
65 for different architectures or OSes. If files named debian/package.foo.ARCH
66 or debian/package.foo.OS exist, where "ARCH" and "OS" are the same as the
67 output of  "dpkg-architecture -qDEB_HOST_ARCH" /
68 "dpkg-architecture -qDEB_HOST_ARCH_OS",
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 architecture dependent packages that should be built for the
97 build architecture.
98
99 =item B<-i>, B<--indep>
100
101 Act on all architecture independent packages.
102
103 =item B<->I<ppackage>, B<--package=>I<package>
104
105 Act on the package named "package". This option may be specified multiple
106 times to make debhelper operate on a given set of packages.
107
108 =item B<-s>, B<--same-arch>
109
110 This used to be a smarter version of the -a flag, but the -a flag is now
111 equally smart.
112
113 =item B<-N>I<package>, B<--no-package=>I<package>
114
115 Do not act on the specified package even if an -a, -i, or -p option lists
116 the package as one that should be acted on.
117
118 =item B<--remaining-packages>
119
120 Do not act on the packages which have already been acted on by this debhelper
121 command earlier (i.e. if the command is present in the package debhelper log).
122 For example, if you need to call the command with special options only for a
123 couple of binary packages, pass this option to the last call of the command to
124 process the rest of packages with default settings. 
125
126 =item B<--ignore=>I<file>
127
128 Ignore the specified file. This can be used if debian/ contains a debhelper
129 config file that a debhelper command should not act on. Note that
130 debian/compat, debian/control, and debian/changelog can't be ignored, but
131 then, there should never be a reason to ignore those files.
132
133 For example, if upstream ships a debian/init that you don't want
134 dh_installinit to install, use --ignore=debian/init
135
136 =item B<-P>I<tmpdir>, B<--tmpdir=>I<tmpdir>
137
138 Use "tmpdir" for package build directory. The default is debian/<package>
139
140 =item B<--mainpackage=>I<package>
141
142 This little-used option changes the package which debhelper considers the
143 "main package", that is, the first one listed in debian/control, and the
144 one for which debian/foo files can be used instead of the usual
145 debian/package.foo files.
146
147 =back
148
149 =head1 COMMON DEBHELPER OPTIONS
150
151 The following command line options are supported by some debhelper programs.
152 See the man page of each program for a complete explanation of what each
153 option does.
154
155 =over 4
156
157 =item B<-n>
158
159 Do not modify postinst/postrm/etc scripts.
160
161 =item B<-X>I<item>, B<--exclude=>I<item>
162
163 Exclude an item from processing. This option may be used multiple times,
164 to exclude more than one thing.
165
166 =item B<-A>, B<--all>
167
168 Makes files or other items that are specified on the command line take effect
169 in ALL packages acted on, not just the first.
170
171 =back
172
173 =head1 BUILD SYSTEM OPTIONS
174
175 The following command line options are supported by all of the dh_auto_*
176 debhelper programs. These programs support a variety of build systems,
177 and normally heuristically determine which to use, and how to use them.
178 You can use these command line options to override the default behavior.
179
180 =over 4
181
182 =item B<-S>I<buildsystem>, B<--buildsystem=>I<buildsystem>
183
184 Force use of the specified I<buildsystem>, instead of trying to auto-select
185 one which might be applicable for the package.
186
187 =item B<-D>I<directory>, B<--sourcedirectory=>I<directory>
188
189 Assume that the original package source tree is at the specified
190 I<directory> rather than the top level directory of the Debian
191 source package tree.
192
193 =item B<-B>[I<directory>], B<--builddirectory>=[I<directory>]
194
195 Enable out of source building and use the specified I<directory> as the build
196 directory. If I<directory> parameter is omitted, a default build directory
197 will chosen.
198
199 If this option is not specified, building will be done in source by default
200 unless the build system requires or prefers out of source tree building.
201 In such a case, the default build directory will be used even if
202 L<--builddirectory> is not specified.
203
204 If the build system prefers out of source tree building but still
205 allows in source building, the latter can be re-enabled by passing a build
206 directory path that is the same as the source directory path.
207
208 =item B<--max-parallel>[I<=maximum>]
209
210 By default, the DEB_BUILD_OPTIONS environment variable can be used to
211 enable parallel building, when supported by the build system.
212
213 This option allows controlling how many parallel jobs can be used in a
214 build. If set to 1, concurrent builds are disabled -- do this if
215 the package build is known not to work in parallel. If the package build
216 is known to only work with certian levels of concurrency, you can set this
217 to the maximum level that is known to work, or that you wish to support.
218
219 =item B<--list>, B<-l>
220
221 List all build systems supported by debhelper on this system. The list
222 includes both default and third party build systems (marked as such). Also
223 shows which build system would be automatically selected, or which one
224 is manually specified with the I<--buildsystem> option.
225
226 =back
227
228 =head1 NOTES
229
230 =head2 Multiple binary package support
231
232 If your source package generates more than one binary package, debhelper
233 programs will default to acting on all binary packages when run. If your
234 source package happens to generate one architecture dependent package, and
235 another architecture independent package, this is not the correct behavior,
236 because you need to generate the architecture dependent packages in the
237 binary-arch debian/rules target, and the architecture independent packages
238 in the binary-indep debian/rules target.
239
240 To facilitate this, as well as give you more control over which packages
241 are acted on by debhelper programs, all debhelper programs accept the
242 B<-a>, B<-i>, B<-p>, and B<-s> parameters. These parameters are cumulative. 
243 If none are given, debhelper programs default to acting on all packages listed
244 in the control file.
245
246 =head2 Automatic generation of debian install scripts
247
248 Some debhelper commands will automatically generate parts of debian
249 maintainer scripts. If you want these automatically generated things
250 included in your existing debian maintainer scripts, then you need to add
251 "#DEBHELPER#" to your scripts, in the place the code should be added.
252 "#DEBHELPER#" will be replaced by any auto-generated code when you run
253 dh_installdeb. 
254
255 If a script does not exist at all and debhelper needs to add something to
256 it, then debhelper will create the complete script.
257
258 All debhelper commands that automatically generate code in this way let it
259 be disabled by the -n parameter (see above).
260
261 Note that the inserted code will be shell code, so you cannot directly use
262 it in a perl script. If you would like to embed it into a perl script, here
263 is one way to do that (note that I made sure that $1, $2, etc are set with
264 the set command):
265
266   my $temp="set -e\nset -- @ARGV\n" . << 'EOF';
267   #DEBHELPER#
268   EOF
269   system ($temp) / 256 == 0
270         or die "Problem with debhelper scripts: $!";
271
272 =head2 Automatic generation of miscellaneous dependencies.
273
274 Some debhelper commands may make the generated package need to depend on
275 some other packages. For example, if you use L<dh_installdebconf(1)>, your
276 package will generally need to depend on debconf. Or if you use
277 L<dh_installxfonts(1)>, your package will generally need to depend on a
278 particular version of xutils. Keeping track of these miscellaneous
279 dependencies can be annoying since they are dependant on how debhelper does
280 things, so debhelper offers a way to automate it.
281
282 All commands of this type, besides documenting what dependencies may be
283 needed on their man pages, will automatically generate a substvar called
284 ${misc:Depends}. If you put that token into your debian/control file, it
285 will be expanded to the dependencies debhelper figures you need. 
286
287 This is entirely independent of the standard ${shlibs:Depends} generated by
288 L<dh_makeshlibs(1)>, and the ${perl:Depends} generated by L<dh_perl(1)>.
289 You can choose not to use any of these, if debhelper's guesses don't match
290 reality.
291
292 =head2 Package build directories
293
294 By default, all debhelper programs assume that the temporary directory used
295 for assembling the tree of files in a package is debian/<package>.
296
297 Sometimes, you might want to use some other temporary directory. This is
298 supported by the -P flag. For example, "dh_installdocs -Pdebian/tmp", will
299 use debian/tmp as the temporary directory. Note that if you use -P, the 
300 debhelper programs can only be acting on a single package at a time. So if 
301 you have a package that builds many binary packages, you will need to also 
302 use the -p flag to specify which binary package the debhelper program will
303 act on.
304
305 =head2 Debhelper compatibility levels
306
307 From time to time, major non-backwards-compatible changes need to be made
308 to debhelper, to keep it clean and well-designed as needs change and its
309 author gains more experience. To prevent such major changes from breaking
310 existing packages, the concept of debhelper compatibility levels was 
311 introduced. You tell debhelper which compatibility level it should use, and
312 it modifies its behavior in various ways.
313
314 Tell debhelper what compatibility level to use by writing a number to
315 debian/compat. For example, to turn on V7 mode:
316
317   % echo 7 > debian/compat
318
319 Unless otherwise indicated, all debhelper documentation assumes that you
320 are using the most recent compatibility level, and in most cases does not
321 indicate if the behavior is different in an earlier compatibility level, so
322 if you are not using the most recent compatibility level, you're advised to
323 read below for notes about what is different in earlier compatibility
324 levels.
325
326 These are the available compatibility levels:
327
328 =over 4
329
330 =item V1
331
332 This is the original debhelper compatibility level, and so it is the default
333 one. In this mode, debhelper will use debian/tmp as the package tree
334 directory for the first binary package listed in the control file, while using
335 debian/<package> for all other packages listed in the control file.
336
337 This mode is deprecated.
338
339 =item V2
340
341 In this mode, debhelper will consistently use debian/<package>
342 as the package tree directory for every package that is built.
343
344 This mode is deprecated.
345
346 =item V3
347
348 This mode works like V2, with the following additions:
349
350 =over 8
351
352 =item -
353
354 Debhelper config files support globbing via * and ?, when appropriate. To
355 turn this off and use those characters raw, just prefix with a backslash.
356
357 =item -
358
359 dh_makeshlibs makes the postinst and postrm scripts call ldconfig.
360
361 =item -
362
363 Every file in etc/ is automatically flagged as a conffile by dh_installdeb.
364
365 =back
366
367 This mode is deprecated.
368
369 =item V4
370
371 Changes from V3 are:
372
373 =over 8
374
375 =item -
376
377 dh_makeshlibs -V will not include the debian part of the version number in
378 the generated dependency line in the shlibs file.
379
380 =item -
381
382 You are encouraged to put the new ${misc:Depends} into debian/control to
383 supplement the ${shlibs:Depends} field.
384
385 =item -
386
387 dh_fixperms will make all files in bin/ directories and in etc/init.d 
388 executable.
389
390 =item -
391
392 dh_link will correct existing links to conform with policy.
393
394 =back
395
396 This mode is deprecated.
397
398 =item V5
399
400 Changes from V4 are:
401
402 =over 8
403
404 =item -
405
406 Comments are ignored in debhelper config files.
407
408 =item -
409
410 dh_strip --dbg-package now specifies the name of a package to put debugging
411 symbols in, not the packages to take the symbols from.
412
413 =item -
414
415 dh_installdocs skips installing empty files.
416
417 =item -
418
419 dh_install errors out if wildcards expand to nothing.
420
421 =back
422
423 =item V6
424
425 Changes from V5 are:
426
427 =over 8
428
429 =item -
430
431 Commands that generate maintainer script fragments will order the
432 fragments in reverse order for the prerm and postrm scripts.
433
434 =item -
435
436 dh_installwm will install a slave manpage link for x-window-manager.1.gz,
437 if it sees the man page in usr/share/man/man1 in the package build
438 directory.
439
440 =item -
441
442 dh_builddeb did not previously delete everything matching
443 DH_ALWAYS_EXCLUDE, if it was set to a list of things to exclude, such as
444 "CVS:.svn:.git". Now it does.
445
446 =item -
447
448 dh_installman allows overwriting existing man pages in the package build
449 directory. In previous compatibility levels it silently refuses to do this.
450
451 =back
452
453 =item V7
454
455 This is the recommended mode of operation.
456
457 Changes from V6 are:
458
459 =over 8
460
461 =item -
462
463 dh_install, will fall back to looking for files in debian/tmp if it doesn't
464 find them in the current directory (or wherever you tell it look using
465 --sourcedir). This allows dh_install to interoperate with dh_auto_install,
466 which installs to debian/tmp, without needing any special parameters.
467
468 =item -
469
470 dh_clean will read debian/clean and delete files listed there.
471
472 =item -
473
474 dh_clean will delete toplevel *-stamp files.
475
476 =item -
477
478 dh_installchangelogs will guess at what file is the upstream changelog if
479 none is specified.
480
481 =back
482
483 =back
484
485 =head2 udebs
486
487 Debhelper includes support for udebs. To create a udeb with debhelper,
488 add "XC-Package-Type: udeb" to the package's stanza in debian/control, and
489 build-depend on debhelper (>= 4.2). Debhelper will try to create udebs that
490 comply with debian-installer policy, by making the generated package files
491 end in ".udeb", not installing any documentation into a udeb, skipping over
492 preinst, postrm, prerm, and config scripts, etc.
493
494 =head2 Other notes
495
496 In general, if any debhelper program needs a directory to exist under
497 debian/, it will create it. I haven't bothered to document this in all the
498 man pages, but for example, dh_installdeb knows to make debian/<package>/DEBIAN/
499 before trying to put files there, dh_installmenu knows you need a
500 debian/<package>/usr/share/menu/ before installing the menu files, etc.
501
502 Once your package uses debhelper to build, be sure to add
503 debhelper to your Build-Depends line in debian/control. You should
504 build-depend on a version of debhelper equal to (or greater than) the
505 debhelper compatibility level your package uses. So if your package used
506 compatibility level 7:
507
508   Build-Depends: debhelper (>= 7)
509
510 =head1 ENVIRONMENT
511
512 =over 4
513
514 =item DH_VERBOSE
515
516 Set to 1 to enable verbose mode. Debhelper will output every command it runs
517 that modifies files on the build system.
518
519 =item DH_COMPAT
520
521 Temporarily specifies what compatibility level debhelper should run at,
522 overriding any value in debian/compat.
523
524 =item DH_NO_ACT
525
526 Set to 1 to enable no-act mode.
527
528 =item DH_OPTIONS
529
530 Anything in this variable will be prepended to the command line arguments
531 of all debhelper commands. Command-specific options will be ignored by 
532 commands that do not support them. 
533
534 This is useful in some situations, for example, if you need to pass -p to
535 all debhelper commands that will be run. One good way to set DH_OPTIONS is
536 by using "Target-specific Variable Values" in your debian/rules file. See
537 the make documentation for details on doing this.
538
539 =item DH_ALWAYS_EXCLUDE
540
541 If set, this adds the value the variable is set to to the -X options of all
542 commands that support the -X option. Moreover, dh_builddeb will rm -rf
543 anything that matches the value in your package build tree.
544
545 This can be useful if you are doing a build from a CVS source tree, in
546 which case setting DH_ALWAYS_EXCLUDE=CVS will prevent any CVS directories
547 from sneaking into the package you build. Or, if a package has a source
548 tarball that (unwisely) includes CVS directories, you might want to export
549 DH_ALWAYS_EXCLUDE=CVS in debian/rules, to make it take effect wherever
550 your package is built.
551
552 Multiple things to exclude can be separated with colons, as in
553 DH_ALWAYS_EXCLUDE=CVS:.svn
554
555 =back
556
557 =head1 SEE ALSO
558
559 =over 4
560
561 =item F</usr/share/doc/debhelper/examples/>
562
563 A set of example debian/rules files that use debhelper.
564
565 =item L<http://kitenet.net/~joey/code/debhelper/>
566
567 Debhelper web site.
568
569 =back
570
571 =head1 AUTHOR
572
573 Joey Hess <joeyh@debian.org>
574
575 =cut