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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A6C6C15812D for ; Thu, 02 Jan 2025 18:33:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D28EEE082D; Thu, 02 Jan 2025 18:33:33 +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 B9AD1E082D for ; Thu, 02 Jan 2025 18:33:33 +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 C37AD33BEFF for ; Thu, 02 Jan 2025 18:33:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2FCF011B5 for ; Thu, 02 Jan 2025 18:33: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: <1735842735.4844ae6805cc0eae91579bb9a8350e3c0a3f77e6.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-electronics/pulseview/pulseview-0.4.2-r1.ebuild X-VCS-Directories: sci-electronics/pulseview/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4844ae6805cc0eae91579bb9a8350e3c0a3f77e6 X-VCS-Branch: master Date: Thu, 02 Jan 2025 18:33: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: 9cd526e9-aa81-49a3-93f2-175a10787f90 X-Archives-Hash: 3cec5ec68c769a06029a7b8e9d122f03 commit: 4844ae6805cc0eae91579bb9a8350e3c0a3f77e6 Author: Sam James gentoo org> AuthorDate: Thu Jan 2 18:32:15 2025 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jan 2 18:32:15 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4844ae68 sci-electronics/pulseview: build w/ -std=c++17 As Jannik mentions in the bug, modern Boost needs >= C++14, so crank up the version used. This is fixed upstream in the git repo but not in a release. Closes: https://bugs.gentoo.org/946610 Signed-off-by: Sam James gentoo.org> sci-electronics/pulseview/pulseview-0.4.2-r1.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sci-electronics/pulseview/pulseview-0.4.2-r1.ebuild b/sci-electronics/pulseview/pulseview-0.4.2-r1.ebuild index 0b5446455b34..97332060d41f 100644 --- a/sci-electronics/pulseview/pulseview-0.4.2-r1.ebuild +++ b/sci-electronics/pulseview/pulseview-0.4.2-r1.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" @@ -50,6 +50,10 @@ src_prepare() { } src_configure() { + # Needed for modern Boost (bug #946610). + # Drop this on bump > 0.4.2. + sed -i -e 's:-std=c++11:-std=c++17:' CMakeLists.txt || die + local mycmakeargs=( -DDISABLE_WERROR=TRUE -DENABLE_DECODE=$(usex decode)