bzr branch
http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
|
0.217.10
by John Carr
Script so git can push to bazaar |
1 |
#!/usr/bin/env python
|
|
0.200.1070
by Jelmer Vernooij
Fix `bzr-receive-pack` and `bzr-upload-pack`. |
2 |
|
|
0.200.1646
by Jelmer Vernooij
Rename bzrlib to breezy. |
3 |
import breezy |
|
7290.32.1
by Jelmer Vernooij
Remove references to breezy.plugins.git. |
4 |
import breezy.bzr |
5 |
import breezy.git |
|
6 |
from breezy.git.server import BzrBackend |
|
|
0.200.1070
by Jelmer Vernooij
Fix `bzr-receive-pack` and `bzr-upload-pack`. |
7 |
from dulwich.server import ReceivePackHandler, serve_command |
|
0.217.10
by John Carr
Script so git can push to bazaar |
8 |
import sys, os |
9 |
||
|
0.200.1070
by Jelmer Vernooij
Fix `bzr-receive-pack` and `bzr-upload-pack`. |
10 |
if len(sys.argv) < 2: |
|
7290.32.1
by Jelmer Vernooij
Remove references to breezy.plugins.git. |
11 |
print("usage: %s <git-dir>" % os.path.basename(sys.argv[0])) |
|
0.217.10
by John Carr
Script so git can push to bazaar |
12 |
sys.exit(1) |
|
0.200.1070
by Jelmer Vernooij
Fix `bzr-receive-pack` and `bzr-upload-pack`. |
13 |
|
|
0.200.1646
by Jelmer Vernooij
Rename bzrlib to breezy. |
14 |
backend = BzrBackend(breezy.transport.get_transport("/")) |
|
0.200.1070
by Jelmer Vernooij
Fix `bzr-receive-pack` and `bzr-upload-pack`. |
15 |
sys.exit(serve_command(ReceivePackHandler, backend=backend)) |