From e407217efc00ad9435dc4400a0fa03b28dec944b Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 26 Nov 2021 18:39:26 +0100 Subject: scripts: Disable duplicate file removing for macOS for now --- scripts/dev/build_release.py | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) (limited to 'scripts') diff --git a/scripts/dev/build_release.py b/scripts/dev/build_release.py index a8c9177ad..cfa5cf892 100755 --- a/scripts/dev/build_release.py +++ b/scripts/dev/build_release.py @@ -232,23 +232,23 @@ def patch_mac_app(): plistlib.dump(plist_data, f) # Replace some duplicate files by symlinks - framework_path = os.path.join(app_path, 'Contents', 'MacOS', 'PyQt6', - 'Qt', 'lib', 'QtWebEngineCore.framework') - - core_lib = os.path.join(framework_path, 'Versions', '6', 'QtWebEngineCore') - os.remove(core_lib) - core_target = os.path.join(*[os.pardir] * 7, 'MacOS', 'QtWebEngineCore') - os.symlink(core_target, core_lib) - - framework_resource_path = os.path.join(framework_path, 'Resources') - for name in os.listdir(framework_resource_path): - file_path = os.path.join(framework_resource_path, name) - target = os.path.join(*[os.pardir] * 5, name) - if os.path.isdir(file_path): - shutil.rmtree(file_path) - else: - os.remove(file_path) - os.symlink(target, file_path) + #framework_path = os.path.join(app_path, 'Contents', 'MacOS', 'PyQt6', + # 'Qt', 'lib', 'QtWebEngineCore.framework') + + #core_lib = os.path.join(framework_path, 'Versions', '6', 'QtWebEngineCore') + #os.remove(core_lib) + #core_target = os.path.join(*[os.pardir] * 7, 'MacOS', 'QtWebEngineCore') + #os.symlink(core_target, core_lib) + + #framework_resource_path = os.path.join(framework_path, 'Resources') + #for name in os.listdir(framework_resource_path): + # file_path = os.path.join(framework_resource_path, name) + # target = os.path.join(*[os.pardir] * 5, name) + # if os.path.isdir(file_path): + # shutil.rmtree(file_path) + # else: + # os.remove(file_path) + # os.symlink(target, file_path) INFO_PLIST_UPDATES = { -- cgit v1.2.3-54-g00ecf