aboutsummaryrefslogtreecommitdiff
path: root/pbuilderrc.5
diff options
context:
space:
mode:
authorJunichi Uekawa <dancer@coreduo.netfort.gr.jp>2007-06-15 19:03:51 +0900
committerJunichi Uekawa <dancer@coreduo.netfort.gr.jp>2007-06-15 19:03:51 +0900
commitf645a76e8a54568a75c15fcf1d647e3c187bcb32 (patch)
treea5b749d9797d15285df9905c7a4454164cb57169 /pbuilderrc.5
parent6ce9263a33fe665696acfe448a65bbd7b7179bf4 (diff)
downloadpbuilder-f645a76e8a54568a75c15fcf1d647e3c187bcb32.tar
pbuilder-f645a76e8a54568a75c15fcf1d647e3c187bcb32.tar.gz
reorganize manpage ordering and contents
Diffstat (limited to 'pbuilderrc.5')
-rw-r--r--pbuilderrc.5222
1 files changed, 119 insertions, 103 deletions
diff --git a/pbuilderrc.5 b/pbuilderrc.5
index f072cdf..bba11cc 100644
--- a/pbuilderrc.5
+++ b/pbuilderrc.5
@@ -10,27 +10,15 @@ program invocation.
The file itself is sourced by a shell script, so
it is required that the file conforms to shell script conventions.
.SH "FORMAT"
+
.TP
.BI "BASETGZ=" "/var/cache/pbuilder/base.tgz"
Specifies the default location for the archived
chroot image to be created and used.
This is overridden with the option
.BR "--basetgz" "."
-.TP
-.BI "EXTRAPACKAGES=" """ccache linda XXX"""
-Specifies extra packages which the system should install
-in the chroot on
-.BR "pbuilder create" "."
-This is a space-delimited list.
-Also this is installed on
-.B "pbuilder build"
.TP
-.BI "export DEBIAN_BUILDARCH=" "athlon"
-Uses this variable as
-.BR "DEBIAN_BUILDARCH" "."
-This trick can be used for other environmental variables as well.
-.TP
.BI "BUILDPLACE=" "/var/cache/pbuilder/build/"
The default place which the chroot is constructed.
.B pbuilder
@@ -49,6 +37,18 @@ when doing such a thing.
.B "pbuilder clean"
cleans up this directory.
+
+.TP
+.BI "BUILDRESULT=" "/var/cache/pbuilder/result/"
+Specify the default directory which the build result will
+be copied over to after the building.
+
+Unlike
+.B "--buildresult"
+command-line option.
+The path is not canonicalized, so you should specify a full-path,
+not a relative path.
+
.TP
.BI "MIRRORSITE=" "http://www.jp.debian.org/debian"
Specify the mirror site which contains the
@@ -84,42 +84,6 @@ To make changes on mirror site effective on
needs to be specified.
.TP
-.BI "export http_proxy=" "http://your-proxy:8080/"
-Defines the proxy for http connection.
-.TP
-.BI "USEPROC=" "yes"
-Specify
-.B yes
-when it is desired to mount
-.B /proc
-interface. It is usually a good idea, since there are many
-software which fail miserably when there is no
-.B /proc
-being mounted.
-
-.TP
-.BI "USEDEVPTS=" "yes"
-Specify
-.B yes
-when it is desired to mount
-.B /dev/pts
-interface. It is usually a good idea, since there
-are many software which fail miserably when there is no
-.B /dev/pts
-being mounted.
-
-.TP
-.BI "BUILDRESULT=" "/var/cache/pbuilder/result/"
-Specify the default directory which the build result will
-be copied over to after the building.
-
-Unlike
-.B "--buildresult"
-command-line option.
-The path is not canonicalized, so you should specify a full-path,
-not a relative path.
-
-.TP
.BI "DISTRIBUTION=" "sid"
Specify the default distribution to use.
This option only affects when doing
@@ -130,6 +94,11 @@ is specified for
.B "pbuilder update"
option.
+
+.TP
+.BI "export http_proxy=" "http://your-proxy:8080/"
+Defines the proxy for http connection.
+
.TP
.BI "APTCACHE=" "/var/cache/pbuilder/aptcache"
Specify the location that the packages downloaded by apt
@@ -148,12 +117,6 @@ It is advised to set this to
if you are using user-mode-linux.
.TP
-.BI "REMOVEPACKAGES=" "lilo"
-Specify the packages to be removed on creation of
-.B base.tgz
-Leaving lilo in the chroot is like keeping a timebomb...
-
-.TP
.BI "HOOKDIR=" "/usr/lib/pbuilder/hooks"
Specifies the default location for the user hooks
directory.
@@ -170,6 +133,107 @@ For details, see
.B "pbuilder.1"
.TP
+.BI "DEBBUILDOPTS=" ""
+
+The options given here will be passed on to
+.BR dpkg-buildpackage .
+This can be useful e.g. for binary-only builds. The command-line option
+.B "--debbuildopts"
+overrides any contents specified here.
+The default value is to build source and binary package.
+
+
+.TP
+.BI "BINDMOUNTS=" "directories-to-bind-mount"
+When this value is set, pbuilder will mount these directories using
+bind-mount.
+
+Example:
+.B "BINDMOUNTS=""/home /mnt/test """
+
+Do not bind-mount
+.B "/"
+
+.TP
+.BI "USE_PDEBUILD_INTERNAL=" "yes"
+When this option is set to
+.I yes
+.B "pdebuild-internal"
+implementation of
+.B pdebuild
+is used.
+
+.TP
+.BI "DEBOOTSTRAPOPTS=" "'--variant=buildd'"
+When this option is set to
+.B "--variant=buildd"
+.B "pbuilder"
+will invoke
+.B "debootstrap"
+with "--variant=buildd"
+option, which results in debootstrap creating a minimal chroot for
+buildd instead of trying to create a minimal installation chroot.
+
+
+.TP
+.BI "DEBOOTSTRAP=" "debootstrap"
+Use this option to switch the implementation of
+debootstrap.
+Known implementations of debootstrap are
+.B "cdebootstrap"
+and
+.B "debootstrap"
+
+
+.TP
+.BI "EXTRAPACKAGES=" """ccache linda XXX"""
+Specifies extra packages which the system should install
+in the chroot on
+.BR "pbuilder create" "."
+This is a space-delimited list.
+Also this is installed on
+.B "pbuilder build"
+
+.TP
+.BI "export DEBIAN_BUILDARCH=" "athlon"
+Uses this variable as
+.BR "DEBIAN_BUILDARCH" "."
+This trick can be used for other environmental variables as well.
+
+
+
+
+.TP
+.BI "USEPROC=" "yes"
+Specify
+.B yes
+when it is desired to mount
+.B /proc
+interface. It is usually a good idea, since there are many
+software which fail miserably when there is no
+.B /proc
+being mounted.
+
+.TP
+.BI "USEDEVPTS=" "yes"
+Specify
+.B yes
+when it is desired to mount
+.B /dev/pts
+interface. It is usually a good idea, since there
+are many software which fail miserably when there is no
+.B /dev/pts
+being mounted.
+
+
+.TP
+.BI "REMOVEPACKAGES=" "lilo"
+Specify the packages to be removed on creation of
+.B base.tgz
+Leaving lilo in the chroot is like keeping a timebomb...
+
+
+.TP
.BI "DEBEMAIL=" "Maintainer Name <Mail@Address>"
If this was specified,
@@ -185,15 +249,6 @@ The default configuration for
.B pbuilder
is empty for this value.
-.TP
-.BI "DEBBUILDOPTS=" ""
-
-The options given here will be passed on to
-.BR dpkg-buildpackage .
-This can be useful e.g. for binary-only builds. The command-line option
-.B "--debbuildopts"
-overrides any contents specified here.
-The default value is to build source and binary package.
.TP
.BI "BUILDSOURCEROOTCMD=" "fakeroot"
@@ -292,45 +347,6 @@ When this value is set to yes,
will invoke debsign command after building.
-.TP
-.BI "BINDMOUNTS=" "directories-to-bind-mount"
-When this value is set, pbuilder will mount these directories using
-bind-mount.
-
-Example:
-.B "BINDMOUNTS=""/home /mnt/test """
-
-Do not bind-mount
-.B "/"
-
-.TP
-.BI "USE_PDEBUILD_INTERNAL=" "yes"
-When this option is set to
-.I yes
-.B "pdebuild-internal"
-implementation of
-.B pdebuild
-is used.
-
-.TP
-.BI "DEBOOTSTRAPOPTS=" "'--variant=buildd'"
-When this option is set to
-.B "--variant=buildd"
-.B "pbuilder"
-will invoke
-.B "debootstrap"
-with "--variant=buildd"
-option, which results in debootstrap creating a minimal chroot for
-buildd instead of trying to create a minimal installation chroot.
-
-.TP
-.BI "DEBOOTSTRAP=" "debootstrap"
-Use this option to switch the implementation of
-debootstrap.
-Known implementations of debootstrap are
-.B "cdebootstrap"
-and
-.B "debootstrap"
.TP
.BI "PKGNAME_LOGFILE_EXTENTION=" ".build"