Skip to content

Commit a34823b

Browse files
authored
Bump deps: heif, rsvg (lovell#243)
* Bump deps: heif, rsvg * Add tomli dependency in Docker containers Required by Cargo projects since Meson 1.5.0. Python >= 3.11 have one built-in, older Python versions require either the external `tomli` module or `toml2json` program.
1 parent ad960df commit a34823b

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

build/lin.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,9 @@ VERSION_PIXMAN=0.43.4
115115
VERSION_CAIRO=1.18.0
116116
VERSION_FRIBIDI=1.0.15
117117
VERSION_PANGO=1.54.0
118-
VERSION_RSVG=2.58.91
118+
VERSION_RSVG=2.58.92
119119
VERSION_AOM=3.9.1
120-
VERSION_HEIF=1.17.6
120+
VERSION_HEIF=1.18.0
121121
VERSION_CGIF=0.4.1
122122

123123
# Remove patch version component

platforms/linux-arm64v8/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ RUN \
5151
&& \
5252
cargo install cargo-c && \
5353
ln -s /usr/bin/cmake3 /usr/bin/cmake && \
54-
pip3 install meson ninja packaging
54+
pip3 install meson ninja packaging tomli
5555

5656
# Compiler settings
5757
ENV \

platforms/linux-armv6/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ RUN \
3838
&& \
3939
rustup target add arm-unknown-linux-gnueabihf && \
4040
cargo install cargo-c && \
41-
pip3 install meson
41+
pip3 install meson tomli
4242

4343
# Compiler settings
4444
ENV \

platforms/linux-armv7/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ RUN \
3737
&& \
3838
rustup target add arm-unknown-linux-gnueabihf && \
3939
cargo install cargo-c && \
40-
pip3 install meson
40+
pip3 install meson tomli
4141

4242
# Compiler settings
4343
ENV \

platforms/linux-s390x/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ RUN \
3737
&& \
3838
rustup target add s390x-unknown-linux-gnu && \
3939
cargo install cargo-c && \
40-
pip3 install meson
40+
pip3 install meson tomli
4141

4242
# Handy for debugging the compiled targets in Highway (hwy_list_targets)
4343
#RUN apt-get install -y qemu-user-static

platforms/linux-x64/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ RUN \
5050
&& \
5151
cargo install cargo-c && \
5252
ln -s /usr/bin/cmake3 /usr/bin/cmake && \
53-
pip3 install meson ninja packaging
53+
pip3 install meson ninja packaging tomli
5454

5555
# Compiler settings
5656
ENV \

0 commit comments

Comments
 (0)