From 962b7ced9770be70676d0c995c60906e5f424977 Mon Sep 17 00:00:00 2001 From: "Anna (cybertailor) Vyalkova" Date: Sun, 8 Dec 2024 14:27:42 +0500 Subject: [PATCH] net-im/nheko: remove patches for old versions Signed-off-by: Anna (cybertailor) Vyalkova --- ...nheko-0.11.3-fix-build-against-fmt10.patch | 82 ------------------- ...3-fix-explicit-optional-construction.patch | 24 ------ 2 files changed, 106 deletions(-) delete mode 100644 net-im/nheko/files/nheko-0.11.3-fix-build-against-fmt10.patch delete mode 100644 net-im/nheko/files/nheko-0.11.3-fix-explicit-optional-construction.patch diff --git a/net-im/nheko/files/nheko-0.11.3-fix-build-against-fmt10.patch b/net-im/nheko/files/nheko-0.11.3-fix-build-against-fmt10.patch deleted file mode 100644 index dc9c5f8df5..0000000000 --- a/net-im/nheko/files/nheko-0.11.3-fix-build-against-fmt10.patch +++ /dev/null @@ -1,82 +0,0 @@ -# source: -# backport of upstream commit -# by xvitaly for Fedora. - -From e89e65dc17020772eb057414b4f0c5d6f4ad98d0 Mon Sep 17 00:00:00 2001 -From: Nicolas Werner -Date: Wed, 28 Jun 2023 13:16:10 +0200 -Subject: [PATCH] Fix build against fmt10 - -fixes #1499 ---- - src/Cache.cpp | 2 +- - src/encryption/DeviceVerificationFlow.cpp | 2 +- - src/timeline/InputBar.cpp | 10 ++++++---- - src/ui/MxcMediaProxy.cpp | 9 ++++++--- - 4 files changed, 14 insertions(+), 9 deletions(-) - -diff --git a/src/Cache.cpp b/src/Cache.cpp -index c575ebf7..0c5e879c 100644 ---- a/src/Cache.cpp -+++ b/src/Cache.cpp -@@ -438,7 +438,7 @@ Cache::loadSecretsFromStore( - if (job->error() && job->error() != QKeychain::Error::EntryNotFound) { - nhlog::db()->error("Restoring secret '{}' failed ({}): {}", - name.toStdString(), -- job->error(), -+ static_cast(job->error()), - job->errorString().toStdString()); - - fatalSecretError(); -diff --git a/src/encryption/DeviceVerificationFlow.cpp b/src/encryption/DeviceVerificationFlow.cpp -index 0e9043dd..7dee9e6b 100644 ---- a/src/encryption/DeviceVerificationFlow.cpp -+++ b/src/encryption/DeviceVerificationFlow.cpp -@@ -39,7 +39,7 @@ DeviceVerificationFlow::DeviceVerificationFlow(QObject *, - , deviceIds(std::move(deviceIds_)) - , model_(model) - { -- nhlog::crypto()->debug("CREATING NEW FLOW, {}, {}", flow_type, (void *)this); -+ nhlog::crypto()->debug("CREATING NEW FLOW, {}, {}", static_cast(flow_type), (void *)this); - if (deviceIds.size() == 1) - deviceId = deviceIds.front(); - -diff --git a/src/timeline/InputBar.cpp b/src/timeline/InputBar.cpp -index 94944337..1fb210d8 100644 ---- a/src/timeline/InputBar.cpp -+++ b/src/timeline/InputBar.cpp -@@ -948,14 +948,14 @@ MediaUpload::MediaUpload(std::unique_ptr source_, - this, - [mediaPlayer](QMediaPlayer::Error error) { - nhlog::ui()->debug("Media player error {} and errorStr {}", -- error, -+ static_cast(error), - mediaPlayer->errorString().toStdString()); - }); - connect(mediaPlayer, - &QMediaPlayer::mediaStatusChanged, - [mediaPlayer](QMediaPlayer::MediaStatus status) { - nhlog::ui()->debug( -- "Media player status {} and error {}", status, mediaPlayer->error()); -+ "Media player status {} and error {}", static_cast(status), static_cast(mediaPlayer->error())); - }); - connect(mediaPlayer, - qOverload(&QMediaPlayer::metaDataChanged), -diff --git a/src/ui/MxcMediaProxy.cpp b/src/ui/MxcMediaProxy.cpp -index da5a2231..dbe63469 100644 ---- a/src/ui/MxcMediaProxy.cpp -+++ b/src/ui/MxcMediaProxy.cpp -@@ -37,11 +37,11 @@ MxcMediaProxy::MxcMediaProxy(QObject *parent) - qOverload(&MxcMediaProxy::error), - [this](QMediaPlayer::Error error) { - nhlog::ui()->info("Media player error {} and errorStr {}", -- error, -+ static_cast(error), - this->errorString().toStdString()); - }); - connect(this, &MxcMediaProxy::mediaStatusChanged, [this](QMediaPlayer::MediaStatus status) { -- nhlog::ui()->info("Media player status {} and error {}", status, this->error()); -+ nhlog::ui()->info("Media player status {} and error {}", static_cast(status), static_cast(this->error())); - }); - connect(this, - qOverload(&MxcMediaProxy::metaDataChanged), diff --git a/net-im/nheko/files/nheko-0.11.3-fix-explicit-optional-construction.patch b/net-im/nheko/files/nheko-0.11.3-fix-explicit-optional-construction.patch deleted file mode 100644 index 5e0118f375..0000000000 --- a/net-im/nheko/files/nheko-0.11.3-fix-explicit-optional-construction.patch +++ /dev/null @@ -1,24 +0,0 @@ -# upstream commit: - -From d7c10ae90417fcbb7f81edd4e40d89e91436244b Mon Sep 17 00:00:00 2001 -From: Nicolas Werner -Date: Fri, 24 Mar 2023 19:48:47 +0100 -Subject: [PATCH] Fix explicit optional construction on gcc13 - ---- - src/timeline/EventStore.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/timeline/EventStore.cpp b/src/timeline/EventStore.cpp -index 3c214dcbe..dd0e920de 100644 ---- a/src/timeline/EventStore.cpp -+++ b/src/timeline/EventStore.cpp -@@ -650,7 +650,7 @@ EventStore::get(int idx, bool decrypt) - if (edits_.empty()) - event = cache::client()->getEvent(room_id_, *event_id); - else -- event = {edits_.back()}; -+ event = mtx::events::collections::TimelineEvent{edits_.back()}; - - if (!event) - return nullptr;