Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package pulseeffects for openSUSE:Factory 
checked in at 2025-06-24 20:48:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/pulseeffects (Old)
 and      /work/SRC/openSUSE:Factory/.pulseeffects.new.7067 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "pulseeffects"

Tue Jun 24 20:48:52 2025 rev:14 rq:1288101 version:4.8.7

Changes:
--------
--- /work/SRC/openSUSE:Factory/pulseeffects/pulseeffects.changes        
2024-05-27 12:03:45.479318946 +0200
+++ /work/SRC/openSUSE:Factory/.pulseeffects.new.7067/pulseeffects.changes      
2025-06-24 20:50:41.360094532 +0200
@@ -1,0 +2,6 @@
+Mon Jun 23 23:51:18 UTC 2025 - Konstantin Voinov <k...@kott.no-ip.biz>
+
+- Add 02-Fix-Boost-1.88-compilation.patch fixing build with current
+  boost-1.88
+
+-------------------------------------------------------------------

New:
----
  02-Fix-Boost-1.88-compilation.patch

----------(New B)----------
  New:
- Add 02-Fix-Boost-1.88-compilation.patch fixing build with current
  boost-1.88
----------(New E)----------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ pulseeffects.spec ++++++
--- /var/tmp/diff_new_pack.y0QhQy/_old  2025-06-24 20:50:42.096124653 +0200
+++ /var/tmp/diff_new_pack.y0QhQy/_new  2025-06-24 20:50:42.100124817 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package pulseeffects
 #
-# Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2025 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,6 +24,7 @@
 URL:            https://github.com/wwmm/pulseeffects
 Source0:        %{name}-%{version}.tar.gz
 Patch0:         01-fix-depricated-boost-filesystem-copy_option.patch
+Patch1:         02-Fix-Boost-1.88-compilation.patch
 BuildRequires:  appstream-glib
 BuildRequires:  gcc-c++
 BuildRequires:  itstool

++++++ 02-Fix-Boost-1.88-compilation.patch ++++++
>From ef4af947fbca3e64678c3f5b79bcbc79396480e4 Mon Sep 17 00:00:00 2001
From: Bruce Schultz <brul...@gmail.com>
Date: Sat, 21 Jun 2025 20:15:26 +1000
Subject: [PATCH] Fix Boost 1.88 compilation with boost::process::v1

---
 include/boost_process_compat.hpp | 33 ++++++++++++++++++++++++++++++++
 src/pulse_info_ui.cpp            |  2 +-
 2 files changed, 34 insertions(+), 1 deletion(-)
 create mode 100644 include/boost_process_compat.hpp

diff --git a/include/boost_process_compat.hpp b/include/boost_process_compat.hpp
new file mode 100644
index 000000000..d9bf2fff1
--- /dev/null
+++ b/include/boost_process_compat.hpp
@@ -0,0 +1,33 @@
+/*
+ * Work around a missing boost/process/v1.h header as of boost 1.88
+ * -> https://github.com/boostorg/process/issues/480
+ */
+
+#include <boost/version.hpp>
+#if BOOST_VERSION < 108800
+#include <boost/process.hpp>
+#else
+#if !defined(BOOST_PROCESS_VERSION)
+#define  BOOST_PROCESS_VERSION 1
+#define  BOOST_PROCESS_V1_INLINE inline
+#endif
+#include <boost/process/v1/args.hpp>
+#include <boost/process/v1/async.hpp>
+#include <boost/process/v1/async_system.hpp>
+#include <boost/process/v1/group.hpp>
+#include <boost/process/v1/child.hpp>
+#include <boost/process/v1/cmd.hpp>
+#include <boost/process/v1/env.hpp>
+#include <boost/process/v1/environment.hpp>
+#include <boost/process/v1/error.hpp>
+#include <boost/process/v1/exe.hpp>
+#include <boost/process/v1/group.hpp>
+#include <boost/process/v1/handles.hpp>
+#include <boost/process/v1/io.hpp>
+#include <boost/process/v1/pipe.hpp>
+#include <boost/process/v1/shell.hpp>
+#include <boost/process/v1/search_path.hpp>
+#include <boost/process/v1/spawn.hpp>
+#include <boost/process/v1/system.hpp>
+#include <boost/process/v1/start_dir.hpp>
+#endif
diff --git a/src/pulse_info_ui.cpp b/src/pulse_info_ui.cpp
index abb308b10..d1673d3b3 100644
--- a/src/pulse_info_ui.cpp
+++ b/src/pulse_info_ui.cpp
@@ -19,7 +19,7 @@
 
 #include "pulse_info_ui.hpp"
 #include <boost/algorithm/string.hpp>
-#include <boost/process.hpp>
+#include "boost_process_compat.hpp"
 #include "util.hpp"
 
 PulseInfoUi::PulseInfoUi(BaseObjectType* cobject, const 
Glib::RefPtr<Gtk::Builder>& builder, PulseManager* pm_ptr)

Reply via email to