From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EF4DC15808A for ; Wed, 23 Jul 2025 03:47:19 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id D72913415E2 for ; Wed, 23 Jul 2025 03:47:19 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 1D57711055F; Wed, 23 Jul 2025 03:47:17 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 1472911055F for ; Wed, 23 Jul 2025 03:47:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C3B9F341446 for ; Wed, 23 Jul 2025 03:47:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0106B3294 for ; Wed, 23 Jul 2025 03:47:15 +0000 (UTC) From: "Matthew Thode" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Thode" Message-ID: <1753242427.1b71fd07ee576e2b9568c7283b8c0d40bbf84a24.prometheanfire@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/pulseeffects/files/, media-sound/pulseeffects/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/pulseeffects/files/pulseeffects-4.8.7-boost-1.88.patch media-sound/pulseeffects/pulseeffects-4.8.7-r1.ebuild X-VCS-Directories: media-sound/pulseeffects/ media-sound/pulseeffects/files/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matthew Thode X-VCS-Revision: 1b71fd07ee576e2b9568c7283b8c0d40bbf84a24 X-VCS-Branch: master Date: Wed, 23 Jul 2025 03:47:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a16862e5-d258-4eb4-8170-bb23c317f682 X-Archives-Hash: eda6ae810b674f6b212fa28f6d2d5eca commit: 1b71fd07ee576e2b9568c7283b8c0d40bbf84a24 Author: Matthew Thode gentoo org> AuthorDate: Wed Jul 23 03:46:20 2025 +0000 Commit: Matthew Thode gentoo org> CommitDate: Wed Jul 23 03:47:07 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b71fd07 media-sound/pulseeffects: boost-1.88 support Closes: https://bugs.gentoo.org/958315 Signed-off-by: Matthew Thode gentoo.org> .../files/pulseeffects-4.8.7-boost-1.88.patch | 61 +++++++++++++++ .../pulseeffects/pulseeffects-4.8.7-r1.ebuild | 88 ++++++++++++++++++++++ 2 files changed, 149 insertions(+) diff --git a/media-sound/pulseeffects/files/pulseeffects-4.8.7-boost-1.88.patch b/media-sound/pulseeffects/files/pulseeffects-4.8.7-boost-1.88.patch new file mode 100644 index 000000000000..3e9fbcd9e96a --- /dev/null +++ b/media-sound/pulseeffects/files/pulseeffects-4.8.7-boost-1.88.patch @@ -0,0 +1,61 @@ +commit a948473b7e4b306565e58b89543f40ef8b4d9a7d +Author: Bruce Schultz +Date: Sat Jun 21 20:15:26 2025 +1000 + + Fix Boost 1.88 compilation with boost::process::v1 + +diff --git a/include/boost_process_compat.hpp b/include/boost_process_compat.hpp +new file mode 100644 +index 000000000..8ac76a2f1 +--- /dev/null ++++ b/include/boost_process_compat.hpp +@@ -0,0 +1,36 @@ ++/* ++ * Work around a missing boost/process/v1.h header as of boost 1.88 ++ * -> https://github.com/boostorg/process/issues/480 ++ */ ++ ++#include ++#if BOOST_VERSION < 108800 ++#if !defined(BOOST_PROCESS_VERSION) ++#define BOOST_PROCESS_VERSION 2 ++#endif ++#include ++#else ++#if !defined(BOOST_PROCESS_VERSION) ++#define BOOST_PROCESS_VERSION 1 ++#define BOOST_PROCESS_V1_INLINE inline ++#endif ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#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 +-#include ++#include "boost_process_compat.hpp" + #include "util.hpp" + + PulseInfoUi::PulseInfoUi(BaseObjectType* cobject, const Glib::RefPtr& builder, PulseManager* pm_ptr) diff --git a/media-sound/pulseeffects/pulseeffects-4.8.7-r1.ebuild b/media-sound/pulseeffects/pulseeffects-4.8.7-r1.ebuild new file mode 100644 index 000000000000..b758ba0f2ba0 --- /dev/null +++ b/media-sound/pulseeffects/pulseeffects-4.8.7-r1.ebuild @@ -0,0 +1,88 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome2-utils meson + +DESCRIPTION="Limiter, compressor, reverberation, equalizer auto volume effects for Pulseaudio" +HOMEPAGE="https://github.com/wwmm/easyeffects/tree/pulseaudio-legacy" + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/wwmm/easyeffects" + EGIT_BRANCH="pulseaudio-legacy" +else + SRC_URI="https://github.com/wwmm/easyeffects/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="amd64 x86" +fi + +LICENSE="GPL-3" +SLOT="0" +IUSE="bs2b calf +doc rnnoise rubberband webrtc zamaudio" + +COMMON="dev-libs/boost:= + >=dev-cpp/glibmm-2.56.0:2 + >=dev-cpp/gtkmm-3.24:3.0 + >=dev-libs/glib-2.56:2 + >=dev-libs/libsigc++-2.10:2 + >=media-libs/gstreamer-1.12.5:1.0 + media-libs/gst-plugins-base + >=media-libs/gst-plugins-bad-1.12.5:1.0 + media-libs/libebur128 + media-libs/libsndfile + >=media-libs/lilv-0.24.2-r1 + >=media-libs/zita-convolver-3.0.0 + media-sound/pulseaudio + >=x11-libs/gtk+-3.20:3 + bs2b? ( >=media-plugins/gst-plugins-bs2b-1.12.5:1.0 ) + rnnoise? ( media-libs/rnnoise )" +# Only header files are used from libsamplerate +DEPEND="${COMMON} + media-libs/libsamplerate" +RDEPEND="!media-sound/easyeffects + ${COMMON} + >=media-libs/gst-plugins-good-1.12.5:1.0 + >=media-libs/lsp-plugins-1.1.24[lv2] + >=media-plugins/gst-plugins-ladspa-1.12.5:1.0 + >=media-plugins/gst-plugins-lv2-1.12.5:1.0 + >=media-plugins/gst-plugins-pulse-1.12.5:1.0 + sys-apps/dbus + calf? ( >=media-plugins/calf-0.90.1[lv2] ) + doc? ( gnome-extra/yelp ) + rubberband? ( media-libs/rubberband[ladspa] ) + webrtc? ( media-plugins/gst-plugins-webrtc ) + zamaudio? ( media-plugins/zam-plugins )" +BDEPEND="dev-libs/appstream-glib + dev-util/desktop-file-utils + dev-util/itstool + sys-devel/gettext + virtual/pkgconfig" + +PATCHES=( + "${FILESDIR}"/${PN}-4.8.7-meson_no_automagic.patch + "${FILESDIR}"/${PN}-4.8.7-boost-1.85.patch + "${FILESDIR}"/${PN}-4.8.7-boost-1.88.patch +) + +S="${WORKDIR}"/easyeffects-${PV} + +src_configure() { + local emesonargs=( + $(meson_feature bs2b) + $(meson_feature rnnoise) + ) + meson_src_configure +} + +pkg_postinst() { + gnome2_gconf_install + gnome2_schemas_update + xdg_icon_cache_update +} + +pkg_postrm() { + gnome2_gconf_uninstall + gnome2_schemas_update + xdg_icon_cache_update +}