tags 1087850 patch usertag + origin-ubuntu plucky ubuntu-patch thanks
I'm attaching a trivial patch which is used/verified to work in Ubuntu
diff -Nru abseil-20230802.1/debian/changelog abseil-20230802.1/debian/changelog --- abseil-20230802.1/debian/changelog 2024-04-01 23:50:22.000000000 +0200 +++ abseil-20230802.1/debian/changelog 2024-11-22 10:31:32.000000000 +0100 @@ -1,3 +1,11 @@ +abseil (20230802.1-5) unstable; urgency=medium + + * debian/tests/cmake: raise the cmake_minimum_required version to 3.10 + to avoid a deprecation warning which is making the autopkgtest + errors out due non clean stderr (Closes: #1087850) + + -- Sebastien Bacher <seb...@ubuntu.com> Fri, 22 Nov 2024 10:31:32 +0100 + abseil (20230802.1-4) unstable; urgency=medium * Add extra build dependencies to prevent premature migration (see diff -Nru abseil-20230802.1/debian/tests/cmake abseil-20230802.1/debian/tests/cmake --- abseil-20230802.1/debian/tests/cmake 2022-08-31 04:31:53.000000000 +0200 +++ abseil-20230802.1/debian/tests/cmake 2024-11-22 10:31:32.000000000 +0100 @@ -30,7 +30,7 @@ EOF cat >CMakeLists.txt <<EOF -cmake_minimum_required(VERSION 3.5) +cmake_minimum_required(VERSION 3.10) project(test CXX) set(CMAKE_CXX_STANDARD 17) add_executable(test test.cc)