Skip to content

Commit 9828335

Browse files
fox91claude
andcommitted
fix: update ldap extension to use libldap2 for Debian Trixie
Debian Trixie uses the package name 'libldap2' (OpenLDAP 2.6.10) instead of 'libldap-2.5-0' from Bookworm. This caused "Package 'libldap-2.5-0' has no installation candidate" errors when building the ldap extension on Trixie. Changes: - Update all Trixie ldap Dockerfiles: libldap-2.5-0 → libldap2 - Affects PHP 8.1, 8.2, 8.3, 8.4, 8.5 on Trixie - Alpine versions remain unchanged 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 263bcc5 commit 9828335

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

8.1/trixie/ldap/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LABEL maintainer="Andrea Falco <andrea@falco.sh>"
55
# PHP ext-ldap
66
RUN set -eux; \
77
persistentDeps=" \
8-
libldap-2.5-0 \
8+
libldap2 \
99
"; \
1010
buildDeps=" \
1111
libldap2-dev \

8.2/trixie/ldap/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LABEL maintainer="Andrea Falco <andrea@falco.sh>"
55
# PHP ext-ldap
66
RUN set -eux; \
77
persistentDeps=" \
8-
libldap-2.5-0 \
8+
libldap2 \
99
"; \
1010
buildDeps=" \
1111
libldap2-dev \

8.3/trixie/ldap/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LABEL maintainer="Andrea Falco <andrea@falco.sh>"
55
# PHP ext-ldap
66
RUN set -eux; \
77
persistentDeps=" \
8-
libldap-2.5-0 \
8+
libldap2 \
99
"; \
1010
buildDeps=" \
1111
libldap2-dev \

8.4/trixie/ldap/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LABEL maintainer="Andrea Falco <andrea@falco.sh>"
55
# PHP ext-ldap
66
RUN set -eux; \
77
persistentDeps=" \
8-
libldap-2.5-0 \
8+
libldap2 \
99
"; \
1010
buildDeps=" \
1111
libldap2-dev \

8.5/trixie/ldap/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LABEL maintainer="Andrea Falco <andrea@falco.sh>"
55
# PHP ext-ldap
66
RUN set -eux; \
77
persistentDeps=" \
8-
libldap-2.5-0 \
8+
libldap2 \
99
"; \
1010
buildDeps=" \
1111
libldap2-dev \

0 commit comments

Comments
 (0)