public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: kde-apps/kdepim-runtime/files/
@ 2022-04-25 21:48 Conrad Kostecki
  0 siblings, 0 replies; only message in thread
From: Conrad Kostecki @ 2022-04-25 21:48 UTC (permalink / raw
  To: gentoo-commits

commit:     118716e5af13e0bd3997eafd988e654f4b3fe81d
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sat Apr 23 16:05:01 2022 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Mon Apr 25 21:46:14 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=118716e5

kde-apps/kdepim-runtime: remove unused patch(es)

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 .../kdepim-runtime-21.08.3-CVE-2020-15954.patch    | 110 ---------------------
 ...time-21.08.3-disable-google-sync-contacts.patch |  27 -----
 2 files changed, 137 deletions(-)

diff --git a/kde-apps/kdepim-runtime/files/kdepim-runtime-21.08.3-CVE-2020-15954.patch b/kde-apps/kdepim-runtime/files/kdepim-runtime-21.08.3-CVE-2020-15954.patch
deleted file mode 100644
index 14ba90537025..000000000000
--- a/kde-apps/kdepim-runtime/files/kdepim-runtime-21.08.3-CVE-2020-15954.patch
+++ /dev/null
@@ -1,110 +0,0 @@
-From 35447bd04e8c12afac524e1c4556ef3db088e014 Mon Sep 17 00:00:00 2001
-From: Laurent Montel <montel@kde.org>
-Date: Fri, 12 Nov 2021 13:09:22 +0100
-Subject: [PATCH] Fix POP3 setup wizard defaults to unencrypted connections.
-
-Now I check encrypt support when I create resource.
-So if resource support starttls it will set option for it.
-
-BUG: 423426
-FIXED-IN: 5.19.0
----
- resources/pop3/wizard/pop3wizard.es | 73 ++++++++++++++++++++++++-----
- 1 file changed, 61 insertions(+), 12 deletions(-)
-
-diff --git a/resources/pop3/wizard/pop3wizard.es b/resources/pop3/wizard/pop3wizard.es
-index 5864db5d2..6bcf9a1dd 100644
---- a/resources/pop3/wizard/pop3wizard.es
-+++ b/resources/pop3/wizard/pop3wizard.es
-@@ -1,5 +1,5 @@
- /*
--    SPDX-FileCopyrightText: 2009 Montel Laurent <montel@kde.org>
-+    SPDX-FileCopyrightText: 2009-2021 Montel Laurent <montel@kde.org>
- 
-     SPDX-License-Identifier: LGPL-2.0-or-later
- */
-@@ -30,21 +30,70 @@ function validateInput()
-   }
- }
- 
-+var stage = 1;
-+
- function setup()
- {
--  var pop3Res = SetupManager.createResource( "akonadi_pop3_resource" );
--  pop3Res.setOption( "Host", page.widget().incommingAddress.text.trim() );
--  pop3Res.setOption( "Login", page.widget().userName.text.trim() );
--  pop3Res.setOption( "Password", SetupManager.password() );
-+  if ( stage == 1 ) {
-+    ServerTest.test( page.widget().incommingAddress.text.trim(), "pop" );
-+  } else {
-+    ServerTest.test( page.widget().outgoingAddress.text.trim(), "smtp" );
-+  }
-+}
-+
-+function testResultFail()
-+{
-+  testOk( -1 );
-+}
- 
--  var smtp = SetupManager.createTransport( "smtp" );
--  smtp.setName( SetupManager.name() );
--  smtp.setHost( page.widget().outgoingAddress.text.trim() );
--  smtp.setEncryption( "SSL" );
-+function testOk( arg )
-+{
-+  if (stage == 1) {
-+    SetupManager.openWallet();
-+    var pop3Res = SetupManager.createResource( "akonadi_pop3_resource" );
-+    var server = page.widget().incommingAddress.text.trim();
-+    pop3Res.setOption( "Host", server );
-+    pop3Res.setOption( "Login", page.widget().userName.text.trim() );
-+    pop3Res.setOption( "Password", SetupManager.password() );
-+
-+    if ( arg == "ssl" ) {
-+      pop3Res.setOption( "Port", 995 );
-+      pop3Res.setOption( "UseTLS", true );
-+    } else if ( arg == "tls" ) { // tls is really STARTTLS
-+      pop3Res.setOption( "Port", 110 );
-+      pop3Res.setOption( "UseTLS", true );
-+    } else if ( arg == "none" ) {
-+      pop3Res.setOption( "Port", 110 );
-+    } else {
-+      pop3Res.setOption( "Port", 110 );
-+    }
-+
-+    stage = 2;
-+    setup();
-+  } else {
-+    var smtp = SetupManager.createTransport( "smtp" );
-+    smtp.setName( page.widget().outgoingAddress.text.trim() );
-+    smtp.setHost( page.widget().outgoingAddress.text.trim() );
-+    if ( arg == "ssl" ) {
-+      smtp.setEncryption( "SSL" );
-+    } else if ( arg == "tls" ) {
-+      smtp.setEncryption( "TLS" );
-+    } else {
-+      smtp.setEncryption( "None" );
-+    }
-+    smtp.setUsername( page.widget().userName.text );
-+    smtp.setPassword( SetupManager.password() );
-+    SetupManager.execute();
-+  }
-+}
- 
--  SetupManager.execute();
-+try {
-+  ServerTest.testFail.connect( testResultFail );
-+  ServerTest.testResult.connect( testOk );
-+  page.widget().incommingAddress.textChanged.connect( validateInput );
-+  page.pageLeftNext.connect( setup );
-+} catch ( e ) {
-+  print( e );
- }
- 
--page.widget().incommingAddress.textChanged.connect( serverChanged );
--page.pageLeftNext.connect( setup );
- validateInput();
--- 
-GitLab
-

