mirror of
git://code.qt.io/qt/qt5.git
synced 2026-04-18 19:16:21 +08:00
Need upgrade of the IANA db to 2022g or later with Ubuntu 22.04. Ensure
zoneinfo (tzdata/timezone) always stays up to date with all Linux OS.
Both packages (tzdata/timezone) provide the same thing:
- the IANA TZ database under /usr/share/zoneinfo/
tzdata:
- Debian
- Ubuntu
- RHEL
timezone:
- openSUSE
- SLES
Pick-to: 6.10 6.8 6.5
Fixes: COIN-1282
Change-Id: I6fe7d548470d8f0f63e5451a6b5203e658575f48
Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
(cherry picked from commit 9deb066d4c)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
110 lines
3.6 KiB
Bash
Executable File
110 lines
3.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (C) 2022 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
|
|
|
|
set -ex
|
|
|
|
sudo zypper -nq install elfutils binutils
|
|
|
|
sudo zypper addrepo --no-gpgcheck https://download.opensuse.org/repositories/devel:gcc/SLE-15/devel:gcc.repo
|
|
sudo zypper refresh
|
|
sudo zypper -nq install --force-resolution gcc10 gcc10-c++
|
|
|
|
sudo /usr/sbin/update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 1 \
|
|
--slave /usr/bin/g++ g++ /usr/bin/g++-10 \
|
|
--slave /usr/bin/cc cc /usr/bin/gcc-10 \
|
|
--slave /usr/bin/c++ c++ /usr/bin/g++-10
|
|
|
|
sudo zypper -nq install git ninja make patch wget tar
|
|
|
|
sudo zypper -nq install bison flex gperf \
|
|
zlib-devel \
|
|
libudev-devel \
|
|
glib2-devel \
|
|
libopenssl-3-devel \
|
|
freetype2-devel \
|
|
fontconfig-devel \
|
|
sqlite3-devel \
|
|
libxkbcommon-devel \
|
|
libxkbcommon-x11-devel
|
|
|
|
sudo zypper -nq install cmake
|
|
|
|
sudo zypper -nq install p7zip
|
|
|
|
# EGL support
|
|
sudo zypper -nq install Mesa-libEGL-devel Mesa-libGL-devel
|
|
|
|
# ICU
|
|
sudo zypper -nq install libicu-devel libicu-suse65_1
|
|
|
|
# gtk3 style for QtGui/QStyle
|
|
sudo zypper -nq install gtk3-devel
|
|
|
|
# Xinput2
|
|
sudo zypper -nq install libXi-devel postgresql14 postgresql14-devel mysql-devel mysql mysql-server
|
|
|
|
# system provided XCB libraries
|
|
sudo zypper -nq install xcb-util-devel xcb-util-image-devel xcb-util-keysyms-devel \
|
|
xcb-util-wm-devel xcb-util-renderutil-devel
|
|
|
|
# temporary solution for libxcb-cursor0 xcb-util-cursor-devel
|
|
sudo zypper addrepo --no-gpgcheck https://download.opensuse.org/repositories/home:liangqi_qt:branches:SUSE:SLE-15-SP4:GA/standard/home:liangqi_qt:branches:SUSE:SLE-15-SP4:GA.repo
|
|
sudo zypper refresh
|
|
sudo zypper -nq install --force-resolution libxcb-cursor0 xcb-util-cursor-devel
|
|
|
|
# qtwebengine
|
|
sudo zypper -nq install alsa-devel dbus-1-devel libxkbfile-devel libdrm-devel \
|
|
libXcomposite-devel libXcursor-devel libXrandr-devel libXtst-devel \
|
|
mozilla-nspr-devel mozilla-nss-devel glproto-devel libxshmfence-devel \
|
|
libgbm-devel Mesa-dri-devel vulkan-devel
|
|
|
|
# qtwebengine, qtmultimedia+ffmpeg
|
|
sudo zypper -nq install libva-devel
|
|
|
|
# qtwebkit
|
|
sudo zypper -nq install libxml2-devel libxslt-devel
|
|
|
|
# yasm (for ffmpeg in multimedia)
|
|
sudo zypper -nq install yasm
|
|
|
|
# GStreamer (qtwebkit and qtmultimedia), pulseaudio (qtmultimedia)
|
|
sudo zypper -nq install gstreamer-devel gstreamer-plugins-base-devel libpulse-devel
|
|
|
|
# cups
|
|
sudo zypper -nq install cups-devel
|
|
|
|
# speech-dispatcher
|
|
sudo zypper -nq install libspeechd-devel
|
|
#sudo sed -i 's:includedir=/usr/include:includedir=/usr/include/speech-dispatcher:' /usr/lib64/pkgconfig/speech-dispatcher.pc
|
|
|
|
# ODBC support
|
|
sudo zypper -nq install unixODBC-devel unixODBC
|
|
|
|
# sqlite support
|
|
sudo zypper -nq install sqlite3 sqlite3-devel
|
|
|
|
# Java - needed by RTA jenkins
|
|
sudo zypper -nq install java
|
|
|
|
# open-vm-tools requires update. Version in tier1 is broken and causes segfault on boot.
|
|
sudo zypper -nq update open-vm-tools
|
|
|
|
# Tools to build Git
|
|
sudo zypper -nq install autoconf libcurl-devel libexpat-devel
|
|
|
|
# Nodejs - required by QtWebengine
|
|
sudo zypper -nq install nodejs16
|
|
|
|
# OpenSSL 3
|
|
sudo zypper -nq install openssl-3
|
|
|
|
# Keep zoneinfo up-to-date (COIN-1282)
|
|
sudo zypper -nq install timezone
|
|
|
|
gccVersion="$(gcc --version |grep -Eo '[0-9]+\.[0-9]+(\.[0-9]+)?' |head -n 1)"
|
|
echo "GCC = $gccVersion" >> versions.txt
|
|
|
|
glibcVersion="$(ldd --version |grep -Eo '[0-9]+\.[0-9]+(\.[0-9]+)?' |head -n 1)"
|
|
echo "glibc = $glibcVersion" >> versions.txt
|