Skip to content

Commit

Permalink
tools: prepare tools/install.py for Python 3
Browse files Browse the repository at this point in the history
PR-URL: #24800
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
  • Loading branch information
cclauss authored and BridgeAR committed Dec 7, 2018
1 parent 73bc5fd commit 249c143
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions tools/install.py
@@ -1,5 +1,6 @@
#!/usr/bin/env python

from __future__ import print_function
import ast
import errno
import os
Expand All @@ -25,27 +26,27 @@ def load_config():
def try_unlink(path):
try:
os.unlink(path)
except OSError, e:
except OSError as e:
if e.errno != errno.ENOENT: raise

def try_symlink(source_path, link_path):
print 'symlinking %s -> %s' % (source_path, link_path)
print('symlinking %s -> %s' % (source_path, link_path))
try_unlink(link_path)
try_mkdir_r(os.path.dirname(link_path))
os.symlink(source_path, link_path)

def try_mkdir_r(path):
try:
os.makedirs(path)
except OSError, e:
except OSError as e:
if e.errno != errno.EEXIST: raise

def try_rmdir_r(path):
path = abspath(path)
while path.startswith(install_path):
try:
os.rmdir(path)
except OSError, e:
except OSError as e:
if e.errno == errno.ENOTEMPTY: return
if e.errno == errno.ENOENT: return
raise
Expand All @@ -60,14 +61,14 @@ def mkpaths(path, dst):

def try_copy(path, dst):
source_path, target_path = mkpaths(path, dst)
print 'installing %s' % target_path
print('installing %s' % target_path)
try_mkdir_r(os.path.dirname(target_path))
try_unlink(target_path) # prevent ETXTBSY errors
return shutil.copy2(source_path, target_path)

def try_remove(path, dst):
source_path, target_path = mkpaths(path, dst)
print 'removing %s' % target_path
print('removing %s' % target_path)
try_unlink(target_path)
try_rmdir_r(os.path.dirname(target_path))

Expand Down

0 comments on commit 249c143

Please sign in to comment.