File: 02_version_check

package info (click to toggle)
bzrtools 2.6.0-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 740 kB
  • sloc: python: 4,299; sh: 13; makefile: 10
file content (100 lines) | stat: -rw-r--r-- 3,450 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
Description: Disable version checking
Author: Jelmer Vernooij <jelmer@samba.org>

=== modified file 'command.py'
--- old/command.py	2011-04-15 02:33:36 +0000
+++ new/command.py	2012-04-02 01:13:56 +0000
@@ -16,91 +16,4 @@
 #    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 
-import bzrlib
-from bzrlib import commands
-
-from version import version_info, __version__
-
-
-_testing = False
-# True if we are currently testing commands via the test suite.
-
-def _stop_testing():
-    """Set the _testing flag to indicate we are no longer testing."""
-    global _testing
-    _testing = False
-
-
-class BzrToolsCommand(commands.Command):
-
-    def run_argv_aliases(self, argv, alias_argv=None):
-        result = check_bzrlib_version(version_info[:2])
-        if result is not None:
-            return result
-        commands.Command.run_argv_aliases(self, argv, alias_argv)
-
-
-TOO_OLD = 'too_old'
-COMPATIBLE = 'compatible'
-MAYBE_TOO_NEW = 'maybe_too_new'
-TOO_NEW = 'too_new'
-
-
-def check_version_compatibility(bzrlib_version, min_version, max_version):
-    """Check whether a bzrlib version is compatible with desired version.
-
-    If the bzrlib_version is not less than min_version and not greater than
-    max_version, it is considered COMPATIBLE.  If the version exceeds
-    max_version by 1 and is not a 'candidate' or 'final' version, it is
-    considered MAYBE_TOO_NEW.  Other values greater than max_version are
-    considered TOO_NEW, and values lower than min_version are considered
-    TOO_OLD.
-    """
-    bzrlib_version = bzrlib.version_info[:2]
-    if bzrlib_version < min_version:
-        return TOO_OLD
-    if bzrlib_version <= max_version:
-        return COMPATIBLE
-    max_plus = (max_version[0], max_version[1] + 1)
-    if bzrlib_version == max_plus:
-        if bzrlib.version_info[3] not in ('final', 'candidate'):
-            return COMPATIBLE
-        return MAYBE_TOO_NEW
-    return TOO_NEW
-
-
-def check_bzrlib_version(desired):
-    """Check that bzrlib is compatible.
-
-    If version is < bzrtools version, assume incompatible.
-    If version == bzrtools version, assume completely compatible
-    If version == bzrtools version + 1, assume compatible, with deprecations
-    Otherwise, assume incompatible.
-    """
-    global _testing
-    if _testing:
-        return
-    compatibility = check_version_compatibility(bzrlib.version_info, desired,
-                                                desired)
-    if compatibility == COMPATIBLE:
-        return
-    try:
-        from bzrlib.trace import warning
-    except ImportError:
-        # get the message out any way we can
-        from warnings import warn as warning
-    if compatibility == TOO_OLD:
-        warning('Bazaar version %s is too old to be used with'
-                ' plugin "Bzrtools" %s.' % (
-                bzrlib.__version__, __version__))
-        # Not using BzrNewError, because it may not exist.
-        return 3
-    else:
-        warning('Plugin "Bzrtools" is not up to date with installed Bazaar'
-                ' version %s.\n'
-                'There should be a newer version of Bzrtools available, e.g.'
-                ' %i.%i.'
-                % (bzrlib.__version__, bzrlib.version_info[0],
-                   bzrlib.version_info[1]))
-        if compatibility == TOO_NEW:
-            return 3
+from bzrlib.commands import Command as BzrToolsCommand