diff --git a/debian/control b/debian/control index 8941ebb..d0fd580 100644 --- a/debian/control +++ b/debian/control @@ -104,6 +104,6 @@ Description: useful tools for Ubuntu developers - syncpackage - helper to prepare .changes file to upload synced packages - ubuntu-build - give commands to the Launchpad build daemons from the 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. - 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. diff --git a/debian/copyright b/debian/copyright index b4125cb..4891993 100644 --- a/debian/copyright +++ b/debian/copyright @@ -150,8 +150,8 @@ Files: doc/pull-debian-debdiff.1 doc/reverse-depends.1 doc/sponsor-patch.1 doc/ubuntu-dev-tools.5 + doc/ubuntu-is-seeded.1 doc/update-maintainer.1 - doc/ubuntu-safe-to-upload.1 enforced-editing-wrapper pull-debian-debdiff pull-debian-source @@ -159,7 +159,7 @@ Files: doc/pull-debian-debdiff.1 reverse-depends sponsor-patch test-data/* - ubuntu-safe-to-upload + ubuntu-is-seeded ubuntutools/archive.py ubuntutools/builder.py ubuntutools/config.py diff --git a/doc/ubuntu-safe-to-upload.1 b/doc/ubuntu-is-seeded.1 similarity index 83% rename from doc/ubuntu-safe-to-upload.1 rename to doc/ubuntu-is-seeded.1 index 3758b38..fdb3f5d 100644 --- a/doc/ubuntu-safe-to-upload.1 +++ b/doc/ubuntu-is-seeded.1 @@ -11,14 +11,14 @@ .\" 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 ubuntu\-safe\-to\-upload 1 "December 2011" ubuntu\-dev\-tools +.TH ubuntu\-is\-seeded 1 "December 2011" ubuntu\-dev\-tools .SH NAME -ubuntu\-safe\-to\-upload \- Determine whether a package is safe to -upload during a freeze +ubuntu\-is\-seeded \- Determine whether a package is safe to upload +during a freeze .SH SYNOPSIS -.B ubuntu\-safe\-to\-upload \fR[\fIoptions\fR] \fIpackage\fR... +.B ubuntu\-is\-seeded \fR[\fIoptions\fR] \fIpackage\fR... .SH DESCRIPTION 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: .IP .nf -.B ubuntu\-safe\-to\-upload -b unity +.B ubuntu\-is\-seeded -b unity .fi .SH AUTHORS -\fBubuntu\-safe\-to\-upload\fR and this manpage were written by Stefano -Rivera . +\fBubuntu\-is\-seeded\fR and this manpage were written by Stefano Rivera +. .PP Both are released under the terms of the ISC License. diff --git a/setup.py b/setup.py index b4b1831..7a02acc 100755 --- a/setup.py +++ b/setup.py @@ -40,8 +40,8 @@ scripts = ['404main', 'submittodebian', 'syncpackage', 'ubuntu-build', + 'ubuntu-is-seeded', 'ubuntu-iso', - 'ubuntu-safe-to-upload', 'update-maintainer', ] diff --git a/ubuntu-safe-to-upload b/ubuntu-is-seeded similarity index 100% rename from ubuntu-safe-to-upload rename to ubuntu-is-seeded