Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ark for openSUSE:Factory checked in 
at 2023-06-09 20:35:36
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ark (Old)
 and      /work/SRC/openSUSE:Factory/.ark.new.15902 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ark"

Fri Jun  9 20:35:36 2023 rev:158 rq:1091464 version:23.04.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/ark/ark.changes  2023-05-12 20:33:06.656699701 
+0200
+++ /work/SRC/openSUSE:Factory/.ark.new.15902/ark.changes       2023-06-09 
20:35:41.977948608 +0200
@@ -1,0 +2,10 @@
+Tue Jun  6 20:00:29 UTC 2023 - Christophe Marin <christo...@krop.fr>
+
+- Update to 23.04.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/23.04.2/
+- Changes since 23.04.1:
+  * lastPathSegment: don't strip slash if it is the only character in the path 
(kde#469795)
+
+-------------------------------------------------------------------

Old:
----
  ark-23.04.1.tar.xz
  ark-23.04.1.tar.xz.sig

New:
----
  ark-23.04.2.tar.xz
  ark-23.04.2.tar.xz.sig

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

Other differences:
------------------
++++++ ark.spec ++++++
--- /var/tmp/diff_new_pack.MzF00D/_old  2023-06-09 20:35:43.105955158 +0200
+++ /var/tmp/diff_new_pack.MzF00D/_new  2023-06-09 20:35:43.109955181 +0200
@@ -19,7 +19,7 @@
 %define SOMAJOR 23
 %bcond_without released
 Name:           ark
-Version:        23.04.1
+Version:        23.04.2
 Release:        0
 Summary:        KDE Archiver Tool
 License:        GPL-2.0-or-later


++++++ ark-23.04.1.tar.xz -> ark-23.04.2.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-23.04.1/CMakeLists.txt 
new/ark-23.04.2/CMakeLists.txt
--- old/ark-23.04.1/CMakeLists.txt      2023-05-08 05:28:35.000000000 +0200
+++ new/ark-23.04.2/CMakeLists.txt      2023-06-06 05:31:43.000000000 +0200
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "23")
 set (RELEASE_SERVICE_VERSION_MINOR "04")
