commit: 226042015d009bb30121508182b19a31131d175e Author: Peter Levine <plevine457 <AT> gmail <DOT> com> AuthorDate: Wed Apr 5 02:48:32 2023 +0000 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org> CommitDate: Fri Apr 28 07:43:44 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22604201
app-admin/passwordsafe: fix building against gtest-1.13 dev-cpp/gtest-1.13.0 now requires building with c++14 or higher, and '-std=gnu++11' has been removed upstream. Closes: https://bugs.gentoo.org/895140 Closes: https://github.com/gentoo/gentoo/pull/30483 Signed-off-by: Peter Levine <plevine457 <AT> gmail.com> Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org> .../files/passwordsafe-1.15.0-gtest-no-gnu++11.patch | 13 +++++++++++++ app-admin/passwordsafe/passwordsafe-1.15.0.ebuild | 10 +++------- 2 files changed, 16 insertions(+), 7 deletions(-) diff --git a/app-admin/passwordsafe/files/passwordsafe-1.15.0-gtest-no-gnu++11.patch b/app-admin/passwordsafe/files/passwordsafe-1.15.0-gtest-no-gnu++11.patch new file mode 100644 index 000000000000..fe39281f29b1 --- /dev/null +++ b/app-admin/passwordsafe/files/passwordsafe-1.15.0-gtest-no-gnu++11.patch @@ -0,0 +1,13 @@ +Bug: https://bugs.gentoo.org/893464 + +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -248,7 +248,7 @@ + + else () + set(CMAKE_CXX_FLAGS +- "${CMAKE_CXX_FLAGS} -fPIC -Wall -std=gnu++11 -DUNICODE -DWCHAR_INCOMPATIBLE_XMLCH ${CMAKE_WXWINDOWS_CXX_FLAGS}") ++ "${CMAKE_CXX_FLAGS} -fPIC -Wall -DUNICODE -DWCHAR_INCOMPATIBLE_XMLCH ${CMAKE_WXWINDOWS_CXX_FLAGS}") + set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -D_DEBUG -DDEBUG") + if (USE_ASAN) + set(CMAKE_CXX_FLAGS_DEBUG diff --git a/app-admin/passwordsafe/passwordsafe-1.15.0.ebuild b/app-admin/passwordsafe/passwordsafe-1.15.0.ebuild index bc3fbce0c6ee..43dc7b3551fa 100644 --- a/app-admin/passwordsafe/passwordsafe-1.15.0.ebuild +++ b/app-admin/passwordsafe/passwordsafe-1.15.0.ebuild @@ -1,11 +1,11 @@ -# Copyright 2021-2022 Gentoo Authors +# Copyright 2021-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 WX_GTK_VER="3.0-gtk3" -inherit cmake desktop flag-o-matic optfeature wxwidgets xdg +inherit cmake desktop optfeature wxwidgets xdg MY_PV="${PV/_beta/BETA}" DESCRIPTION="Password manager with wxGTK based frontend" @@ -39,13 +39,9 @@ S="${WORKDIR}/pwsafe-${MY_PV}" PATCHES=( "${FILESDIR}"/${PN}-1.15.0-gcc12-time.patch + "${FILESDIR}"/${PN}-1.15.0-gtest-no-gnu++11.patch ) -pkg_pretend() { - einfo "Checking for -std=c++11 support in compiler" - test-flags-CXX -std=c++11 > /dev/null || die -} - src_configure() { setup-wxwidgets
