.\" Automatically generated by Pod::Man 4.10 (Pod::Simple 3.35) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "DH 1" .TH DH 1 "2019-09-14" "12.6" "Debhelper" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" dh \- debhelper command sequencer .SH "SYNOPSIS" .IX Header "SYNOPSIS" \&\fBdh\fR \fIsequence\fR [\fB\-\-with\fR \fIaddon\fR[\fB,\fR\fIaddon\fR ...]] [\fB\-\-list\fR] [\fIdebhelperĀ options\fR] .SH "DESCRIPTION" .IX Header "DESCRIPTION" \&\fBdh\fR runs a sequence of debhelper commands. The supported \fIsequence\fRs correspond to the targets of a \fIdebian/rules\fR file: \fBbuild-arch\fR, \&\fBbuild-indep\fR, \fBbuild\fR, \fBclean\fR, \fBinstall-indep\fR, \fBinstall-arch\fR, \&\fBinstall\fR, \fBbinary-arch\fR, \fBbinary-indep\fR, and \fBbinary\fR. .SH "OVERRIDE TARGETS" .IX Header "OVERRIDE TARGETS" A \fIdebian/rules\fR file using \fBdh\fR can override the command that is run at any step in a sequence, by defining an override target. .PP To override \fIdh_command\fR, add a target named \fBoverride_\fR\fIdh_command\fR to the rules file. When it would normally run \fIdh_command\fR, \fBdh\fR will instead call that target. The override target can then run the command with additional options, or run entirely different commands instead. See examples below. .PP Override targets can also be defined to run only when building architecture dependent or architecture independent packages. Use targets with names like \fBoverride_\fR\fIdh_command\fR\fB\-arch\fR and \fBoverride_\fR\fIdh_command\fR\fB\-indep\fR. (Note that to use this feature, you should Build-Depend on debhelper 8.9.7 or above.) .SH "OPTIONS" .IX Header "OPTIONS" .IP "\fB\-\-with\fR \fIaddon\fR[\fB,\fR\fIaddon\fR ...]" 4 .IX Item "--with addon[,addon ...]" Add the debhelper commands specified by the given addon to appropriate places in the sequence of commands that is run. This option can be repeated more than once, or multiple addons can be listed, separated by commas. This is used when there is a third-party package that provides debhelper commands. See the \fI\s-1PROGRAMMING\s0\fR file for documentation about the sequence addon interface. .Sp A \fBBuild-Depends\fR relation on the package \fBdh\-sequence\-\fR\fIaddon\fR implies a \fB\-\-with\fR \fIaddon\fR. This avoids the need for an explicit \&\fB\-\-with\fR in \fIdebian/rules\fR that only duplicates what is already declared via the build dependencies in \fIdebian/control\fR. The relation can (since 12.5) be made optional via e.g. build-profiles. This enables you to easily disable an addon that is only useful with certain profiles (e.g. to facilitate bootstraping). .Sp Since debhelper 12.5, addons can also be activated in \fBindep\fR\-only mode (via \fBBuild-Depends-Indep\fR) or \fBarch\fR\-only mode (via \&\fBBuild-Depends-Arch\fR). Such addons are only active in the particular sequence (e.g. \fBbinary-indep\fR) which simplifies dependency management for cross-builds. .Sp Please note that addons activated via \fBBuild-Depends-Indep\fR or \&\fBBuild-Depends-Arch\fR are subject to additional limitations to ensure the result is deterministic even when the addon is unavailable (e.g. during clean). This implies that some addons are incompatible with these restrictions and can only be used via \&\fBBuild-Depends\fR (or manually via \fIdebian/rules\fR). Currently, such addons can only add commands to sequences. .IP "\fB\-\-without\fR \fIaddon\fR" 4 .IX Item "--without addon" The inverse of \fB\-\-with\fR, disables using the given addon. This option can be repeated more than once, or multiple addons to disable can be listed, separated by commas. .IP "\fB\-\-list\fR, \fB\-l\fR" 4 .IX Item "--list, -l" List all available addons. .Sp When called only with this option, \fBdh\fR can be called from any directory (i.e. it does not need access to files from a source package). .IP "\fB\-\-no\-act\fR" 4 .IX Item "--no-act" Prints commands that would run for a given sequence, but does not run them. .Sp Note that dh normally skips running commands that it knows will do nothing. With \-\-no\-act, the full list of commands in a sequence is printed. .PP Other options passed to \fBdh\fR are passed on to each command it runs. This can be used to set an option like \fB\-v\fR or \fB\-X\fR or \fB\-N\fR, as well as for more specialised options. .SH "EXAMPLES" .IX Header "EXAMPLES" To see what commands are included in a sequence, without actually doing anything: .PP .Vb 1 \& dh binary\-arch \-\-no\-act .Ve .PP This is a very simple rules file, for packages where the default sequences of commands work with no additional options. .PP .Vb 3 \& #!/usr/bin/make \-f \& %: \& dh $@ .Ve .PP Often you'll want to pass an option to a specific debhelper command. The easy way to do with is by adding an override target for that command. .PP .Vb 3 \& #!/usr/bin/make \-f \& %: \& dh $@ \& \& override_dh_strip: \& dh_strip \-Xfoo \& \& override_dh_auto_configure: \& dh_auto_configure \-\- \-\-with\-foo \-\-disable\-bar .Ve .PP Sometimes the automated \fBdh_auto_configure\fR\|(1) and \fBdh_auto_build\fR\|(1) can't guess what to do for a strange package. Here's how to avoid running either and instead run your own commands. .PP .Vb 3 \& #!/usr/bin/make \-f \& %: \& dh $@ \& \& override_dh_auto_configure: \& ./mondoconfig \& \& override_dh_auto_build: \& make universe\-explode\-in\-delight .Ve .PP Another common case is wanting to do something manually before or after a particular debhelper command is run. .PP .Vb 3 \& #!/usr/bin/make \-f \& %: \& dh $@ \& \& override_dh_fixperms: \& dh_fixperms \& chmod 4755 debian/foo/usr/bin/foo .Ve .PP Python tools are not run by dh by default, due to the continual change in that area. Here is how to use \fBdh_python2\fR. .PP .Vb 3 \& #!/usr/bin/make \-f \& %: \& dh $@ \-\-with python2 .Ve .PP Here is how to force use of Perl's \fBModule::Build\fR build system, which can be necessary if debhelper wrongly detects that the package uses MakeMaker. .PP .Vb 3 \& #!/usr/bin/make \-f \& %: \& dh $@ \-\-buildsystem=perl_build .Ve .PP Here is an example of overriding where the \fBdh_auto_\fR\fI*\fR commands find the package's source, for a package where the source is located in a subdirectory. .PP .Vb 3 \& #!/usr/bin/make \-f \& %: \& dh $@ \-\-sourcedirectory=src .Ve .PP And here is an example of how to tell the \fBdh_auto_\fR\fI*\fR commands to build in a subdirectory, which will be removed on \fBclean\fR. .PP .Vb 3 \& #!/usr/bin/make \-f \& %: \& dh $@ \-\-builddirectory=build .Ve .PP If your package can be built in parallel, please either use compat 10 or pass \fB\-\-parallel\fR to dh. Then \fBdpkg-buildpackage \-j\fR will work. .PP .Vb 3 \& #!/usr/bin/make \-f \& %: \& dh $@ \-\-parallel .Ve .PP If your package cannot be built reliably while using multiple threads, please pass \fB\-\-no\-parallel\fR to dh (or the relevant \fBdh_auto_\fR\fI*\fR command): .PP .Vb 3 \& #!/usr/bin/make \-f \& %: \& dh $@ \-\-no\-parallel .Ve .PP Here is a way to prevent \fBdh\fR from running several commands that you don't want it to run, by defining empty override targets for each command. .PP .Vb 3 \& #!/usr/bin/make \-f \& %: \& dh $@ \& \& # Commands not to run: \& override_dh_auto_test override_dh_compress override_dh_fixperms: .Ve .PP A long build process for a separate documentation package can be separated out using architecture independent overrides. These will be skipped when running build-arch and binary-arch sequences. .PP .Vb 3 \& #!/usr/bin/make \-f \& %: \& dh $@ \& \& override_dh_auto_build\-indep: \& $(MAKE) \-C docs \& \& # No tests needed for docs \& override_dh_auto_test\-indep: \& \& override_dh_auto_install\-indep: \& $(MAKE) \-C docs install .Ve .PP Adding to the example above, suppose you need to chmod a file, but only when building the architecture dependent package, as it's not present when building only documentation. .PP .Vb 3 \& override_dh_fixperms\-arch: \& dh_fixperms \& chmod 4755 debian/foo/usr/bin/foo .Ve .SH "INTERNALS" .IX Header "INTERNALS" If you're curious about \fBdh\fR's internals, here's how it works under the hood. .PP In compat 10 (or later), \fBdh\fR creates a stamp file \&\fIdebian/debhelper\-build\-stamp\fR after the build step(s) are complete to avoid re-running them. It is possible to avoid the stamp file by passing \fB\-\-without=build\-stamp\fR to \fBdh\fR. This makes \*(L"no clean\*(R" builds behave more like what some people expect at the expense of possibly running the build and test twice (the second time as root or under \fBfakeroot\fR\|(1)). .PP Inside an override target, \fBdh_*\fR commands will create a log file \&\fIdebian/package.debhelper.log\fR to keep track of which packages the command(s) have been run for. These log files are then removed once the override target is complete. .PP In compat 9 or earlier, each debhelper command will record when it's successfully run in \fIdebian/package.debhelper.log\fR. (Which \&\fBdh_clean\fR deletes.) So \fBdh\fR can tell which commands have already been run, for which packages, and skip running those commands again. .PP Each time \fBdh\fR is run (in compat 9 or earlier), it examines the log, and finds the last logged command that is in the specified sequence. It then continues with the next command in the sequence. .PP A sequence can also run dependent targets in debian/rules. For example, the \*(L"binary\*(R" sequence runs the \*(L"install\*(R" target. .PP \&\fBdh\fR uses the \fB\s-1DH_INTERNAL_OPTIONS\s0\fR environment variable to pass information through to debhelper commands that are run inside override targets. The contents (and indeed, existence) of this environment variable, as the name might suggest, is subject to change at any time. .PP Commands in the \fBbuild-indep\fR, \fBinstall-indep\fR and \fBbinary-indep\fR sequences are passed the \fB\-i\fR option to ensure they only work on architecture independent packages, and commands in the \fBbuild-arch\fR, \&\fBinstall-arch\fR and \fBbinary-arch\fR sequences are passed the \fB\-a\fR option to ensure they only work on architecture dependent packages. .SH "SEE ALSO" .IX Header "SEE ALSO" \&\fBdebhelper\fR\|(7) .PP This program is a part of debhelper. .SH "AUTHOR" .IX Header "AUTHOR" Joey Hess