Skip to content

Commit d08082b

Browse files
fox91claude
andcommitted
fix: update imagick to use ImageMagick 7.x packages for Debian Trixie
Debian Trixie upgraded from ImageMagick 6.x to 7.x, changing the library package naming scheme. The old package name causes build failures. Changes: - libmagickwand-6.q16-6 → libmagickwand-7.q16-10 Affects 5 Dockerfiles across PHP 8.1-8.5 on Trixie: - 8.1/trixie/pecl_imagick/Dockerfile - 8.2/trixie/pecl_imagick/Dockerfile - 8.3/trixie/pecl_imagick/Dockerfile - 8.4/trixie/pecl_imagick/Dockerfile - 8.5/trixie/pecl_imagick/Dockerfile This follows the same pattern as previous Trixie package updates (libicu, libldap, libzip, libhiredis, libsnmp, libmemcached). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 69022b7 commit d08082b

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

8.1/trixie/pecl_imagick/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LABEL maintainer="Andrea Falco <andrea@falco.sh>"
66
ARG PHPEXT_IMAGICK_VERSION=3.8.0
77
RUN set -eux; \
88
persistentDeps=" \
9-
libmagickwand-6.q16-6 \
9+
libmagickwand-7.q16-10 \
1010
"; \
1111
buildDeps=" \
1212
libmagickwand-dev \

8.2/trixie/pecl_imagick/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LABEL maintainer="Andrea Falco <andrea@falco.sh>"
66
ARG PHPEXT_IMAGICK_VERSION=3.8.0
77
RUN set -eux; \
88
persistentDeps=" \
9-
libmagickwand-6.q16-6 \
9+
libmagickwand-7.q16-10 \
1010
"; \
1111
buildDeps=" \
1212
libmagickwand-dev \

8.3/trixie/pecl_imagick/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LABEL maintainer="Andrea Falco <andrea@falco.sh>"
66
ARG PHPEXT_IMAGICK_VERSION=3.8.0
77
RUN set -eux; \
88
persistentDeps=" \
9-
libmagickwand-6.q16-6 \
9+
libmagickwand-7.q16-10 \
1010
"; \
1111
buildDeps=" \
1212
libmagickwand-dev \

8.4/trixie/pecl_imagick/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LABEL maintainer="Andrea Falco <andrea@falco.sh>"
66
ARG PHPEXT_IMAGICK_VERSION=3.8.0
77
RUN set -eux; \
88
persistentDeps=" \
9-
libmagickwand-6.q16-6 \
9+
libmagickwand-7.q16-10 \
1010
"; \
1111
buildDeps=" \
1212
libmagickwand-dev \

8.5/trixie/pecl_imagick/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LABEL maintainer="Andrea Falco <andrea@falco.sh>"
66
ARG PHPEXT_IMAGICK_VERSION=3.8.0
77
RUN set -eux; \
88
persistentDeps=" \
9-
libmagickwand-6.q16-6 \
9+
libmagickwand-7.q16-10 \
1010
"; \
1111
buildDeps=" \
1212
libmagickwand-dev \

0 commit comments

Comments
 (0)