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 A841F15800F for ; Sun, 5 Feb 2023 12:11:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E7151E07D1; Sun, 5 Feb 2023 12:11:14 +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 CCA3BE07D0 for ; Sun, 5 Feb 2023 12:11:14 +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 9783033C1C2 for ; Sun, 5 Feb 2023 12:11:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E181F899 for ; Sun, 5 Feb 2023 12:11:11 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1675598977.6bdfb5ab03bb84f2f6be6bb928673db7e3e346ac.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/rapidyaml/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/rapidyaml/rapidyaml-0.5.0.ebuild X-VCS-Directories: dev-cpp/rapidyaml/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 6bdfb5ab03bb84f2f6be6bb928673db7e3e346ac X-VCS-Branch: master Date: Sun, 5 Feb 2023 12:11:11 +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: 25e482ce-3ef5-442e-834c-2bbee359a8a8 X-Archives-Hash: e1e64f18e67ee273c29c400a712ad13e commit: 6bdfb5ab03bb84f2f6be6bb928673db7e3e346ac Author: Ionen Wolkens gentoo org> AuthorDate: Sun Feb 5 11:36:08 2023 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Sun Feb 5 12:09:37 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bdfb5ab dev-cpp/rapidyaml: bump to -std=c++17 Does not seem to be anything that requires staying on c++11. Technically the new gtest-1.13 only needs >=14 but may as well go higher with current gcc's default. Closes: https://bugs.gentoo.org/893272 Signed-off-by: Ionen Wolkens gentoo.org> dev-cpp/rapidyaml/rapidyaml-0.5.0.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-cpp/rapidyaml/rapidyaml-0.5.0.ebuild b/dev-cpp/rapidyaml/rapidyaml-0.5.0.ebuild index f1c6896c181b..84cf212c458f 100644 --- a/dev-cpp/rapidyaml/rapidyaml-0.5.0.ebuild +++ b/dev-cpp/rapidyaml/rapidyaml-0.5.0.ebuild @@ -69,6 +69,9 @@ src_configure() { # TODO: enable this+tests, should(?) be easier to do with >=0.5.0 but # still need looking into (please fill a bug if need this right away) -DRYML_BUILD_API=no + + # rapidyaml sets c++11, but >=gtest-1.13 wants >=c++14 (bug #893272) + -DC4_CXX_STANDARD=17 ) cmake_src_configure