And another rename, let this be the last

This commit is contained in:
Stefano Rivera 2011-12-09 00:23:07 +02:00
parent c4a2361451
commit 34efc162a2
6 changed files with 10 additions and 10 deletions

2
debian/changelog vendored
View File

@ -24,7 +24,7 @@ ubuntu-dev-tools (0.137) UNRELEASED; urgency=low
- rm the tmpdir with a little more force (shutil.rmtree) (LP: #899399) - rm the tmpdir with a little more force (shutil.rmtree) (LP: #899399)
* New Tools: (LP: #876554) * New Tools: (LP: #876554)
- ubuntu-upload-permission: Query upload permissions. - ubuntu-upload-permission: Query upload permissions.
- ubuntu-is-seeded: Query a package's seed status. Whether it is on - seeded-in-ubuntu: Query a package's seed status. Whether it is on
current daily images and/or part of the supported seed. current daily images and/or part of the supported seed.
[ Andreas Moog ] [ Andreas Moog ]

2
debian/control vendored
View File

@ -97,6 +97,7 @@ Description: useful tools for Ubuntu developers
- requestsync - files a sync request with Debian changelog and rationale. - requestsync - files a sync request with Debian changelog and rationale.
- reverse-depends - find the reverse dependencies (or build dependencies) of - reverse-depends - find the reverse dependencies (or build dependencies) of
a package. a package.
- seeded-in-ubuntu - query if a package is safe to upload during a freeze.
- setup-packaging-environment - assistant to get an Ubuntu installation - setup-packaging-environment - assistant to get an Ubuntu installation
ready for packaging work. ready for packaging work.
- sponsor-patch - Downloads a patch from a Launchpad bug, patches the source - sponsor-patch - Downloads a patch from a Launchpad bug, patches the source
@ -105,7 +106,6 @@ Description: useful tools for Ubuntu developers
- syncpackage - helper to prepare .changes file to upload synced packages - syncpackage - helper to prepare .changes file to upload synced packages
- ubuntu-build - give commands to the Launchpad build daemons from the - ubuntu-build - give commands to the Launchpad build daemons from the
command line. command line.
- ubuntu-is-seeded - query if a package is safe to upload during a freeze.
- ubuntu-iso - output information of an Ubuntu ISO image. - ubuntu-iso - output information of an Ubuntu ISO image.
- ubuntu-upload-permission - query / list the upload permissions for a - ubuntu-upload-permission - query / list the upload permissions for a
package. package.

4
debian/copyright vendored
View File

@ -148,9 +148,9 @@ Files: 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/seeded-in-ubuntu.1
doc/sponsor-patch.1 doc/sponsor-patch.1
doc/ubuntu-dev-tools.5 doc/ubuntu-dev-tools.5
doc/ubuntu-is-seeded.1
doc/ubuntu-upload-permission.1 doc/ubuntu-upload-permission.1
doc/update-maintainer.1 doc/update-maintainer.1
enforced-editing-wrapper enforced-editing-wrapper
@ -158,9 +158,9 @@ Files: doc/pull-debian-debdiff.1
pull-debian-source pull-debian-source
requestbackport requestbackport
reverse-depends reverse-depends
seeded-in-ubuntu
sponsor-patch sponsor-patch
test-data/* test-data/*
ubuntu-is-seeded
ubuntu-upload-permission ubuntu-upload-permission
ubuntutools/archive.py ubuntutools/archive.py
ubuntutools/builder.py ubuntutools/builder.py

View File

@ -11,14 +11,14 @@
.\" 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 ubuntu\-is\-seeded 1 "December 2011" ubuntu\-dev\-tools .TH seeded\-in\-ubuntu 1 "December 2011" ubuntu\-dev\-tools
.SH NAME .SH NAME
ubuntu\-is\-seeded \- Determine whether a package is safe to upload seeded\-in\-ubuntu \- Determine whether a package is safe to upload
during a freeze during a freeze
.SH SYNOPSIS .SH SYNOPSIS
.B ubuntu\-is\-seeded \fR[\fIoptions\fR] \fIpackage\fR... .B seeded\-in\-ubuntu \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.
@ -50,11 +50,11 @@ Display a help message and exit
All the images that contain unity: All the images that contain unity:
.IP .IP
.nf .nf
.B ubuntu\-is\-seeded -b unity .B seeded\-in\-ubuntu -b unity
.fi .fi
.SH AUTHORS .SH AUTHORS
\fBubuntu\-is\-seeded\fR and this manpage were written by Stefano Rivera \fBseeded\-in\-ubuntu\fR and this manpage were written by Stefano Rivera
<stefanor@ubuntu.com>. <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.

View File

@ -35,12 +35,12 @@ scripts = ['404main',
'requestbackport', 'requestbackport',
'requestsync', 'requestsync',
'reverse-depends', 'reverse-depends',
'seeded-in-ubuntu',
'setup-packaging-environment', 'setup-packaging-environment',
'sponsor-patch', 'sponsor-patch',
'submittodebian', 'submittodebian',
'syncpackage', 'syncpackage',
'ubuntu-build', 'ubuntu-build',
'ubuntu-is-seeded',
'ubuntu-iso', 'ubuntu-iso',
'ubuntu-upload-permission', 'ubuntu-upload-permission',
'update-maintainer', 'update-maintainer',