Extra bits

This commit is contained in:
Stefano Rivera 2011-12-04 00:39:40 +02:00
parent 09a870fa43
commit 4988d36ba2
4 changed files with 54 additions and 1 deletions

1
debian/control vendored
View File

@ -86,6 +86,7 @@ Description: useful tools for Ubuntu developers
sbuild. sbuild.
- pbuilder-dist, cowbuilder-dist - wrapper script for managing several build - pbuilder-dist, cowbuilder-dist - wrapper script for managing several build
chroots (for different Ubuntu and Debian releases) on the same system. chroots (for different Ubuntu and Debian releases) on the same system.
- pkg-on-images - query if a package is included in daily images.
- pull-debian-debdiff - attempts to find and download a specific version of - pull-debian-debdiff - attempts to find and download a specific version of
a Debian package and its immediate parent to generate a debdiff. a Debian package and its immediate parent to generate a debdiff.
- pull-debian-source - downloads the lastest source package available in - pull-debian-source - downloads the lastest source package available in

4
debian/copyright vendored
View File

@ -144,7 +144,8 @@ License: GPL-3+
On Debian systems, the complete text of the GNU General Public License On Debian systems, the complete text of the GNU General Public License
version 3 can be found in the /usr/share/common-licenses/GPL-3 file. version 3 can be found in the /usr/share/common-licenses/GPL-3 file.
Files: doc/pull-debian-debdiff.1 Files: doc/pkg-on-images.1
doc/pull-debian-debdiff.1
doc/pull-debian-source.1 doc/pull-debian-source.1
doc/requestbackport.1 doc/requestbackport.1
doc/reverse-depends.1 doc/reverse-depends.1
@ -152,6 +153,7 @@ Files: doc/pull-debian-debdiff.1
doc/ubuntu-dev-tools.5 doc/ubuntu-dev-tools.5
doc/update-maintainer.1 doc/update-maintainer.1
enforced-editing-wrapper enforced-editing-wrapper
pkg-on-images
pull-debian-debdiff pull-debian-debdiff
pull-debian-source pull-debian-source
requestbackport requestbackport

49
doc/pkg-on-images.1 Normal file
View File

@ -0,0 +1,49 @@
.\" Copyright (C) 2011, Stefano Rivera <stefanor@ubuntu.com>
.\"
.\" Permission to use, copy, modify, and/or distribute this software for any
.\" purpose with or without fee is hereby granted, provided that the above
.\" copyright notice and this permission notice appear in all copies.
.\"
.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
.\" REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
.\" AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
.\" INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
.\" LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
.\" OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
.\" PERFORMANCE OF THIS SOFTWARE.
.TH pkg\-on\-images 1 "December 2011" ubuntu\-dev\-tools
.SH NAME
pkg\-on\-images \- List the all the daily images containing the
specified packages
.SH SYNOPSIS
.B pkg\-on\-images \fR[\fIoptions\fR] \fIpackage\fR...
.SH DESCRIPTION
Lists all the current daily images containing the specified packages.
An index of the current manifests is downloaded from UbuntuWire.
.SH OPTIONS
.TP
\fB\-b\fR, \fB\-\-binary\fR
The packages specified are binary packages.
This is faster than source packages, as otherwise we must query LP to
determine the binary packages that every specified source package
builds.
.TP
\fB\-h\fR, \fB\-\-help\fR
Display a help message and exit
.SH EXAMPLES
All the images that contain unity:
.IP
.nf
.B pkg\-on\-images -b unity
.fi
.SH AUTHORS
\fBpkg\-on\-images\fR and this manpage were written by Stefano Rivera
<stefanor@ubuntu.com>.
.PP
Both are released under the terms of the ISC License.

View File

@ -28,6 +28,7 @@ scripts = ['404main',
'mk-sbuild', 'mk-sbuild',
'pbuilder-dist', 'pbuilder-dist',
'pbuilder-dist-simple', 'pbuilder-dist-simple',
'pkg-on-images',
'pull-debian-debdiff', 'pull-debian-debdiff',
'pull-debian-source', 'pull-debian-source',
'pull-lp-source', 'pull-lp-source',