Update metadata

This commit is contained in:
Stefano Rivera 2011-11-12 13:12:15 +02:00
parent 9bcda8d239
commit 6e4c276d1f
8 changed files with 31 additions and 9 deletions

7
debian/NEWS vendored
View File

@ -1,3 +1,10 @@
ubuntu-dev-tools (0.135) unstable; urgency=low
reverse-build-depends was removed from ubuntu-dev-tools. reverse-depends -b
is equivalent.
-- Stefano Rivera <stefanor@debian.org> Sat, 12 Nov 2011 13:11:21 +0200
ubuntu-dev-tools (0.131) unstable; urgency=low ubuntu-dev-tools (0.131) unstable; urgency=low
get-build-deps was removed from ubuntu-dev-tools. The newer mk-build-deps in get-build-deps was removed from ubuntu-dev-tools. The newer mk-build-deps in

11
debian/changelog vendored
View File

@ -1,3 +1,14 @@
ubuntu-dev-tools (0.135) UNRELEASED; urgency=low
* New scripts:
- reverse-depends: Replaces reverse-build-depends. Uses an UbuntuWire
webservice for determining all reverse(-build)-dependencies for a
package.
- requestbackport: Files a backport request bug report, including a full
testing checklist.
-- Stefano Rivera <stefanor@debian.org> Sat, 12 Nov 2011 13:09:05 +0200
ubuntu-dev-tools (0.134) unstable; urgency=low ubuntu-dev-tools (0.134) unstable; urgency=low
[ Stefano Rivera ] [ Stefano Rivera ]

5
debian/control vendored
View File

@ -93,9 +93,10 @@ Description: useful tools for Ubuntu developers
Debian of a package. Debian of a package.
- pull-lp-source - downloads lastest source package from Launchpad. - pull-lp-source - downloads lastest source package from Launchpad.
- pull-revu-source - downloads the latest source package from REVU - pull-revu-source - downloads the latest source package from REVU
- requestbackport - file a backporting request.
- requestsync - files a sync request with Debian changelog and rationale. - requestsync - files a sync request with Debian changelog and rationale.
- reverse-build-depends - find the reverse build dependencies that a package - reverse-depends - find the reverse dependencies (or build dependencies) of
has. a package.
- 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

8
debian/copyright vendored
View File

@ -47,18 +47,15 @@ Files: 404main
doc/import-bug-from-debian.1 doc/import-bug-from-debian.1
doc/pbuilder-dist-simple.1 doc/pbuilder-dist-simple.1
doc/pbuilder-dist.1 doc/pbuilder-dist.1
doc/reverse-build-depends.1
doc/submittodebian.1 doc/submittodebian.1
import-bug-from-debian import-bug-from-debian
pbuilder-dist pbuilder-dist
pbuilder-dist-simple pbuilder-dist-simple
reverse-build-depends
submittodebian submittodebian
Copyright: 2007-2010, Canonical Ltd. Copyright: 2007-2010, Canonical Ltd.
2009, James Westby <james.westby@ubuntu.com> 2009, James Westby <james.westby@ubuntu.com>
2008, Jamin W. Collins <jcollins@asgardsrealm.net> 2008, Jamin W. Collins <jcollins@asgardsrealm.net>
2008, Jordan Mantha <mantha@ubuntu.com> 2008, Jordan Mantha <mantha@ubuntu.com>
2008-2009, Patrick Schoenfeld <schoenfeld@in-medias-res.com>
2006-2007, Pete Savage <petesavage@ubuntu.com> 2006-2007, Pete Savage <petesavage@ubuntu.com>
2009, Ryan Kavanagh <ryanakca@kubuntu.org> 2009, Ryan Kavanagh <ryanakca@kubuntu.org>
2007, Siegfried-Angel Gevatter Pujals <rainct@ubuntu.com> 2007, Siegfried-Angel Gevatter Pujals <rainct@ubuntu.com>
@ -152,17 +149,22 @@ License: GPL-3+
Files: doc/pull-debian-debdiff.1 Files: doc/pull-debian-debdiff.1
doc/pull-debian-source.1 doc/pull-debian-source.1
doc/requestbackport.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
pull-debian-debdiff pull-debian-debdiff
pull-debian-source pull-debian-source
requestbackport
reverse-depends
sponsor-patch sponsor-patch
test-data/* test-data/*
ubuntutools/archive.py ubuntutools/archive.py
ubuntutools/builder.py ubuntutools/builder.py
ubuntutools/config.py ubuntutools/config.py
ubuntutools/question.py ubuntutools/question.py
ubuntutools/rdepends.py
ubuntutools/sponsor_patch/* ubuntutools/sponsor_patch/*
ubuntutools/test/* ubuntutools/test/*
ubuntutools/update_maintainer.py ubuntutools/update_maintainer.py

View File

@ -1,6 +1,6 @@
#!/usr/bin/python #!/usr/bin/python
# #
# Copyright (C) 2011, Stefano Rivera <stefanor@debian.org> # Copyright (C) 2011, Stefano Rivera <stefanor@ubuntu.com>
# #
# Permission to use, copy, modify, and/or distribute this software for any # Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above # purpose with or without fee is hereby granted, provided that the above

View File

@ -1,6 +1,6 @@
#!/usr/bin/python #!/usr/bin/python
# #
# Copyright (C) 2011, Stefano Rivera <stefanor@debian.org> # Copyright (C) 2011, Stefano Rivera <stefanor@ubuntu.com>
# #
# Permission to use, copy, modify, and/or distribute this software for any # Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above # purpose with or without fee is hereby granted, provided that the above

View File

@ -33,8 +33,9 @@ scripts = ['404main',
'pull-debian-source', 'pull-debian-source',
'pull-lp-source', 'pull-lp-source',
'pull-revu-source', 'pull-revu-source',
'requestbackport',
'requestsync', 'requestsync',
'reverse-build-depends', 'reverse-depends',
'setup-packaging-environment', 'setup-packaging-environment',
'sponsor-patch', 'sponsor-patch',
'submittodebian', 'submittodebian',

View File

@ -1,4 +1,4 @@
# Copyright (C) 2011, Stefano Rivera <stefanor@debian.org> # Copyright (C) 2011, Stefano Rivera <stefanor@ubuntu.com>
# #
# Permission to use, copy, modify, and/or distribute this software for any # Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above # purpose with or without fee is hereby granted, provided that the above