/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
0.200.1594 by Jelmer Vernooij
Use absolute_import everywhere.
1
from __future__ import absolute_import
2
0.200.587 by Jelmer Vernooij
Put plugin info in separate file.
3
bzr_plugin_name = "git"
4
0.200.1659 by Jelmer Vernooij
Bump minimum dulwich version to 0.18.0.
5
dulwich_minimum_version = (0, 18, 0)
0.200.587 by Jelmer Vernooij
Put plugin info in separate file.
6
7
# versions ending in 'exp' mean experimental mappings
8
# versions ending in 'dev' mean development version
9
# versions ending in 'final' mean release (well tested, etc)
0.200.1627 by Jelmer Vernooij
release 0.6.12.
10
bzr_plugin_version = (0, 6, 12, 'final', 0)
0.200.587 by Jelmer Vernooij
Put plugin info in separate file.
11
0.200.895 by Jelmer Vernooij
Add initial work on git-apply.
12
bzr_commands = ["git-import", "git-object", "git-refs", "git-apply"]
0.200.587 by Jelmer Vernooij
Put plugin info in separate file.
13
0.200.1647 by Jelmer Vernooij
Drop api support.
14
bzr_compatible_versions = [(3, x, 0) for x in [0]]
0.200.587 by Jelmer Vernooij
Put plugin info in separate file.
15
16
bzr_minimum_version = bzr_compatible_versions[0]
17
18
bzr_maximum_version = bzr_compatible_versions[-1]
19
20
bzr_control_formats = {"Git":{'.git/': None}}