mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-08-12 18:55:39 +02:00
packaging: remove Ubuntu 23.10 (EOL)
Support for Ubuntu 23.10 ended in July 2024. Change-Id: I5ba01081c00711d2852236e12d978073f5447b6b
This commit is contained in:
parent
32a44c9820
commit
ca74c961ef
3 changed files with 0 additions and 33 deletions
|
@ -166,7 +166,6 @@ DISTRIBUTIONS := \
|
||||||
debian_unstable \
|
debian_unstable \
|
||||||
ubuntu_20.04 \
|
ubuntu_20.04 \
|
||||||
ubuntu_22.04 \
|
ubuntu_22.04 \
|
||||||
ubuntu_23.10 \
|
|
||||||
ubuntu_24.04 \
|
ubuntu_24.04 \
|
||||||
ubuntu_24.10 \
|
ubuntu_24.10 \
|
||||||
fedora_37 \
|
fedora_37 \
|
||||||
|
|
|
@ -1,30 +0,0 @@
|
||||||
FROM ubuntu:23.10
|
|
||||||
|
|
||||||
ENV DEBIAN_FRONTEND=noninteractive
|
|
||||||
|
|
||||||
RUN apt-get clean
|
|
||||||
RUN apt-get update && \
|
|
||||||
apt-get install -y -o Acquire::Retries=10 \
|
|
||||||
devscripts \
|
|
||||||
equivs \
|
|
||||||
python-is-python3 \
|
|
||||||
wget
|
|
||||||
|
|
||||||
# The default compiler on Ubuntu 23.10, GCC 13.2.0, is unable to build one of Qt 6.6.1's
|
|
||||||
# dependencies, see:
|
|
||||||
# https://github.com/qt/qtquick3d-assimp/commit/253f8bfa621a9fa6cd2c36291cdaa8c60c99322c
|
|
||||||
# The linked commit above fixes the problem and is included in more recent versions of Qt.
|
|
||||||
# For now, we use GCC 12 as a temporary workaround:
|
|
||||||
ADD extras/packaging/gnu-linux/scripts/install-gcc-debian.sh /opt/install-gcc-debian.sh
|
|
||||||
RUN /opt/install-gcc-debian.sh 12
|
|
||||||
|
|
||||||
ADD extras/packaging/gnu-linux/scripts/prebuild-package-debian.sh /opt/prebuild-package-debian.sh
|
|
||||||
|
|
||||||
COPY extras/packaging/gnu-linux/rules/debian-qt/control /tmp/builddeps/debian/control
|
|
||||||
RUN /opt/prebuild-package-debian.sh qt-deps
|
|
||||||
|
|
||||||
COPY extras/packaging/gnu-linux/rules/debian/control /tmp/builddeps/debian/control
|
|
||||||
RUN /opt/prebuild-package-debian.sh jami-deps
|
|
||||||
|
|
||||||
ADD extras/packaging/gnu-linux/scripts/build-package-debian.sh /opt/build-package-debian.sh
|
|
||||||
CMD ["/opt/build-package-debian.sh"]
|
|
|
@ -99,8 +99,6 @@ if [ -f /etc/os-release ]; then
|
||||||
ENDTAG="ubuntu_20.04"
|
ENDTAG="ubuntu_20.04"
|
||||||
elif [ "${UBUNTU_CODENAME}" = "jammy" ] || [ "${ID}_${VERSION_ID}" = "ubuntu_22.04" ]; then
|
elif [ "${UBUNTU_CODENAME}" = "jammy" ] || [ "${ID}_${VERSION_ID}" = "ubuntu_22.04" ]; then
|
||||||
ENDTAG="ubuntu_22.04"
|
ENDTAG="ubuntu_22.04"
|
||||||
elif [ "${UBUNTU_CODENAME}" = "mantic" ] || [ "${ID}_${VERSION_ID}" = "ubuntu_23.10" ]; then
|
|
||||||
ENDTAG="ubuntu_23.10"
|
|
||||||
elif [ "${UBUNTU_CODENAME}" = "noble" ] || [ "${ID}_${VERSION_ID}" = "ubuntu_24.04" ]; then
|
elif [ "${UBUNTU_CODENAME}" = "noble" ] || [ "${ID}_${VERSION_ID}" = "ubuntu_24.04" ]; then
|
||||||
ENDTAG="ubuntu_24.04"
|
ENDTAG="ubuntu_24.04"
|
||||||
elif [ "${UBUNTU_CODENAME}" = "oracular" ] || [ "${ID}_${VERSION_ID}" = "ubuntu_24.10" ]; then
|
elif [ "${UBUNTU_CODENAME}" = "oracular" ] || [ "${ID}_${VERSION_ID}" = "ubuntu_24.10" ]; then
|
||||||
|
|
Loading…
Add table
Reference in a new issue