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 15907158088 for ; Sun, 26 Oct 2025 04:08:03 +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 0257F341710 for ; Sun, 26 Oct 2025 04:08:03 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id ABF551102F2; Sun, 26 Oct 2025 04:08:01 +0000 (UTC) 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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 9AA3B1102F2 for ; Sun, 26 Oct 2025 04:08:01 +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) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4F2B3341710 for ; Sun, 26 Oct 2025 04:08:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E56F12FAC for ; Sun, 26 Oct 2025 04:07:59 +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: <1761451649.7141b8da59057bac80b0e2e5d5ea34a70770ece2.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/toolchain.eclass X-VCS-Directories: eclass/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7141b8da59057bac80b0e2e5d5ea34a70770ece2 X-VCS-Branch: master Date: Sun, 26 Oct 2025 04:07:59 +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: f9016b7f-22af-4e7f-a7dc-bbb38efda775 X-Archives-Hash: 7be69c8991600b933ea56bfa6445b667 commit: 7141b8da59057bac80b0e2e5d5ea34a70770ece2 Author: Sam James gentoo org> AuthorDate: Sun Oct 26 04:06:53 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sun Oct 26 04:07:29 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7141b8da toolchain.eclass: only >=16's cobol needs libxml2 Signed-off-by: Sam James gentoo.org> eclass/toolchain.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index a72b42177a81..514d4def64af 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -363,7 +363,7 @@ GMP_MPFR_DEPS=">=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0=" RDEPEND+=" ${GMP_MPFR_DEPS}" RDEPEND+=" >=dev-libs/mpc-0.8.1:0=" -if tc_has_feature cobol ; then +if tc_has_feature cobol && tc_version_is_at_least 16.0.0_p20251019 ; then RDEPEND+=" cobol? ( dev-libs/libxml2:= )" fi