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 4763415800A for ; Sun, 16 Mar 2025 16:59:58 +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 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 2585B34327F for ; Sun, 16 Mar 2025 16:59:58 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 8046E1103C7; Sun, 16 Mar 2025 16:59:53 +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)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 787B81103C7 for ; Sun, 16 Mar 2025 16:59:53 +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 2E9DE343246 for ; Sun, 16 Mar 2025 16:59:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D90420CF for ; Sun, 16 Mar 2025 16:59:51 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1742144380.2b9f0039408c110fc1ecc8f9d207fb2dd7e2deed.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pythran/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pythran/pythran-0.17.0-r2.ebuild X-VCS-Directories: dev-python/pythran/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 2b9f0039408c110fc1ecc8f9d207fb2dd7e2deed X-VCS-Branch: master Date: Sun, 16 Mar 2025 16:59:51 +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: fae21e5b-d424-4c63-b46a-063a50d3bf0e X-Archives-Hash: 046f1901bb0fde83dad2cffb182c4960 commit: 2b9f0039408c110fc1ecc8f9d207fb2dd7e2deed Author: Michał Górny gentoo org> AuthorDate: Sun Mar 16 09:32:43 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Mar 16 16:59:40 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b9f0039 dev-python/pythran: Use -std=c++14 for newest Boost Signed-off-by: Michał Górny gentoo.org> dev-python/pythran/pythran-0.17.0-r2.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-python/pythran/pythran-0.17.0-r2.ebuild b/dev-python/pythran/pythran-0.17.0-r2.ebuild index d90f54ee1551..c2d3a4c85248 100644 --- a/dev-python/pythran/pythran-0.17.0-r2.ebuild +++ b/dev-python/pythran/pythran-0.17.0-r2.ebuild @@ -63,6 +63,10 @@ src_configure() { -e 's|blas=blas|blas=cblas|' \ -e 's|libs=|libs=cblas|' \ pythran/pythran-*.cfg || die + # boost.math 1.82.0+ requires -std=c++14 + sed -i \ + -e 's|-std=c++11|-std=c++14|' \ + pythran/pythran-*.cfg || die } python_test() {