From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 84FD2158043 for ; Tue, 26 Mar 2024 12:31:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 71FEDE29FD; Tue, 26 Mar 2024 12:31:34 +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 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5244CE29FD for ; Tue, 26 Mar 2024 12:31:34 +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 4018D3430BD for ; Tue, 26 Mar 2024 12:31:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D1F415E4 for ; Tue, 26 Mar 2024 12:31:31 +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: <1711455870.9dc2b0c59ee947b470757ffc8d62c0f85a4b1f84.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libnetconf2/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libnetconf2/libnetconf2-2.1.31.ebuild X-VCS-Directories: net-libs/libnetconf2/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9dc2b0c59ee947b470757ffc8d62c0f85a4b1f84 X-VCS-Branch: master Date: Tue, 26 Mar 2024 12:31:31 +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: 6857819d-0db5-4f16-b1f6-a8430dd2db87 X-Archives-Hash: 6d8de87e117e8390ebd2da2aae0d199f commit: 9dc2b0c59ee947b470757ffc8d62c0f85a4b1f84 Author: Eli Schwartz gmail com> AuthorDate: Mon Mar 25 15:29:42 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Mar 26 12:24:30 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dc2b0c5 net-libs/libnetconf2: mark as LTO-unsafe It fails tests which seems like a promising sign that something unpromising happened. Closes: https://bugs.gentoo.org/877449 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> net-libs/libnetconf2/libnetconf2-2.1.31.ebuild | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/net-libs/libnetconf2/libnetconf2-2.1.31.ebuild b/net-libs/libnetconf2/libnetconf2-2.1.31.ebuild index a10855bd1960..14144aaf22aa 100644 --- a/net-libs/libnetconf2/libnetconf2-2.1.31.ebuild +++ b/net-libs/libnetconf2/libnetconf2-2.1.31.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit cmake +inherit cmake flag-o-matic DESCRIPTION="C library for building NETCONF servers and clients" HOMEPAGE="https://github.com/CESNET/libnetconf2" @@ -27,6 +27,15 @@ BDEPEND=" doc? ( app-text/doxygen[dot] )" src_configure() { + # fails tests, but only with LTO. + # [ ERROR ] --- 0 != 0xffffffffffffffff + # [ LINE ] --- /var/tmp/portage/net-libs/libnetconf2-2.1.31/work/libnetconf2-2.1.31/tests/client/test_client_ssh.c:716: error: Failure! + # [ FAILED ] test_nc_client_ssh_ch_add_bind_listen + # + # https://bugs.gentoo.org/877449 + # https://github.com/CESNET/libnetconf2/issues/471 + filter-lto + local mycmakeargs=( -DENABLE_TESTS=$(usex test) -DENABLE_VALGRIND_TESTS=OFF