mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-13 08:01:09 +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
|
||||
|
||||
[ Stefano Rivera ]
|
||||
* syncpackage, backportpackage, sponsor-patch: Use -nc when building source
|
||||
packages. Avoids needing build-deps on the build machine.
|
||||
* 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.
|
||||
- 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
|
||||
|
||||
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
|
||||
.BR REQUESTSYNC_LPINSTANCE ", " UBUNTUTOOLS_LPINSTANCE
|
||||
The default value for \fB--lpinstance\fR.
|
||||
.TP
|
||||
.BR REQUESTSYNC_KEYID ", " UBUNTUTOOLS_KEYID
|
||||
The default value for \fB-k\fR.
|
||||
|
||||
.SH SEE ALSO
|
||||
.BR rmadison (1),
|
||||
|
@ -126,6 +126,9 @@ The default value for \fB--update\fR.
|
||||
.TP
|
||||
.BR SPONSOR_PATCH_WORKDIR ", " UBUNTUTOOLS_WORKDIR
|
||||
The default value for \fB--workdir\fR.
|
||||
.TP
|
||||
.BR SPONSOR_PATCH_KEYID ", " UBUNTUTOOLS_KEYID
|
||||
The default value for \fB--key\fR.
|
||||
|
||||
.SH EXAMPLES
|
||||
Test-building and sponsoring an upload of bug \fB1234\fR:
|
||||
|
@ -139,6 +139,9 @@ The default value for \fB\-\-debian\-mirror\fR.
|
||||
.TP
|
||||
.BR SYNCPACKAGE_UBUNTU_MIRROR ", " UBUNTUTOOLS_DEBSEC_MIRROR
|
||||
The default value for \fB\-\-ubuntu\-mirror\fR.
|
||||
.TP
|
||||
.BR SYNCPACKAGE_KEYID ", " UBUNTUTOOLS_KEYID
|
||||
The default value for \fB\-\-key\fR.
|
||||
.\"
|
||||
.SH SEE ALSO
|
||||
.BR requestsync (1),
|
||||
|
@ -110,6 +110,9 @@ def main():
|
||||
if options.lpinstance is None:
|
||||
options.lpinstance = config.get_value('LPINSTANCE')
|
||||
|
||||
if options.keyid is None:
|
||||
options.keyid = config.get_value('KEYID')
|
||||
|
||||
if not options.lpapi:
|
||||
if options.lpinstance == 'production':
|
||||
bug_mail_domain = 'bugs.launchpad.net'
|
||||
|
@ -89,6 +89,8 @@ def parse(script_name):
|
||||
options.update = config.get_value("UPDATE_BUILDER", boolean=True)
|
||||
if options.workdir is None:
|
||||
options.workdir = config.get_value("WORKDIR")
|
||||
if options.keyid is None:
|
||||
options.keyid = config.get_value("KEYID")
|
||||
|
||||
if options.sponsoring:
|
||||
options.build = True
|
||||
|
@ -628,6 +628,9 @@ def main():
|
||||
if options.ubuntu_mirror is None:
|
||||
options.ubuntu_mirror = config.get_value('UBUNTU_MIRROR')
|
||||
|
||||
if options.keyid is None:
|
||||
options.keyid = config.get_value('KEYID')
|
||||
|
||||
if options.lpinstance is None:
|
||||
options.lpinstance = config.get_value('LPINSTANCE')
|
||||
try:
|
||||
|
Loading…
x
Reference in New Issue
Block a user