mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-07-17 09:51:28 +00:00
sponsor-patch, requestsync, syncpackage: Add a config variable for -k
arguments.
This commit is contained in:
commit
03e13834b9
5
debian/changelog
vendored
5
debian/changelog
vendored
@ -1,5 +1,6 @@
|
|||||||
ubuntu-dev-tools (0.139) UNRELEASED; urgency=low
|
ubuntu-dev-tools (0.139) UNRELEASED; urgency=low
|
||||||
|
|
||||||
|
[ Stefano Rivera ]
|
||||||
* syncpackage, backportpackage, sponsor-patch: Use -nc when building source
|
* syncpackage, backportpackage, sponsor-patch: Use -nc when building source
|
||||||
packages. Avoids needing build-deps on the build machine.
|
packages. Avoids needing build-deps on the build machine.
|
||||||
* sponsor-patch: Determine the task from the UDD branch.
|
* sponsor-patch: Determine the task from the UDD branch.
|
||||||
@ -11,6 +12,10 @@ ubuntu-dev-tools (0.139) UNRELEASED; urgency=low
|
|||||||
- Convert Debian release aliases to codenames.
|
- Convert Debian release aliases to codenames.
|
||||||
- Default to the devel release of the vendor distribution.
|
- Default to the devel release of the vendor distribution.
|
||||||
|
|
||||||
|
[ Evan Broder]
|
||||||
|
* sponsor-patch, requestsync, syncpackage: Add a config variable for -k
|
||||||
|
arguments.
|
||||||
|
|
||||||
-- Stefano Rivera <stefanor@debian.org> Fri, 23 Dec 2011 22:33:17 +0200
|
-- Stefano Rivera <stefanor@debian.org> Fri, 23 Dec 2011 22:33:17 +0200
|
||||||
|
|
||||||
ubuntu-dev-tools (0.138) unstable; urgency=low
|
ubuntu-dev-tools (0.138) unstable; urgency=low
|
||||||
|
@ -125,6 +125,9 @@ Setting this to \fIno\fR is equivalent to running with \fB--email\fR.
|
|||||||
.TP
|
.TP
|
||||||
.BR REQUESTSYNC_LPINSTANCE ", " UBUNTUTOOLS_LPINSTANCE
|
.BR REQUESTSYNC_LPINSTANCE ", " UBUNTUTOOLS_LPINSTANCE
|
||||||
The default value for \fB--lpinstance\fR.
|
The default value for \fB--lpinstance\fR.
|
||||||
|
.TP
|
||||||
|
.BR REQUESTSYNC_KEYID ", " UBUNTUTOOLS_KEYID
|
||||||
|
The default value for \fB-k\fR.
|
||||||
|
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
.BR rmadison (1),
|
.BR rmadison (1),
|
||||||
|
@ -126,6 +126,9 @@ The default value for \fB--update\fR.
|
|||||||
.TP
|
.TP
|
||||||
.BR SPONSOR_PATCH_WORKDIR ", " UBUNTUTOOLS_WORKDIR
|
.BR SPONSOR_PATCH_WORKDIR ", " UBUNTUTOOLS_WORKDIR
|
||||||
The default value for \fB--workdir\fR.
|
The default value for \fB--workdir\fR.
|
||||||
|
.TP
|
||||||
|
.BR SPONSOR_PATCH_KEYID ", " UBUNTUTOOLS_KEYID
|
||||||
|
The default value for \fB--key\fR.
|
||||||
|
|
||||||
.SH EXAMPLES
|
.SH EXAMPLES
|
||||||
Test-building and sponsoring an upload of bug \fB1234\fR:
|
Test-building and sponsoring an upload of bug \fB1234\fR:
|
||||||
|
@ -139,6 +139,9 @@ The default value for \fB\-\-debian\-mirror\fR.
|
|||||||
.TP
|
.TP
|
||||||
.BR SYNCPACKAGE_UBUNTU_MIRROR ", " UBUNTUTOOLS_DEBSEC_MIRROR
|
.BR SYNCPACKAGE_UBUNTU_MIRROR ", " UBUNTUTOOLS_DEBSEC_MIRROR
|
||||||
The default value for \fB\-\-ubuntu\-mirror\fR.
|
The default value for \fB\-\-ubuntu\-mirror\fR.
|
||||||
|
.TP
|
||||||
|
.BR SYNCPACKAGE_KEYID ", " UBUNTUTOOLS_KEYID
|
||||||
|
The default value for \fB\-\-key\fR.
|
||||||
.\"
|
.\"
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
.BR requestsync (1),
|
.BR requestsync (1),
|
||||||
|
@ -110,6 +110,9 @@ def main():
|
|||||||
if options.lpinstance is None:
|
if options.lpinstance is None:
|
||||||
options.lpinstance = config.get_value('LPINSTANCE')
|
options.lpinstance = config.get_value('LPINSTANCE')
|
||||||
|
|
||||||
|
if options.keyid is None:
|
||||||
|
options.keyid = config.get_value('KEYID')
|
||||||
|
|
||||||
if not options.lpapi:
|
if not options.lpapi:
|
||||||
if options.lpinstance == 'production':
|
if options.lpinstance == 'production':
|
||||||
bug_mail_domain = 'bugs.launchpad.net'
|
bug_mail_domain = 'bugs.launchpad.net'
|
||||||
|
@ -89,6 +89,8 @@ def parse(script_name):
|
|||||||
options.update = config.get_value("UPDATE_BUILDER", boolean=True)
|
options.update = config.get_value("UPDATE_BUILDER", boolean=True)
|
||||||
if options.workdir is None:
|
if options.workdir is None:
|
||||||
options.workdir = config.get_value("WORKDIR")
|
options.workdir = config.get_value("WORKDIR")
|
||||||
|
if options.keyid is None:
|
||||||
|
options.keyid = config.get_value("KEYID")
|
||||||
|
|
||||||
if options.sponsoring:
|
if options.sponsoring:
|
||||||
options.build = True
|
options.build = True
|
||||||
|
@ -628,6 +628,9 @@ def main():
|
|||||||
if options.ubuntu_mirror is None:
|
if options.ubuntu_mirror is None:
|
||||||
options.ubuntu_mirror = config.get_value('UBUNTU_MIRROR')
|
options.ubuntu_mirror = config.get_value('UBUNTU_MIRROR')
|
||||||
|
|
||||||
|
if options.keyid is None:
|
||||||
|
options.keyid = config.get_value('KEYID')
|
||||||
|
|
||||||
if options.lpinstance is None:
|
if options.lpinstance is None:
|
||||||
options.lpinstance = config.get_value('LPINSTANCE')
|
options.lpinstance = config.get_value('LPINSTANCE')
|
||||||
try:
|
try:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user