bzr branch
http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
|
0.200.128
by Jelmer Vernooij
Merge new dulwich. |
1 |
#!/usr/bin/env python
|
|
0.200.50
by Jelmer Vernooij
add setup.py |
2 |
|
|
0.200.584
by Jelmer Vernooij
fix use with plugin-info. |
3 |
bzr_plugin_name = "git" |
4 |
||
5 |
dulwich_minimum_version = (0, 3, 1) |
|
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)
|
|
10 |
bzr_plugin_version = (0, 4, 1, 'dev', 0) |
|
11 |
||
12 |
bzr_commands = ["svn-import", "svn-layout"] |
|
13 |
||
14 |
bzr_compatible_versions = [(1, x, 0) for x in [14, 15, 16, 17, 18]] |
|
15 |
||
16 |
bzr_minimum_version = bzr_compatible_versions[0] |
|
17 |
||
18 |
bzr_maximum_version = bzr_compatible_versions[-1] |
|
|
0.200.325
by Jelmer Vernooij
Set version string. |
19 |
|
|
0.200.585
by Jelmer Vernooij
Indicate .git directories are supported. |
20 |
bzr_control_formats = {"Git":{'.git/': None}} |
21 |
||
|
0.200.583
by Jelmer Vernooij
Add plugin api info. |
22 |
if __name__ == '__main__': |
23 |
from distutils.core import setup |
|
|
0.200.584
by Jelmer Vernooij
fix use with plugin-info. |
24 |
version = bzr_plugin_version[:3] |
25 |
version_string = ".".join([str(x) for x in version]) |
|
|
0.200.583
by Jelmer Vernooij
Add plugin api info. |
26 |
|
27 |
setup(name='bzr-git', |
|
28 |
description='Support for Git branches in Bazaar', |
|
29 |
keywords='plugin bzr git bazaar', |
|
30 |
version=version_string, |
|
31 |
url='http://bazaar-vcs.org/BzrForeignBranches/Git', |
|
32 |
license='GPL', |
|
33 |
maintainer='Jelmer Vernooij', |
|
34 |
maintainer_email='jelmer@samba.org', |
|
35 |
long_description=""" |
|
36 |
This plugin adds limited support for checking out and viewing
|
|
37 |
Git branches in Bazaar.
|
|
38 |
""", |
|
39 |
package_dir={'bzrlib.plugins.git':'.'}, |
|
40 |
packages=['bzrlib.plugins.git', |
|
41 |
'bzrlib.plugins.git.tests'], |
|
42 |
scripts=['bzr-receive-pack', 'bzr-upload-pack'], |
|
43 |
)
|