mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-06 17:36:14 +01:00
51e3e7d9ae
Meson 1.5.1 is available in the fd.o SDK and in Debian testing, so the glib Meson policy says we can update. Update the minimum only as far as 1.4.0 because we don't yet have a need for 1.5.0. This allows us to: - Use file.full_path() to avoid deprecation warnings on str.format(file). - Set c_std=gnu99,c99 to avoid deprecation warnings with gnu99 on MSVC. Update all the CI builds to use the latest 1.4.x patch release, 1.4.2. The FreeBSD runner cannot be updated via `gitlab-ci.yml`, so will be broken for now. Similarly, the macOS build will not work unless `-Dc_std=gnu99` is specified at configure time, due to https://github.com/mesonbuild/meson/issues/13639.
87 lines
1.7 KiB
Docker
87 lines
1.7 KiB
Docker
FROM debian:bookworm
|
|
|
|
RUN apt-get update -qq && apt-get install --no-install-recommends -qq -y \
|
|
bindfs \
|
|
black \
|
|
clang \
|
|
clang-tools \
|
|
clang-format \
|
|
dbus \
|
|
desktop-file-utils \
|
|
elfutils \
|
|
findutils \
|
|
flake8 \
|
|
fuse \
|
|
gcc \
|
|
gdb \
|
|
g++ \
|
|
gettext \
|
|
gi-docgen \
|
|
git \
|
|
libc6-dev \
|
|
gobject-introspection \
|
|
gtk-doc-tools \
|
|
itstool \
|
|
lcov \
|
|
libattr1-dev \
|
|
libdbus-1-dev \
|
|
libelf-dev \
|
|
libffi-dev \
|
|
libgirepository1.0-dev \
|
|
libmount-dev \
|
|
libpcre2-dev \
|
|
libselinux1-dev \
|
|
libxml2-utils \
|
|
libxslt1-dev \
|
|
libz3-dev \
|
|
locales \
|
|
ninja-build \
|
|
python3 \
|
|
python3-pip \
|
|
python3-setuptools \
|
|
python3-wheel \
|
|
reuse \
|
|
shared-mime-info \
|
|
shellcheck \
|
|
systemtap-sdt-dev \
|
|
unzip \
|
|
wget \
|
|
xsltproc \
|
|
xz-utils \
|
|
zlib1g-dev \
|
|
&& rm -rf /usr/share/doc/* /usr/share/man/*
|
|
|
|
# Locale for our build
|
|
RUN locale-gen C.UTF-8 && /usr/sbin/update-locale LANG=C.UTF-8
|
|
|
|
# Locales for our tests
|
|
RUN locale-gen de_DE.UTF-8 \
|
|
&& locale-gen el_GR.UTF-8 \
|
|
&& locale-gen en_US.UTF-8 \
|
|
&& locale-gen es_ES.UTF-8 \
|
|
&& locale-gen fa_IR.UTF-8 \
|
|
&& locale-gen fr_FR.UTF-8 \
|
|
&& locale-gen hr_HR.UTF-8 \
|
|
&& locale-gen ja_JP.UTF-8 \
|
|
&& locale-gen lt_LT.UTF-8 \
|
|
&& locale-gen pl_PL.UTF-8 \
|
|
&& locale-gen ru_RU.UTF-8 \
|
|
&& locale-gen th_TH.UTF-8 \
|
|
&& locale-gen tr_TR.UTF-8
|
|
|
|
ENV LANG=C.UTF-8 LANGUAGE=C.UTF-8 LC_ALL=C.UTF-8
|
|
|
|
RUN pip3 install --break-system-packages meson==1.4.2
|
|
|
|
ARG HOST_USER_ID=5555
|
|
ENV HOST_USER_ID ${HOST_USER_ID}
|
|
RUN useradd -u $HOST_USER_ID -ms /bin/bash user
|
|
|
|
USER user
|
|
WORKDIR /home/user
|
|
|
|
COPY cache-subprojects.sh .
|
|
RUN ./cache-subprojects.sh
|
|
|
|
ENV LANG=C.UTF-8 LANGUAGE=C.UTF-8 LC_ALL=C.UTF-8
|