2023-09-28 22:04:07 +02:00
|
|
|
#! /bin/sh
|
|
|
|
#
|
|
|
|
# Install dependencies for the nightly-opensuse build
|
|
|
|
#
|
|
|
|
zypper --non-interactive up
|
2023-10-03 14:08:30 +02:00
|
|
|
zypper --non-interactive in git-core jq curl ninja
|
2023-09-28 22:04:07 +02:00
|
|
|
# From deploycala.py
|
|
|
|
zypper --non-interactive in \
|
2023-09-28 22:22:43 +02:00
|
|
|
"bison" \
|
|
|
|
"flex" \
|
|
|
|
"git" \
|
|
|
|
"make" \
|
|
|
|
"cmake" \
|
|
|
|
"gcc-c++"
|
2023-09-28 22:04:07 +02:00
|
|
|
zypper --non-interactive in \
|
2023-09-28 22:22:43 +02:00
|
|
|
"libqt5-qtbase-devel" \
|
|
|
|
"libqt5-qtdeclarative-devel" \
|
2023-10-23 09:33:07 +02:00
|
|
|
"cmake(Qt5LinguistTools)" \
|
|
|
|
"cmake(Qt5Svg)" \
|
|
|
|
"cmake(Qt5WebEngine)" \
|
|
|
|
"cmake(PolkitQt5-1)" \
|
2023-09-28 22:22:43 +02:00
|
|
|
"yaml-cpp-devel" \
|
|
|
|
"libpwquality-devel" \
|
|
|
|
"parted-devel" \
|
2023-10-23 22:45:06 +02:00
|
|
|
"python311-devel" \
|
2023-09-28 22:22:43 +02:00
|
|
|
"libboost_headers-devel" \
|
|
|
|
"libboost_python3-devel"
|
2023-09-28 22:04:07 +02:00
|
|
|
zypper --non-interactive in \
|
2023-09-28 22:22:43 +02:00
|
|
|
"extra-cmake-modules" \
|
2023-10-23 09:33:07 +02:00
|
|
|
"cmake(KF5Crash)" \
|
|
|
|
"cmake(KF5DBusAddons)" \
|
|
|
|
"cmake(KF5Package)" \
|
|
|
|
"cmake(KF5Parts)" \
|
|
|
|
"cmake(KF5Plasma)" \
|
|
|
|
"cmake(KF5Service)" \
|
|
|
|
"cmake(KPMcore)" \
|
|
|
|
"cmake(LibKWorkspace)"
|
2023-09-28 22:04:07 +02:00
|
|
|
# Additional dependencies
|
|
|
|
zypper --non-interactive in \
|
2023-09-28 22:22:43 +02:00
|
|
|
libicu-devel \
|
|
|
|
libAppStreamQt-devel \
|
|
|
|
libatasmart-devel
|
2023-10-29 21:47:03 +01:00
|
|
|
|
|
|
|
# Not actual dependencies, but good to have
|
|
|
|
zypper --non-interactive in python311-PyYAML python311-jsonschema
|
2023-12-24 23:37:36 +01:00
|
|
|
# vi to edit things inside the docker
|
|
|
|
zypper --non-interactive in vim
|
|
|
|
# noto so that running Calamares in the docker is readable
|
|
|
|
zypper --non-interactive in noto-sans-fonts
|
2023-10-31 16:29:54 +01:00
|
|
|
true
|