Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libphonenumber for openSUSE:Factory checked in at 2025-09-17 16:42:33 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libphonenumber (Old) and /work/SRC/openSUSE:Factory/.libphonenumber.new.27445 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libphonenumber" Wed Sep 17 16:42:33 2025 rev:11 rq:1305314 version:9.0.10 Changes: -------- --- /work/SRC/openSUSE:Factory/libphonenumber/libphonenumber.changes 2025-07-25 17:03:50.697577231 +0200 +++ /work/SRC/openSUSE:Factory/.libphonenumber.new.27445/libphonenumber.changes 2025-09-17 16:42:35.622716444 +0200 @@ -1,0 +2,8 @@ +Mon Sep 15 13:40:22 UTC 2025 - Fabian Vogt <[email protected]> + +- No longer rely on libboost_system-devel as separate package: + (boo#1249611): + * Add 0001-Fix-build-with-Boost-1.89.0.patch + * Use libboost_headers-devel instead of libboost_system-devel + +------------------------------------------------------------------- New: ---- 0001-Fix-build-with-Boost-1.89.0.patch ----------(New B)---------- New: (boo#1249611): * Add 0001-Fix-build-with-Boost-1.89.0.patch * Use libboost_headers-devel instead of libboost_system-devel ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libphonenumber.spec ++++++ --- /var/tmp/diff_new_pack.jwAmaB/_old 2025-09-17 16:42:36.746763933 +0200 +++ /var/tmp/diff_new_pack.jwAmaB/_new 2025-09-17 16:42:36.746763933 +0200 @@ -1,7 +1,7 @@ # # spec file for package libphonenumber # -# Copyright (c) 2025 SUSE LLC +# Copyright (c) 2025 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -26,6 +26,8 @@ Group: Development/Libraries/C and C++ URL: https://github.com/google/libphonenumber Source: %{name}-%{version}.tar.xz +# PATCH-FIX-UPSTREAM (hopefully, https://github.com/google/libphonenumber/pull/3903) +Patch1: 0001-Fix-build-with-Boost-1.89.0.patch # PATCH-FIX-DOWNSTREAM (see https://github.com/google/libphonenumber/pull/2874) Patch2: 0001-Revert-Fix-typo-in-arguments-to-add_metadata_gen_tar.patch Patch3: 0001-Add-support-to-protobuf-3.25.1.patch @@ -33,7 +35,7 @@ BuildRequires: cmake BuildRequires: gcc-c++ BuildRequires: libboost_date_time-devel >= 1.40.0 -BuildRequires: libboost_system-devel >= 1.40.0 +BuildRequires: libboost_headers-devel >= 1.40.0 BuildRequires: libboost_thread-devel >= 1.40.0 BuildRequires: pkgconfig # Actual version requirement unknown ++++++ 0001-Fix-build-with-Boost-1.89.0.patch ++++++ >From 2000fdca565ef9fdd609dbcdb87f96c1fe2f1e51 Mon Sep 17 00:00:00 2001 From: Michael Cho <[email protected]> Date: Mon, 11 Aug 2025 17:08:15 -0400 Subject: [PATCH] Fix build with Boost 1.89.0 --- cpp/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 27e4680cc..39f05d2c9 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -145,7 +145,7 @@ if (USE_BOOST) if (WIN32) set (Boost_USE_STATIC_LIBS ON) endif () - find_package (Boost 1.40.0 COMPONENTS date_time system thread) + find_package (Boost 1.40.0 COMPONENTS date_time thread OPTIONAL_COMPONENTS system) if (NOT Boost_FOUND) print_error ("Boost Date_Time/System/Thread" "Boost") endif () -- 2.50.1
