Fix a number of minor glitches in manual pages.

This commit is contained in:
Colin Watson 2008-09-01 09:50:23 +01:00
parent 033fb7aa12
commit 4b3746bb6d
17 changed files with 204 additions and 224 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
ubuntu-dev-tools (0.43ubuntu2) UNRELEASED; urgency=low
* Fix a number of minor glitches in manual pages.
-- Colin Watson <cjwatson@ubuntu.com> Mon, 01 Sep 2008 09:48:38 +0100
ubuntu-dev-tools (0.43ubuntu1) intrepid; urgency=low ubuntu-dev-tools (0.43ubuntu1) intrepid; urgency=low
* Bazaar revision 195. * Bazaar revision 195.

View File

@ -3,50 +3,47 @@
buildd \- command-line interface to Launchpad build operations buildd \- command-line interface to Launchpad build operations
.SH SYNOPSIS .SH SYNOPSIS
.B buildd <srcpackage> <release> <operation> .B buildd <srcpackage> <release> <operation>
.br
.B buildd \-\-help .B buildd \-\-help
.SH DESCRIPTION .SH DESCRIPTION
.PP
\fBbuildd\fR provides a command line interface to the Launchpad build \fBbuildd\fR provides a command line interface to the Launchpad build
operations. operations.
.PP .PP
\fBbuildd\fR uses a cookie file stored at \fI~/.lpcookie.txt\fR to authenticate \fBbuildd\fR uses a cookie file stored at \fI~/.lpcookie.txt\fR to authenticate
to Launchpad. This cookie is created on run from the Mozilla Firefox cookie to Launchpad.
This cookie is created on run from the Mozilla Firefox cookie
file at \fI~/.mozilla/*/*/cookies.sqlite\fR. file at \fI~/.mozilla/*/*/cookies.sqlite\fR.
.SH OPERATIONS .SH OPERATIONS
.PP
Listed below are the available operations for \fBbuildd\fR: Listed below are the available operations for \fBbuildd\fR:
.TP .TP
.B status .B status
Outputs the build status of the package on Launchpad on all architectures. Outputs the build status of the package on Launchpad on all architectures.
.TP .TP
.B retry .B retry
Requests that the package has another attempt at rebuilding from source. This Requests that the package has another attempt at rebuilding from source.
shall only work if the package has \fIFailed to build\fR on Launchpad. This will only work if the package has \fIFailed to build\fR on Launchpad.
.TP .TP
.B rescore .B rescore
Requests that the packages build priority be raised in the build queue. Only Requests that the package's build priority be raised in the build queue.
members of the Launchpad build administrators may issue this operation and may Only members of the Launchpad build administrators may issue this operation,
only be performed on packages which \fINeed building\fR. and it may only be performed on packages which \fINeed building\fR.
.SH OPTIONS .SH OPTIONS
.PP
Listed below are the command line options for \fBbuildd\fR: Listed below are the command line options for \fBbuildd\fR:
.TP .TP
.B \-h or \-\-help .B \-h or \-\-help
Display a help message and exit. Display a help message and exit.
.TP .TP
.B \-a or \-\-architecture .B \-a or \-\-architecture
Only available for \fIrescore\fR and \fIretry\fR operations only. This shall Only available for \fIrescore\fR and \fIretry\fR operations only.
only request the rebuilding/rescoring on the specified architecture only. This will only request the rebuilding/rescoring on the specified
architecture.
.SH AUTHORS .SH AUTHORS
.PP
\fBbuildd\fR was written by Martin Pitt <martin.pitt@canonical.com>, and \fBbuildd\fR was written by Martin Pitt <martin.pitt@canonical.com>, and
this manual page was written by Jonathan Patrick Davies <jpds@ubuntu.com>. this manual page was written by Jonathan Patrick Davies <jpds@ubuntu.com>.
.PP .PP

View File

