Show More
@@ -31,10 +31,11 b' def has_cvsps():' | |||||
31 | return matchoutput('cvsps -h -q 2>&1', r'cvsps version', True) |
|
31 | return matchoutput('cvsps -h -q 2>&1', r'cvsps version', True) | |
32 |
|
32 | |||
33 | def has_darcs(): |
|
33 | def has_darcs(): | |
34 | return matchoutput('darcs', 'darcs version', True) |
|
34 | return matchoutput('darcs', r'darcs version', True) | |
35 |
|
35 | |||
36 | def has_mtn(): |
|
36 | def has_mtn(): | |
37 | return matchoutput('mtn --version', 'monotone', True) |
|
37 | return matchoutput('mtn --version', r'monotone', True) and not matchoutput( | |
|
38 | 'mtn --version', r'monotone 0\.(\d|[12]\d|3[01])[^\d]', True) | |||
38 |
|
39 | |||
39 | def has_eol_in_paths(): |
|
40 | def has_eol_in_paths(): | |
40 | try: |
|
41 | try: | |
@@ -128,7 +129,7 b' checks = {' | |||||
128 | "git": (has_git, "git command line client"), |
|
129 | "git": (has_git, "git command line client"), | |
129 | "hotshot": (has_hotshot, "python hotshot module"), |
|
130 | "hotshot": (has_hotshot, "python hotshot module"), | |
130 | "lsprof": (has_lsprof, "python lsprof module"), |
|
131 | "lsprof": (has_lsprof, "python lsprof module"), | |
131 | "mtn": (has_mtn, "monotone client"), |
|
132 | "mtn": (has_mtn, "monotone client (> 0.31)"), | |
132 | "svn": (has_svn, "subversion client and admin tools"), |
|
133 | "svn": (has_svn, "subversion client and admin tools"), | |
133 | "svn-bindings": (has_svn_bindings, "subversion python bindings"), |
|
134 | "svn-bindings": (has_svn_bindings, "subversion python bindings"), | |
134 | "symlink": (has_symlink, "symbolic links"), |
|
135 | "symlink": (has_symlink, "symbolic links"), |
General Comments 0
You need to be logged in to leave comments.
Login now