1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
# Copyright (C) 2006-2017 Canonical Ltd
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
"""Launchpad.net integration plugin for Bazaar.
This plugin provides facilities for working with Bazaar branches that are
hosted on Launchpad (http://launchpad.net). It provides a directory service
for referring to Launchpad branches using the "lp:" prefix. For example,
lp:bzr refers to the Bazaar's main development branch and
lp:~username/project/branch-name can be used to refer to a specific branch.
This plugin provides a bug tracker so that "bzr commit --fixes lp:1234" will
record that revision as fixing Launchpad's bug 1234.
The plugin also provides the following commands:
launchpad-login: Show or set the Launchpad user ID
launchpad-open: Open a Launchpad branch page in your web browser
As well as the following deprecated command:
lp-propose-merge: Propose merging a branch on Launchpad
(deprecated in favour of the more generic 'brz propose-merge')
"""
# The XMLRPC server address can be overridden by setting the environment
# variable $BRZ_LP_XMLRPC_URL
# see http://wiki.bazaar.canonical.com/Specs/BranchRegistrationTool
from ... import (
branch as _mod_branch,
config as _mod_config,
lazy_regex,
# Since we are a built-in plugin we share the breezy version
trace,
version_info, # noqa: F401
)
from ...commands import (
plugin_cmds,
)
from ...directory_service import directories
from ...help_topics import topic_registry
for klsname, aliases in [
("cmd_launchpad_open", ["lp-open"]),
("cmd_launchpad_login", ["lp-login"]),
("cmd_launchpad_logout", ["lp-logout"]),
("cmd_lp_propose_merge", ["lp-submit", "lp-propose"]),
("cmd_lp_find_proposal", [])]:
plugin_cmds.register_lazy(klsname, aliases,
"breezy.plugins.launchpad.cmds")
def _register_directory():
directories.register_lazy('lp:', 'breezy.plugins.launchpad.lp_directory',
'LaunchpadDirectory',
'Launchpad-based directory service',)
directories.register_lazy('lp+bzr:', 'breezy.plugins.launchpad.lp_directory',
'LaunchpadDirectory',
'Bazaar-specific Launchpad directory service',)
directories.register_lazy(
'debianlp:', 'breezy.plugins.launchpad.lp_directory',
'LaunchpadDirectory',
'debianlp: shortcut')
directories.register_lazy(
'ubuntu:', 'breezy.plugins.launchpad.lp_directory',
'LaunchpadDirectory',
'ubuntu: shortcut')
_register_directory()
def load_tests(loader, basic_tests, pattern):
testmod_names = [
'test_account',
'test_register',
'test_lp_api',
'test_lp_directory',
'test_lp_login',
'test_lp_open',
'test_lp_service',
]
basic_tests.addTest(loader.loadTestsFromModuleNames(
["%s.%s" % (__name__, tmn) for tmn in testmod_names]))
return basic_tests
_launchpad_help = """Integration with Launchpad.net
Launchpad.net provides free Bazaar branch hosting with integrated bug and
specification tracking.
The bzr client (through the plugin called 'launchpad') has special
features to communicate with Launchpad:
* The launchpad-login command tells Bazaar your Launchpad user name. This
is then used by the 'lp:' transport to download your branches using
bzr+ssh://.
* The 'lp:' transport uses Launchpad as a directory service: for example
'lp:bzr' and 'lp:python' refer to the main branches of the relevant
projects and may be branched, logged, etc. You can also use the 'lp:'
transport to refer to specific branches, e.g. lp:~bzr/bzr/trunk.
* The 'lp:' bug tracker alias can expand launchpad bug numbers to their
URLs for use with 'bzr commit --fixes', e.g. 'bzr commit --fixes lp:12345'
will record a revision property that marks that revision as fixing
Launchpad bug 12345. When you push that branch to Launchpad it will
automatically be linked to the bug report.
For more information see http://help.launchpad.net/
"""
topic_registry.register('launchpad',
_launchpad_help,
'Using Bazaar with Launchpad.net')
|