~ubuntu-branches/ubuntu/natty/bzr-fastimport/natty

« back to all changes in this revision

Viewing changes to info.py

  • Committer: Bazaar Package Importer
  • Author(s): Jelmer Vernooij
  • Date: 2011-04-04 13:36:36 UTC
  • mfrom: (1.1.9 upstream) (0.1.13 sid)
  • Revision ID: james.westby@ubuntu.com-20110404133636-pyfjkipacsklxyic
Tags: 0.10.0+bzr311-1
* Suggest python-subvertpy, which includes a Subversion fast exporter.
* New upstream snapshot.
* Suggest monotone, which comes with a fast exporter.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
bzr_plugin_name = 'fastimport'
 
3
 
 
4
bzr_commands = [
 
5
    "fast-import",
 
6
    "fast-import-filter",
 
7
    "fast-import-info",
 
8
    "fast-import-query",
 
9
    "fast-export",
 
10
    "fast-export-from-cvs",
 
11
    "fast-export-from-darcs",
 
12
    "fast-export-from-hg",
 
13
    "fast-export-from-git",
 
14
    "fast-export-from-mtn",
 
15
    "fast-export-from-p4",
 
16
    "fast-export-from-svn",
 
17
    ]
 
18
 
 
19
bzr_plugin_version = (0, 11, 0, 'dev', 0)
 
20
bzr_minimum_version = (2, 0, 0)
 
21
bzr_maximum_version = None