~ubuntu-branches/ubuntu/raring/bzr-svn/raring

« back to all changes in this revision

Viewing changes to .pc/debian-changes-1.0.3-1/info.py

  • Committer: Bazaar Package Importer
  • Author(s): Jelmer Vernooij
  • Date: 2010-07-30 23:14:36 UTC
  • mfrom: (1.1.28 upstream) (3.3.4 sid)
  • Revision ID: james.westby@ubuntu.com-20100730231436-po8j0ibgjn2d6hy0
Tags: 1.0.3-1
* New upstream release.
 + Provides BranchConfig._get_change_editor. Closes: #572109
 + Supports more trunk layout levels. Closes: #573988
* Bump standards version to 3.9.1.
* Mark as supporting bzr 2.2.
* Suggest bzr-rewrite rather than bzr-rebase. LP: #481730

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
# API Info for bzr-svn
 
3
 
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; either version 2 of the License, or
 
7
# (at your option) any later version.
 
8
 
 
9
# This program is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
# GNU General Public License for more details.
 
13
 
 
14
# You should have received a copy of the GNU General Public License
 
15
# along with this program; if not, write to the Free Software
 
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
 
 
18
bzr_plugin_name = "svn"
 
19
 
 
20
subvertpy_minimum_version = (0, 6, 1)
 
21
 
 
22
# versions ending in 'exp' mean experimental mappings
 
23
# versions ending in 'dev' mean development version
 
24
# versions ending in 'final' mean release (well tested, etc)
 
25
bzr_plugin_version = (1, 0, 3, 'final', 0)
 
26
 
 
27
bzr_commands = ["svn-import", "svn-layout"]
 
28
 
 
29
bzr_transports = ["svn://", "svn+"]
 
30
 
 
31
bzr_compatible_versions = [(2, x, 0) for x in [0, 1, 2]]
 
32
 
 
33
bzr_minimum_version = bzr_compatible_versions[0]
 
34
 
 
35
bzr_maximum_version = bzr_compatible_versions[-1]
 
36
 
 
37
bzr_control_formats = {"Subversion":{'.svn/': None}}
 
38
 
 
39