From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D3FF6158090 for ; Sun, 15 May 2022 21:02:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70D53E087E; Sun, 15 May 2022 21:02:02 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 pigeon.gentoo.org (Postfix) with ESMTPS id 536CFE087E for ; Sun, 15 May 2022 21:02:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 6FA2C34148E for ; Sun, 15 May 2022 21:02:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E69DB105 for ; Sun, 15 May 2022 21:01:58 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1652648440.efcf421ff9e351b8003a1ca60d107b766f099461.sam@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.6-boost_1.79.patch media-sound/pulseeffects/pulseeffects-4.8.6.ebuild X-VCS-Directories: media-sound/pulseeffects/files/ media-sound/pulseeffects/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: efcf421ff9e351b8003a1ca60d107b766f099461 X-VCS-Branch: master Date: Sun, 15 May 2022 21:01:58 +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: f6f89f69-954c-4d14-aa74-660ce2c7aca1 X-Archives-Hash: 704c892c24f543360a6edd5bd32dad06 commit: efcf421ff9e351b8003a1ca60d107b766f099461 Author: Sam James gentoo org> AuthorDate: Sun May 15 20:59:48 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun May 15 21:00:40 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efcf421f media-sound/pulseeffects: fix build with Boost 1.79 Closes: https://bugs.gentoo.org/844898 Thanks-to: Sven Hesse drmccoy.de> Signed-off-by: Sam James gentoo.org> .../files/pulseeffects-4.8.6-boost_1.79.patch | 25 ++++++++++++++++++++++ media-sound/pulseeffects/pulseeffects-4.8.6.ebuild | 1 + 2 files changed, 26 insertions(+) diff --git a/media-sound/pulseeffects/files/pulseeffects-4.8.6-boost_1.79.patch b/media-sound/pulseeffects/files/pulseeffects-4.8.6-boost_1.79.patch new file mode 100644 index 000000000000..825aaca32822 --- /dev/null +++ b/media-sound/pulseeffects/files/pulseeffects-4.8.6-boost_1.79.patch @@ -0,0 +1,25 @@ +https://bugs.gentoo.org/844898 +https://github.com/wwmm/easyeffects/commit/1000de1c27f422fb2fd6106c554844e9d81925cf + +From: Sven Hesse +Date: Sun, 15 May 2022 19:04:32 +0200 +Subject: [PATCH] fix compilation with Boost 1.79.0 + +Boost.Filesystem in Boost 1.79.0 changed the already-deprecated header +of string_file.hpp to be not included by default anymore in its commit +266e1ac892a6f54d807fb35bf639a9aa1c8b2db1. + +Boost.Filesystem's fstream.hpp was never included directly by default, +but string_file.hpp did include it, so this code here in PulseEffects +worked. With Boost 1.79.0, though, it explodes in lin 179. +--- a/src/general_settings_ui.cpp ++++ b/src/general_settings_ui.cpp +@@ -21,6 +21,7 @@ + #include + #include + #include ++#include + #include "util.hpp" + + namespace { + diff --git a/media-sound/pulseeffects/pulseeffects-4.8.6.ebuild b/media-sound/pulseeffects/pulseeffects-4.8.6.ebuild index bf1d9aac8112..cb43e0354667 100644 --- a/media-sound/pulseeffects/pulseeffects-4.8.6.ebuild +++ b/media-sound/pulseeffects/pulseeffects-4.8.6.ebuild @@ -61,6 +61,7 @@ BDEPEND="dev-libs/appstream-glib PATCHES=( "${FILESDIR}"/${PN}-4.8.6-meson_no_automagic.patch + "${FILESDIR}"/${P}-boost_1.79.patch ) S="${WORKDIR}"/easyeffects-${PV}