mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-29 11:51:08 +00:00
Merged in changes by Ryan Kavanagh <ryanakca@kubuntu.org>.
This commit is contained in:
commit
d47089e977
9
debian/changelog
vendored
9
debian/changelog
vendored
@ -1,10 +1,17 @@
|
|||||||
ubuntu-dev-tools (0.43ubuntu1) intrepid; urgency=low
|
ubuntu-dev-tools (0.43ubuntu1) intrepid; urgency=low
|
||||||
|
|
||||||
|
[Jonathan Patrick Davies]
|
||||||
* common.py:
|
* common.py:
|
||||||
- If loading a cookie file raises an exception exit.
|
- If loading a cookie file raises an exception exit.
|
||||||
- Improve cookie file writing.
|
- Improve cookie file writing.
|
||||||
|
|
||||||
-- Jonathan Patrick Davies <jpds@ubuntu.com> Wed, 27 Aug 2008 15:32:14 +0100
|
[Ryan Kavanagh]
|
||||||
|
* dgetlp.1: New manpage
|
||||||
|
* dgetlp: fix typo in usage
|
||||||
|
* hugdaylist: New manpage
|
||||||
|
* s/requestsync/pull-lp-source/g in doc/pull-lp-source.1
|
||||||
|
|
||||||
|
-- Ryan Kavanagh <ryanakca@kubuntu.org> Wed, 27 Aug 2008 11:20:11 -0400
|
||||||
|
|
||||||
ubuntu-dev-tools (0.42ubuntu1) intrepid; urgency=low
|
ubuntu-dev-tools (0.42ubuntu1) intrepid; urgency=low
|
||||||
|
|
||||||
|
2
dgetlp
2
dgetlp
@ -37,7 +37,7 @@ usage()
|
|||||||
cat << EOF
|
cat << EOF
|
||||||
Usage: $0 [-d] <Launchpad URL>
|
Usage: $0 [-d] <Launchpad URL>
|
||||||
|
|
||||||
This scripts simulates «dget»'s behaviour for files hostead at
|
This scripts simulates «dget»'s behaviour for files hosted at
|
||||||
launchpadlibrarian.net.
|
launchpadlibrarian.net.
|
||||||
|
|
||||||
If you specify the -d option then it won't do anything, except download the
|
If you specify the -d option then it won't do anything, except download the
|
||||||
|
37
doc/dgetlp.1
Normal file
37
doc/dgetlp.1
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
.TH DGETLP "1" "27 August 2008" "ubuntu-dev-tools"
|
||||||
|
|
||||||
|
.SH NAME
|
||||||
|
dgetlp \- simulate ``dget'' behaviour for files hosted at
|
||||||
|
librarian.launchpad.net
|
||||||
|
|
||||||
|
.SH SYNOPSIS
|
||||||
|
.B dgetlp [-d] <\fBLaunchpad DSC URL\fR>
|
||||||
|
|
||||||
|
.SH DESCRIPTION
|
||||||
|
.PP
|
||||||
|
\fBdgetlp\fR downloads and optionally extracts the <\fBLaunchpad DSC URL\fR> from Launchpad.
|
||||||
|
|
||||||
|
.SH OPTIONS
|
||||||
|
.PP
|
||||||
|
Listed below are the command line options for dgetlp:
|
||||||
|
.TP
|
||||||
|
.B \-d
|
||||||
|
Download the .dsc file and display the commands that would be run otherwise.
|
||||||
|
.TP
|
||||||
|
.B <Launchpad DSC URL>
|
||||||
|
This is the source package that you would like to be downloaded from Launchpad.
|
||||||
|
|
||||||
|
.SH ENVIRONMENT VARIABLES
|
||||||
|
.TP
|
||||||
|
DIST
|
||||||
|
Specifies the default target.
|
||||||
|
|
||||||
|
.SH EXAMPLE
|
||||||
|
.B dgetlp http://launchpadlibrarian.net/10348157/coreutils_5.97-5.4ubuntu1.dsc
|
||||||
|
|
||||||
|
.SH AUTHOR
|
||||||
|
.PP
|
||||||
|
\fBdgetlp\fR was written written by Terence Simpson <tsimpson@ubuntu.com> and
|
||||||
|
modified by Siegfried-A. Gevatter <rainct@ubuntu.com>. This man page was written
|
||||||
|
by Ryan Kavanagh <ryanakca@kubuntu.org>. Both are released under the GNU General
|
||||||
|
Public License, version 2 or later.
|
29
doc/hugdaylist.1
Normal file
29
doc/hugdaylist.1
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
.TH HUGDAYLIST "1" "August 27, 2008" "ubuntu-dev-tools"
|
||||||
|
|
||||||
|
.SH NAME
|
||||||
|
hugdaylist \- produce MoinMoin wiki formatted tables based on a Launchpad bug
|
||||||
|
list
|
||||||
|
|
||||||
|
.SH SYNOPSIS
|
||||||
|
.B hugdaylist [\fB\-n <NUMBER>, \fB\-\-number=<NUMBER>\fP]
|
||||||
|
\fBlaunchpad-buglist-url\fP
|
||||||
|
|
||||||
|
.SH DESCRIPTION
|
||||||
|
\fBhugdaylist\fP produces MoinMoin wiki formatted tables based on a
|
||||||
|
Launchpad bug list
|
||||||
|
|
||||||
|
.SH OPTIONS
|
||||||
|
.TP
|
||||||
|
\fB\-\-number=<NUMBER>\fP
|
||||||
|
This option allows you to specify the number of entries to output.
|
||||||
|
.TP
|
||||||
|
\fBlaunchpad-buglist-url\fP
|
||||||
|
Required, this option is a URL pointing to a launchpad bug list.
|
||||||
|
|
||||||
|
|
||||||
|
.SH AUTHOR
|
||||||
|
\fBhugdaylist\fP has been written by Canonical Ltd., Daniel Holbach
|
||||||
|
<daniel.holbach@canonical.com> and Jonathan Patrick Davies <jpds@ubuntu.com>.
|
||||||
|
This manual page was written by Ryan Kavanagh <ryanakca@kubuntu.org>.
|
||||||
|
.PP
|
||||||
|
Both are released under the GNU General Public License, version 3.
|
@ -15,7 +15,7 @@ will be downloaded instead.
|
|||||||
|
|
||||||
.SH OPTIONS
|
.SH OPTIONS
|
||||||
.PP
|
.PP
|
||||||
Listed below are the command line options for requestsync:
|
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.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user