summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2017-12-01 11:16:56 +0100
committerGuido Günther <agx@sigxcpu.org>2017-12-01 11:16:56 +0100
commit7bb8758730325fc31614bdc68575e0d9c17d1af2 (patch)
tree8fc6d01fffa1f53260fbbeba34e4b69808f7246d
parent3cbdc3acb6eabe5d27ecd6953b86554fb0dc9181 (diff)
docs: gbp-buildpackage: list hooks in execution order
-rw-r--r--docs/manpages/gbp-buildpackage.xml56
1 files changed, 28 insertions, 28 deletions
diff --git a/docs/manpages/gbp-buildpackage.xml b/docs/manpages/gbp-buildpackage.xml
index eea24d5c..b96e637d 100644
--- a/docs/manpages/gbp-buildpackage.xml
+++ b/docs/manpages/gbp-buildpackage.xml
@@ -39,10 +39,10 @@
<arg><option>--git-pbuilder-options</option>=<replaceable>PBUILDER_OPTIONS</replaceable></arg>
<arg><option>--git-[no-]sign-tags</option></arg>
<arg><option>--git-keyid=</option><replaceable>GPG-KEYID</replaceable></arg>
- <arg><option>--git-posttag=</option><replaceable>COMMAND</replaceable></arg>
- <arg><option>--git-postbuild=</option><replaceable>COMMAND</replaceable></arg>
<arg><option>--git-postexport=</option><replaceable>COMMAND</replaceable></arg>
<arg><option>--git-prebuild=</option><replaceable>COMMAND</replaceable></arg>
+ <arg><option>--git-postbuild=</option><replaceable>COMMAND</replaceable></arg>
+ <arg><option>--git-posttag=</option><replaceable>COMMAND</replaceable></arg>
<arg><option>--git-[no-]hooks</option></arg>
<arg><option>--git-debian-tag=</option><replaceable>tag-format</replaceable></arg>
<arg><option>--git-debian-tag-msg=</option><replaceable>tag-msg-format</replaceable></arg>
@@ -460,65 +460,65 @@
</para>
<variablelist>
<varlistentry>
- <term><option>--git-posttag=</option><replaceable>COMMAND</replaceable>
+ <term><option>--git-postexport=</option><replaceable>COMMAND</replaceable>
</term>
<listitem>
<para>
- Execute <replaceable>COMMAND</replaceable> after tagging a new
- version.
+ Execute <replaceable>COMMAND</replaceable> after exporting the source
+ tree - valid only if --git-export-dir has been specified.
</para>
<para>
- Exported environment variables are: <envar>GBP_TAG</envar> (the name
- of the generated tag), <envar>GBP_BRANCH</envar> (the branch the
- package was build from) and <envar>GBP_SHA1</envar> (the sha1 of the
- commit the tag was created at).
+ Exported environment variables are: <envar>GBP_GIT_DIR</envar> (the
+ repository the package is being built from),
+ <envar>GBP_TMP_DIR</envar> (the temporary directory where the sources
+ have been initially exported).
</para>
</listitem>
</varlistentry>
<varlistentry>
- <term><option>--git-postbuild=</option><replaceable>COMMAND</replaceable>
+ <term><option>--git-prebuild=</option><replaceable>COMMAND</replaceable>
</term>
<listitem>
<para>
- Execute <replaceable>COMMAND</replaceable> after successful
- build.
+ Execute <replaceable>COMMAND</replaceable> from the build directory
+ before calling <application>debuild</application> or the application
+ specified via <option>--git-builder</option>.
</para>
<para>
- Exported environment variables are: <envar>GBP_CHANGES_FILE</envar>
- (the name of the generated changes file),
+ Exported environment variables are: <envar>GBP_GIT_DIR</envar> (the
+ repository the package is being built from),
<envar>GBP_BUILD_DIR</envar> (the build dir).
</para>
</listitem>
</varlistentry>
<varlistentry>
- <term><option>--git-postexport=</option><replaceable>COMMAND</replaceable>
+ <term><option>--git-postbuild=</option><replaceable>COMMAND</replaceable>
</term>
<listitem>
<para>
- Execute <replaceable>COMMAND</replaceable> after exporting the source
- tree - valid only if --git-export-dir has been specified.
+ Execute <replaceable>COMMAND</replaceable> after successful
+ build.
</para>
<para>
- Exported environment variables are: <envar>GBP_GIT_DIR</envar> (the
- repository the package is being built from),
- <envar>GBP_TMP_DIR</envar> (the temporary directory where the sources
- have been initially exported).
+ Exported environment variables are: <envar>GBP_CHANGES_FILE</envar>
+ (the name of the generated changes file),
+ <envar>GBP_BUILD_DIR</envar> (the build dir).
</para>
</listitem>
</varlistentry>
<varlistentry>
- <term><option>--git-prebuild=</option><replaceable>COMMAND</replaceable>
+ <term><option>--git-posttag=</option><replaceable>COMMAND</replaceable>
</term>
<listitem>
<para>
- Execute <replaceable>COMMAND</replaceable> from the build directory
- before calling <application>debuild</application> or the application
- specified via <option>--git-builder</option>.
+ Execute <replaceable>COMMAND</replaceable> after tagging a new
+ version.
</para>
<para>
- Exported environment variables are: <envar>GBP_GIT_DIR</envar> (the
- repository the package is being built from),
- <envar>GBP_BUILD_DIR</envar> (the build dir).
+ Exported environment variables are: <envar>GBP_TAG</envar> (the name
+ of the generated tag), <envar>GBP_BRANCH</envar> (the branch the
+ package was build from) and <envar>GBP_SHA1</envar> (the sha1 of the
+ commit the tag was created at).
</para>
</listitem>
</varlistentry>