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 CEBB515800F for ; Wed, 22 Feb 2023 16:16:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E9C75E07C5; Wed, 22 Feb 2023 16:16:55 +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 pigeon.gentoo.org (Postfix) with ESMTPS id CF26CE07C5 for ; Wed, 22 Feb 2023 16:16:55 +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 D0A2233BF5A for ; Wed, 22 Feb 2023 16:16:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 27CC88B6 for ; Wed, 22 Feb 2023 16:16:53 +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: <1677082423.52349d44ce357a6f0417a914425ef7973840baa1.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/snappy/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/snappy/snappy-1.1.9-r1.ebuild X-VCS-Directories: app-arch/snappy/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 52349d44ce357a6f0417a914425ef7973840baa1 X-VCS-Branch: master Date: Wed, 22 Feb 2023 16:16:53 +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: d74cc5c2-bbda-4662-917b-cdfa683b0c79 X-Archives-Hash: 1ff6643b49887b2b1ca96aa3b985105a commit: 52349d44ce357a6f0417a914425ef7973840baa1 Author: Peter Levine gmail com> AuthorDate: Sat Feb 18 22:36:21 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Feb 22 16:13:43 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52349d44 app-arch/snappy: build using C++14 dialect The latest gtest requires C++14 or later. Pass -DCMAKE_CXX_STANDARD=14 explicitly to avoid having -std=c++11 added to CXXFLAGS. Closes: https://bugs.gentoo.org/895190 Closes: https://github.com/gentoo/gentoo/pull/29653 Signed-off-by: Peter Levine gmail.com> Signed-off-by: Sam James gentoo.org> app-arch/snappy/snappy-1.1.9-r1.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app-arch/snappy/snappy-1.1.9-r1.ebuild b/app-arch/snappy/snappy-1.1.9-r1.ebuild index 6f03591f6f44..b6cbd7792108 100644 --- a/app-arch/snappy/snappy-1.1.9-r1.ebuild +++ b/app-arch/snappy/snappy-1.1.9-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -28,6 +28,7 @@ PATCHES=( multilib_src_configure() { local mycmakeargs=( + -DCMAKE_CXX_STANDARD=14 # Latest gtest needs -std=c++14 or newer -DSNAPPY_BUILD_TESTS=$(usex test) -DSNAPPY_BUILD_BENCHMARKS=OFF # Options below are related to benchmarking, that we disable.