prevent using svn when Mac does not have xcode-tools installed

This commit is contained in:
Alan Hamlett 2016-05-16 16:02:38 +02:00
parent 8ecba162aa
commit bb71ff3106
2 changed files with 31 additions and 16 deletions

View file

@ -38,7 +38,6 @@ setup(
'Intended Audience :: Developers', 'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License', 'License :: OSI Approved :: BSD License',
'Natural Language :: English', 'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Text Editors', 'Topic :: Text Editors',
'Programming Language :: Python', 'Programming Language :: Python',
'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2',

View file

@ -62,21 +62,22 @@ class Subversion(BaseProject):
def _get_info(self, path): def _get_info(self, path):
info = OrderedDict() info = OrderedDict()
stdout = None if not self._is_mac() or self._has_xcode_tools():
try: stdout = None
os.environ['LANG'] = 'en_US' try:
stdout, stderr = Popen([ os.environ['LANG'] = 'en_US'
self._find_binary(), 'info', os.path.realpath(path) stdout, stderr = Popen([
], stdout=PIPE, stderr=PIPE).communicate() self._find_binary(), 'info', os.path.realpath(path)
except OSError: ], stdout=PIPE, stderr=PIPE).communicate()
pass except OSError:
else: pass
if stdout: else:
for line in stdout.splitlines(): if stdout:
line = u(line) for line in stdout.splitlines():
line = line.split(': ', 1) line = u(line)
if len(line) == 2: line = line.split(': ', 1)
info[line[0]] = line[1] if len(line) == 2:
info[line[0]] = line[1]
return info return info
def _find_project_base(self, path, found=False): def _find_project_base(self, path, found=False):
@ -97,3 +98,18 @@ class Subversion(BaseProject):
return found return found
return self._find_project_base(split_path[0], found) return self._find_project_base(split_path[0], found)
def _is_mac(self):
return platform.system() == 'Darwin'
def _has_xcode_tools(self):
try:
with open(os.devnull, 'wb') as DEVNULL:
proc = Popen(['/usr/bin/xcode-select', '-p'], stdout=DEVNULL, stderr=DEVNULL)
proc.communicate()
retval = proc.wait()
if retval == 0:
return True
except:
pass
return False