bzr branch
http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
|
0.358.2
by Jelmer Vernooij
Refresh copyright headers, add my email. |
1 |
# Copyright (C) 2009-2018 Jelmer Vernooij <jelmer@jelmer.uk>
|
|
0.200.235
by Jelmer Vernooij
Depend on newer dulwich. |
2 |
# Copyright (C) 2006-2009 Canonical Ltd
|
|
0.200.201
by Jelmer Vernooij
Try to import nothing other than __init__ when not opening git repositories. |
3 |
|
|
0.200.1
by Robert Collins
Commit initial content. |
4 |
# Authors: Robert Collins <robert.collins@canonical.com>
|
|
0.358.2
by Jelmer Vernooij
Refresh copyright headers, add my email. |
5 |
# Jelmer Vernooij <jelmer@jelmer.uk>
|
|
0.200.184
by Jelmer Vernooij
Update authors: line. |
6 |
# John Carr <john.carr@unrouted.co.uk>
|
|
0.200.1
by Robert Collins
Commit initial content. |
7 |
#
|
8 |
# This program is free software; you can redistribute it and/or modify
|
|
9 |
# it under the terms of the GNU General Public License as published by
|
|
10 |
# the Free Software Foundation; either version 2 of the License, or
|
|
11 |
# (at your option) any later version.
|
|
12 |
#
|
|
13 |
# This program is distributed in the hope that it will be useful,
|
|
14 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16 |
# GNU General Public License for more details.
|
|
17 |
#
|
|
18 |
# You should have received a copy of the GNU General Public License
|
|
19 |
# along with this program; if not, write to the Free Software
|
|
|
0.358.1
by Jelmer Vernooij
Fix FSF address. |
20 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
0.200.1
by Robert Collins
Commit initial content. |
21 |
|
22 |
||
23 |
"""A GIT branch and repository format implementation for bzr."""
|
|
24 |
||
|
0.224.1
by Alexander Belchenko
bzr.exe support: allow import of dulwich from _lib subdirectory |
25 |
import os |
26 |
import sys |
|
27 |
||
|
7286.1.1
by Jelmer Vernooij
Bump minimum dulwich version to 0.19.11. |
28 |
dulwich_minimum_version = (0, 19, 11) |
|
6883.23.1
by Jelmer Vernooij
bundle brz-git plugin. |
29 |
|
|
7143.15.3
by Jelmer Vernooij
Fix pep8 issues in breezy.git. |
30 |
from .. import ( # noqa: F401 |
|
0.340.1
by Jelmer Vernooij
Include git/ in user agent when probing for Git. |
31 |
__version__ as breezy_version, |
|
7143.7.1
by Jelmer Vernooij
Simplify brz-git, drop imports. |
32 |
errors as brz_errors, |
|
0.200.1384
by Jelmer Vernooij
Skip post commit hook when dulwich is not installed. |
33 |
trace, |
|
7359.1.4
by Jelmer Vernooij
Fix import. |
34 |
urlutils, |
|
7143.15.3
by Jelmer Vernooij
Fix pep8 issues in breezy.git. |
35 |
version_info, |
|
0.200.292
by Jelmer Vernooij
Fix formatting. |
36 |
)
|
|
0.200.1111
by Jelmer Vernooij
Drop support for Bazaar < 2.3. |
37 |
|
|
6986.2.1
by Jelmer Vernooij
Move breezy.plugins.git to breezy.git. |
38 |
from ..controldir import ( |
|
0.200.1111
by Jelmer Vernooij
Drop support for Bazaar < 2.3. |
39 |
ControlDirFormat, |
40 |
Prober, |
|
41 |
format_registry, |
|
|
0.200.1137
by Jelmer Vernooij
Support BzrProber.known_formats(). |
42 |
network_format_registry as controldir_network_format_registry, |
|
0.200.1111
by Jelmer Vernooij
Drop support for Bazaar < 2.3. |
43 |
)
|
|
0.200.1012
by Jelmer Vernooij
Rename BzrDir to ControlDir. |
44 |
|
|
6986.2.1
by Jelmer Vernooij
Move breezy.plugins.git to breezy.git. |
45 |
from ..transport import ( |
|
0.200.292
by Jelmer Vernooij
Fix formatting. |
46 |
register_lazy_transport, |
|
0.200.308
by Jelmer Vernooij
Register git protocols. |
47 |
register_transport_proto, |
|
0.276.1
by Jelmer Vernooij
Use register_lazy. |
48 |
transport_server_registry, |
|
0.200.292
by Jelmer Vernooij
Fix formatting. |
49 |
)
|
|
6986.2.1
by Jelmer Vernooij
Move breezy.plugins.git to breezy.git. |
50 |
from ..commands import ( |
|
0.200.292
by Jelmer Vernooij
Fix formatting. |
51 |
plugin_cmds, |
52 |
)
|
|
|
0.200.341
by Jelmer Vernooij
Add stanza with git commit info in 'bzr version-info' |
53 |
|
|
0.200.192
by Jelmer Vernooij
use system-provided dulwich, remove own copy. |
54 |
|
|
0.224.1
by Alexander Belchenko
bzr.exe support: allow import of dulwich from _lib subdirectory |
55 |
if getattr(sys, "frozen", None): |
56 |
# allow import additional libs from ./_lib for bzr.exe only
|
|
|
0.200.926
by Jelmer Vernooij
Fix formatting, drop support for Bazaar < 2.0. |
57 |
sys.path.append(os.path.normpath( |
58 |
os.path.join(os.path.dirname(__file__), '_lib'))) |
|
|
0.224.1
by Alexander Belchenko
bzr.exe support: allow import of dulwich from _lib subdirectory |
59 |
|
|
0.200.987
by Jelmer Vernooij
Add DulwichFeature. |
60 |
|
61 |
def import_dulwich(): |
|
|
0.200.200
by Jelmer Vernooij
Register lazily where possible. |
62 |
try: |
63 |
from dulwich import __version__ as dulwich_version |
|
64 |
except ImportError: |
|
|
7143.15.6
by Jelmer Vernooij
Merge trunk. |
65 |
raise brz_errors.DependencyNotPresent( |
|
7143.15.3
by Jelmer Vernooij
Fix pep8 issues in breezy.git. |
66 |
"dulwich", |
67 |
"bzr-git: Please install dulwich, https://www.dulwich.io/") |
|
|
0.200.200
by Jelmer Vernooij
Register lazily where possible. |
68 |
else: |
|
0.200.583
by Jelmer Vernooij
Add plugin api info. |
69 |
if dulwich_version < dulwich_minimum_version: |
|
7143.15.6
by Jelmer Vernooij
Merge trunk. |
70 |
raise brz_errors.DependencyNotPresent( |
|
7143.15.3
by Jelmer Vernooij
Fix pep8 issues in breezy.git. |
71 |
"dulwich", |
72 |
"bzr-git: Dulwich is too old; at least %d.%d.%d is required" % |
|
73 |
dulwich_minimum_version) |
|
|
0.200.199
by Jelmer Vernooij
Check for bzrlib API version. |
74 |
|
|
0.200.987
by Jelmer Vernooij
Add DulwichFeature. |
75 |
|
76 |
_versions_checked = False |
|
|
7143.15.2
by Jelmer Vernooij
Run autopep8. |
77 |
|
78 |
||
|
0.200.987
by Jelmer Vernooij
Add DulwichFeature. |
79 |
def lazy_check_versions(): |
80 |
global _versions_checked |
|
81 |
if _versions_checked: |
|
82 |
return
|
|
83 |
import_dulwich() |
|
84 |
_versions_checked = True |
|
85 |
||
|
7143.15.2
by Jelmer Vernooij
Run autopep8. |
86 |
|
|
7143.15.3
by Jelmer Vernooij
Fix pep8 issues in breezy.git. |
87 |
format_registry.register_lazy( |
88 |
'git', __name__ + ".dir", "LocalGitControlDirFormat", |
|
89 |
help='GIT repository.', native=False, experimental=False) |
|
|
0.200.204
by Jelmer Vernooij
Support bzr 1.11. |
90 |
|
|
7143.15.3
by Jelmer Vernooij
Fix pep8 issues in breezy.git. |
91 |
format_registry.register_lazy( |
92 |
'git-bare', __name__ + ".dir", "BareLocalGitControlDirFormat", |
|
93 |
help='Bare GIT repository (no working tree).', native=False, |
|
94 |
experimental=False) |
|
|
0.200.1032
by Jelmer Vernooij
Support bare repositories. |
95 |
|
|
6986.2.1
by Jelmer Vernooij
Move breezy.plugins.git to breezy.git. |
96 |
from ..revisionspec import (RevisionSpec_dwim, revspec_registry) |
|
0.200.1646
by Jelmer Vernooij
Rename bzrlib to breezy. |
97 |
revspec_registry.register_lazy("git:", __name__ + ".revspec", |
|
7143.15.2
by Jelmer Vernooij
Run autopep8. |
98 |
"RevisionSpec_git") |
|
0.200.1559
by Jelmer Vernooij
Fix compatibility with bzr 2.5. |
99 |
RevisionSpec_dwim.append_possible_lazy_revspec( |
|
0.200.1649
by Jelmer Vernooij
Fix imports. |
100 |
__name__ + ".revspec", "RevisionSpec_git") |
|
0.200.645
by Jelmer Vernooij
Support DWIM git: revspecs. |
101 |
|
|
0.200.328
by Jelmer Vernooij
Support stacking, depend on bzr 1.15. |
102 |
|
|
0.200.1014
by Jelmer Vernooij
Fix tests. |
103 |
class LocalGitProber(Prober): |
104 |
||
|
7413.6.1
by Jelmer Vernooij
Add an optional priority field for probers. |
105 |
@classmethod
|
106 |
def priority(klass, transport): |
|
107 |
return 10 |
|
108 |
||
|
0.200.1014
by Jelmer Vernooij
Fix tests. |
109 |
def probe_transport(self, transport): |
|
0.200.720
by Jelmer Vernooij
Avoid loading bzr-git/dulwich when not necessary. |
110 |
try: |
|
0.268.1
by Jelmer Vernooij
Fix probing of http repositories when pycurl is used. |
111 |
external_url = transport.external_url() |
|
7143.7.1
by Jelmer Vernooij
Simplify brz-git, drop imports. |
112 |
except brz_errors.InProcessTransport: |
113 |
raise brz_errors.NotBranchError(path=transport.base) |
|
|
0.268.1
by Jelmer Vernooij
Fix probing of http repositories when pycurl is used. |
114 |
if (external_url.startswith("http:") or |
|
7143.15.2
by Jelmer Vernooij
Run autopep8. |
115 |
external_url.startswith("https:")): |
|
0.268.1
by Jelmer Vernooij
Fix probing of http repositories when pycurl is used. |
116 |
# Already handled by RemoteGitProber
|
|
7143.7.1
by Jelmer Vernooij
Simplify brz-git, drop imports. |
117 |
raise brz_errors.NotBranchError(path=transport.base) |
|
0.200.730
by Jelmer Vernooij
Don't claim control directories can be accessed directly, always open the |
118 |
if urlutils.split(transport.base)[1] == ".git": |
|
7143.7.1
by Jelmer Vernooij
Simplify brz-git, drop imports. |
119 |
raise brz_errors.NotBranchError(path=transport.base) |
|
0.398.1
by Jelmer Vernooij
Support reading .git files. |
120 |
if not transport.has_any(['objects', '.git/objects', '.git']): |
|
7143.7.1
by Jelmer Vernooij
Simplify brz-git, drop imports. |
121 |
raise brz_errors.NotBranchError(path=transport.base) |
|
0.239.13
by Jelmer Vernooij
Don't break "bzr info -v" when Dulwich is not installed. |
122 |
lazy_check_versions() |
|
0.200.1641
by Jelmer Vernooij
Use relative imports where possible. |
123 |
from .dir import ( |
|
0.200.1387
by Jelmer Vernooij
Avoid using HEAD. |
124 |
BareLocalGitControlDirFormat, |
125 |
LocalGitControlDirFormat, |
|
126 |
)
|
|
|
0.398.1
by Jelmer Vernooij
Support reading .git files. |
127 |
if transport.has_any(['.git/objects', '.git']): |
|
0.200.1387
by Jelmer Vernooij
Avoid using HEAD. |
128 |
return LocalGitControlDirFormat() |
129 |
if transport.has('info') and transport.has('objects'): |
|
130 |
return BareLocalGitControlDirFormat() |
|
|
7143.7.1
by Jelmer Vernooij
Simplify brz-git, drop imports. |
131 |
raise brz_errors.NotBranchError(path=transport.base) |
|
0.200.201
by Jelmer Vernooij
Try to import nothing other than __init__ when not opening git repositories. |
132 |
|
|
0.200.1139
by Jelmer Vernooij
Prober.known_formats is a class method. |
133 |
@classmethod
|
134 |
def known_formats(cls): |
|
|
0.200.1641
by Jelmer Vernooij
Use relative imports where possible. |
135 |
from .dir import ( |
|
0.200.1137
by Jelmer Vernooij
Support BzrProber.known_formats(). |
136 |
BareLocalGitControlDirFormat, |
137 |
LocalGitControlDirFormat, |
|
138 |
)
|
|
|
6973.12.9
by Jelmer Vernooij
More fixes. |
139 |
return [BareLocalGitControlDirFormat(), LocalGitControlDirFormat()] |
|
0.200.1032
by Jelmer Vernooij
Support bare repositories. |
140 |
|
141 |
||
|
0.409.2
by Jelmer Vernooij
call out to HTTP transport rather than creating new connection. |
142 |
def user_agent_for_github(): |
143 |
# GitHub requires we lie. https://github.com/dulwich/dulwich/issues/562
|
|
144 |
return "git/Breezy/%s" % breezy_version |
|
145 |
||
146 |
||
|
7359.1.1
by Jelmer Vernooij
Only set user agent for GitHub. |
147 |
def is_github_url(url): |
148 |
(scheme, user, password, host, port, |
|
149 |
path) = urlutils.parse_url(url) |
|
|
7490.14.1
by Jelmer Vernooij
Various git fixes. |
150 |
return host in ("github.com", "gopkg.in") |
|
7359.1.1
by Jelmer Vernooij
Only set user agent for GitHub. |
151 |
|
152 |
||
|
0.200.1014
by Jelmer Vernooij
Fix tests. |
153 |
class RemoteGitProber(Prober): |
154 |
||
|
7413.6.1
by Jelmer Vernooij
Add an optional priority field for probers. |
155 |
@classmethod
|
156 |
def priority(klass, transport): |
|
157 |
# This is a surprisingly good heuristic to determine whether this
|
|
158 |
# prober is more likely to succeed than the Bazaar one.
|
|
159 |
if 'git' in transport.base: |
|
160 |
return -15 |
|
161 |
return -10 |
|
162 |
||
|
0.200.1334
by Jelmer Vernooij
Detect smart servers. |
163 |
def probe_http_transport(self, transport): |
|
7268.10.4
by Jelmer Vernooij
Add note about imports. |
164 |
# This function intentionally doesn't use any of the support code under
|
165 |
# breezy.git, since it's called for every repository that's
|
|
166 |
# accessed over HTTP, whether it's Git, Bzr or something else.
|
|
167 |
# Importing Dulwich and the other support code adds unnecessray slowdowns.
|
|
|
7441.1.1
by Jelmer Vernooij
Add strip_segment_parameters function. |
168 |
base_url = urlutils.strip_segment_parameters(transport.external_url()) |
|
7268.10.1
by Jelmer Vernooij
Strip username from URL. |
169 |
url = urlutils.URL.from_string(base_url) |
170 |
url.user = url.quoted_user = None |
|
171 |
url.password = url.quoted_password = None |
|
|
7359.1.5
by Jelmer Vernooij
Fix import. |
172 |
host = url.host |
|
7268.10.1
by Jelmer Vernooij
Strip username from URL. |
173 |
url = urlutils.join(str(url), "info/refs") + "?service=git-upload-pack" |
|
7096.1.2
by Jelmer Vernooij
Fix redirection handling for git. |
174 |
headers = {"Content-Type": "application/x-git-upload-pack-request", |
175 |
"Accept": "application/x-git-upload-pack-result", |
|
176 |
}
|
|
|
7359.1.1
by Jelmer Vernooij
Only set user agent for GitHub. |
177 |
if is_github_url(url): |
|
7143.15.3
by Jelmer Vernooij
Fix pep8 issues in breezy.git. |
178 |
# GitHub requires we lie.
|
179 |
# https://github.com/dulwich/dulwich/issues/562
|
|
|
7320.1.1
by Jelmer Vernooij
Fix git http support. |
180 |
headers["User-Agent"] = user_agent_for_github() |
|
7296.2.2
by Jelmer Vernooij
Add a urllib3-like interface. |
181 |
resp = transport.request('GET', url, headers=headers) |
182 |
if resp.status in (404, 405): |
|
|
7143.7.1
by Jelmer Vernooij
Simplify brz-git, drop imports. |
183 |
raise brz_errors.NotBranchError(transport.base) |
|
7490.90.2
by Jelmer Vernooij
Cope with hgweb probing in brz-git. |
184 |
elif resp.status == 400 and resp.reason == 'no such method: info': |
185 |
# hgweb :(
|
|
186 |
raise brz_errors.NotBranchError(transport.base) |
|
|
7320.1.1
by Jelmer Vernooij
Fix git http support. |
187 |
elif resp.status != 200: |
|
7490.90.6
by Jelmer Vernooij
More fixes for hg probing. |
188 |
raise brz_errors.UnexpectedHttpStatus(url, resp.status) |
|
7296.2.2
by Jelmer Vernooij
Add a urllib3-like interface. |
189 |
|
|
7320.1.1
by Jelmer Vernooij
Fix git http support. |
190 |
ct = resp.getheader("Content-Type") |
|
7411.1.1
by Jelmer Vernooij
Fix support for reading from a dumb git server. |
191 |
if ct and ct.startswith("application/x-git"): |
|
0.200.1641
by Jelmer Vernooij
Use relative imports where possible. |
192 |
from .remote import RemoteGitControlDirFormat |
|
0.200.1334
by Jelmer Vernooij
Detect smart servers. |
193 |
return RemoteGitControlDirFormat() |
|
7413.4.1
by Jelmer Vernooij
Don't assume that if something returns a 200, it's going to be okay. |
194 |
elif not ct: |
|
0.200.1641
by Jelmer Vernooij
Use relative imports where possible. |
195 |
from .dir import ( |
|
0.200.1334
by Jelmer Vernooij
Detect smart servers. |
196 |
BareLocalGitControlDirFormat, |
197 |
)
|
|
|
0.200.1485
by Jelmer Vernooij
Keep track of refs text when opening bare repository. |
198 |
ret = BareLocalGitControlDirFormat() |
|
0.200.1726
by Jelmer Vernooij
Use urllib exclusively. |
199 |
ret._refs_text = resp.read() |
|
0.200.1485
by Jelmer Vernooij
Keep track of refs text when opening bare repository. |
200 |
return ret |
|
7413.4.1
by Jelmer Vernooij
Don't assume that if something returns a 200, it's going to be okay. |
201 |
raise brz_errors.NotBranchError(transport.base) |
|
0.200.1334
by Jelmer Vernooij
Detect smart servers. |
202 |
|
|
0.200.1014
by Jelmer Vernooij
Fix tests. |
203 |
def probe_transport(self, transport): |
|
0.200.1334
by Jelmer Vernooij
Detect smart servers. |
204 |
try: |
205 |
external_url = transport.external_url() |
|
|
7143.7.1
by Jelmer Vernooij
Simplify brz-git, drop imports. |
206 |
except brz_errors.InProcessTransport: |
207 |
raise brz_errors.NotBranchError(path=transport.base) |
|
|
0.200.1334
by Jelmer Vernooij
Detect smart servers. |
208 |
|
209 |
if (external_url.startswith("http:") or |
|
|
7143.15.2
by Jelmer Vernooij
Run autopep8. |
210 |
external_url.startswith("https:")): |
|
0.200.1334
by Jelmer Vernooij
Detect smart servers. |
211 |
return self.probe_http_transport(transport) |
212 |
||
213 |
if (not external_url.startswith("git://") and |
|
|
7143.15.2
by Jelmer Vernooij
Run autopep8. |
214 |
not external_url.startswith("git+")): |
|
7143.7.1
by Jelmer Vernooij
Simplify brz-git, drop imports. |
215 |
raise brz_errors.NotBranchError(transport.base) |
|
0.200.1334
by Jelmer Vernooij
Detect smart servers. |
216 |
|
|
0.200.1014
by Jelmer Vernooij
Fix tests. |
217 |
# little ugly, but works
|
|
0.200.1641
by Jelmer Vernooij
Use relative imports where possible. |
218 |
from .remote import ( |
|
0.200.1137
by Jelmer Vernooij
Support BzrProber.known_formats(). |
219 |
GitSmartTransport, |
220 |
RemoteGitControlDirFormat, |
|
221 |
)
|
|
|
0.200.1334
by Jelmer Vernooij
Detect smart servers. |
222 |
if isinstance(transport, GitSmartTransport): |
223 |
return RemoteGitControlDirFormat() |
|
|
7143.7.1
by Jelmer Vernooij
Simplify brz-git, drop imports. |
224 |
raise brz_errors.NotBranchError(path=transport.base) |
|
0.200.1014
by Jelmer Vernooij
Fix tests. |
225 |
|
|
0.200.201
by Jelmer Vernooij
Try to import nothing other than __init__ when not opening git repositories. |
226 |
@classmethod
|
|
0.200.1139
by Jelmer Vernooij
Prober.known_formats is a class method. |
227 |
def known_formats(cls): |
|
0.200.1641
by Jelmer Vernooij
Use relative imports where possible. |
228 |
from .remote import RemoteGitControlDirFormat |
|
6973.12.9
by Jelmer Vernooij
More fixes. |
229 |
return [RemoteGitControlDirFormat()] |
|
0.200.201
by Jelmer Vernooij
Try to import nothing other than __init__ when not opening git repositories. |
230 |
|
|
0.200.1137
by Jelmer Vernooij
Support BzrProber.known_formats(). |
231 |
|
|
0.200.1111
by Jelmer Vernooij
Drop support for Bazaar < 2.3. |
232 |
ControlDirFormat.register_prober(LocalGitProber) |
|
7413.6.1
by Jelmer Vernooij
Add an optional priority field for probers. |
233 |
ControlDirFormat.register_prober(RemoteGitProber) |
|
0.200.138
by Jelmer Vernooij
Add initial infrastructure for accessing remote git repositories. |
234 |
|
|
7143.15.3
by Jelmer Vernooij
Fix pep8 issues in breezy.git. |
235 |
register_transport_proto( |
236 |
'git://', help="Access using the Git smart server protocol.") |
|
237 |
register_transport_proto( |
|
238 |
'git+ssh://', |
|
239 |
help="Access using the Git smart server protocol over SSH.") |
|
|
0.200.308
by Jelmer Vernooij
Register git protocols. |
240 |
|
|
0.200.1645
by Jelmer Vernooij
Use __name__. |
241 |
register_lazy_transport("git://", __name__ + '.remote', |
|
0.200.307
by Jelmer Vernooij
Support git+ssh. |
242 |
'TCPGitSmartTransport') |
|
0.200.1645
by Jelmer Vernooij
Use __name__. |
243 |
register_lazy_transport("git+ssh://", __name__ + '.remote', |
|
0.200.307
by Jelmer Vernooij
Support git+ssh. |
244 |
'SSHGitSmartTransport') |
|
0.200.19
by John Arbash Meinel
More refactoring. Add some direct tests for GitModel. |
245 |
|
|
0.208.5
by Jelmer Vernooij
Add log show function for git. |
246 |
|
|
0.200.1645
by Jelmer Vernooij
Use __name__. |
247 |
plugin_cmds.register_lazy("cmd_git_import", [], __name__ + ".commands") |
|
0.200.674
by Jelmer Vernooij
Fix formatting. |
248 |
plugin_cmds.register_lazy("cmd_git_object", ["git-objects", "git-cat"], |
|
7143.15.2
by Jelmer Vernooij
Run autopep8. |
249 |
__name__ + ".commands") |
|
0.200.1645
by Jelmer Vernooij
Use __name__. |
250 |
plugin_cmds.register_lazy("cmd_git_refs", [], __name__ + ".commands") |
251 |
plugin_cmds.register_lazy("cmd_git_apply", [], __name__ + ".commands") |
|
|
0.277.6
by Jelmer Vernooij
Add 'bzr git-push-pristine-tar' command. |
252 |
plugin_cmds.register_lazy("cmd_git_push_pristine_tar_deltas", |
|
7143.15.2
by Jelmer Vernooij
Run autopep8. |
253 |
['git-push-pristine-tar', 'git-push-pristine'], |
254 |
__name__ + ".commands") |
|
255 |
||
|
0.200.177
by Jelmer Vernooij
Add git-import command. |
256 |
|
|
0.200.1262
by Jelmer Vernooij
Add extract git foreign revid. |
257 |
def extract_git_foreign_revid(rev): |
258 |
try: |
|
259 |
foreign_revid = rev.foreign_revid |
|
260 |
except AttributeError: |
|
|
0.200.1641
by Jelmer Vernooij
Use relative imports where possible. |
261 |
from .mapping import mapping_registry |
|
0.200.1262
by Jelmer Vernooij
Add extract git foreign revid. |
262 |
foreign_revid, mapping = \ |
263 |
mapping_registry.parse_revision_id(rev.revision_id) |
|
264 |
return foreign_revid |
|
265 |
else: |
|
|
0.200.1641
by Jelmer Vernooij
Use relative imports where possible. |
266 |
from .mapping import foreign_vcs_git |
|
0.200.1262
by Jelmer Vernooij
Add extract git foreign revid. |
267 |
if rev.mapping.vcs == foreign_vcs_git: |
268 |
return foreign_revid |
|
269 |
else: |
|
|
7143.7.1
by Jelmer Vernooij
Simplify brz-git, drop imports. |
270 |
raise brz_errors.InvalidRevisionId(rev.revision_id, None) |
|
0.200.1262
by Jelmer Vernooij
Add extract git foreign revid. |
271 |
|
272 |
||
|
0.200.341
by Jelmer Vernooij
Add stanza with git commit info in 'bzr version-info' |
273 |
def update_stanza(rev, stanza): |
|
0.200.1262
by Jelmer Vernooij
Add extract git foreign revid. |
274 |
try: |
275 |
git_commit = extract_git_foreign_revid(rev) |
|
|
7143.7.1
by Jelmer Vernooij
Simplify brz-git, drop imports. |
276 |
except brz_errors.InvalidRevisionId: |
|
0.200.1262
by Jelmer Vernooij
Add extract git foreign revid. |
277 |
pass
|
278 |
else: |
|
279 |
stanza.add("git-commit", git_commit) |
|
|
0.200.341
by Jelmer Vernooij
Add stanza with git commit info in 'bzr version-info' |
280 |
|
|
7143.15.2
by Jelmer Vernooij
Run autopep8. |
281 |
|
|
6986.2.1
by Jelmer Vernooij
Move breezy.plugins.git to breezy.git. |
282 |
from ..hooks import install_lazy_named_hook |
|
7143.15.3
by Jelmer Vernooij
Fix pep8 issues in breezy.git. |
283 |
install_lazy_named_hook( |
284 |
"breezy.version_info_formats.format_rio", |
|
285 |
"RioVersionInfoBuilder.hooks", "revision", update_stanza, |
|
286 |
"git commits") |
|
287 |
||
288 |
transport_server_registry.register_lazy( |
|
289 |
'git', __name__ + '.server', 'serve_git', |
|
290 |
'Git Smart server protocol over TCP. (default port: 9418)') |
|
291 |
||
292 |
transport_server_registry.register_lazy( |
|
293 |
'git-receive-pack', __name__ + '.server', |
|
294 |
'serve_git_receive_pack', |
|
295 |
help='Git Smart server receive pack command. (inetd mode only)') |
|
296 |
transport_server_registry.register_lazy( |
|
297 |
'git-upload-pack', __name__ + 'git.server', |
|
298 |
'serve_git_upload_pack', |
|
299 |
help='Git Smart server upload pack command. (inetd mode only)') |
|
|
0.200.531
by Jelmer Vernooij
Support 'bzr serve --git'. |
300 |
|
|
6986.2.1
by Jelmer Vernooij
Move breezy.plugins.git to breezy.git. |
301 |
from ..repository import ( |
|
0.200.1083
by Jelmer Vernooij
Register repository format. |
302 |
format_registry as repository_format_registry, |
|
0.200.926
by Jelmer Vernooij
Fix formatting, drop support for Bazaar < 2.0. |
303 |
network_format_registry as repository_network_format_registry, |
304 |
)
|
|
|
7143.15.3
by Jelmer Vernooij
Fix pep8 issues in breezy.git. |
305 |
repository_network_format_registry.register_lazy( |
306 |
b'git', __name__ + '.repository', 'GitRepositoryFormat') |
|
|
0.200.536
by Jelmer Vernooij
Implement network name. |
307 |
|
|
0.200.1559
by Jelmer Vernooij
Fix compatibility with bzr 2.5. |
308 |
register_extra_lazy_repository_format = getattr(repository_format_registry, |
|
7143.15.2
by Jelmer Vernooij
Run autopep8. |
309 |
"register_extra_lazy") |
|
0.200.1645
by Jelmer Vernooij
Use __name__. |
310 |
register_extra_lazy_repository_format(__name__ + '.repository', |
|
7143.15.2
by Jelmer Vernooij
Run autopep8. |
311 |
'GitRepositoryFormat') |
|
0.200.1083
by Jelmer Vernooij
Register repository format. |
312 |
|
|
6986.2.1
by Jelmer Vernooij
Move breezy.plugins.git to breezy.git. |
313 |
from ..branch import ( |
|
0.200.1127
by Jelmer Vernooij
Register branch format network name. |
314 |
network_format_registry as branch_network_format_registry, |
315 |
)
|
|
|
7143.15.3
by Jelmer Vernooij
Fix pep8 issues in breezy.git. |
316 |
branch_network_format_registry.register_lazy( |
317 |
b'git', __name__ + '.branch', 'LocalGitBranchFormat') |
|
|
0.295.1
by Jelmer Vernooij
Split up branch formats. |
318 |
|
|
0.200.1127
by Jelmer Vernooij
Register branch format network name. |
319 |
|
|
6986.2.1
by Jelmer Vernooij
Move breezy.plugins.git to breezy.git. |
320 |
from ..branch import ( |
|
0.200.1559
by Jelmer Vernooij
Fix compatibility with bzr 2.5. |
321 |
format_registry as branch_format_registry, |
322 |
)
|
|
323 |
branch_format_registry.register_extra_lazy( |
|
|
0.200.1645
by Jelmer Vernooij
Use __name__. |
324 |
__name__ + '.branch', |
|
0.295.1
by Jelmer Vernooij
Split up branch formats. |
325 |
'LocalGitBranchFormat', |
326 |
)
|
|
327 |
branch_format_registry.register_extra_lazy( |
|
328 |
__name__ + '.remote', |
|
329 |
'RemoteGitBranchFormat', |
|
330 |
)
|
|
331 |
||
|
0.200.1090
by Jelmer Vernooij
Register branch format for testing. |
332 |
|
|
6986.2.1
by Jelmer Vernooij
Move breezy.plugins.git to breezy.git. |
333 |
from ..workingtree import ( |
|
0.200.1559
by Jelmer Vernooij
Fix compatibility with bzr 2.5. |
334 |
format_registry as workingtree_format_registry, |
335 |
)
|
|
336 |
workingtree_format_registry.register_extra_lazy( |
|
|
0.200.1645
by Jelmer Vernooij
Use __name__. |
337 |
__name__ + '.workingtree', |
|
0.200.1559
by Jelmer Vernooij
Fix compatibility with bzr 2.5. |
338 |
'GitWorkingTreeFormat', |
339 |
)
|
|
|
0.200.1093
by Jelmer Vernooij
Register working tree format for testing. |
340 |
|
|
7143.15.3
by Jelmer Vernooij
Fix pep8 issues in breezy.git. |
341 |
controldir_network_format_registry.register_lazy( |
342 |
b'git', __name__ + ".dir", "GitControlDirFormat") |
|
|
0.200.536
by Jelmer Vernooij
Implement network name. |
343 |
|
|
0.276.1
by Jelmer Vernooij
Use register_lazy. |
344 |
|
|
7143.7.1
by Jelmer Vernooij
Simplify brz-git, drop imports. |
345 |
from ..diff import format_registry as diff_format_registry |
|
7143.16.10
by Jelmer Vernooij
Fix E128. |
346 |
diff_format_registry.register_lazy( |
347 |
'git', __name__ + '.send', |
|
|
7143.7.1
by Jelmer Vernooij
Simplify brz-git, drop imports. |
348 |
'GitDiffTree', 'Git am-style diff format') |
349 |
||
350 |
from ..send import ( |
|
351 |
format_registry as send_format_registry, |
|
352 |
)
|
|
353 |
send_format_registry.register_lazy('git', __name__ + '.send', |
|
354 |
'send_git', 'Git am-style diff format') |
|
355 |
||
356 |
from ..directory_service import directories |
|
357 |
directories.register_lazy('github:', __name__ + '.directory', |
|
358 |
'GitHubDirectory', |
|
359 |
'GitHub directory.') |
|
360 |
directories.register_lazy('git@github.com:', __name__ + '.directory', |
|
361 |
'GitHubDirectory', |
|
362 |
'GitHub directory.') |
|
363 |
||
364 |
from ..help_topics import ( |
|
365 |
topic_registry, |
|
366 |
)
|
|
|
7143.16.10
by Jelmer Vernooij
Fix E128. |
367 |
topic_registry.register_lazy( |
368 |
'git', __name__ + '.help', 'help_git', 'Using Bazaar with Git') |
|
|
7143.7.1
by Jelmer Vernooij
Simplify brz-git, drop imports. |
369 |
|
370 |
from ..foreign import ( |
|
371 |
foreign_vcs_registry, |
|
372 |
)
|
|
|
7143.16.10
by Jelmer Vernooij
Fix E128. |
373 |
foreign_vcs_registry.register_lazy( |
374 |
"git", __name__ + ".mapping", "foreign_vcs_git", "Stupid content tracker") |
|
|
7143.7.1
by Jelmer Vernooij
Simplify brz-git, drop imports. |
375 |
|
|
0.200.1291
by Jelmer Vernooij
add hook for updating to local git cache. |
376 |
|
377 |
def update_git_cache(repository, revid): |
|
378 |
"""Update the git cache after a local commit.""" |
|
379 |
if getattr(repository, "_git", None) is not None: |
|
|
7143.15.2
by Jelmer Vernooij
Run autopep8. |
380 |
return # No need to update cache for git repositories |
|
0.200.1291
by Jelmer Vernooij
add hook for updating to local git cache. |
381 |
|
382 |
if not repository.control_transport.has("git"): |
|
|
7143.15.2
by Jelmer Vernooij
Run autopep8. |
383 |
return # No existing cache, don't bother updating |
|
0.200.1384
by Jelmer Vernooij
Skip post commit hook when dulwich is not installed. |
384 |
try: |
385 |
lazy_check_versions() |
|
|
7143.7.1
by Jelmer Vernooij
Simplify brz-git, drop imports. |
386 |
except brz_errors.DependencyNotPresent as e: |
|
0.200.1384
by Jelmer Vernooij
Skip post commit hook when dulwich is not installed. |
387 |
# dulwich is probably missing. silently ignore
|
388 |
trace.mutter("not updating git map for %r: %s", |
|
|
7143.15.2
by Jelmer Vernooij
Run autopep8. |
389 |
repository, e) |
|
0.200.1384
by Jelmer Vernooij
Skip post commit hook when dulwich is not installed. |
390 |
|
|
0.200.1641
by Jelmer Vernooij
Use relative imports where possible. |
391 |
from .object_store import BazaarObjectStore |
|
0.200.1291
by Jelmer Vernooij
add hook for updating to local git cache. |
392 |
store = BazaarObjectStore(repository) |
|
0.200.1788
by Jelmer Vernooij
Use context managers. |
393 |
with store.lock_write(): |
|
0.200.1583
by Jelmer Vernooij
Use config stacks. |
394 |
try: |
395 |
parent_revisions = set(repository.get_parent_map([revid])[revid]) |
|
396 |
except KeyError: |
|
|
7143.15.3
by Jelmer Vernooij
Fix pep8 issues in breezy.git. |
397 |
# Isn't this a bit odd - how can a revision that was just committed
|
398 |
# be missing?
|
|
|
0.200.1583
by Jelmer Vernooij
Use config stacks. |
399 |
return
|
|
0.200.1319
by Jelmer Vernooij
Only update git cache during post-commit if parents are already in the cache. |
400 |
missing_revisions = store._missing_revisions(parent_revisions) |
401 |
if not missing_revisions: |
|
|
6962.1.1
by Jelmer Vernooij
Fix handling cache updates in bzr-based index formats. |
402 |
store._cache.idmap.start_write_group() |
403 |
try: |
|
404 |
# Only update if the cache was up to date previously
|
|
405 |
store._update_sha_map_revision(revid) |
|
406 |
except BaseException: |
|
407 |
store._cache.idmap.abort_write_group() |
|
408 |
raise
|
|
409 |
else: |
|
410 |
store._cache.idmap.commit_write_group() |
|
|
0.200.1291
by Jelmer Vernooij
add hook for updating to local git cache. |
411 |
|
412 |
||
413 |
def post_commit_update_cache(local_branch, master_branch, old_revno, old_revid, |
|
|
7143.15.2
by Jelmer Vernooij
Run autopep8. |
414 |
new_revno, new_revid): |
|
0.200.1291
by Jelmer Vernooij
add hook for updating to local git cache. |
415 |
if local_branch is not None: |
416 |
update_git_cache(local_branch.repository, new_revid) |
|
417 |
update_git_cache(master_branch.repository, new_revid) |
|
418 |
||
419 |
||
|
0.271.5
by Jelmer Vernooij
Hook into loggerhead. |
420 |
def loggerhead_git_hook(branch_app, environ): |
421 |
branch = branch_app.branch |
|
|
0.200.1583
by Jelmer Vernooij
Use config stacks. |
422 |
config_stack = branch.get_config_stack() |
|
7521.2.1
by Colin Watson
Fix handling of git.http option. |
423 |
if not config_stack.get('git.http'): |
|
0.271.5
by Jelmer Vernooij
Hook into loggerhead. |
424 |
return None |
|
0.200.1641
by Jelmer Vernooij
Use relative imports where possible. |
425 |
from .server import git_http_hook |
|
0.271.5
by Jelmer Vernooij
Hook into loggerhead. |
426 |
return git_http_hook(branch, environ['REQUEST_METHOD'], |
|
7143.15.2
by Jelmer Vernooij
Run autopep8. |
427 |
environ['PATH_INFO']) |
428 |
||
|
0.271.5
by Jelmer Vernooij
Hook into loggerhead. |
429 |
|
|
0.200.1646
by Jelmer Vernooij
Rename bzrlib to breezy. |
430 |
install_lazy_named_hook("breezy.branch", |
|
7143.15.3
by Jelmer Vernooij
Fix pep8 issues in breezy.git. |
431 |
"Branch.hooks", "post_commit", |
432 |
post_commit_update_cache, "git cache") |
|
|
0.200.1646
by Jelmer Vernooij
Rename bzrlib to breezy. |
433 |
install_lazy_named_hook("breezy.plugins.loggerhead.apps.branch", |
|
7143.15.2
by Jelmer Vernooij
Run autopep8. |
434 |
"BranchWSGIApp.hooks", "controller", |
435 |
loggerhead_git_hook, "git support") |
|
|
0.200.1291
by Jelmer Vernooij
add hook for updating to local git cache. |
436 |
|
437 |
||
|
6986.2.1
by Jelmer Vernooij
Move breezy.plugins.git to breezy.git. |
438 |
from ..config import ( |
|
0.200.1583
by Jelmer Vernooij
Use config stacks. |
439 |
option_registry, |
440 |
Option, |
|
441 |
bool_from_store, |
|
442 |
)
|
|
443 |
||
444 |
option_registry.register( |
|
445 |
Option('git.http', |
|
446 |
default=None, from_unicode=bool_from_store, invalid='warning', |
|
447 |
help='''\ |
|
448 |
Allow fetching of Git packs over HTTP.
|
|
449 |
||
450 |
This enables support for fetching Git packs over HTTP in Loggerhead.
|
|
451 |
''')) |
|
452 |
||
|
7143.15.2
by Jelmer Vernooij
Run autopep8. |
453 |
|
|
0.201.1
by Jelmer Vernooij
Add very small initial testsuite. |
454 |
def test_suite(): |
|
0.200.1641
by Jelmer Vernooij
Use relative imports where possible. |
455 |
from . import tests |
|
0.200.18
by John Arbash Meinel
Start splitting up the Git{Branch,Dir,Repository} into separate modules, etc. |
456 |
return tests.test_suite() |