aboutsummaryrefslogtreecommitdiffstats
path: root/build_scripts/platforms/linux.py
diff options
context:
space:
mode:
Diffstat (limited to 'build_scripts/platforms/linux.py')
-rw-r--r--build_scripts/platforms/linux.py177
1 files changed, 88 insertions, 89 deletions
diff --git a/build_scripts/platforms/linux.py b/build_scripts/platforms/linux.py
index 092660072..b4c66d94e 100644
--- a/build_scripts/platforms/linux.py
+++ b/build_scripts/platforms/linux.py
@@ -1,57 +1,26 @@
-#############################################################################
-##
-## Copyright (C) 2018 The Qt Company Ltd.
-## Contact: https://www.qt.io/licensing/
-##
-## This file is part of Qt for Python.
-##
-## $QT_BEGIN_LICENSE:LGPL$
-## Commercial License Usage
-## Licensees holding valid commercial Qt licenses may use this file in
-## accordance with the commercial license agreement provided with the
-## Software or, alternatively, in accordance with the terms contained in
-## a written agreement between you and The Qt Company. For licensing terms
-## and conditions see https://www.qt.io/terms-conditions. For further
-## information use the contact form at https://www.qt.io/contact-us.
-##
-## GNU Lesser General Public License Usage
-## Alternatively, this file may be used under the terms of the GNU Lesser
-## General Public License version 3 as published by the Free Software
-## Foundation and appearing in the file LICENSE.LGPL3 included in the
-## packaging of this file. Please review the following information to
-## ensure the GNU Lesser General Public License version 3 requirements
-## will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-##
-## GNU General Public License Usage
-## Alternatively, this file may be used under the terms of the GNU
-## General Public License version 2.0 or (at your option) the GNU General
-## Public license version 3 or any later version approved by the KDE Free
-## Qt Foundation. The licenses are as published by the Free Software
-## Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-## included in the packaging of this file. Please review the following
-## information to ensure the GNU General Public License requirements will
-## be met: https://www.gnu.org/licenses/gpl-2.0.html and
-## https://www.gnu.org/licenses/gpl-3.0.html.
-##
-## $QT_END_LICENSE$
-##
-#############################################################################
-
-import os
-from ..utils import (copydir, copyfile, copy_icu_libs, find_files_using_glob,
- linux_patch_executable)
+# Copyright (C) 2018 The Qt Company Ltd.
+# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+
+from pathlib import Path
+
+from ..log import log
from ..config import config
-from ..versions import PYSIDE
+from ..options import OPTION
+from ..utils import (copy_icu_libs, copydir, copyfile, find_files_using_glob,
+ linux_patch_executable)
+from .. import PYSIDE, PYSIDE_UNIX_BUNDLED_TOOLS
-def prepare_standalone_package_linux(self, vars):
- built_modules = vars['built_modules']
+
+def prepare_standalone_package_linux(pyside_build, _vars, cross_build=False, is_android=False):
+ built_modules = _vars['built_modules']
constrain_modules = None
copy_plugins = True
copy_qml = True
copy_translations = True
copy_qt_conf = True
- should_copy_icu_libs = True
+
+ log.info("Copying files...")
if config.is_internal_shiboken_generator_build():
constrain_modules = ["Core", "Network", "Xml", "XmlPatterns"]
@@ -59,86 +28,116 @@ def prepare_standalone_package_linux(self, vars):
copy_qml = False
copy_translations = False
copy_qt_conf = False
- should_copy_icu_libs = False
# <qt>/lib/* -> <setup>/{st_package_name}/Qt/lib
- destination_lib_dir = "{st_build_dir}/{st_package_name}/Qt/lib"
+ destination_dir = Path("{st_build_dir}/{st_package_name}".format(**_vars))
+ destination_qt_dir = destination_dir / "Qt"
+ destination_qt_lib_dir = destination_qt_dir / "lib"
+
+ # android libs does not have the Qt major version
+ if is_android:
+ lib_regex = 'libQt6*.so*'
+ else:
+ lib_regex = 'libQt6*.so.?'
- accepted_modules = ['libQt6*.so.?']
+ accepted_modules = [lib_regex]
if constrain_modules:
- accepted_modules = ["libQt6" + module + "*.so.?" for module in constrain_modules]
+ accepted_modules = [f"libQt6{module}*.so.?" if not is_android else f"libQt6{module}*.so*"
+ for module in constrain_modules]
accepted_modules.append("libicu*.so.??")
- copydir("{qt_lib_dir}", destination_lib_dir,
- filter=accepted_modules,
- recursive=False, vars=vars, force_copy_symlinks=True)
+ if is_android:
+ accepted_modules.append("*-android-dependencies.xml")
- if should_copy_icu_libs:
+ copydir("{qt_lib_dir}", destination_qt_lib_dir,
+ _filter=accepted_modules,
+ recursive=False, _vars=_vars, force_copy_symlinks=True)
+
+ if not cross_build and not is_android:
# Check if ICU libraries were copied over to the destination
# Qt libdir.
- resolved_destination_lib_dir = destination_lib_dir.format(**vars)
- maybe_icu_libs = find_files_using_glob(resolved_destination_lib_dir, "libicu*")
+ maybe_icu_libs = find_files_using_glob(destination_qt_lib_dir, "libicu*")
# If no ICU libraries are present in the Qt libdir (like when
# Qt is built against system ICU, or in the Coin CI where ICU
# libs are in a different directory) try to find out / resolve
# which ICU libs are used by QtCore (if used at all) using a
- # custom written ldd, and copy the ICU libs to the Pyside Qt
- # dir if necessary. We choose the QtCore lib to inspect, by
+ # custom written ldd (non-cross build only), and copy the ICU
+ # libs to the Pyside Qt dir if necessary.
+ # We choose the QtCore lib to inspect, by
# checking which QtCore library the shiboken6 executable uses.
if not maybe_icu_libs:
- copy_icu_libs(self._patchelf_path, resolved_destination_lib_dir)
+ copy_icu_libs(pyside_build._patchelf_path, destination_qt_lib_dir)
+
+ # Set RPATH for Qt libs.
+ if not is_android:
+ pyside_build.update_rpath_for_linux_qt_libraries(destination_qt_lib_dir)
# Patching designer to use the Qt libraries provided in the wheel
- if config.is_internal_pyside_build():
- assistant_path = "{st_build_dir}/{st_package_name}/assistant".format(**vars)
- linux_patch_executable(self._patchelf_path, assistant_path)
- designer_path = "{st_build_dir}/{st_package_name}/designer".format(**vars)
- linux_patch_executable(self._patchelf_path, designer_path)
-
- if self.is_webengine_built(built_modules):
- copydir("{qt_prefix_dir}/resources",
- "{st_build_dir}/{st_package_name}/Qt/resources",
- filter=None,
+ if config.is_internal_pyside_build() and not OPTION['NO_QT_TOOLS']:
+
+ for tool in PYSIDE_UNIX_BUNDLED_TOOLS:
+ tool_path = destination_dir / tool
+ linux_patch_executable(pyside_build._patchelf_path, tool_path)
+
+ if pyside_build.is_webengine_built(built_modules):
+ copydir("{qt_data_dir}/resources",
+ destination_qt_dir / "resources",
+ _filter=None,
recursive=False,
- vars=vars)
+ _vars=_vars)
if copy_plugins:
+ is_pypy = "pypy" in pyside_build.build_classifiers
# <qt>/plugins/* -> <setup>/{st_package_name}/Qt/plugins
- plugins_target = "{st_build_dir}/{st_package_name}/Qt/plugins"
+ plugins_target = destination_qt_dir / "plugins"
copydir("{qt_plugins_dir}", plugins_target,
- filter=["*.so"],
+ _filter=["*.so"],
recursive=True,
- vars=vars)
- copydir("{install_dir}/plugins/designer",
- f"{plugins_target}/designer",
- filter=["*.so"],
- recursive=False,
- vars=vars)
+ _vars=_vars)
+ if not is_pypy and not is_android:
+ copydir("{install_dir}/plugins/designer",
+ plugins_target / "designer",
+ _filter=["*.so"],
+ recursive=False,
+ _vars=_vars)
+
+ copied_plugins = pyside_build.get_shared_libraries_in_path_recursively(
+ plugins_target)
+ if not is_android:
+ pyside_build.update_rpath_for_linux_plugins(copied_plugins)
if copy_qml:
# <qt>/qml/* -> <setup>/{st_package_name}/Qt/qml
+ qml_plugins_target = destination_qt_dir / "qml"
copydir("{qt_qml_dir}",
- "{st_build_dir}/{st_package_name}/Qt/qml",
- filter=None,
+ qml_plugins_target,
+ _filter=None,
force=False,
recursive=True,
- ignore=["*.so.debug"],
- vars=vars)
+ ignore=["*.debug"],
+ _vars=_vars)
+ copied_plugins = pyside_build.get_shared_libraries_in_path_recursively(
+ qml_plugins_target)
+ if not is_android:
+ pyside_build.update_rpath_for_linux_plugins(
+ copied_plugins,
+ qt_lib_dir=destination_qt_lib_dir,
+ is_qml_plugin=True)
if copy_translations:
# <qt>/translations/* ->
# <setup>/{st_package_name}/Qt/translations
copydir("{qt_translations_dir}",
- "{st_build_dir}/{st_package_name}/Qt/translations",
- filter=["*.qm", "*.pak"],
+ destination_qt_dir / "translations",
+ _filter=["*.qm", "*.pak"],
force=False,
- vars=vars)
+ _vars=_vars)
if copy_qt_conf:
# Copy the qt.conf file to libexec.
- qt_libexec_path = "{st_build_dir}/{st_package_name}/Qt/libexec".format(**vars)
- if not os.path.isdir(qt_libexec_path):
- os.makedirs(qt_libexec_path)
+ qt_libexec_path = destination_qt_dir / "libexec"
+ if not qt_libexec_path.is_dir():
+ qt_libexec_path.mkdir(parents=True)
copyfile(f"{{build_dir}}/{PYSIDE}/{{st_package_name}}/qt.conf",
- qt_libexec_path, vars=vars)
+ qt_libexec_path, _vars=_vars)