@ -7,37 +7,37 @@ check\-symbols \- verify symbols exported by a new library version
\fBcheck\-symbols\fP <\fIsource\-package\fR\> [\fIDEBDIR\fR] \fBcheck\-symbols\fP <\fIsource\-package\fR\> [\fIDEBDIR\fR]
.SH "DESCRIPTION" .SH "DESCRIPTION"
To verify the symbols exported by a new library version, run To verify the symbols exported by a new library version, run
\fBcheck-symbols\fP with the name of the source package as argument. \fBcheck\-symbols\fP with the name of the source package as argument.
\fBcheck-symbols\fP will first determine the symbols exported by the existing \fBcheck\-symbols\fP will first determine the symbols exported by the
and installed libary version, then install the new library and compare the existing and installed library version, then install the new library and
symbols exported by the new library version with the symbols exported compare the symbols exported by the new library version with the symbols
by the old version. For each of the symbols found, \fBcheck-symbols\fP exported by the old version.
will list if the symbol is new, unchanged or has been removed in the For each of the symbols found, \fBcheck\-symbols\fP will list if the symbol
new library version. is new, unchanged or has been removed in the new library version.
.PP .PP
In case the source package contains multiple binary library packages, In case the source package contains multiple binary library packages,
all library files in each of the binary packages will be verified. all library files in each of the binary packages will be verified.
.PP .PP
\fBcheck\-symbols\fP uses \fBnm\fP -D to determine \fBcheck\-symbols\fP uses \fBnm\fP \-D to determine
the exported symbols of the libraries. the exported symbols of the libraries.
.PP .PP
If no value is given for DEBDIR, the script will assume the new library If no value is given for DEBDIR, the script will assume the new library
deb files are stored in /var/cache/pbuilder/result. deb files are stored in /var/cache/pbuilder/result.
.SH "EXAMPLES" .SH "EXAMPLES"
\fBcheck\-symbols\fP telepathy-glib . \fBcheck\-symbols\fP telepathy\-glib .
.TP .TP
This will: This will:
.RS 2 .RS 2
.TP 2 .TP 2
\(bu Use \fBnm\fP -D to determine the exported symbols of the old, \(bu Use \fBnm\fP \-D to determine the exported symbols of the old,
installed versions of the libraries provided by telepathy\-glib. installed versions of the libraries provided by telepathy\-glib.
.TP 2 .TP 2
\(bu Install the binary libaries provided by the new version of \(bu Install the binary libaries provided by the new version of
telepathy\-glib. telepathy\-glib.
.TP 2 .TP 2
\(bu Compare the output of \fBnm\fP -D of the new libraries with the \(bu Compare the output of \fBnm\fP \-D of the new libraries with the
output of the old version. output of the old version.
.TP 2 .TP 2
\(bu List the result in diff format. \(bu List the result in diff format.
@ -45,7 +45,7 @@ output of the old version.
.SH "BUGS" .SH "BUGS"
.nf .nf
Please report bugs on: Please report bugs on:
https://bugs.launchpad.net/ubuntu/+source/ubuntu\-dev\-tools/ https://bugs.launchpad.net/ubuntu/+source/ubuntu\-dev\-tools/
.fi .fi

View File

@ -1,61 +1,56 @@
.TH DCH-REPEAT "1" "10 August 2008" "ubuntu-dev-tools" .TH DCH\-REPEAT "1" "10 August 2008" "ubuntu-dev-tools"
.SH NAME .SH NAME
dch-repeat \- repeats a changelog entry into an older release dch\-repeat \- repeats a changelog entry into an older release
.SH SYNOPSIS .SH SYNOPSIS
.B dch\-repeat \-\-build\-tree <\fIPATH\fR>
.B dch-repeat \-\-build-tree <\fIPATH\fR> .br
.B dch\-repeat \-\-source\-release <\fIRELEASE\fR>
.B dch-repeat \-\-source-release <\fIRELEASE\fR> .br
.B dch\-repeat \-\-target\-release <\fIRELEASE\fR>
.B dch-repeat \-\-target-release <\fIRELEASE\fR> .br
.B dch\-repeat \-\-devel\-release <\fIRELEASE\fR>
.B dch-repeat \-\-devel-release <\fIRELEASE\fR> .br
.B dch\-repeat \-\-pocket <\fIPOCKET\fR>
.B dch-repeat \-\-pocket <\fIPOCKET\fR> .br
.B dch\-repeat \-h
.B dch-repeat \-h
.SH DESCRIPTION .SH DESCRIPTION
.PP \fBdch\-repeat\fR is used to repeat a changelog into an older release.
\fBdch-repeat\fR is used to repeat a changelog into an older release. It It expects that \-\-build\-tree is laid out with each Ubuntu release as a
expects that \-\-build-tree is laid out with each Ubuntu release as a separate separate directory ("feisty", "edgy", etc).
directory ("feisty", "edgy", etc).
.PP .PP
For example, if gimp had a security update prepared for Feisty in For example, if gimp had a security update prepared for Feisty in
$TREE/feisty/gimp-2.2.13, running \fBdch-repeat\fR in $TREE/edgy/gimp-2.2.13 $TREE/feisty/gimp\-2.2.13, running \fBdch\-repeat\fR in
would pull in the latest changelog from the Feisty build. $TREE/edgy/gimp\-2.2.13 would pull in the latest changelog from the Feisty
build.
.SH OPTIONS .SH OPTIONS
.PP Listed below are the command line options for \fBdch\-repeat\fR:
Listed below are the command line options for \fBdch-repeat\fR:
.TP .TP
.B \-h or \-\-help .B \-h or \-\-help
Display a help message and exit. Display a help message and exit.
.TP .TP
.B \-\-build-tree PATH .B \-\-build\-tree PATH
Base of build trees. Default is /scratch/ubuntu/build. Base of build trees. Default is /scratch/ubuntu/build.
.TP .TP
.B \-s or \-\-source-release RELEASE .B \-s or \-\-source\-release RELEASE
Which release to take changelog from. Which release to take changelog from.
.TP .TP
.B \-\-target-release RELEASE .B \-\-target\-release RELEASE
Which release to build into. Which release to build into.
.TP .TP
.B \-\-devel-release RELEASE .B \-\-devel\-release RELEASE
Which release is the development release. Which release is the development release.
.TP .TP
.B \-\-pocket POCKET .B \-\-pocket POCKET
Which pocket to use. Which pocket to use.
.SH AUTHOR .SH AUTHOR
.PP \fBdch-repeat\fR was written by Kees Cook <kees@ubuntu.com>.
\fBdch-repeat\fR was written by Kees Cook <kees@ubuntu.com>. This manual page This manual page was written by Jonathan Patrick Davies <jpds@ubuntu.com>.
was written by Jonathan Patrick Davies <jpds@ubuntu.com>.
.PP .PP
Both are released under the GNU General Public License, version 2. Both are released under the GNU General Public License, version 2.
.SH SEE ALSO .SH SEE ALSO
.PP
.BR dch(1). .BR dch(1).

View File

@ -1,18 +1,15 @@
.TH DGETLP "1" "27 August 2008" "ubuntu-dev-tools" .TH DGETLP "1" "27 August 2008" "ubuntu-dev-tools"
.SH NAME .SH NAME
dgetlp \- simulate ``dget'' behaviour for files hosted at dgetlp \- simulate ``dget'' behaviour for files hosted at librarian.launchpad.net
librarian.launchpad.net
.SH SYNOPSIS .SH SYNOPSIS
.B dgetlp [-d] <\fBLaunchpad DSC URL\fR> .B dgetlp \fR[\fB\-d\fR] <\fBLaunchpad DSC URL\fR>
.SH DESCRIPTION .SH DESCRIPTION
.PP
\fBdgetlp\fR downloads and optionally extracts the <\fBLaunchpad DSC URL\fR> from Launchpad. \fBdgetlp\fR downloads and optionally extracts the <\fBLaunchpad DSC URL\fR> from Launchpad.
.SH OPTIONS .SH OPTIONS
.PP
Listed below are the command line options for dgetlp: Listed below are the command line options for dgetlp:
.TP .TP
.B \-d .B \-d
@ -30,8 +27,7 @@ Specifies the default target.
.B dgetlp http://launchpadlibrarian.net/10348157/coreutils_5.97-5.4ubuntu1.dsc .B dgetlp http://launchpadlibrarian.net/10348157/coreutils_5.97-5.4ubuntu1.dsc
.SH AUTHOR .SH AUTHOR
.PP \fBdgetlp\fR was written by Terence Simpson <tsimpson@ubuntu.com> and
\fBdgetlp\fR was written written by Terence Simpson <tsimpson@ubuntu.com> and modified by Siegfried-A. Gevatter <rainct@ubuntu.com>.
modified by Siegfried-A. Gevatter <rainct@ubuntu.com>. This man page was written This man page was written by Ryan Kavanagh <ryanakca@kubuntu.org>.
by Ryan Kavanagh <ryanakca@kubuntu.org>. Both are released under the GNU General Both are released under the GNU General Public License, version 2 or later.
Public License, version 2 or later.

View File

@ -1,23 +1,20 @@
.TH GET-BRANCHES "1" "11 August 2008" "ubuntu-dev-tools" .TH GET\-BRANCHES "1" "11 August 2008" "ubuntu-dev-tools"
.SH NAME .SH NAME
get-branches \- downloads all branches related to a Launchpad team or person get\-branches \- downloads all branches related to a Launchpad team or person
.SH SYNOPSIS .SH SYNOPSIS
.B get\-branches [\-d directory] [\-o branch|checkout] \-t <team>
.B get-branches [-d directory] [-o branch|checkout] \-t <team> .br
.B get\-branches <team>
.B get-branches <team> .br
.B get\-branches \-\-help
.B get-branches \-\-help
.SH DESCRIPTION .SH DESCRIPTION
.PP \fBget\-branches\fR examines the code page of a Launchpad team/person,
\fBget-branches\fR examines the code page of a Launchpad team/person, parses it, parses it, and calls Bazaar to download all branches on that page.
and calls Bazaar to download all branches on that page.
.SH OPTIONS .SH OPTIONS
.PP Listed below are the command line options for \fBget\-branches\fR:
Listed below are the command line options for \fBget-branches\fR:
.TP .TP
.B \-h or \-\-help .B \-h or \-\-help
Display a help message and exit. Display a help message and exit.
@ -30,16 +27,14 @@ Specifies which Bazaar operation to use when downloading the branches; may be
either \fIbranch\fR or \fIcheckout\fR. either \fIbranch\fR or \fIcheckout\fR.
.TP .TP
.B \-t or \-\-team .B \-t or \-\-team
Specifies which Launchpad team/person to download branches from. This option is Specifies which Launchpad team/person to download branches from.
required. This option is required.
.SH AUTHORS .SH AUTHORS
.PP \fBget\-branches\fR was written by Daniel Holbach <daniel.holbach@ubuntu.com>,
\fBget-branches\fR was written by Daniel Holbach <daniel.holbach@ubuntu.com>, and and this manual page was written by Jonathan Patrick Davies <jpds@ubuntu.com>.
this manual page was written by Jonathan Patrick Davies <jpds@ubuntu.com>.
.PP .PP
Both are released under the terms of the GNU General Public License, version 3. Both are released under the terms of the GNU General Public License, version 3.
.SH SEE ALSO .SH SEE ALSO
.PP
.B bzr(1) .B bzr(1)

View File

@ -17,8 +17,9 @@ missing build dependencies.
.PP .PP
Alternatively, you can call it with a list of space-separated package Alternatively, you can call it with a list of space-separated package
names, or the name of a single file which contains the package names names, or the name of a single file which contains the package names
each on a line. Then it will install the missing dependencies for those each on a line.
packages using "apt-get build-dep". Then it will install the missing dependencies for those packages using
"apt\-get build\-dep".
.SH EXAMPLES .SH EXAMPLES
.TP .TP
@ -30,9 +31,9 @@ get\-build\-deps geany
Installs the build dependencies for the version of \fBgeany\fP that's Installs the build dependencies for the version of \fBgeany\fP that's
in the repositories. in the repositories.
.TP .TP
get\-build\-deps geany epiphany-browser rhythmbox get\-build\-deps geany epiphany\-browser rhythmbox
Same as the previous example but also with the dependencies for Same as the previous example but also with the dependencies for
.B epiphany-browser .B epiphany\-browser
and and
.BR rhythmbox . .BR rhythmbox .
.TP .TP
@ -50,10 +51,10 @@ for the dependencies to match the indicated versions, but just installs
the newest one available in the repositories. the newest one available in the repositories.
.SH SEE ALSO .SH SEE ALSO
.BR dpkg-checkbuilddeps (1), .BR dpkg\-checkbuilddeps (1),
.BR apt-get (8) .BR apt\-get (8)
.SH AUTHORS .SH AUTHORS
\fBget\-build\-deps\fP and this manual page have been written by Siegfried-Angel \fBget\-build\-deps\fP and this manual page have been written by Siegfried-Angel
Gevatter Pujals <rainct@ubuntu.com>. They are released under the GNU General Gevatter Pujals <rainct@ubuntu.com>.
Public License, version 3 or later. They are released under the GNU General Public License, version 3 or later.

View File

@ -1,18 +1,16 @@
.TH GRAB-ATTACHMENTS "1" "10 August 2008" "ubuntu-dev-tools" .TH GRAB\-ATTACHMENTS "1" "10 August 2008" "ubuntu-dev-tools"
.SH NAME .SH NAME
grab-attachments \- downloads attachments from a Launchpad bug grab\-attachments \- downloads attachments from a Launchpad bug
.SH SYNOPSIS .SH SYNOPSIS
.B grab-attachments\fR <\fIbug-number\fR> .B grab\-attachments\fR <\fIbug-number\fR>
.br
.B grab-attachments \-h .B grab\-attachments \-h
.SH DESCRIPTION .SH DESCRIPTION
.PP \fBgrab\-attachments\fR is a script to download all attachments from a
\fBgrab-attachments\fR is a script to download all attachments from a
Launchpad bug report into the current directory. Launchpad bug report into the current directory.
.SH OPTIONS .SH OPTIONS
.PP Listed below are the command line options for grab\-attachments:
Listed below are the command line options for grab-attachments:
.TP .TP
.B \-h .B \-h
Display a help message and exit. Display a help message and exit.
@ -22,8 +20,7 @@ Specifies the Launchpad bug number that the script should download
attachments from. attachments from.
.SH AUTHOR .SH AUTHOR
.PP \fBgrab\-attachments\fR was written by Daniel Holbach and this manual page
\fBgrab-attachments\fR was written by Daniel Holbach and this manual page was was written by Jonathan Patrick Davies.
written by Jonathan Patrick Davies.
.PP .PP
Both are released under the GNU General Public License, version 2. Both are released under the GNU General Public License, version 2.

View File

@ -1,12 +1,10 @@
.TH HUGDAYLIST "1" "August 27, 2008" "ubuntu-dev-tools" .TH HUGDAYLIST "1" "August 27, 2008" "ubuntu-dev-tools"
.SH NAME .SH NAME
hugdaylist \- produce MoinMoin wiki formatted tables based on a Launchpad bug hugdaylist \- produce MoinMoin wiki formatted tables based on a Launchpad bug list
list
.SH SYNOPSIS .SH SYNOPSIS
.B hugdaylist [\fB\-n <NUMBER>, \fB\-\-number=<NUMBER>\fP] .B hugdaylist [\fB\-n\fP|\fB\-\-number <NUMBER>\fP] \fBlaunchpad-buglist-url\fP
\fBlaunchpad-buglist-url\fP
.SH DESCRIPTION .SH DESCRIPTION
\fBhugdaylist\fP produces MoinMoin wiki formatted tables based on a \fBhugdaylist\fP produces MoinMoin wiki formatted tables based on a
@ -20,7 +18,6 @@ This option allows you to specify the number of entries to output.
\fBlaunchpad-buglist-url\fP \fBlaunchpad-buglist-url\fP
Required, this option is a URL pointing to a launchpad bug list. Required, this option is a URL pointing to a launchpad bug list.
.SH AUTHOR .SH AUTHOR
\fBhugdaylist\fP has been written by Canonical Ltd., Daniel Holbach \fBhugdaylist\fP has been written by Canonical Ltd., Daniel Holbach
<daniel.holbach@canonical.com> and Jonathan Patrick Davies <jpds@ubuntu.com>. <daniel.holbach@canonical.com> and Jonathan Patrick Davies <jpds@ubuntu.com>.

View File

@ -1,20 +1,18 @@
.TH MK-SBUILD-LV "1" "27 August 2008" "ubuntu-dev-tools" .TH MK\-SBUILD\-LV "1" "27 August 2008" "ubuntu-dev-tools"
.SH NAME .SH NAME
mk-sbuild-lv \- creates LVM snapshot chroots via schroot and sbuild mk\-sbuild\-lv \- creates LVM snapshot chroots via schroot and sbuild
.SH SYNOPSIS .SH SYNOPSIS
\fB mk-sbuild-lv\fR [\fB--arch=ARCH\fR] [\fB--name=NAME\fR] \fBmk\-sbuild\-lv\fR [\fB\-\-arch=ARCH\fR] [\fB\-\-name=NAME\fR]
[\fB--personality=PERSONALITY\fR] [\fB--debug\fR] [\fB--source-template=FILE\fR] [\fB\-\-personality=PERSONALITY\fR] [\fB\-\-debug\fR] [\fB\-\-source\-template=FILE\fR]
[\fB--debootstrap-mirror=URL\fR] <\fBVG\fR> <\fBRelease\fR> [\fB\-\-debootstrap\-mirror=URL\fR] <\fBVG\fR> <\fBRelease\fR>
.SH DESCRIPTION .SH DESCRIPTION
.PP \fBmk\-sbuild\-lv\fR creates LVM snapshot chroots via schroot and sbuild.
\fBmk-sbuild-lv\fR creates LVM snapshot chroots via schroot and sbuild.
.SH OPTIONS .SH OPTIONS
.PP Listed below are the command line options for mk\-sbuild\-lv:
Listed below are the command line options for mk-sbuild-lv:
.TP .TP
.B \-\-arch=ARCH .B \-\-arch=ARCH
What architecture to select (defaults to the native architecture). What architecture to select (defaults to the native architecture).
@ -23,15 +21,15 @@ What architecture to select (defaults to the native architecture).
Base name for the schroot (arch is appended) Base name for the schroot (arch is appended)
.TP .TP
.B \-\-personality=PERSONALITY .B \-\-personality=PERSONALITY
What personality to use (defaults to match --arch) What personality to use (defaults to match \-\-arch)
.TP .TP
.B \-\-debug .B \-\-debug
Turn on script debugging Turn on script debugging
.TP .TP
.B \-\-source-template=FILE .B \-\-source\-template=FILE
Use FILE as the sources.list template (defaults to $HOME/.mk-sbuild-lv.sources) Use FILE as the sources.list template (defaults to $HOME/.mk\-sbuild\-lv.sources)
.TP .TP
.B \-\-debootstrap-mirror=URL .B \-\-debootstrap\-mirror=URL
Use URL as the debootstrap source (defaults to http://ports.ubuntu.com for lpia, Use URL as the debootstrap source (defaults to http://ports.ubuntu.com for lpia,
official Ubuntu repositories for the supported architectures). official Ubuntu repositories for the supported architectures).
@ -48,26 +46,27 @@ Lines to append to schroot entries
.SH FILES .SH FILES
.TP .TP
.B $HOME/.mk-sbuild-lv.sources .B $HOME/.mk\-sbuild\-lv.sources
Can contain a customized sources.list. It will be read when creating the Can contain a customized sources.list.
schroot, see sources.list(5) for more details on format. It will be read when creating the schroot.
See sources.list(5) for more details on the format.
.TP .TP
.B $HOME/.mk-sbuild-lv.schroot.conf .B $HOME/.mk\-sbuild\-lv.schroot.conf
Can contain a customized configuration section to be inserted into Can contain a customized configuration section to be inserted into
/etc/schroot/schroot.conf, see schroot.conf(5) for more details on format. /etc/schroot/schroot.conf.
See schroot.conf(5) for more details on the format.
.SH USING THE CHROOTS .SH USING THE CHROOTS
.TP .TP
To UPDATE the golden image: \fBschroot -c ${CHROOT_NAME}-source -u root -- sh -c apt-get update && apt-get -y upgrade\fR To UPDATE the golden image: \fBschroot \-c ${CHROOT_NAME}\-source -u root \-\- sh \-c apt\-get update && apt\-get \-y upgrade\fR
.TP .TP
To ENTER an image snapshot: \fBschroot -c ${CHROOT_NAME}\fR To ENTER an image snapshot: \fBschroot \-c ${CHROOT_NAME}\fR
.TP .TP
To BUILD within a snapshot: \fBsbuild -d ${SCHROOT_NAME} PACKAGE*.dsc\fR To BUILD within a snapshot: \fBsbuild \-d ${SCHROOT_NAME} PACKAGE*.dsc\fR
.SH SEE ALSO .SH SEE ALSO
.BR sbuild-setup (7), sources.list (5), schroot.conf (5), https://help.ubuntu.com/community/SbuildLVMHowto .BR sbuild\-setup (7), sources.list (5), schroot.conf (5), https://help.ubuntu.com/community/SbuildLVMHowto
.SH AUTHOR .SH AUTHOR
.PP \fBmk\-sbuild\-lv\fR was written by Kees Cook <kees@ubuntu.com>.
\fBmk-sbuild-lv\fR was written written by Kees Cook <kees@ubuntu.com>. This This man page was written by Ryan Kavanagh <ryanakca@kubuntu.org>.
man page was written by Ryan Kavanagh <ryanakca@kubuntu.org>. Both are released Both are released under the GNU General Public License, version 3 or later.
under the GNU General Public License, version 3 or later.

View File

@ -8,14 +8,14 @@ pbuilder\-dist\-simple \- simple multi-distribution pbuilder wrapper
.SH DESCRIPTION .SH DESCRIPTION
\fBpbuilder\-dist\fP is a wrapper that makes it easy to use pbuilder with \fBpbuilder\-dist\fP is a wrapper that makes it easy to use pbuilder with
chroots for many different Ubuntu/Debian distributions. If you need more chroots for many different Ubuntu/Debian distributions.
features than \fBpbuilder\-dist\-simple\fP provides, have a look at If you need more features than \fBpbuilder\-dist\-simple\fP provides, have a
\fBpbuilder\-dist\fP. look at \fBpbuilder\-dist\fP.
.SH USAGE .SH USAGE
Create one symlink to \fBpbuilder\-dist\-simple\fP for each distribution Create one symlink to \fBpbuilder\-dist\-simple\fP for each distribution
for which you want a build environment, naming them like "pbuilder-hardy", for which you want a build environment, naming them like "pbuilder\-hardy",
"pbuilder-gutsy", etc. "pbuilder\-gutsy", etc.
.PP .PP
Replace \fIoperation\fP with the action you want \fBpbuilder\-dist\-simple\fP Replace \fIoperation\fP with the action you want \fBpbuilder\-dist\-simple\fP
to do (create, update, build, clean, login or execute). to do (create, update, build, clean, login or execute).
@ -33,8 +33,9 @@ Builds the specified package on an already existing Ubuntu Hardy environment.
.SH FILES .SH FILES
By default, \fBpbuilder\-dist\-simple\fP will store all the files it By default, \fBpbuilder\-dist\-simple\fP will store all the files it
generates in \fB~/pbuilder/\fP. This can be changed by modifying the generates in \fB~/pbuilder/\fP.
BASE_DIR value on the top of the script to any other directory you want. This can be changed by modifying the BASE_DIR value on the top of the script
to any other directory you want.
If the directory doesn't exit, it will be created at runtime. If the directory doesn't exit, it will be created at runtime.
.SH SEE ALSO .SH SEE ALSO

View File

@ -45,9 +45,10 @@ the current action in a dot-file called \fB.lastlog\fP in its base directory
If this file already exists, it will be overwritten. If this file already exists, it will be overwritten.
.TP .TP
\fBoperation\fP \fBoperation\fP
Replace this with the action you want \fBpbuilder\fP to do (create, update, build, clean, login Replace this with the action you want \fBpbuilder\fP to do (create, update,
or execute). If you don't specify any action, but the next argument is a .dsc file, it will build, clean, login or execute).
assume that it should build. If you don't specify any action, but the next argument is a .dsc file, it
will assume that it should build.
Check its manpage for more details. Check its manpage for more details.
.TP .TP
\fB[...]\fP \fB[...]\fP
@ -56,9 +57,10 @@ Replace this with other parameters, if needed.
For example, if \fBbuild\fP is the option, you will need to also specify For example, if \fBbuild\fP is the option, you will need to also specify
a .dsc file. a .dsc file.
.PP .PP
The default value of all optional parameters (except the architecture) can be changed by The default value of all optional parameters (except the architecture) can
editing the first lines of the script. You can also change the base directory using the be changed by editing the first lines of the script.
global variable $PBUILDFOLDER. You can also change the base directory using the global variable
$PBUILDFOLDER.
.PP .PP
.SH EXAMPLES .SH EXAMPLES
@ -96,9 +98,9 @@ with \fBpbuilder\fP.
.SH AUTHORS .SH AUTHORS
\fBpbuilder\-dist\fP was originally written by Jamin W. Collins \fBpbuilder\-dist\fP was originally written by Jamin W. Collins
<jcollins@asgardsrealm.net> and Jordan Mantha <mantha@ubuntu.com>. On August <jcollins@asgardsrealm.net> and Jordan Mantha <mantha@ubuntu.com>.
2007 it was mostly rewritten, and extended, by Siegfried-Angel Gevatter Pujals On August 2007 it was mostly rewritten, and extended, by Siegfried-Angel
<rainct@ubuntu.com>. Gevatter Pujals <rainct@ubuntu.com>.
\fBpbuilder\-dist\fP is released under the GNU General Public License, version \fBpbuilder\-dist\fP is released under the GNU General Public License, version
2 or later. 2 or later.

View File

@ -1,23 +1,21 @@
.TH PULL-LP-SOURCE "1" "4 August 2008" "ubuntu-dev-tools" .TH PULL\-LP\-SOURCE "1" "4 August 2008" "ubuntu-dev-tools"
.SH NAME .SH NAME
pull-lp-source \- download a source package from Launchpad pull\-lp\-source \- download a source package from Launchpad
.SH SYNOPSIS .SH SYNOPSIS
.B pull-lp-source [-h] <\fBsource package\fR> [\fItarget release\fR] .B pull\-lp\-source \fR[\fB\-h\fR]\fB <\fBsource package\fR> [\fItarget release\fR]
.SH DESCRIPTION .SH DESCRIPTION
.PP \fBpull\-lp\-source\fR downloads and extracts the latest version of
\fBpull-lp-source\fR downloads and extracts the latest version of <\fBsource package\fR> from Launchpad.
<\fBsource package\fR> from Launchpad. If the optional parameter If the optional parameter [\fItarget release\fR] is specified, the latest
[\fItarget release\fR] is specified, the latest version in that release version in that release will be downloaded instead.
will be downloaded instead.
.SH OPTIONS .SH OPTIONS
.PP Listed below are the command line options for pull\-lp\-source:
Listed below are the command line options for pull-lp-source:
.TP .TP
.B \-h, --help .B \-h, \-\-help
Display a help message and exit. Display a help message and exit.
.TP .TP
.B <source package> .B <source package>
@ -34,6 +32,6 @@ Specifies the default target.
.SH AUTHOR .SH AUTHOR
.PP .PP
\fBpull-lp-source\fR and this manual page were written by Iain Lane \fBpull\-lp\-source\fR and this manual page were written by Iain Lane
<iain@orangesquash.org.uk>. Both are released under the GNU General Public <iain@orangesquash.org.uk>.
License, version 3 or later. Both are released under the GNU General Public License, version 3 or later.

View File

@ -2,46 +2,47 @@
.SH NAME .SH NAME
requestsync \- helper to file sync requests for Ubuntu requestsync \- helper to file sync requests for Ubuntu
.SH SYNOPSIS .SH SYNOPSIS
.B requestsync\fR [\fB-d distro\fR] [\fB\-ns\fR] [\fB\-k \fIkeyid\fR] <\fBsource package\fR> <\fBtarget release\fR> [\fIbase version\fR] .B requestsync\fR [\fB\-d distro\fR] [\fB\-ns\fR] [\fB\-k \fIkeyid\fR] <\fBsource package\fR> <\fBtarget release\fR> [\fIbase version\fR]
.br
.B requestsync \-\-lp\fR [\fB\-ns\fR] <\fBsource package\fR> <\fBtarget release\fR> [\fIbase version\fR] .B requestsync \-\-lp\fR [\fB\-ns\fR] <\fBsource package\fR> <\fBtarget release\fR> [\fIbase version\fR]
.br
.B requestsync \-h .B requestsync \-h
.SH DESCRIPTION .SH DESCRIPTION
.PP
\fBrequestsync\fR looks at the versions of <source package> in Debian and \fBrequestsync\fR looks at the versions of <source package> in Debian and
Ubuntu and prompts for an explanation of why the Ubuntu changes (if there Ubuntu and prompts for an explanation of why the Ubuntu changes (if there
are any) should be dropped. are any) should be dropped.
The changelog entry is then downloaded from packages.debian.org. If the sync The changelog entry is then downloaded from packages.debian.org.
request is being filed per email (default), a prompt for your GPG passphrase If the sync request is being filed per email (default), a prompt for your
follows so that it can sign the mail and send it off to Launchpad. GPG passphrase follows so that it can sign the mail and send it off to
Launchpad.
Alternatively a sync request can be filed directly using the launchpadbugs Alternatively a sync request can be filed directly using the launchpadbugs
python module (option \fB\-\-lp\fR). \fBrequestsync\fR falls back to mail python module (option \fB\-\-lp\fR).
the sync request if submitting using the launchpadbugs module fails. \fBrequestsync\fR falls back to mail the sync request if submitting using
the launchpadbugs module fails.
.PP .PP
\fBrequestsync\fR checks if you have the permissions to request the sync from \fBrequestsync\fR checks if you have the permissions to request the sync from
the archive administrators directly by checking if you are a member of the the archive administrators directly by checking if you are a member of the
\fI~ubuntu-dev\fR team (for universe/multiverse syncs) or a member of the \fI~ubuntu\-dev\fR team (for universe/multiverse syncs) or a member of the
\fI~ubuntu-core-dev\fR team (for main/restricted syncs) on Launchpad. If you are \fI~ubuntu\-core\-dev\fR team (for main/restricted syncs) on Launchpad.
not a member of the appropriate team, the script shall subscribe the necessary If you are not a member of the appropriate team, the script will subscribe
team with approval rights to the bug report for you. the necessary team with approval rights to the bug report for you.
.PP .PP
\fBrequestsync\fR uses a cookie file stored at \fI~/.lpcookie.txt\fR to \fBrequestsync\fR uses a cookie file stored at \fI~/.lpcookie.txt\fR to
authenticate with Launchpad. This cookie is created on run from the Mozilla authenticate with Launchpad.
Firefox cookie file at \fI~/.mozilla/*/*/cookies.sqlite\fR. This cookie is created on run from the Mozilla Firefox cookie file at
\fI~/.mozilla/*/*/cookies.sqlite\fR.
.SH OPTIONS .SH OPTIONS
.PP
Listed below are the command line options for requestsync: Listed below are the command line options for requestsync:
.TP .TP
.B \-h .B \-h
Display a help message and exit. Display a help message and exit.
.TP .TP
.B \-d .B \-d
Specifies which Debian distribution a package should be synced from. Default is Specifies which Debian distribution a package should be synced from.
\fIunstable\fR. Default is \fIunstable\fR.
.TP .TP
.B \-n .B \-n
Specifies that the package is a new package, and requestsync should not Specifies that the package is a new package, and requestsync should not
@ -50,11 +51,11 @@ attempt to look it up in Ubuntu since it will not exist.
.B \-k \fI<keyid>\fR .B \-k \fI<keyid>\fR
Specifies your GPG key. Specifies your GPG key.
Can also be set with the line `\fIexport GPGKEY=<keyid>\fR' in your shell's Can also be set with the line `\fIexport GPGKEY=<keyid>\fR' in your shell's
configuration (For example: \fI$HOME/.bashrc\fR). configuration (for example: \fI$HOME/.bashrc\fR).
This is only used if the sync request is mailed to Launchpad. This is only used if the sync request is mailed to Launchpad.
.TP .TP
.B \-\-lp .B \-\-lp
Use the launchpadbugs python module (packaged as python-launchpad-bugs) to Use the launchpadbugs python module (packaged as python\-launchpad\-bugs) to
file the sync request in Launchpad. file the sync request in Launchpad.
.TP .TP
.B <source package> .B <source package>
@ -71,7 +72,6 @@ from the Debian package) cannot be automatically determined.
Specify this option in this case. Specify this option in this case.
.SH ENVIRONMENT VARIABLES .SH ENVIRONMENT VARIABLES
.PP
\fBrequestsync\fR uses the following variables which should be set in your \fBrequestsync\fR uses the following variables which should be set in your
shell's configuration by adding \fIexport VARIABLE=\fR lines, where VARIABLE is shell's configuration by adding \fIexport VARIABLE=\fR lines, where VARIABLE is
one of the following: one of the following:
@ -84,8 +84,8 @@ Specifies your GnuPG key ID.
Specifies which email should be used when sending to Launchpad. Specifies which email should be used when sending to Launchpad.
.TP .TP
.B DEBSMTP .B DEBSMTP
Set which SMTP server to use when sending mail. If unspecified this defaults to Set which SMTP server to use when sending mail.
fioldland.ubuntu.com. If unspecified this defaults to fiordland.ubuntu.com.
.TP .TP
.B DEBSMTP_PORT .B DEBSMTP_PORT
Sets which port of the SMTP server to use. Default is 25. Sets which port of the SMTP server to use. Default is 25.
@ -94,11 +94,9 @@ Sets which port of the SMTP server to use. Default is 25.
Sets the username and password to use when authenticating to the SMTP server. Sets the username and password to use when authenticating to the SMTP server.
.SH SEE ALSO .SH SEE ALSO
.PP
.BR rmadison (1) .BR rmadison (1)
.SH AUTHOR .SH AUTHOR
.PP
.B requestsync .B requestsync
and this manual page were written by the Ubuntu MOTU Team. and this manual page were written by the Ubuntu MOTU Team.
.PP .PP

View File

@ -19,17 +19,18 @@ reverse dependencies instead.
.TP .TP
\fB\-s\fP \fB\-s\fP
If you prefer to see all build dependencies in a single line, use this If you prefer to see all build dependencies in a single line, use this
option. Otherwise, each one will be printed on its own line. option.
Otherwise, each one will be printed on its own line.
.SH KNOWN BUGS AND LIMITATIONS .SH KNOWN BUGS AND LIMITATIONS
Note that to use \fBreverse\-build\-depends\fP it is required for the source Note that to use \fBreverse\-build\-depends\fP it is required for the source
repositories (deb-src lines) to be enabled in your sources.list. repositories (deb\-src lines) to be enabled in your sources.list.
.SH SEE ALSO .SH SEE ALSO
\fBgrep\-dctrl\fR, \fBapt\-cache\fR \fBgrep\-dctrl\fR, \fBapt\-cache\fR
.SH AUTHORS .SH AUTHORS
\fBreverse\-build\-depends\fP and this manual page were written by \fBreverse\-build\-depends\fP and this manual page were written by
Siegfried-Angel Gevatter Pujals <rainct@ubuntu.com> for YOU. Both are Siegfried-Angel Gevatter Pujals <rainct@ubuntu.com> for YOU.
released under the terms of the GNU General Public License (version 2 Both are released under the terms of the GNU General Public License (version
or later). 2 or later).

View File

@ -9,9 +9,10 @@ suspicious\-source \- search for files that are not the GPL's
.SH DESCRIPTION .SH DESCRIPTION
\fBsuspicious\-source\fP is a script that outputs a list of files which \fBsuspicious\-source\fP is a script that outputs a list of files which
are not common source files. This should be run in the root of a source are not common source files.
tree to find files which might not be the "preferred form of modification" This should be run in the root of a source tree to find files which might
that the GPL and other licenses require. not be the "preferred form of modification" that the GPL and other licenses
require.
.PP .PP
Neither the files inside version control system directories (like Neither the files inside version control system directories (like
".bzr/" or "CVS/"), nor those inside "debian/" are considered. ".bzr/" or "CVS/"), nor those inside "debian/" are considered.

View File

@ -1,44 +1,40 @@
.TH WHAT-PATCH "1" "10 August 2008" "ubuntu-dev-tools" .TH WHAT\-PATCH "1" "10 August 2008" "ubuntu-dev-tools"
.SH NAME .SH NAME
what-patch \- detects which patch system a Debian package uses what\-patch \- detects which patch system a Debian package uses
.SH SYNOPSIS .SH SYNOPSIS
.B what\-patch [options]
.B what-patch [options]
.SH DESCRIPTION .SH DESCRIPTION
.PP \fBwhat\-patch\fR examines the debian/rules file to determine which patch
\fBwhat-patch\fR examines the debian/rules file to determine which patch
system the Debian package is using. system the Debian package is using.
.PP .PP
\fBwhat-patch\fR should be run from the root directory of the Debian source \fBwhat\-patch\fR should be run from the root directory of the Debian source
package. package.
.SH OPTIONS .SH OPTIONS
.PP Listed below are the command line options for what\-patch:
Listed below are the command line options for what-patch:
.TP .TP
.B \-h or \-\-help .B \-h or \-\-help
Display a help message and exit. Display a help message and exit.
.TP .TP
.B \-v .B \-v
Enable verbose mode. This shall include the listing of any files modified Enable verbose mode.
outside or the debian/ directory and report any additional details about the This will include the listing of any files modified outside or the debian/
patch system if available. directory and report any additional details about the patch system if
available.
.SH AUTHORS .SH AUTHORS
.PP \fBwhat\-patch\fR was written by Kees Cook <kees@ubuntu.com>,
\fBwhat-patch\fR was written by Kees Cook <kees@ubuntu.com>, Siegfried-A. Siegfried-A. Gevatter <rainct@ubuntu.com>, and Daniel Hahler
Gevatter <rainct@ubuntu.com>, and Daniel Hahler <ubuntu@thequod.de>, among <ubuntu@thequod.de>, among others.
others. This manual page was written by Jonathan Patrick Davies <jpds@ubuntu.com>. This manual page was written by Jonathan Patrick Davies <jpds@ubuntu.com>.
.PP .PP
Both are released under the GNU General Public License, version 2. Both are released under the GNU General Public License, version 2.
.SH SEE ALSO .SH SEE ALSO
.PP
The Ubuntu MOTU team has some documentation about patch systems at the Ubuntu The Ubuntu MOTU team has some documentation about patch systems at the Ubuntu
wiki: \fBhttps://wiki.ubuntu.com/PackagingGuide/PatchSystems\fR wiki: \fBhttps://wiki.ubuntu.com/PackagingGuide/PatchSystems\fR
.PP .PP
.B cdbs-edit-patch(1), dbs-edit-patch(1), dpatch-edit-patch(1) .B cdbs\-edit\-patch(1), dbs\-edit\-patch(1), dpatch\-edit\-patch(1)