Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kmime for openSUSE:Factory checked 
in at 2022-11-04 17:33:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kmime (Old)
 and      /work/SRC/openSUSE:Factory/.kmime.new.2275 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kmime"

Fri Nov  4 17:33:04 2022 rev:88 rq:1033306 version:22.08.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/kmime/kmime.changes      2022-10-15 
16:34:51.589778880 +0200
+++ /work/SRC/openSUSE:Factory/.kmime.new.2275/kmime.changes    2022-11-04 
17:34:29.420663679 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 11:20:48 UTC 2022 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+-------------------------------------------------------------------

Old:
----
  kmime-22.08.2.tar.xz
  kmime-22.08.2.tar.xz.sig

New:
----
  kmime-22.08.3.tar.xz
  kmime-22.08.3.tar.xz.sig

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kmime.spec ++++++
--- /var/tmp/diff_new_pack.ETHIfz/_old  2022-11-04 17:34:30.112667260 +0100
+++ /var/tmp/diff_new_pack.ETHIfz/_new  2022-11-04 17:34:30.120667301 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:           kmime
-Version:        22.08.2
+Version:        22.08.3
 Release:        0
 Summary:        KDE PIM libraries MIME support
 License:        LGPL-2.1-or-later


++++++ kmime-22.08.2.tar.xz -> kmime-22.08.3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmime-22.08.2/CMakeLists.txt 
new/kmime-22.08.3/CMakeLists.txt
--- old/kmime-22.08.2/CMakeLists.txt    2022-09-08 19:39:43.000000000 +0200
+++ new/kmime-22.08.3/CMakeLists.txt    2022-10-14 09:15:58.000000000 +0200
@@ -1,5 +1,5 @@
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.21.2")
+set(PIM_VERSION "5.21.3")
 
 project(KMime VERSION ${PIM_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmime-22.08.2/po/zh_CN/libkmime5.po 
new/kmime-22.08.3/po/zh_CN/libkmime5.po
--- old/kmime-22.08.2/po/zh_CN/libkmime5.po     2022-10-11 07:01:29.000000000 
+0200
+++ new/kmime-22.08.3/po/zh_CN/libkmime5.po     2022-11-01 01:14:24.000000000 
+0100
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-12-14 00:45+0000\n"
-"PO-Revision-Date: 2022-10-02 15:52\n"
+"PO-Revision-Date: 2022-10-30 07:51\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmime-22.08.2/src/kmime_content.cpp 
new/kmime-22.08.3/src/kmime_content.cpp
--- old/kmime-22.08.2/src/kmime_content.cpp     2022-09-08 19:39:43.000000000 
+0200
+++ new/kmime-22.08.3/src/kmime_content.cpp     2022-10-14 09:15:58.000000000 
+0200
@@ -440,16 +440,17 @@
     QVector<Content*> result;
 
     auto ct = contentType(false);
-    if (ct && ct->isMultipart() && !ct->isSubtype("related") && 
!ct->isSubtype("alternative")) {
-        const QVector<Content*> contentsList = contents();
-        result.reserve(contentsList.count());
-        for (Content *child : contentsList) {
-            if (isAttachment(child)) {
-                result.push_back(child);
-            } else {
-                result += child->attachments();
-            }
+    if (ct && ct->isMultipart() &&
+        !ct->isSubtype("related") /* && !ct->isSubtype("alternative")*/) {
+      const QVector<Content *> contentsList = contents();
+      result.reserve(contentsList.count());
+      for (Content *child : contentsList) {
+        if (isAttachment(child)) {
+          result.push_back(child);
+        } else {
+          result += child->attachments();
         }
+      }
     }
 
     return result;

Reply via email to