Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to libvips v8.16.0-rc2 #255

Merged
merged 2 commits into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LIBVIPS_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.16.0-rc1
8.16.0-rc2
2 changes: 1 addition & 1 deletion build/lin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ if [ "$DARWIN" = true ]; then
if [ "$DARWIN_ARM" = true ]; then
${CARGO_HOME}/bin/rustup target add aarch64-apple-darwin
fi
CFLAGS= cargo install cargo-c
CFLAGS= cargo install cargo-c --locked
fi

if [ "${PLATFORM%-*}" == "linuxmusl" ] || [ "$DARWIN" = true ]; then
Expand Down
2 changes: 1 addition & 1 deletion platforms/linux-arm64v8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ RUN \
--profile minimal \
--default-host aarch64-unknown-linux-gnu \
&& \
cargo install cargo-c && \
cargo install cargo-c --locked && \
ln -s /usr/bin/cmake3 /usr/bin/cmake && \
pip3 install meson ninja packaging tomli

Expand Down
2 changes: 1 addition & 1 deletion platforms/linux-armv6/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN \
--profile minimal \
&& \
rustup target add arm-unknown-linux-gnueabihf && \
cargo install cargo-c && \
cargo install cargo-c --locked && \
pip3 install meson tomli

# Compiler settings
Expand Down
2 changes: 1 addition & 1 deletion platforms/linux-ppc64le/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ RUN \
--profile minimal \
&& \
rustup target add powerpc64le-unknown-linux-gnu && \
cargo install cargo-c && \
cargo install cargo-c --locked && \
pip3 install meson tomli

# Handy for debugging the compiled targets in Highway (hwy_list_targets)
Expand Down
2 changes: 1 addition & 1 deletion platforms/linux-s390x/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ RUN \
--profile minimal \
&& \
rustup target add s390x-unknown-linux-gnu && \
cargo install cargo-c && \
cargo install cargo-c --locked && \
pip3 install meson tomli

# Handy for debugging the compiled targets in Highway (hwy_list_targets)
Expand Down
2 changes: 1 addition & 1 deletion platforms/linux-x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ RUN \
--no-modify-path \
--profile minimal \
&& \
cargo install cargo-c && \
cargo install cargo-c --locked && \
ln -s /usr/bin/cmake3 /usr/bin/cmake && \
pip3 install meson ninja packaging tomli

Expand Down
2 changes: 1 addition & 1 deletion platforms/linuxmusl-arm64v8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ RUN \
--profile minimal \
&& \
rustup target add aarch64-unknown-linux-musl && \
cargo install cargo-c && \
cargo install cargo-c --locked && \
pip3 install meson

# Compiler settings
Expand Down
2 changes: 1 addition & 1 deletion platforms/linuxmusl-x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ RUN \
--no-modify-path \
--profile minimal \
&& \
cargo install cargo-c && \
cargo install cargo-c --locked && \
pip3 install meson

# Compiler settings
Expand Down