commit: 4f80001703d1300bf35141adcfca5593da5fdb9f Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org> AuthorDate: Sat Nov 6 19:40:17 2021 +0000 Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org> CommitDate: Sat Nov 6 19:40:17 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f800017
media-sound/snapcast: Apply c++17 patch Thanks to Andreas Sturmlechner for providing the patch link. Closes: https://bugs.gentoo.org/808705 Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org> .../snapcast/files/snapcast-0.25.0-cxx17.patch | 27 ++++++++++++++++++++++ media-sound/snapcast/snapcast-0.25.0-r1.ebuild | 5 +++- 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/media-sound/snapcast/files/snapcast-0.25.0-cxx17.patch b/media-sound/snapcast/files/snapcast-0.25.0-cxx17.patch new file mode 100644 index 00000000000..f6797a62f85 --- /dev/null +++ b/media-sound/snapcast/files/snapcast-0.25.0-cxx17.patch @@ -0,0 +1,27 @@ +https://gitlab.exherbo.org/exherbo/media/-/blob/master/packages/net-apps/snapcast/files/snapcast-Set-CMAKE_CXX_STANDARD-to-17.patch + +From 9858c60109c5d4aa09c26d1cb44be5c056849a36 Mon Sep 17 00:00:00 2001 +From: Heiko Becker <[email protected]> +Date: Fri, 15 Oct 2021 23:55:39 +0200 +Subject: [PATCH] Set CMAKE_CXX_STANDARD to 17 + +Fixes the build with boost[>=1.77.0] and we shouldn't have compilers +which don't support it. +--- + CMakeLists.txt | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 4381a71c..5373f658 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -127,7 +127,7 @@ if(NOT ANDROID) + endif() + + # Configure compiler options +-set(CMAKE_CXX_STANDARD 14) ++set(CMAKE_CXX_STANDARD 17) + + # Get arch + include(${CMAKE_SOURCE_DIR}/cmake/TargetArch.cmake) + diff --git a/media-sound/snapcast/snapcast-0.25.0-r1.ebuild b/media-sound/snapcast/snapcast-0.25.0-r1.ebuild index 093e6dafcf7..c969b0dbde4 100644 --- a/media-sound/snapcast/snapcast-0.25.0-r1.ebuild +++ b/media-sound/snapcast/snapcast-0.25.0-r1.ebuild @@ -39,7 +39,10 @@ DEPEND=" >=dev-cpp/popl-1.2.0 " -PATCHES=( "${FILESDIR}"/${PN}-0.20.0-gcc-11.patch ) +PATCHES=( + "${FILESDIR}"/${PN}-0.20.0-gcc-11.patch + "${FILESDIR}"/${P}-cxx17.patch +) src_configure() { local mycmakeargs=(
