~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/pack_repo.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-08-17 18:18:18 UTC
  • mfrom: (4618.2.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20090817181818-6ks7pxgiwpqvsd3l
(vila) Make selftest --parallel=fork work again

Show diffs side-by-side

added added

removed removed

Lines of Context:
2529
2529
        """See RepositoryFormat.get_format_description()."""
2530
2530
        return "Packs containing knits without subtree support"
2531
2531
 
 
2532
    def check_conversion_target(self, target_format):
 
2533
        pass
 
2534
 
2532
2535
 
2533
2536
class RepositoryFormatKnitPack3(RepositoryFormatPack):
2534
2537
    """A subtrees parameterized Pack repository.
2644
2647
        """See RepositoryFormat.get_format_description()."""
2645
2648
        return "Packs 5 (adds stacking support, requires bzr 1.6)"
2646
2649
 
 
2650
    def check_conversion_target(self, target_format):
 
2651
        pass
 
2652
 
2647
2653
 
2648
2654
class RepositoryFormatKnitPack5RichRoot(RepositoryFormatPack):
2649
2655
    """A repository with rich roots and stacking.
2765
2771
        """See RepositoryFormat.get_format_description()."""
2766
2772
        return "Packs 6 (uses btree indexes, requires bzr 1.9)"
2767
2773
 
 
2774
    def check_conversion_target(self, target_format):
 
2775
        pass
 
2776
 
2768
2777
 
2769
2778
class RepositoryFormatKnitPack6RichRoot(RepositoryFormatPack):
2770
2779
    """A repository with rich roots, no subtrees, stacking and btree indexes.