##// END OF EJS Templates
hghave: add cvsnt...
timeless -
r28796:08a686a4 default
parent child Browse files
Show More
@@ -134,6 +134,11 b' def has_cvs112():'
134 re = r'Concurrent Versions System \(CVS\) 1.12.*?server'
134 re = r'Concurrent Versions System \(CVS\) 1.12.*?server'
135 return matchoutput('cvs --version 2>&1', re) and not has_msys()
135 return matchoutput('cvs --version 2>&1', re) and not has_msys()
136
136
137 @check("cvsnt", "cvsnt client/server")
138 def has_cvsnt():
139 re = r'Concurrent Versions System \(CVSNT\) (\d+).(\d+).*\(client/server\)'
140 return matchoutput('cvsnt --version 2>&1', re)
141
137 @check("darcs", "darcs client")
142 @check("darcs", "darcs client")
138 def has_darcs():
143 def has_darcs():
139 return matchoutput('darcs --version', r'2\.[2-9]', True)
144 return matchoutput('darcs --version', r'2\.[2-9]', True)
General Comments 0
You need to be logged in to leave comments. Login now