commit: b61cfbd0103f1b88c253832ba81211aaf937bf80
Author: Michael Mair-Keimberger <mm1ke <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 14 09:47:56 2025 +0000
Commit: Michael Mair-Keimberger <mm1ke <AT> gentoo <DOT> org>
CommitDate: Sun Dec 14 09:47:56 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b61cfbd0
app-office/abiword: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mm1ke <AT> gentoo.org>
app-office/abiword/files/abiword-3.0.5-gcc14.patch | 12 -------
.../abiword/files/abiword-3.0.5-libxml2-2.12.patch | 25 ---------------
.../abiword-3.0.5-musl-lose-precision-fix.patch | 37 ----------------------
3 files changed, 74 deletions(-)
diff --git a/app-office/abiword/files/abiword-3.0.5-gcc14.patch
b/app-office/abiword/files/abiword-3.0.5-gcc14.patch
deleted file mode 100644
index aa0519c0d43a..000000000000
--- a/app-office/abiword/files/abiword-3.0.5-gcc14.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff --git a/plugins/mathview/itex2mml/itex2MML.y
b/plugins/mathview/itex2mml/itex2MML.y
-index c4e1cc5..60bc842 100644
---- a/plugins/mathview/itex2mml/itex2MML.y
-+++ b/plugins/mathview/itex2mml/itex2MML.y
-@@ -1804,6 +1804,7 @@ static void itex2MML_keep_error (const char * msg)
- itex2MML_last_error = itex2MML_copy_escaped (msg);
- }
-
-+int itex2MML_do_html_filter (const char *, unsigned long, const int);
- int itex2MML_html_filter (const char * buffer, unsigned long length)
- {
- return itex2MML_do_html_filter (buffer, length, 0);
diff --git a/app-office/abiword/files/abiword-3.0.5-libxml2-2.12.patch
b/app-office/abiword/files/abiword-3.0.5-libxml2-2.12.patch
deleted file mode 100644
index a8f82e2d844a..000000000000
--- a/app-office/abiword/files/abiword-3.0.5-libxml2-2.12.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-https://gitlab.gnome.org/World/AbiWord/-/commit/2a06be6a10a0718f8a3d8e00c317f5042c99a467
-https://bugs.gentoo.org/923394
-
-From 2a06be6a10a0718f8a3d8e00c317f5042c99a467 Mon Sep 17 00:00:00 2001
-From: Jan Tojnar <[email protected]>
-Date: Mon, 11 Dec 2023 01:55:53 +0100
-Subject: [PATCH] Fix build with libxml2 2.12
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-libxml 2.12.0 restructured headers so that xmlFree is no longer in the scope.
-Let’s add the correct include.
---- a/src/af/util/xp/ut_stringbuf.cpp
-+++ b/src/af/util/xp/ut_stringbuf.cpp
-@@ -26,6 +26,7 @@
- #include <algorithm>
-
- #include <libxml/uri.h>
-+#include <libxml/xmlmemory.h>
-
- #include <glib.h>
-
---
-GitLab
diff --git
a/app-office/abiword/files/abiword-3.0.5-musl-lose-precision-fix.patch
b/app-office/abiword/files/abiword-3.0.5-musl-lose-precision-fix.patch
deleted file mode 100644
index af2a33f0bbb8..000000000000
--- a/app-office/abiword/files/abiword-3.0.5-musl-lose-precision-fix.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-# Patch written by fellow Gentoo user ernsteiswuerfel
-#
-# Please also reffer:
-#
https://gitlab.gnome.org/World/AbiWord/-/commit/857cd86def49fe8557cfe123830c4d5a61eee732
-#
-# Closes: https://bugs.gentoo.org/853118
---- a/src/af/xap/xp/xap_Dialog.cpp
-+++ b/src/af/xap/xp/xap_Dialog.cpp
-@@ -36,8 +36,8 @@
-
- XAP_Dialog::XAP_Dialog(XAP_DialogFactory * pDlgFactory, XAP_Dialog_Id id,
- const char * helpUrl )
-- : m_pApp ( NULL ), m_pDlgFactory ( pDlgFactory ), m_id ( id ),
-- m_helpUrl(NULL)
-+ : m_pApp ( nullptr ), m_pDlgFactory ( pDlgFactory ), m_id ( id ),
-+ m_helpUrl(nullptr)
- {
- m_pApp = pDlgFactory->getApp();
-
-@@ -235,7 +235,7 @@ XAP_Frame * XAP_Dialog_Modeless::getActiveFrame(void)
const
- // This function returns the frame currently connected to a modeless
dialog
-
- XAP_Frame * pFrame = m_pApp->getLastFocussedFrame();
-- if(pFrame == (XAP_Frame *) NULL)
-+ if(pFrame == (XAP_Frame *) nullptr)
- {
- pFrame = m_pApp->getFrame(0);
- }
-@@ -267,7 +267,7 @@ XAP_Dialog_Modeless::BuildWindowName(char * pWindowName,
const char * pDialogNam
- // This function constructs and returns the window name of a modeless dialog
by
- // concatenating the active frame with the dialog name
-
-- *pWindowName = (char) NULL;
-+ *pWindowName = (char) 0;
- UT_UTF8String wn = UT_UTF8String(pDialogName);
-
- XAP_Frame* pFrame = getActiveFrame();