dev-libs/ktextaddons: Add missing include

Closes: https://bugs.gentoo.org/954700
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner 2025-04-26 13:52:53 +02:00
parent eb8fbfbc87
commit 62445e0e9d
No known key found for this signature in database
GPG Key ID: AE591BBC73E4DD5E
2 changed files with 28 additions and 1 deletions

View File

@ -0,0 +1,25 @@
From 2b9a04929008abe8f83c57c5e0b9cc7f04a59ae0 Mon Sep 17 00:00:00 2001
From: Nicolas Fella <nicolas.fella@gmx.de>
Date: Fri, 3 Jan 2025 16:00:02 +0100
Subject: [PATCH] Add missing include
(cherry picked from commit fdbb082aaa0125d60fdf819c9cb95c40bdb98800)
---
texttranslator/translator/plugins/google/googleengineplugin.cpp | 1 +
1 file changed, 1 insertion(+)
diff --git a/texttranslator/translator/plugins/google/googleengineplugin.cpp b/texttranslator/translator/plugins/google/googleengineplugin.cpp
index f7400dd3..41c35ea1 100644
--- a/texttranslator/translator/plugins/google/googleengineplugin.cpp
+++ b/texttranslator/translator/plugins/google/googleengineplugin.cpp
@@ -12,6 +12,7 @@
#include <QNetworkAccessManager>
#include <QNetworkReply>
#include <QNetworkRequest>
+#include <QRegularExpression>
#include <QUrlQuery>
#include <TextTranslator/TranslatorEngineAccessManager>
--
2.49.0

View File

@ -1,4 +1,4 @@
# Copyright 2023-2024 Gentoo Authors # Copyright 2023-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2 # Distributed under the terms of the GNU General Public License v2
EAPI=8 EAPI=8
@ -43,6 +43,8 @@ RDEPEND="${DEPEND}
!${CATEGORY}/${PN}:5 !${CATEGORY}/${PN}:5
" "
PATCHES=( "${FILESDIR}/${P}-missing-include.patch" ) # bug 954700
src_configure() { src_configure() {
local mycmakeargs=( local mycmakeargs=(
$(cmake_use_find_package speech Qt6TextToSpeech) $(cmake_use_find_package speech Qt6TextToSpeech)