3
0
mirror of https://git.launchpad.net/ubuntu-dev-tools synced 2025-03-13 16:11:15 +00:00

Rename to ubuntu-safe-to-upload

This commit is contained in:
Stefano Rivera 2011-12-05 22:49:10 +02:00
parent 4988d36ba2
commit 7d5efa8a76
5 changed files with 18 additions and 12 deletions

2
debian/control vendored

@ -86,7 +86,6 @@ 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
@ -107,3 +106,4 @@ Description: useful tools for Ubuntu developers
command line. command line.
- ubuntu-iso - output information of an Ubuntu ISO image. - ubuntu-iso - output information of an Ubuntu ISO image.
- update-maintainer - script to update maintainer field in ubuntu packages. - update-maintainer - script to update maintainer field in ubuntu packages.
- ubuntu-safe-to-upload - query if a package is safe to upload during a freeze.

6
debian/copyright vendored

@ -144,22 +144,22 @@ 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/pkg-on-images.1 Files: doc/pull-debian-debdiff.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
doc/sponsor-patch.1 doc/sponsor-patch.1
doc/ubuntu-dev-tools.5 doc/ubuntu-dev-tools.5
doc/update-maintainer.1 doc/update-maintainer.1
doc/ubuntu-safe-to-upload.1
enforced-editing-wrapper enforced-editing-wrapper
pkg-on-images
pull-debian-debdiff pull-debian-debdiff
pull-debian-source pull-debian-source
requestbackport requestbackport
reverse-depends reverse-depends
sponsor-patch sponsor-patch
test-data/* test-data/*
ubuntu-safe-to-upload
ubuntutools/archive.py ubuntutools/archive.py
ubuntutools/builder.py ubuntutools/builder.py
ubuntutools/config.py ubuntutools/config.py

@ -11,17 +11,23 @@
.\" LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR .\" 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 .\" OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
.\" PERFORMANCE OF THIS SOFTWARE. .\" PERFORMANCE OF THIS SOFTWARE.
.TH pkg\-on\-images 1 "December 2011" ubuntu\-dev\-tools .TH ubuntu\-safe\-to\-upload 1 "December 2011" ubuntu\-dev\-tools
.SH NAME .SH NAME
pkg\-on\-images \- List the all the daily images containing the ubuntu\-safe\-to\-upload \- Determine whether a package is safe to
specified packages upload during a freeze
.SH SYNOPSIS .SH SYNOPSIS
.B pkg\-on\-images \fR[\fIoptions\fR] \fIpackage\fR... .B ubuntu\-safe\-to\-upload \fR[\fIoptions\fR] \fIpackage\fR...
.SH DESCRIPTION .SH DESCRIPTION
Lists all the current daily images containing the specified packages. Lists all the current daily images containing the specified packages.
Or whether the package is part of the supported seed.
.PP
If it isn't on an image, it should be safe to upload.
During the final freeze, one should avoid packages in the supported seed
too.
.PP
An index of the current manifests is downloaded from UbuntuWire. An index of the current manifests is downloaded from UbuntuWire.
.SH OPTIONS .SH OPTIONS
@ -39,11 +45,11 @@ Display a help message and exit
All the images that contain unity: All the images that contain unity:
.IP .IP
.nf .nf
.B pkg\-on\-images -b unity .B ubuntu\-safe\-to\-upload -b unity
.fi .fi
.SH AUTHORS .SH AUTHORS
\fBpkg\-on\-images\fR and this manpage were written by Stefano Rivera \fBubuntu\-safe\-to\-upload\fR and this manpage were written by Stefano
<stefanor@ubuntu.com>. Rivera <stefanor@ubuntu.com>.
.PP .PP
Both are released under the terms of the ISC License. Both are released under the terms of the ISC License.

@ -28,7 +28,6 @@ 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',
@ -42,6 +41,7 @@ scripts = ['404main',
'syncpackage', 'syncpackage',
'ubuntu-build', 'ubuntu-build',
'ubuntu-iso', 'ubuntu-iso',
'ubuntu-safe-to-upload',
'update-maintainer', 'update-maintainer',
] ]