Port macdeploy to python 3

This commit is contained in:
John Maguire 2020-08-25 17:09:41 +01:00 committed by John Maguire
parent d131c66f02
commit 1c0c3fc2d2
1 changed files with 8 additions and 8 deletions

16
dist/macdeploy.py vendored
View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/python3
# This file is part of Clementine.
#
@ -165,7 +165,7 @@ class CouldNotParseFrameworkNameError(Error):
if len(sys.argv) < 2:
print 'Usage: %s <bundle.app>' % sys.argv[0]
print('Usage: %s <bundle.app>' % sys.argv[0])
bundle_dir = sys.argv[1]
@ -186,7 +186,7 @@ fixed_frameworks = set()
def GetBrokenLibraries(binary):
output = subprocess.Popen(
[OTOOL, '-L', binary], stdout=subprocess.PIPE).communicate()[0]
[OTOOL, '-L', binary], stdout=subprocess.PIPE).communicate()[0].decode('utf-8')
broken_libs = {'frameworks': [], 'libs': []}
for line in [x.split(' ')[0].lstrip() for x in output.split('\n')[1:]]:
if not line: # skip empty lines
@ -480,18 +480,18 @@ def main():
FixPlugin('clementine-spotifyblob', '.')
FixPlugin('clementine-tagreader', '.')
except:
print 'Failed to find blob: %s' % traceback.format_exc()
print('Failed to find blob: %s' % traceback.format_exc())
for plugin in QT_PLUGINS:
FixPlugin(FindQtPlugin(plugin), os.path.dirname(plugin))
if len(sys.argv) <= 2:
print 'Would run %d commands:' % len(commands)
print('Would run %d commands:' % len(commands))
for command in commands:
print ' '.join(command)
print(' '.join(command))
print 'OK?'
raw_input()
print('OK?')
input()
for command in commands:
p = subprocess.Popen(command)