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 BA55A15800A for ; Mon, 20 Jan 2025 21:59:46 +0000 (UTC) Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 90B97335DCD for ; Mon, 20 Jan 2025 21:59:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C38F8E01B5; Mon, 20 Jan 2025 21:59:44 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ABA3DE01B5 for ; Mon, 20 Jan 2025 21:59:44 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EFCCE342F92 for ; Mon, 20 Jan 2025 21:59:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8ACFBB2C for ; Mon, 20 Jan 2025 21:59:42 +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: <1737410362.1705de92b2bf3806a92acb758f601bb105bebf13.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/colm/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/colm/colm-0.14.7-r4.ebuild X-VCS-Directories: dev-util/colm/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1705de92b2bf3806a92acb758f601bb105bebf13 X-VCS-Branch: master Date: Mon, 20 Jan 2025 21:59:42 +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: b895866c-1606-4ec7-8ef9-beb812141aee X-Archives-Hash: 61a42dda2aee24e1595efa2f9e8a8ff2 commit: 1705de92b2bf3806a92acb758f601bb105bebf13 Author: Sam James gentoo org> AuthorDate: Mon Jan 20 21:58:43 2025 +0000 Commit: Sam James gentoo org> CommitDate: Mon Jan 20 21:59:22 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1705de92 dev-util/colm: fix tests * Drop single test which fails w/ modern C issues (too hard to try pass -std=gnu89 in there) * Make sure tests run against just-built copy (and therefore also work when colm isn't yet installed) Closes: https://bugs.gentoo.org/941565 Closes: https://bugs.gentoo.org/944324 Signed-off-by: Sam James gentoo.org> dev-util/colm/colm-0.14.7-r4.ebuild | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/dev-util/colm/colm-0.14.7-r4.ebuild b/dev-util/colm/colm-0.14.7-r4.ebuild index 99c32aa91d80..1a78eacc012f 100644 --- a/dev-util/colm/colm-0.14.7-r4.ebuild +++ b/dev-util/colm/colm-0.14.7-r4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -47,6 +47,9 @@ src_prepare() { sed -i -e 's/libcolm\.so/libcolm.dylib/' src/main.cc || die fi + # Test fails w/ modern C (bug #944324) + rm test/colm.d/ext1.lm || die + eautoreconf } @@ -69,7 +72,8 @@ src_test() { # Build tests default - # Run them + # Run them (and make sure we use just-built libraries, bug #941565) + local -x LD_LIBRARY_PATH="${S}/src/.libs:${S}/src:${LD_LIBRARY_PATH}" cd test || die ./runtests || die }