diff --git a/app-office/gnucash/files/gnucash-5.11-boost-1.88.patch b/app-office/gnucash/files/gnucash-5.11-boost-1.88.patch new file mode 100644 index 0000000000000..1c58902cab4bc --- /dev/null +++ b/app-office/gnucash/files/gnucash-5.11-boost-1.88.patch @@ -0,0 +1,58 @@ +From 99f86d31ed52bafada4d0b4036cada89b1ccdfaf Mon Sep 17 00:00:00 2001 +From: John Ralls +Date: Fri, 2 May 2025 10:11:55 -0700 +Subject: [PATCH] Bug 799594 - GnuCash 5.11 fails to build with boost 1.88 + +Boost Process 1.88 defaults to the new V2 API introduced in Boost +1.81. https://repology.org/project/boost/versions shows that distro +support for boost 1.81 and later is spotty at best so we won't be able +to migrate to v2 until that improves. +--- + libgnucash/app-utils/gnc-quotes.cpp | 23 ++++++++++++++++++++++- + 1 file changed, 22 insertions(+), 1 deletion(-) + +diff --git a/libgnucash/app-utils/gnc-quotes.cpp b/libgnucash/app-utils/gnc-quotes.cpp +index 1fdf64a385c..fcc67cc782e 100644 +--- a/libgnucash/app-utils/gnc-quotes.cpp ++++ b/libgnucash/app-utils/gnc-quotes.cpp +@@ -36,10 +36,27 @@ + #endif + #include + #include ++#include ++#if BOOST_VERSION < 108800 ++#include + #ifdef BOOST_WINDOWS_API + #include + #endif +-#include ++#else ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#ifdef BOOST_WINDOWS_API ++#include ++#endif ++#endif + #include + #include + #include +@@ -68,7 +85,11 @@ static const char* yh_api_env = "FINANCEAPI_API_KEY"; + static const char* yh_api_key = "yhfinance-api-key"; + + namespace bl = boost::locale; ++#if BOOST_VERSION < 108800 + namespace bp = boost::process; ++#else ++namespace bp = boost::process::v1; ++#endif + namespace bfs = boost::filesystem; + namespace bpt = boost::property_tree; + namespace bio = boost::iostreams; diff --git a/app-office/gnucash/gnucash-5.11.ebuild b/app-office/gnucash/gnucash-5.11.ebuild index 5a7fd2cf3c6d4..438a6691737da 100644 --- a/app-office/gnucash/gnucash-5.11.ebuild +++ b/app-office/gnucash/gnucash-5.11.ebuild @@ -122,6 +122,7 @@ PATCHES=( # https://bugs.gentoo.org/893676 "${FILESDIR}/${PN}-5.0-webkit2gtk-4.1.patch" "${FILESDIR}/${PN}-5.8-guile-load-path.patch" + "${FILESDIR}/${PN}-5.11-boost-1.88.patch" ) pkg_setup() {