-set (RELEASE_SERVICE_VERSION_MICRO "1")
+set (RELEASE_SERVICE_VERSION_MICRO "2")
 set (RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 project(ark VERSION ${RELEASE_SERVICE_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-23.04.1/app/extractfileitemaction.json 
new/ark-23.04.2/app/extractfileitemaction.json
--- old/ark-23.04.1/app/extractfileitemaction.json      2023-05-08 
05:28:35.000000000 +0200
+++ new/ark-23.04.2/app/extractfileitemaction.json      2023-06-06 
05:31:43.000000000 +0200
@@ -49,7 +49,7 @@
         "Name[sr]": "Сервисни мени распакивања",
         "Name[sv]": "'Tjänstmeny 'Packa upp'",
         "Name[ta]": "பிரித்தெடுப்பதற்கான 
சேவைப்பட்டி",
-        "Name[tr]": "'Çıkar' servis menüsü",
+        "Name[tr]": "'Çıkar' hizmet menüsü",
         "Name[uk]": "Службове меню «Видобути»",
         "Name[x-test]": "xx'Extract' service menuxx",
         "Name[zh_CN]": "“解压”服务菜单",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-23.04.1/app/org.kde.ark.appdata.xml 
new/ark-23.04.2/app/org.kde.ark.appdata.xml
--- old/ark-23.04.1/app/org.kde.ark.appdata.xml 2023-05-08 05:28:35.000000000 
+0200
+++ new/ark-23.04.2/app/org.kde.ark.appdata.xml 2023-06-06 05:31:43.000000000 
+0200
@@ -390,10 +390,10 @@
     <binary>ark</binary>
   </provides>
   <releases>
+    <release version="23.04.2" date="2023-06-08"/>
     <release version="23.04.1" date="2023-05-11"/>
     <release version="23.04.0" date="2023-04-20"/>
     <release version="22.12.3" date="2023-03-02"/>
-    <release version="22.12.2" date="2023-02-02"/>
   </releases>
   <content_rating type="oars-1.1"/>
 </component>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-23.04.1/kerfuffle/util.h 
new/ark-23.04.2/kerfuffle/util.h
--- old/ark-23.04.1/kerfuffle/util.h    2023-05-08 05:28:35.000000000 +0200
+++ new/ark-23.04.2/kerfuffle/util.h    2023-06-06 05:31:43.000000000 +0200
@@ -15,7 +15,9 @@
     //      /foo/bar/ -> bar
     QString lastPathSegment(const QString &path)
     {
-        if (path.endsWith(QLatin1Char('/'))) {
+        if (path == QLatin1String("/")) {
+            return path;
+        } else if (path.endsWith(QLatin1Char('/'))) {
             const int index = path.lastIndexOf(QLatin1Char('/'), -2);
             return path.mid(index + 1).chopped(1);
         } else {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-23.04.1/po/ar/ark.po new/ark-23.04.2/po/ar/ark.po
--- old/ark-23.04.1/po/ar/ark.po        2023-05-08 05:28:35.000000000 +0200
+++ new/ark-23.04.2/po/ar/ark.po        2023-06-06 05:31:43.000000000 +0200
@@ -1150,7 +1150,7 @@
 #, kde-format
 msgid "%1 file"
 msgid_plural "%1 files"
-msgstr[0] "٠ ملف"
+msgstr[0] "0 ملف"
 msgstr[1] "ملفّ واحد"
 msgstr[2] "ملفّان"
 msgstr[3] "%1 ملفّات"
@@ -1161,7 +1161,7 @@
 #, kde-format
 msgid ", %1 folder"
 msgid_plural ", %1 folders"
-msgstr[0] "، ٠ مجلد"
+msgstr[0] "، 0 مجلد"
 msgstr[1] "، مجلّد واحد"
 msgstr[2] "، مجلّدان"
 msgstr[3] "%1 مجلّدات"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-23.04.1/po/fr/ark.po new/ark-23.04.2/po/fr/ark.po
--- old/ark-23.04.1/po/fr/ark.po        2023-05-08 05:28:35.000000000 +0200
+++ new/ark-23.04.2/po/fr/ark.po        2023-06-06 05:31:43.000000000 +0200
@@ -12,7 +12,7 @@
 # Thomas Vergnaud <thomas.vergn...@gmx.fr>, 2014, 2015, 2016, 2017, 2018, 
2019, 2022.
 # Vincent Pinon <vpi...@kde.org>, 2017.
 # Simon Depiets <sdepi...@gmail.com>, 2018, 2019.
-# Xavier BESNARD <xavier.besnard]neuf.fr>, 2023.
+# Xavier BESNARD <xavier.besn...@neuf.fr>, 2023.
 msgid ""
 msgstr ""
 "Project-Id-Version: ark\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-23.04.1/po/gl/ark.po new/ark-23.04.2/po/gl/ark.po
--- old/ark-23.04.1/po/gl/ark.po        2023-05-08 05:28:35.000000000 +0200
+++ new/ark-23.04.2/po/gl/ark.po        2023-06-06 05:31:43.000000000 +0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2023-03-14 02:55+0000\n"
-"PO-Revision-Date: 2023-04-06 22:38+0200\n"
+"PO-Revision-Date: 2023-06-05 12:52+0200\n"
 "Last-Translator: Adrián Chaves (Gallaecio) <adr...@chaves.io>\n"
 "Language-Team: Galician <proxe...@trasno.gal>\n"
 "Language: gl\n"
@@ -16,7 +16,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 23.04.0\n"
+"X-Generator: Lokalize 23.04.1\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -629,7 +629,7 @@
 #: kerfuffle/cliinterface.cpp:921
 #, kde-format
 msgid "Ark does not currently support testing this archive."
-msgstr "Actualmente Ark non permite verificar este arquivo."
+msgstr "Ark non permite verificar este arquivo."
 
 #: kerfuffle/compressionoptionswidget.cpp:132
 #, kde-format
@@ -1738,9 +1738,9 @@
 "encryption is currently not supported.<nl/><nl/>Extract the files and create "
 "a new archive if you want to add files."
 msgstr ""
-"Non se permite actualmente engadir ficheiros a arquivos existentes "
-"protexidos por contrasinal sen cifrado de cabeceira.<nl/> <nl/> Extraia os "
-"ficheiros e cree un novo arquivo se quere engadir ficheiros."
+"Non se permite engadir ficheiros a arquivos existentes protexidos por "
+"contrasinal sen cifrado de cabeceira.<nl/> <nl/> Extraia os ficheiros e cree "
+"un novo arquivo se quere engadir ficheiros."
 
 #: part/part.cpp:470
 #, kde-kuit-format
@@ -1749,8 +1749,8 @@
 "Testing password-protected archives with no header-encryption is currently "
 "not supported."
 msgstr ""
-"Non se permite actualmente probar arquivos existentes protexidos por "
-"contrasinal sen cifrado de cabeceira."
+"Non se permite probar arquivos existentes protexidos por contrasinal sen "
+"cifrado de cabeceira."
 
 #: part/part.cpp:538
 #, kde-format
@@ -1878,9 +1878,7 @@
 #, kde-kuit-format
 msgctxt "@info"
 msgid "Ark does not currently support ISO files with UDF filesystem."
-msgstr ""
-"Actualmente Ark non é compatíbel con ficheiros ISO cun sistema de ficheiros 
"
-"UDF."
+msgstr "Ark non é compatíbel con ficheiros ISO cun sistema de ficheiros UDF."
 
 #: part/part.cpp:948
 #, kde-kuit-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-23.04.1/po/ja/ark.po new/ark-23.04.2/po/ja/ark.po
--- old/ark-23.04.1/po/ja/ark.po        2023-05-08 05:28:35.000000000 +0200
+++ new/ark-23.04.2/po/ja/ark.po        2023-06-06 05:31:43.000000000 +0200
@@ -19,7 +19,7 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
 "X-Generator: Lokalize 19.12.1\n"
@@ -637,7 +637,6 @@
 msgid "Could not move the extracted file to the destination directory."
 msgid_plural "Could not move the extracted files to the destination directory."
 msgstr[0] "展開したファイルを展開å…
ˆã®ãƒ•ã‚©ãƒ«ãƒ€ã«ç§»å‹•ã§ãã¾ã›ã‚“でした。"
-msgstr[1] "展開したファイルを展開å…
ˆã®ãƒ•ã‚©ãƒ«ãƒ€ã«ç§»å‹•ã§ãã¾ã›ã‚“でした。"
 
 #: kerfuffle/cliinterface.cpp:857
 #, kde-format
@@ -1057,8 +1056,7 @@
 #, kde-format
 msgid "Extracting one file"
 msgid_plural "Extracting %1 files"
-msgstr[0] "1 ファイルを展開"
-msgstr[1] "%1 ファイルを展開"
+msgstr[0] "%1 ファイルを展開"
 
 #: kerfuffle/jobs.cpp:542
 #, kde-format
@@ -1079,29 +1077,25 @@
 #, kde-format
 msgid "Compressing a file"
 msgid_plural "Compressing %1 files"
-msgstr[0] "1 ファイルを圧縮中"
-msgstr[1] "%1 ファイルを圧縮中"
+msgstr[0] "%1 ファイルを圧縮中"
 
 #: kerfuffle/jobs.cpp:772
 #, kde-format
 msgid "Moving a file"
 msgid_plural "Moving %1 files"
-msgstr[0] "1 ファイルを移動中"
-msgstr[1] "%1 ファイルを移動中"
+msgstr[0] "%1 ファイルを移動中"
 
 #: kerfuffle/jobs.cpp:810
 #, kde-format
 msgid "Copying a file"
 msgid_plural "Copying %1 files"
-msgstr[0] "1 ファイルをコピー中"
-msgstr[1] "%1 ファイルをコピー中"
+msgstr[0] "%1 ファイルをコピー中"
 
 #: kerfuffle/jobs.cpp:842
 #, kde-format
 msgid "Deleting a file from the archive"
 msgid_plural "Deleting %1 files"
-msgstr[0] "1 ファイルをアーカイブから削除中"
-msgstr[1] "%1 ファイルをアーカイブから削除中"
+msgstr[0] "%1 ファイルをアーカイブから削除中"
 
 #: kerfuffle/jobs.cpp:866
 #, kde-format
@@ -1173,14 +1167,12 @@
 msgid "%1 file"
 msgid_plural "%1 files"
 msgstr[0] "%1 ファイル"
-msgstr[1] "%1 ファイル"
 
 #: kerfuffle/propertiesdialog.cpp:52
 #, kde-format
 msgid ", %1 folder"
 msgid_plural ", %1 folders"
 msgstr[0] "%1 フォルダ"
-msgstr[1] "%1 フォルダ"
 
 #: kerfuffle/propertiesdialog.cpp:66
 #, kde-format
@@ -1559,8 +1551,7 @@
 #, kde-format
 msgid "One file selected"
 msgid_plural "%1 files selected"
-msgstr[0] "1 ファイル選択済み"
-msgstr[1] "%1 ファイル選択済み"
+msgstr[0] "%1 ファイル選択済み"
 
 #. i18n: ectx: property (windowTitle), widget (QWidget, InformationPanel)
 #: part/infopanel.ui:20
@@ -2007,8 +1998,7 @@
 msgid "Deleting this file is not undoable. Are you sure you want to do this?"
 msgid_plural ""
 "Deleting these files is not undoable. Are you sure you want to do this?"
-msgstr[0] "このファイルを削除するとå…
ƒã«æˆ»ã›ã¾ã›ã‚“。本当に削除しますか?"
-msgstr[1] "これらのファイルを削除するとå…
ƒã«æˆ»ã›ã¾ã›ã‚“。本当に削除しますか?"
+msgstr[0] "これらのファイルを削除するとå…
ƒã«æˆ»ã›ã¾ã›ã‚“。本当に削除しますか?"
 
 #: part/part.cpp:1677
 #, fuzzy, kde-format
@@ -2018,7 +2008,6 @@
 msgid "Delete File"
 msgid_plural "Delete Files"
 msgstr[0] "ファイルを削除"
-msgstr[1] "ファイルを削除"
 
 #: part/part.cpp:1724
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-23.04.1/po/nn/ark.po new/ark-23.04.2/po/nn/ark.po
--- old/ark-23.04.1/po/nn/ark.po        2023-05-08 05:28:35.000000000 +0200
+++ new/ark-23.04.2/po/nn/ark.po        2023-06-06 05:31:43.000000000 +0200
@@ -16,7 +16,7 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 22.12.3\n"
+"X-Generator: Lokalize 23.04.1\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-23.04.1/po/tr/ark.po new/ark-23.04.2/po/tr/ark.po
--- old/ark-23.04.1/po/tr/ark.po        2023-05-08 05:28:35.000000000 +0200
+++ new/ark-23.04.2/po/tr/ark.po        2023-06-06 05:31:43.000000000 +0200
@@ -20,7 +20,7 @@
 "Project-Id-Version: kdeutils-kde4\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2023-03-14 02:55+0000\n"
-"PO-Revision-Date: 2023-03-21 15:05+0300\n"
+"PO-Revision-Date: 2023-05-31 23:27+0300\n"
 "Last-Translator: Emir SARI <emir_s...@icloud.com>\n"
 "Language-Team: Turkish <kde-l10n...@kde.org>\n"
 "Language: tr\n"
@@ -28,7 +28,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 22.12.3\n"
+"X-Generator: Lokalize 23.07.70\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -164,7 +164,7 @@
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
 msgid "Extract here"
-msgstr "Buraya çıkar"
+msgstr "Buraya Çıkar"
 
 #: app/main.cpp:84
 #, kde-format
@@ -532,7 +532,7 @@
 #, kde-format
 msgctxt "Default name of a newly-created multi-file archive"
 msgid "Archive"
-msgstr "Arşivle"
+msgstr "Arşiv"
 
 #. i18n: ectx: label, entry (showEncryptionWarning), group (General)
 #: kerfuffle/ark.kcfg:9
@@ -827,7 +827,7 @@
 #: kerfuffle/extractiondialog.cpp:116
 #, kde-format
 msgid "Extract here"
-msgstr "Buraya çıkar"
+msgstr "Buraya Çıkar"
 
 #: kerfuffle/extractiondialog.cpp:117
 #, kde-format
@@ -1528,8 +1528,8 @@
 #, kde-format
 msgid "One file selected"
 msgid_plural "%1 files selected"
-msgstr[0] "%1 dosya seçildi"
-msgstr[1] "%1 dosya seçildi"
+msgstr[0] "%1 dosya seçili"
+msgstr[1] "%1 dosya seçili"
 
 #. i18n: ectx: property (windowTitle), widget (QWidget, InformationPanel)
 #: part/infopanel.ui:20
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-23.04.1/po/zh_CN/ark.po 
new/ark-23.04.2/po/zh_CN/ark.po
--- old/ark-23.04.1/po/zh_CN/ark.po     2023-05-08 05:28:35.000000000 +0200
+++ new/ark-23.04.2/po/zh_CN/ark.po     2023-06-06 05:31:43.000000000 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2023-03-14 02:55+0000\n"
-"PO-Revision-Date: 2023-04-29 08:36\n"
+"PO-Revision-Date: 2023-05-22 14:04\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
@@ -455,7 +455,7 @@
 #: app/welcomeview/welcomeview.ui:346
 #, kde-format
 msgid "Show on startup"
-msgstr "启动时显示"
+msgstr "启动时显示此画面"
 
 #. i18n: ectx: property (toolTip), widget (QPushButton, buttonClose)
 #: app/welcomeview/welcomeview.ui:401

Reply via email to