Rev 5403: (jelmer) Add development8-subtree development format which combines nested in file:///home/pqm/archives/thelove/bzr/%2Btrunk/
Canonical.com Patch Queue Manager
pqm at pqm.ubuntu.com
Wed Sep 1 12:27:44 BST 2010
At file:///home/pqm/archives/thelove/bzr/%2Btrunk/
------------------------------------------------------------
revno: 5403 [merge]
revision-id: pqm at pqm.ubuntu.com-20100901112740-kt9s91eujt7ayp3m
parent: pqm at pqm.ubuntu.com-20100901100941-6n7jm02xg6aj2fxw
parent: jelmer at samba.org-20100825021631-tonthyyjrp6ge2mq
committer: Canonical.com Patch Queue Manager <pqm at pqm.ubuntu.com>
branch nick: +trunk
timestamp: Wed 2010-09-01 12:27:40 +0100
message:
(jelmer) Add development8-subtree development format which combines nested
tree support and CHK repositories. (Jelmer Vernooij)
modified:
NEWS NEWS-20050323055033-4e00b5db738777ff
bzrlib/bzrdir.py bzrdir.py-20060131065624-156dfea39c4387cb
bzrlib/repofmt/groupcompress_repo.py repofmt.py-20080715094215-wp1qfvoo7093c8qr-1
bzrlib/repofmt/pack_repo.py pack_repo.py-20070813041115-gjv5ma7ktfqwsjgn-1
bzrlib/repository.py rev_storage.py-20051111201905-119e9401e46257e3
=== modified file 'NEWS'
--- a/NEWS 2010-09-01 10:09:41 +0000
+++ b/NEWS 2010-09-01 11:27:40 +0000
@@ -73,6 +73,9 @@
``bzr launchpad-login user && bzr push lp:~/project/branch`` will now
push to ``lp:~user/project/branch``. (John Arbash Meinel)
+* New development format ``development8-subtree`` which is similar to the
+ ``2a`` format and adds subtree support. (Jelmer Vernooij)
+
Bug Fixes
*********
=== modified file 'bzrlib/bzrdir.py'
--- a/bzrlib/bzrdir.py 2010-08-23 20:37:18 +0000
+++ b/bzrlib/bzrdir.py 2010-08-25 02:16:31 +0000
@@ -3290,8 +3290,24 @@
alias=True,
hidden=True,
)
+register_metadir(controldir.format_registry, 'development5-subtree',
+ 'bzrlib.repofmt.pack_repo.RepositoryFormatPackDevelopment2Subtree',
+ help='Development format, subtree variant. Can convert data to and '
+ 'from pack-0.92-subtree (and anything compatible with '
+ 'pack-0.92-subtree) format repositories. Repositories and branches in '
+ 'this format can only be read by bzr.dev. Please read '
+ 'http://doc.bazaar.canonical.com/latest/developers/development-repo.html '
+ 'before use.',
+ branch_format='bzrlib.branch.BzrBranchFormat7',
+ tree_format='bzrlib.workingtree.WorkingTreeFormat6',
+ experimental=True,
+ hidden=True,
+ alias=False,
+ )
+
+
register_metadir(controldir.format_registry, 'development-subtree',
- 'bzrlib.repofmt.pack_repo.RepositoryFormatPackDevelopment2Subtree',
+ 'bzrlib.repofmt.groupcompress_repo.RepositoryFormat2aSubtree',
help='Current development format, subtree variant. Can convert data to and '
'from pack-0.92-subtree (and anything compatible with '
'pack-0.92-subtree) format repositories. Repositories and branches in '
@@ -3341,7 +3357,7 @@
# 'rich roots. Supported by bzr 1.16 and later.',
branch_format='bzrlib.branch.BzrBranchFormat7',
tree_format='bzrlib.workingtree.WorkingTreeFormat6',
- experimental=True,
+ experimental=False,
)
# The following format should be an alias for the rich root equivalent
=== modified file 'bzrlib/repofmt/groupcompress_repo.py'
--- a/bzrlib/repofmt/groupcompress_repo.py 2010-08-23 17:54:07 +0000
+++ b/bzrlib/repofmt/groupcompress_repo.py 2010-09-01 11:27:40 +0000
@@ -1428,3 +1428,28 @@
"""See RepositoryFormat.get_format_description()."""
return ("Repository format 2a - rich roots, group compression"
" and chk inventories")
+
+
+class RepositoryFormat2aSubtree(RepositoryFormat2a):
+ """A 2a repository format that supports nested trees.
+
+ """
+
+ def _get_matching_bzrdir(self):
+ return bzrdir.format_registry.make_bzrdir('development-subtree')
+
+ def _ignore_setting_bzrdir(self, format):
+ pass
+
+ _matchingbzrdir = property(_get_matching_bzrdir, _ignore_setting_bzrdir)
+
+ def get_format_string(self):
+ return ('Bazaar development format 8\n')
+
+ def get_format_description(self):
+ """See RepositoryFormat.get_format_description()."""
+ return ("Development repository format 8 - nested trees, "
+ "group compression and chk inventories")
+
+ experimental = True
+ supports_tree_reference = True
=== modified file 'bzrlib/repofmt/pack_repo.py'
--- a/bzrlib/repofmt/pack_repo.py 2010-08-05 19:25:52 +0000
+++ b/bzrlib/repofmt/pack_repo.py 2010-09-01 11:27:40 +0000
@@ -2918,7 +2918,7 @@
def _get_matching_bzrdir(self):
return bzrdir.format_registry.make_bzrdir(
- 'development-subtree')
+ 'development5-subtree')
def _ignore_setting_bzrdir(self, format):
pass
=== modified file 'bzrlib/repository.py'
--- a/bzrlib/repository.py 2010-08-17 22:24:01 +0000
+++ b/bzrlib/repository.py 2010-08-25 02:16:31 +0000
@@ -3389,6 +3389,11 @@
'bzrlib.repofmt.groupcompress_repo',
'RepositoryFormat2a',
)
+format_registry.register_lazy(
+ 'Bazaar development format 8\n',
+ 'bzrlib.repofmt.groupcompress_repo',
+ 'RepositoryFormat2aSubtree',
+ )
class InterRepository(InterObject):
More information about the bazaar-commits
mailing list