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 05EB6158091 for ; Mon, 30 Jun 2025 05:18:43 +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 E519A341E54 for ; Mon, 30 Jun 2025 05:18:42 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id E1098110320; Mon, 30 Jun 2025 05:18:41 +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 D1CA1110320 for ; Mon, 30 Jun 2025 05:18:41 +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 79C9C341B20 for ; Mon, 30 Jun 2025 05:18:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 934C22A84 for ; Mon, 30 Jun 2025 05:18:39 +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: <1751260666.732230c0f163aa18f05e273df597e2bb00fdb97c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/cgnslib/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/cgnslib/cgnslib-4.5.0.ebuild X-VCS-Directories: sci-libs/cgnslib/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 732230c0f163aa18f05e273df597e2bb00fdb97c X-VCS-Branch: master Date: Mon, 30 Jun 2025 05:18:39 +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: 60430b14-8b47-4911-86e0-8c385a486641 X-Archives-Hash: d0aaf0af3473bdaa3c698047bd761231 commit: 732230c0f163aa18f05e273df597e2bb00fdb97c Author: Sam James gentoo org> AuthorDate: Mon Jun 30 05:17:23 2025 +0000 Commit: Sam James gentoo org> CommitDate: Mon Jun 30 05:17:46 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=732230c0 sci-libs/cgnslib: fix finding internal Tcl headers The patch we were using in 4.4.0 is upstream now but unfortunately has the same issue. Bug: https://bugs.gentoo.org/934122 Closes: https://bugs.gentoo.org/959272 Signed-off-by: Sam James gentoo.org> sci-libs/cgnslib/cgnslib-4.5.0.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sci-libs/cgnslib/cgnslib-4.5.0.ebuild b/sci-libs/cgnslib/cgnslib-4.5.0.ebuild index 117a26a45517..fda3e085bea4 100644 --- a/sci-libs/cgnslib/cgnslib-4.5.0.ebuild +++ b/sci-libs/cgnslib/cgnslib-4.5.0.ebuild @@ -65,6 +65,12 @@ src_configure() { # https://github.com/CGNS/CGNS/issues/758 filter-lto + # Needed for uses an internal header (bug #934122) + local tk_ver=$(best_version dev-lang/tk) + tk_ver=${tk_ver#dev-lang/tk-} + tk_ver=$(ver_cut 1-2 ${tk_ver}) + append-cppflags -I"${ESYSROOT}/usr/$(get_libdir)/tk${tk_ver}/include/generic" + local mycmakeargs=( -DCGNS_BUILD_SHARED=ON -DCGNS_USE_SHARED=ON