diff -Nru dbus-cpp-5.0.3/debian/changelog dbus-cpp-5.0.3/debian/changelog --- dbus-cpp-5.0.3/debian/changelog 2023-07-26 02:02:18.000000000 +0000 +++ dbus-cpp-5.0.3/debian/changelog 2023-07-26 17:51:17.000000000 +0000 @@ -1,3 +1,10 @@ +dbus-cpp (5.0.3-6) unstable; urgency=medium + + * debian/patches: Add patch to fix FTBFS with googletest 1.13.0 + * debian/control: Add myself as uploader + + -- Marius Gripsgard Wed, 26 Jul 2023 19:51:17 +0200 + dbus-cpp (5.0.3-5) unstable; urgency=medium [ Mike Gabriel ] diff -Nru dbus-cpp-5.0.3/debian/control dbus-cpp-5.0.3/debian/control --- dbus-cpp-5.0.3/debian/control 2023-07-26 01:59:05.000000000 +0000 +++ dbus-cpp-5.0.3/debian/control 2023-07-26 17:50:17.000000000 +0000 @@ -3,6 +3,7 @@ Maintainer: Debian UBports Team Uploaders: Mike Gabriel , + Marius Gripsgard , Build-Depends: cmake, cmake-extras, dbus, diff -Nru dbus-cpp-5.0.3/debian/patches/0003-Bump-cpp-std-to-14-fixes-googletest-1.13.0.patch dbus-cpp-5.0.3/debian/patches/0003-Bump-cpp-std-to-14-fixes-googletest-1.13.0.patch --- dbus-cpp-5.0.3/debian/patches/0003-Bump-cpp-std-to-14-fixes-googletest-1.13.0.patch 1970-01-01 00:00:00.000000000 +0000 +++ dbus-cpp-5.0.3/debian/patches/0003-Bump-cpp-std-to-14-fixes-googletest-1.13.0.patch 2023-07-26 17:41:58.000000000 +0000 @@ -0,0 +1,25 @@ +From 61b470eea335c2de92217e573e664f63e6fbbf45 Mon Sep 17 00:00:00 2001 +From: Marius Gripsgard +Date: Wed, 26 Jul 2023 19:34:18 +0200 +Subject: [PATCH] Bump cpp std to 14 (fixes googletest 1.13.0) + +--- + CMakeLists.txt | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index c396696..92800d6 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -39,7 +39,7 @@ include(cmake/PrePush.cmake) + include(GNUInstallDirs) + + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -fvisibility=hidden -fPIC -pthread") +-set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -fno-strict-aliasing -fvisibility=hidden -fvisibility-inlines-hidden -Wextra -fPIC -pthread") ++set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14 -Wall -fno-strict-aliasing -fvisibility=hidden -fvisibility-inlines-hidden -Wextra -fPIC -pthread") + set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS}") + + # We leverage GCC's sanitize functionality +-- +2.40.1 + diff -Nru dbus-cpp-5.0.3/debian/patches/series dbus-cpp-5.0.3/debian/patches/series --- dbus-cpp-5.0.3/debian/patches/series 2023-07-26 02:00:14.000000000 +0000 +++ dbus-cpp-5.0.3/debian/patches/series 2023-07-26 17:37:40.000000000 +0000 @@ -1,3 +1,4 @@ 2001_dont-build-with-werror.patch 0001-src-Don-t-steal-a-pending-dbus-call-more-then-once.patch 0002-add-missing-header-for-gcc13.patch +0003-Bump-cpp-std-to-14-fixes-googletest-1.13.0.patch