From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 719BC158176 for ; Sat, 18 Oct 2025 15:20:25 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 55917341F44 for ; Sat, 18 Oct 2025 15:20:25 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id DACB2110561; Sat, 18 Oct 2025 15:20:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id C5AE0110561 for ; Sat, 18 Oct 2025 15:20:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5A50C341EE9 for ; Sat, 18 Oct 2025 15:20:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BFF6F1290 for ; Sat, 18 Oct 2025 15:20:19 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1760800586.aae7ac4294341b404b7f12afb75e39e137bfc565.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/apache-2.eclass X-VCS-Directories: eclass/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: aae7ac4294341b404b7f12afb75e39e137bfc565 X-VCS-Branch: master Date: Sat, 18 Oct 2025 15:20:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 58f6373c-689e-475e-8b6d-200b7bd35e4a X-Archives-Hash: e29f7cddc2e91bd53f3e5c78a6050e71 commit: aae7ac4294341b404b7f12afb75e39e137bfc565 Author: Francisco Javier Félix inode64 com> AuthorDate: Sun Oct 12 18:34:30 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sat Oct 18 15:16:26 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aae7ac42 apache-2.eclass: Missing deps for dev-libs/libxml2 and fix existing preserved libs apache2_modules_proxy_html and apache2_modules_xml2enc require dev-libs/libxml2 Fix:
>>> package: dev-libs/libxml2-2.14.6
 *  - /usr/lib64/libxml2.so.2
 *  - /usr/lib64/libxml2.so.2.13.9
 *      used by /usr/lib64/apache2/modules/mod_proxy_html.so (www-servers/apache-2.4.65)
 *      used by /usr/lib64/apache2/modules/mod_xml2enc.so (www-servers/apache-2.4.65)
Signed-off-by: Fco Javier Felix inode64.com> Part-of: https://github.com/gentoo/gentoo/pull/44149 Closes: https://github.com/gentoo/gentoo/pull/44149 Signed-off-by: Sam James gentoo.org> eclass/apache-2.eclass | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eclass/apache-2.eclass b/eclass/apache-2.eclass index 0ff76bd2dcf1..cb41bcdcdcfe 100644 --- a/eclass/apache-2.eclass +++ b/eclass/apache-2.eclass @@ -152,6 +152,7 @@ RDEPEND=" apache2_modules_lua? ( ${LUA_DEPS} ) apache2_modules_md? ( >=dev-libs/jansson-2.10:= ) apache2_modules_mime? ( app-misc/mime-types ) + apache2_modules_proxy_html? ( dev-libs/libxml2:= ) apache2_modules_proxy_http2? ( >=net-libs/nghttp2-${NGHTTP2_VERSION}:= kernel_linux? ( sys-apps/util-linux ) @@ -159,6 +160,7 @@ RDEPEND=" apache2_modules_session_crypto? ( dev-libs/apr-util[openssl] ) + apache2_modules_xml2enc? ( dev-libs/libxml2:= ) gdbm? ( sys-libs/gdbm:= ) ldap? ( net-nds/openldap:= ) selinux? ( sec-policy/selinux-apache )