[neon/extras/libmediawiki/Neon/release] debian: update the patches
Pino Toscano
null at kde.org
Wed Sep 4 12:27:32 BST 2024
Git commit bbe4fca2ab1b434a96893faf12de7588ac085e6d by Pino Toscano.
Committed on 27/08/2022 at 16:56.
Pushed by jriddell into branch 'Neon/release'.
update the patches
- upstream_Fix-compilation-error-with-Qt-5.15.patch: drop, backported
from upstream
M +3 -0 debian/changelog
D +0 -1 debian/patches/series
D +0 -31 debian/patches/upstream_Fix-compilation-error-with-Qt-5.15.patch
https://invent.kde.org/neon/extras/libmediawiki/-/commit/bbe4fca2ab1b434a96893faf12de7588ac085e6d
diff --git a/debian/changelog b/debian/changelog
index 5d1a409..4aea9a7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,9 @@ libmediawiki (5.38.0-0r1) UNRELEASED; urgency=medium
[ Pino Toscano ]
* New upstream release.
* Update the upstream GPG signing key.
+ * Update the patches:
+ - upstream_Fix-compilation-error-with-Qt-5.15.patch: drop, backported
+ from upstream
-- Debian Qt/KDE Maintainers <debian-qt-kde at lists.debian.org> Sat, 27 Aug 2022 18:51:06 +0200
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 1ef434e..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-upstream_Fix-compilation-error-with-Qt-5.15.patch
diff --git a/debian/patches/upstream_Fix-compilation-error-with-Qt-5.15.patch b/debian/patches/upstream_Fix-compilation-error-with-Qt-5.15.patch
deleted file mode 100644
index c737769..0000000
--- a/debian/patches/upstream_Fix-compilation-error-with-Qt-5.15.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 7c79dae079d20b46d05462ed9f5b3cfae78f420a Mon Sep 17 00:00:00 2001
-From: David Faure <faure at kde.org>
-Date: Sun, 2 May 2021 12:39:39 +0200
-Subject: [PATCH] Fix compilation error with Qt 5.15
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-error: use of deleted function ‘QCharRef& QCharRef::operator=(char)’
----
- src/queryrevision.cpp | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/src/queryrevision.cpp b/src/queryrevision.cpp
-index 59aac03..6ebfbc8 100644
---- a/src/queryrevision.cpp
-+++ b/src/queryrevision.cpp
-@@ -307,8 +307,8 @@ void QueryRevision::doWorkProcessReply()
- while (count < 2)
- {
- if (replytmp[i] == QLatin1Char('"') && replytmp[i-1] != QLatin1Char('\\')) count++;
-- if (replytmp[i] == QLatin1Char('<')) replytmp[i] = char(255);
-- if (replytmp[i] == QLatin1Char('>')) replytmp[i] = char(254);
-+ if (replytmp[i] == QLatin1Char('<')) replytmp[i] = QChar(255);
-+ if (replytmp[i] == QLatin1Char('>')) replytmp[i] = QChar(254);
- ++i;
- }
- }
---
-2.35.1
-
More information about the Neon-commits
mailing list