diff --git a/kde-apps/kdepim-runtime/files/kdepim-runtime-21.08.3-disable-google-sync-contacts.patch b/kde-apps/kdepim-runtime/files/kdepim-runtime-21.08.3-disable-google-sync-contacts.patch
deleted file mode 100644
index 7270d6e42aaf..000000000000
--- a/kde-apps/kdepim-runtime/files/kdepim-runtime-21.08.3-disable-google-sync-contacts.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 624ef213e50ae4712bfe2a254c5f444caaacfa22 Mon Sep 17 00:00:00 2001
-From: Laurent Montel <montel@kde.org>
-Date: Mon, 7 Feb 2022 06:58:43 +0100
-Subject: [PATCH] Apply patch for disable sync contact as it don't ported yet.
-
-BUG:449024
----
- resources/google-groupware/googleresource.cpp | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/resources/google-groupware/googleresource.cpp b/resources/google-groupware/googleresource.cpp
-index 62b08fab0..a0d74e738 100644
---- a/resources/google-groupware/googleresource.cpp
-+++ b/resources/google-groupware/googleresource.cpp
-@@ -104,7 +104,9 @@ GoogleResource::GoogleResource(const QString &id)
-     m_freeBusyHandler = std::make_unique<FreeBusyHandler>(m_iface, m_settings);
-     m_handlers.clear();
-     m_handlers.push_back(GenericHandler::Ptr(new CalendarHandler(m_iface, m_settings)));
-+#ifdef DISABLE_UNTIL_LIBKGAPI_PORTED
-     m_handlers.push_back(GenericHandler::Ptr(new ContactHandler(m_iface, m_settings)));
-+#endif
-     m_handlers.push_back(GenericHandler::Ptr(new TaskHandler(m_iface, m_settings)));
- 
-     new SettingsAdaptor(m_settings);
--- 
-GitLab
-


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2022-04-25 21:48 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-25 21:48 [gentoo-commits] repo/gentoo:master commit in: kde-apps/kdepim-runtime/files/ Conrad Kostecki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox