Manpage for import-bug-from-debian

This commit is contained in:
Stefano Rivera 2010-09-21 18:14:38 +02:00
parent 39e44c3167
commit fafd303131
2 changed files with 36 additions and 1 deletions

View File

@ -0,0 +1,35 @@
.TH import\-bug\-from\-debian "1" "September 21 2010" "ubuntu-dev-tools"
.SH NAME
import\-bug\-from\-debian \- Import bugs from Debian's BTS, and file
them against Ubuntu in LP.
.SH SYNOPSIS
.B import\-bug\-from\-debian \fR[\fB\-nb\fR] \fIbug\fR...
.br
.B import\-bug\-from\-debian \-h
.SH DESCRIPTION
\fBimport\-bug\-from\-debian\fR clones bugs from Debian's BTS into
Launchpad. Each \fIbug\fR listed on the command line has its initial
report re-filed against the same source package in Ubuntu.
The Ubuntu bug is linked back to its Debian counterpart.
Each \fIbug\fR may be provided either as a bug number or URL.
.SH OPTIONS
.TP
.BR \-h ", " \-\-help
Display a help message and exit.
.TP
.BR \-n ", " \-\-dry\-run
Use the LP staging server so that changes are not permanent.
.TP
.BR \-b ", " \-\-browserless
Don't open the bug in a browser at the end.
.SH AUTHORS
\fBimport\-bug\-from\-debian\fR was written by James Westby
<james.westby@ubuntu.com>,
and this manual page was written by Stefano Rivera <stefanor@ubuntu.com>.
.PP
Both are released under the terms of the GNU General Public License, version 2.

View File

@ -38,7 +38,7 @@ debbugs = SOAPpy.SOAPProxy(url, namespace)
#debbugs.config.dumpSOAPOut = 1
#debbugs.config.dumpSOAPIn = 1
parser = OptionParser()
parser = OptionParser(usage="%prog [option] bug ...")
parser.add_option("-n", "--dry-run",
help="Use the staging server so that changes are not permanent",
dest="dry_run", action="store_true")